/* -*- 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 . */ #ifndef INCLUDED_SW_INC_ANCHOREDDRAWOBJECT_HXX #define INCLUDED_SW_INC_ANCHOREDDRAWOBJECT_HXX #include "anchoredobject.hxx" #include namespace tools { class Rectangle; } /** class for the positioning of drawing objects */ class SwAnchoredDrawObject final : public SwAnchoredObject { private: // boolean, indicating that the object position has been invalidated // and that a positioning has to be performed. bool mbValidPos; // rectangle, keeping the last object rectangle after the positioning std::optional maLastObjRect; // boolean, indicating that anchored drawing object hasn't been attached // to an anchor frame yet. Once, it is attached to an anchor frame the // boolean changes its state. bool mbNotYetAttachedToAnchorFrame; // boolean, indicating that anchored // drawing object hasn't been positioned yet. Once, it's positioned the // boolean changes its state. bool mbNotYetPositioned; // boolean, indicating that after change of layout direction the // anchored drawing object has to be captured on the page, if it exceeds // the left or right page margin. // Needed for compatibility option bool mbCaptureAfterLayoutDirChange; /** method for the intrinsic positioning of an at-paragraph|at-character anchored drawing object helper method for method */ void MakeObjPosAnchoredAtPara(); /** method for the intrinsic positioning of an at-page|at-frame anchored drawing object helper method for method */ void MakeObjPosAnchoredAtLayout(); /** method to set positioning attributes (not for as-character anchored) During load the positioning attributes aren't set. Thus, the positioning attributes are set by the current object geometry. This method is also used for the conversion for drawing objects (not anchored as-character) imported from OpenOffice.org file format once and directly before the first positioning. */ void SetPositioningAttr(); /** method to set internal anchor position of instance of the drawing object For drawing objects the internal anchor position of the instance has to be set. Note: This adjustment is not be done for as-character anchored drawing object - the positioning code takes care of this. #i31698# - API for drawing objects in Writer has been adjusted. Thus, this method will only set the internal anchor position of the instance to the anchor position given by its anchor frame. */ void SetDrawObjAnchor(); /** method to invalidate the given page frame */ void InvalidatePage_( SwPageFrame* _pPageFrame ); virtual void ObjectAttachedToAnchorFrame() override; /** method to assure that anchored object is registered at the correct page frame */ virtual void RegisterAtCorrectPage() override; virtual bool SetObjTop_( const SwTwips _nTop) override; virtual bool SetObjLeft_( const SwTwips _nLeft) override; virtual SwRect GetObjBoundRect() const override; public: SwAnchoredDrawObject(); virtual ~SwAnchoredDrawObject() override; // declaration of pure virtual methods of base class virtual void MakeObjPos() override; virtual void InvalidateObjPos() override; bool IsValidPos() const { return mbValidPos; } // accessors to the format virtual SwFrameFormat& GetFrameFormat() override; virtual const SwFrameFormat& GetFrameFormat() const override; // accessors to the object area and its position virtual SwRect GetObjRect() const override; std::optional const & GetLastObjRect() const { return maLastObjRect;} void SetLastObjRect( const tools::Rectangle& _rNewObjRect ); /** adjust positioning and alignment attributes for new anchor frame Set horizontal and vertical position/alignment to manual position relative to anchor frame area using the anchor position of the new anchor frame and the current absolute drawing object position. Note: For correct Undo/Redo method should only be called inside a Undo-/Redo-action. @param <_pNewAnchorFrame> input parameter - new anchor frame for the anchored object. @param <_pNewObjRect> optional input parameter - proposed new object rectangle. If not provided the current object rectangle is taken. */ void AdjustPositioningAttr( const SwFrame* _pNewAnchorFrame, const SwRect* _pNewObjRect = nullptr ); /** method to notify background of drawing object */ virtual void NotifyBackground( SwPageFrame* _pPageFrame, const SwRect& _rRect, PrepareHint _eHint ) override; bool NotYetPositioned() const { return mbNotYetPositioned; } // change of layout direction needs to be tracked // for setting . virtual void UpdateLayoutDir() override; bool IsOutsidePage() const; // new Loop control void ValidateThis() { mbValidPos = true; } /** The element name to show in the XML dump. */ virtual const char* getElementName( ) const override { return "SwAnchoredDrawObject"; } }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ value='libreoffice-3-6'>libreoffice-3-6 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/ab/cui/messages.po427
-rw-r--r--source/ab/extensions/messages.po76
-rw-r--r--source/ab/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ab/sc/messages.po223
-rw-r--r--source/ab/scp2/source/ooo.po10
-rw-r--r--source/ab/scp2/source/winexplorerext.po11
-rw-r--r--source/ab/sd/messages.po336
-rw-r--r--source/ab/sfx2/messages.po294
-rw-r--r--source/ab/shell/messages.po44
-rw-r--r--source/ab/starmath/messages.po134
-rw-r--r--source/ab/svtools/messages.po604
-rw-r--r--source/ab/svx/messages.po91
-rw-r--r--source/ab/sw/messages.po274
-rw-r--r--source/af/cui/messages.po427
-rw-r--r--source/af/extensions/messages.po76
-rw-r--r--source/af/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/af/sc/messages.po228
-rw-r--r--source/af/scp2/source/ooo.po10
-rw-r--r--source/af/scp2/source/winexplorerext.po16
-rw-r--r--source/af/sd/messages.po336
-rw-r--r--source/af/sfx2/messages.po296
-rw-r--r--source/af/shell/messages.po44
-rw-r--r--source/af/starmath/messages.po134
-rw-r--r--source/af/svtools/messages.po606
-rw-r--r--source/af/svx/messages.po92
-rw-r--r--source/af/sw/messages.po276
-rw-r--r--source/am/basic/messages.po10
-rw-r--r--source/am/chart2/messages.po6
-rw-r--r--source/am/cui/messages.po435
-rw-r--r--source/am/editeng/messages.po14
-rw-r--r--source/am/extensions/messages.po84
-rw-r--r--source/am/extras/source/autocorr/emoji.po6
-rw-r--r--source/am/filter/messages.po10
-rw-r--r--source/am/forms/messages.po8
-rw-r--r--source/am/helpcontent2/source/auxiliary.po154
-rw-r--r--source/am/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/am/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/am/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/am/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/am/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/am/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/am/helpcontent2/source/text/sdraw.po92
-rw-r--r--source/am/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/am/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/am/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/am/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/am/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/am/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/am/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po12
-rw-r--r--source/am/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/am/officecfg/registry/data/org/openoffice/Office/UI.po85
-rw-r--r--source/am/reportdesign/messages.po12
-rw-r--r--source/am/sc/messages.po263
-rw-r--r--source/am/scp2/source/graphicfilter.po8
-rw-r--r--source/am/scp2/source/ooo.po14
-rw-r--r--source/am/scp2/source/winexplorerext.po16
-rw-r--r--source/am/sd/messages.po344
-rw-r--r--source/am/sfx2/messages.po296
-rw-r--r--source/am/shell/messages.po52
-rw-r--r--source/am/starmath/messages.po134
-rw-r--r--source/am/svtools/messages.po614
-rw-r--r--source/am/svx/messages.po131
-rw-r--r--source/am/sw/messages.po312
-rw-r--r--source/am/swext/mediawiki/help.po6
-rw-r--r--source/am/vcl/messages.po22
-rw-r--r--source/an/cui/messages.po425
-rw-r--r--source/an/extensions/messages.po76
-rw-r--r--source/an/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/an/sc/messages.po227
-rw-r--r--source/an/scp2/source/ooo.po10
-rw-r--r--source/an/scp2/source/winexplorerext.po14
-rw-r--r--source/an/sd/messages.po336
-rw-r--r--source/an/sfx2/messages.po295
-rw-r--r--source/an/shell/messages.po44
-rw-r--r--source/an/starmath/messages.po134
-rw-r--r--source/an/svtools/messages.po604
-rw-r--r--source/an/svx/messages.po91
-rw-r--r--source/an/sw/messages.po270
-rw-r--r--source/ar/cui/messages.po427
-rw-r--r--source/ar/extensions/messages.po76
-rw-r--r--source/ar/helpcontent2/source/auxiliary.po152
-rw-r--r--source/ar/helpcontent2/source/text/sbasic/guide.po32
-rw-r--r--source/ar/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ar/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/ar/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ar/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/ar/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/ar/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ar/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ar/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/ar/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ar/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ar/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ar/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ar/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ar/sc/messages.po224
-rw-r--r--source/ar/scp2/source/ooo.po10
-rw-r--r--source/ar/scp2/source/winexplorerext.po8
-rw-r--r--source/ar/sd/messages.po336
-rw-r--r--source/ar/sfx2/messages.po294
-rw-r--r--source/ar/shell/messages.po44
-rw-r--r--source/ar/starmath/messages.po134
-rw-r--r--source/ar/svtools/messages.po606
-rw-r--r--source/ar/svx/messages.po92
-rw-r--r--source/ar/sw/messages.po274
-rw-r--r--source/as/cui/messages.po427
-rw-r--r--source/as/extensions/messages.po76
-rw-r--r--source/as/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/as/sc/messages.po226
-rw-r--r--source/as/scp2/source/ooo.po10
-rw-r--r--source/as/scp2/source/winexplorerext.po16
-rw-r--r--source/as/sd/messages.po336
-rw-r--r--source/as/sfx2/messages.po294
-rw-r--r--source/as/shell/messages.po44
-rw-r--r--source/as/starmath/messages.po134
-rw-r--r--source/as/svtools/messages.po606
-rw-r--r--source/as/svx/messages.po92
-rw-r--r--source/as/sw/messages.po272
-rw-r--r--source/ast/cui/messages.po427
-rw-r--r--source/ast/extensions/messages.po76
-rw-r--r--source/ast/helpcontent2/source/auxiliary.po152
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ast/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ast/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/ast/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/ast/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ast/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ast/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/ast/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ast/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ast/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ast/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/ast/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ast/sc/messages.po226
-rw-r--r--source/ast/scp2/source/ooo.po10
-rw-r--r--source/ast/scp2/source/winexplorerext.po16
-rw-r--r--source/ast/sd/messages.po336
-rw-r--r--source/ast/sfx2/messages.po294
-rw-r--r--source/ast/shell/messages.po44
-rw-r--r--source/ast/starmath/messages.po134
-rw-r--r--source/ast/svtools/messages.po606
-rw-r--r--source/ast/svx/messages.po92
-rw-r--r--source/ast/sw/messages.po272
-rw-r--r--source/az/cui/messages.po425
-rw-r--r--source/az/extensions/messages.po76
-rw-r--r--source/az/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/az/sc/messages.po225
-rw-r--r--source/az/scp2/source/ooo.po10
-rw-r--r--source/az/scp2/source/winexplorerext.po6
-rw-r--r--source/az/sd/messages.po336
-rw-r--r--source/az/sfx2/messages.po294
-rw-r--r--source/az/shell/messages.po44
-rw-r--r--source/az/starmath/messages.po134
-rw-r--r--source/az/svtools/messages.po604
-rw-r--r--source/az/svx/messages.po91
-rw-r--r--source/az/sw/messages.po272
-rw-r--r--source/be/cui/messages.po427
-rw-r--r--source/be/extensions/messages.po76
-rw-r--r--source/be/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/be/sc/messages.po227
-rw-r--r--source/be/scp2/source/ooo.po10
-rw-r--r--source/be/scp2/source/winexplorerext.po16
-rw-r--r--source/be/sd/messages.po336
-rw-r--r--source/be/sfx2/messages.po294
-rw-r--r--source/be/shell/messages.po44
-rw-r--r--source/be/starmath/messages.po134
-rw-r--r--source/be/svtools/messages.po606
-rw-r--r--source/be/svx/messages.po92
-rw-r--r--source/be/sw/messages.po274
-rw-r--r--source/bg/cui/messages.po514
-rw-r--r--source/bg/extensions/messages.po78
-rw-r--r--source/bg/filter/source/config/fragments/filters.po84
-rw-r--r--source/bg/filter/source/config/fragments/types.po30
-rw-r--r--source/bg/helpcontent2/source/auxiliary.po156
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/python.po234
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared.po16
-rw-r--r--source/bg/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/bg/helpcontent2/source/text/scalc/01.po140
-rw-r--r--source/bg/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/bg/helpcontent2/source/text/schart/00.po14
-rw-r--r--source/bg/helpcontent2/source/text/sdraw.po10
-rw-r--r--source/bg/helpcontent2/source/text/sdraw/00.po26
-rw-r--r--source/bg/helpcontent2/source/text/sdraw/01.po22
-rw-r--r--source/bg/helpcontent2/source/text/shared/00.po170
-rw-r--r--source/bg/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/bg/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/bg/helpcontent2/source/text/shared/guide.po1818
-rw-r--r--source/bg/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/bg/helpcontent2/source/text/simpress.po72
-rw-r--r--source/bg/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/bg/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/bg/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/bg/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/bg/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/bg/officecfg/registry/data/org/openoffice/Office/UI.po45
-rw-r--r--source/bg/sc/messages.po233
-rw-r--r--source/bg/scp2/source/calc.po12
-rw-r--r--source/bg/scp2/source/draw.po24
-rw-r--r--source/bg/scp2/source/impress.po22
-rw-r--r--source/bg/scp2/source/math.po14
-rw-r--r--source/bg/scp2/source/ooo.po14
-rw-r--r--source/bg/scp2/source/winexplorerext.po16
-rw-r--r--source/bg/scp2/source/writer.po24
-rw-r--r--source/bg/sd/messages.po350
-rw-r--r--source/bg/sfx2/messages.po300
-rw-r--r--source/bg/shell/messages.po52
-rw-r--r--source/bg/starmath/messages.po142
-rw-r--r--source/bg/svtools/messages.po648
-rw-r--r--source/bg/svx/messages.po116
-rw-r--r--source/bg/sw/messages.po316
-rw-r--r--source/bg/sysui/desktop/share.po76
-rw-r--r--source/bn-IN/cui/messages.po427
-rw-r--r--source/bn-IN/extensions/messages.po76
-rw-r--r--source/bn-IN/helpcontent2/source/auxiliary.po150
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/bn-IN/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/bn-IN/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/bn-IN/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/bn-IN/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/bn-IN/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/bn-IN/sc/messages.po225
-rw-r--r--source/bn-IN/scp2/source/ooo.po10
-rw-r--r--source/bn-IN/scp2/source/winexplorerext.po16
-rw-r--r--source/bn-IN/sd/messages.po336
-rw-r--r--source/bn-IN/sfx2/messages.po294
-rw-r--r--source/bn-IN/shell/messages.po44
-rw-r--r--source/bn-IN/starmath/messages.po134
-rw-r--r--source/bn-IN/svtools/messages.po606
-rw-r--r--source/bn-IN/svx/messages.po91
-rw-r--r--source/bn-IN/sw/messages.po274
-rw-r--r--source/bn/cui/messages.po425
-rw-r--r--source/bn/extensions/messages.po76
-rw-r--r--source/bn/helpcontent2/source/auxiliary.po150
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/bn/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/bn/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/bn/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/bn/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/bn/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/bn/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/bn/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/bn/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/bn/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/bn/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/bn/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/bn/sc/messages.po228
-rw-r--r--source/bn/scp2/source/ooo.po10
-rw-r--r--source/bn/scp2/source/winexplorerext.po16
-rw-r--r--source/bn/sd/messages.po336
-rw-r--r--source/bn/sfx2/messages.po296
-rw-r--r--source/bn/shell/messages.po44
-rw-r--r--source/bn/starmath/messages.po134
-rw-r--r--source/bn/svtools/messages.po606
-rw-r--r--source/bn/svx/messages.po92
-rw-r--r--source/bn/sw/messages.po274
-rw-r--r--source/bo/cui/messages.po425
-rw-r--r--source/bo/extensions/messages.po76
-rw-r--r--source/bo/helpcontent2/source/auxiliary.po150
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/bo/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/bo/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/bo/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/bo/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/bo/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/bo/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/bo/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/bo/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/bo/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/bo/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/bo/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/bo/sc/messages.po228
-rw-r--r--source/bo/scp2/source/ooo.po10
-rw-r--r--source/bo/scp2/source/winexplorerext.po13
-rw-r--r--source/bo/sd/messages.po336
-rw-r--r--source/bo/sfx2/messages.po295
-rw-r--r--source/bo/shell/messages.po44
-rw-r--r--source/bo/starmath/messages.po134
-rw-r--r--source/bo/svtools/messages.po606
-rw-r--r--source/bo/svx/messages.po92
-rw-r--r--source/bo/sw/messages.po272
-rw-r--r--source/br/cui/messages.po427
-rw-r--r--source/br/extensions/messages.po76
-rw-r--r--source/br/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/br/sc/messages.po225
-rw-r--r--source/br/scp2/source/ooo.po10
-rw-r--r--source/br/scp2/source/winexplorerext.po15
-rw-r--r--source/br/sd/messages.po336
-rw-r--r--source/br/sfx2/messages.po294
-rw-r--r--source/br/shell/messages.po44
-rw-r--r--source/br/starmath/messages.po134
-rw-r--r--source/br/svtools/messages.po606
-rw-r--r--source/br/svx/messages.po91
-rw-r--r--source/br/sw/messages.po274
-rw-r--r--source/brx/cui/messages.po425
-rw-r--r--source/brx/extensions/messages.po76
-rw-r--r--source/brx/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/brx/sc/messages.po228
-rw-r--r--source/brx/scp2/source/ooo.po10
-rw-r--r--source/brx/scp2/source/winexplorerext.po13
-rw-r--r--source/brx/sd/messages.po336
-rw-r--r--source/brx/sfx2/messages.po294
-rw-r--r--source/brx/shell/messages.po44
-rw-r--r--source/brx/starmath/messages.po134
-rw-r--r--source/brx/svtools/messages.po606
-rw-r--r--source/brx/svx/messages.po92
-rw-r--r--source/brx/sw/messages.po272
-rw-r--r--source/bs/cui/messages.po427
-rw-r--r--source/bs/extensions/messages.po76
-rw-r--r--source/bs/helpcontent2/source/auxiliary.po152
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/guide.po32
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/bs/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/bs/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/bs/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/bs/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/bs/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/bs/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/bs/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/bs/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/bs/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/bs/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/bs/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/bs/sc/messages.po226
-rw-r--r--source/bs/scp2/source/ooo.po10
-rw-r--r--source/bs/scp2/source/winexplorerext.po15
-rw-r--r--source/bs/sd/messages.po336
-rw-r--r--source/bs/sfx2/messages.po294
-rw-r--r--source/bs/shell/messages.po44
-rw-r--r--source/bs/starmath/messages.po134
-rw-r--r--source/bs/svtools/messages.po606
-rw-r--r--source/bs/svx/messages.po92
-rw-r--r--source/bs/sw/messages.po274
-rw-r--r--source/ca-valencia/cui/messages.po427
-rw-r--r--source/ca-valencia/extensions/messages.po76
-rw-r--r--source/ca-valencia/helpcontent2/source/auxiliary.po152
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/ca-valencia/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ca-valencia/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ca-valencia/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ca-valencia/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ca-valencia/sc/messages.po223
-rw-r--r--source/ca-valencia/scp2/source/ooo.po10
-rw-r--r--source/ca-valencia/scp2/source/winexplorerext.po17
-rw-r--r--source/ca-valencia/sd/messages.po336
-rw-r--r--source/ca-valencia/sfx2/messages.po294
-rw-r--r--source/ca-valencia/shell/messages.po44
-rw-r--r--source/ca-valencia/starmath/messages.po134
-rw-r--r--source/ca-valencia/svtools/messages.po606
-rw-r--r--source/ca-valencia/svx/messages.po91
-rw-r--r--source/ca-valencia/sw/messages.po274
-rw-r--r--source/ca/cui/messages.po427
-rw-r--r--source/ca/extensions/messages.po78
-rw-r--r--source/ca/helpcontent2/source/auxiliary.po166
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/guide.po42
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/python.po40
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/02.po20
-rw-r--r--source/ca/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/ca/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/ca/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/ca/helpcontent2/source/text/sdraw.po106
-rw-r--r--source/ca/helpcontent2/source/text/sdraw/00.po26
-rw-r--r--source/ca/helpcontent2/source/text/sdraw/01.po22
-rw-r--r--source/ca/helpcontent2/source/text/shared/00.po32
-rw-r--r--source/ca/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ca/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/ca/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ca/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/ca/helpcontent2/source/text/simpress.po74
-rw-r--r--source/ca/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ca/helpcontent2/source/text/swriter.po8
-rw-r--r--source/ca/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/ca/officecfg/registry/data/org/openoffice/Office/UI.po37
-rw-r--r--source/ca/sc/messages.po235
-rw-r--r--source/ca/scp2/source/ooo.po12
-rw-r--r--source/ca/scp2/source/winexplorerext.po12
-rw-r--r--source/ca/sd/messages.po352
-rw-r--r--source/ca/sfx2/messages.po302
-rw-r--r--source/ca/shell/messages.po47
-rw-r--r--source/ca/starmath/messages.po142
-rw-r--r--source/ca/svtools/messages.po616
-rw-r--r--source/ca/svx/messages.po118
-rw-r--r--source/ca/sw/messages.po316
-rw-r--r--source/cs/cui/messages.po481
-rw-r--r--source/cs/extensions/messages.po78
-rw-r--r--source/cs/helpcontent2/source/auxiliary.po156
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/cs/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/cs/helpcontent2/source/text/scalc/01.po70
-rw-r--r--source/cs/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/cs/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/cs/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/cs/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/cs/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/cs/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/cs/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/cs/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/cs/officecfg/registry/data/org/openoffice/Office/UI.po37
-rw-r--r--source/cs/sc/messages.po235
-rw-r--r--source/cs/scp2/source/ooo.po16
-rw-r--r--source/cs/scp2/source/winexplorerext.po15
-rw-r--r--source/cs/sd/messages.po346
-rw-r--r--source/cs/sfx2/messages.po306
-rw-r--r--source/cs/shell/messages.po52
-rw-r--r--source/cs/starmath/messages.po134
-rw-r--r--source/cs/svtools/messages.po608
-rw-r--r--source/cs/svx/messages.po116
-rw-r--r--source/cs/sw/messages.po324
-rw-r--r--source/cs/vcl/messages.po8
-rw-r--r--source/cy/cui/messages.po427
-rw-r--r--source/cy/extensions/messages.po78
-rw-r--r--source/cy/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/cy/sc/messages.po223
-rw-r--r--source/cy/scp2/source/ooo.po12
-rw-r--r--source/cy/scp2/source/winexplorerext.po15
-rw-r--r--source/cy/sd/messages.po344
-rw-r--r--source/cy/sfx2/messages.po300
-rw-r--r--source/cy/shell/messages.po44
-rw-r--r--source/cy/starmath/messages.po134
-rw-r--r--source/cy/svtools/messages.po606
-rw-r--r--source/cy/svx/messages.po91
-rw-r--r--source/cy/sw/messages.po274
-rw-r--r--source/da/cui/messages.po451
-rw-r--r--source/da/dbaccess/messages.po10
-rw-r--r--source/da/extensions/messages.po78
-rw-r--r--source/da/helpcontent2/source/auxiliary.po156
-rw-r--r--source/da/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/da/helpcontent2/source/text/sbasic/python.po172
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po56
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po27
-rw-r--r--source/da/helpcontent2/source/text/scalc/05.po10
-rw-r--r--source/da/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/da/helpcontent2/source/text/sdraw.po16
-rw-r--r--source/da/helpcontent2/source/text/sdraw/00.po12
-rw-r--r--source/da/helpcontent2/source/text/sdraw/01.po12
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po32
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po1593
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/da/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po89
-rw-r--r--source/da/sc/messages.po257
-rw-r--r--source/da/scp2/source/ooo.po14
-rw-r--r--source/da/scp2/source/winexplorerext.po15
-rw-r--r--source/da/sd/messages.po344
-rw-r--r--source/da/sfx2/messages.po300
-rw-r--r--source/da/shell/messages.po52
-rw-r--r--source/da/starmath/messages.po134
-rw-r--r--source/da/svtools/messages.po612
-rw-r--r--source/da/svx/messages.po112
-rw-r--r--source/da/sw/messages.po320
-rw-r--r--source/da/wizards/messages.po10
-rw-r--r--source/da/wizards/source/resources.po10
-rw-r--r--source/de/cui/messages.po513
-rw-r--r--source/de/dbaccess/messages.po8
-rw-r--r--source/de/desktop/messages.po8
-rw-r--r--source/de/extensions/messages.po78
-rw-r--r--source/de/helpcontent2/source/auxiliary.po156
-rw-r--r--source/de/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/de/helpcontent2/source/text/sbasic/python.po42
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared.po16
-rw-r--r--source/de/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po48
-rw-r--r--source/de/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/de/helpcontent2/source/text/sdraw.po42
-rw-r--r--source/de/helpcontent2/source/text/sdraw/00.po26
-rw-r--r--source/de/helpcontent2/source/text/sdraw/01.po22
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po20
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po1366
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po186
-rw-r--r--source/de/helpcontent2/source/text/simpress.po74
-rw-r--r--source/de/helpcontent2/source/text/simpress/00.po22
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po40
-rw-r--r--source/de/helpcontent2/source/text/simpress/02.po10
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po14
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po24
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po54
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po47
-rw-r--r--source/de/sc/messages.po235
-rw-r--r--source/de/scp2/source/activex.po8
-rw-r--r--source/de/scp2/source/ooo.po14
-rw-r--r--source/de/scp2/source/winexplorerext.po8
-rw-r--r--source/de/sd/messages.po354
-rw-r--r--source/de/sfx2/messages.po300
-rw-r--r--source/de/shell/messages.po52
-rw-r--r--source/de/starmath/messages.po134
-rw-r--r--source/de/svtools/messages.po612
-rw-r--r--source/de/svx/messages.po116
-rw-r--r--source/de/sw/messages.po316
-rw-r--r--source/dgo/cui/messages.po425
-rw-r--r--source/dgo/extensions/messages.po76
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/dgo/sc/messages.po228
-rw-r--r--source/dgo/scp2/source/ooo.po10
-rw-r--r--source/dgo/scp2/source/winexplorerext.po13
-rw-r--r--source/dgo/sd/messages.po336
-rw-r--r--source/dgo/sfx2/messages.po294
-rw-r--r--source/dgo/shell/messages.po44
-rw-r--r--source/dgo/starmath/messages.po134
-rw-r--r--source/dgo/svtools/messages.po606
-rw-r--r--source/dgo/svx/messages.po92
-rw-r--r--source/dgo/sw/messages.po276
-rw-r--r--source/dsb/cui/messages.po427
-rw-r--r--source/dsb/extensions/messages.po78
-rw-r--r--source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po35
-rw-r--r--source/dsb/sc/messages.po233
-rw-r--r--source/dsb/scp2/source/ooo.po14
-rw-r--r--source/dsb/scp2/source/winexplorerext.po8
-rw-r--r--source/dsb/sd/messages.po344
-rw-r--r--source/dsb/sfx2/messages.po300
-rw-r--r--source/dsb/shell/messages.po51
-rw-r--r--source/dsb/starmath/messages.po134
-rw-r--r--source/dsb/svtools/messages.po608
-rw-r--r--source/dsb/svx/messages.po97
-rw-r--r--source/dsb/sw/messages.po278
-rw-r--r--source/dz/cui/messages.po425
-rw-r--r--source/dz/extensions/messages.po76
-rw-r--r--source/dz/helpcontent2/source/auxiliary.po150
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/dz/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/dz/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/dz/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/dz/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/dz/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/dz/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/dz/sc/messages.po228
-rw-r--r--source/dz/scp2/source/ooo.po10
-rw-r--r--source/dz/scp2/source/winexplorerext.po13
-rw-r--r--source/dz/sd/messages.po336
-rw-r--r--source/dz/sfx2/messages.po296
-rw-r--r--source/dz/shell/messages.po44
-rw-r--r--source/dz/starmath/messages.po134
-rw-r--r--source/dz/svtools/messages.po606
-rw-r--r--source/dz/svx/messages.po92
-rw-r--r--source/dz/sw/messages.po270
-rw-r--r--source/el/cui/messages.po427
-rw-r--r--source/el/extensions/messages.po78
-rw-r--r--source/el/helpcontent2/source/auxiliary.po156
-rw-r--r--source/el/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/el/helpcontent2/source/text/sbasic/python.po46
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/el/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/el/helpcontent2/source/text/scalc/01.po48
-rw-r--r--source/el/helpcontent2/source/text/schart/00.po14
-rw-r--r--source/el/helpcontent2/source/text/sdraw.po42
-rw-r--r--source/el/helpcontent2/source/text/sdraw/00.po26
-rw-r--r--source/el/helpcontent2/source/text/sdraw/01.po22
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/el/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/el/helpcontent2/source/text/shared/guide.po1824
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/el/helpcontent2/source/text/simpress.po10
-rw-r--r--source/el/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/el/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/el/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/el/helpcontent2/source/text/smath/01.po12
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po37
-rw-r--r--source/el/sc/messages.po231
-rw-r--r--source/el/scp2/source/ooo.po14
-rw-r--r--source/el/scp2/source/winexplorerext.po16
-rw-r--r--source/el/sd/messages.po344
-rw-r--r--source/el/sfx2/messages.po300
-rw-r--r--source/el/shell/messages.po52
-rw-r--r--source/el/starmath/messages.po134
-rw-r--r--source/el/svtools/messages.po612
-rw-r--r--source/el/svx/messages.po115
-rw-r--r--source/el/sw/messages.po284
-rw-r--r--source/en-GB/cui/messages.po427
-rw-r--r--source/en-GB/extensions/messages.po78
-rw-r--r--source/en-GB/helpcontent2/source/auxiliary.po156
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/python.po46
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/en-GB/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/en-GB/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/en-GB/sc/messages.po223
-rw-r--r--source/en-GB/scp2/source/ooo.po12
-rw-r--r--source/en-GB/scp2/source/winexplorerext.po15
-rw-r--r--source/en-GB/sd/messages.po344
-rw-r--r--source/en-GB/sfx2/messages.po300
-rw-r--r--source/en-GB/shell/messages.po44
-rw-r--r--source/en-GB/starmath/messages.po134
-rw-r--r--source/en-GB/svtools/messages.po606
-rw-r--r--source/en-GB/svx/messages.po91
-rw-r--r--source/en-GB/sw/messages.po274
-rw-r--r--source/en-ZA/cui/messages.po425
-rw-r--r--source/en-ZA/extensions/messages.po76
-rw-r--r--source/en-ZA/helpcontent2/source/auxiliary.po150
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/en-ZA/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/en-ZA/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/en-ZA/sc/messages.po228
-rw-r--r--source/en-ZA/scp2/source/ooo.po10
-rw-r--r--source/en-ZA/scp2/source/winexplorerext.po15
-rw-r--r--source/en-ZA/sd/messages.po336
-rw-r--r--source/en-ZA/sfx2/messages.po294
-rw-r--r--source/en-ZA/shell/messages.po44
-rw-r--r--source/en-ZA/starmath/messages.po134
-rw-r--r--source/en-ZA/svtools/messages.po606
-rw-r--r--source/en-ZA/svx/messages.po92
-rw-r--r--source/en-ZA/sw/messages.po272
-rw-r--r--source/eo/basctl/messages.po18
-rw-r--r--source/eo/cui/messages.po431
-rw-r--r--source/eo/dbaccess/messages.po8
-rw-r--r--source/eo/extensions/messages.po104
-rw-r--r--source/eo/filter/messages.po18
-rw-r--r--source/eo/helpcontent2/source/auxiliary.po154
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/guide.po32
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/eo/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/eo/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/eo/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/eo/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po37
-rw-r--r--source/eo/sc/messages.po229
-rw-r--r--source/eo/scp2/source/ooo.po12
-rw-r--r--source/eo/scp2/source/winexplorerext.po13
-rw-r--r--source/eo/sd/messages.po346
-rw-r--r--source/eo/sfx2/messages.po300
-rw-r--r--source/eo/shell/messages.po44
-rw-r--r--source/eo/starmath/messages.po134
-rw-r--r--source/eo/svtools/messages.po612
-rw-r--r--source/eo/svx/messages.po124
-rw-r--r--source/eo/sw/messages.po316
-rw-r--r--source/es/cui/messages.po439
-rw-r--r--source/es/extensions/messages.po78
-rw-r--r--source/es/helpcontent2/source/auxiliary.po156
-rw-r--r--source/es/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/es/helpcontent2/source/text/sbasic/python.po44
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po16
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/es/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po73
-rw-r--r--source/es/sc/messages.po313
-rw-r--r--source/es/scp2/source/ooo.po14
-rw-r--r--source/es/scp2/source/winexplorerext.po15
-rw-r--r--source/es/sd/messages.po344
-rw-r--r--source/es/sfx2/messages.po300
-rw-r--r--source/es/shell/messages.po52
-rw-r--r--source/es/starmath/messages.po140
-rw-r--r--source/es/svtools/messages.po616
-rw-r--r--source/es/svx/messages.po130
-rw-r--r--source/es/sw/messages.po286
-rw-r--r--source/et/cui/messages.po427
-rw-r--r--source/et/extensions/messages.po76
-rw-r--r--source/et/helpcontent2/source/auxiliary.po152
-rw-r--r--source/et/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/et/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/et/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/et/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/et/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/et/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/et/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/et/sc/messages.po223
-rw-r--r--source/et/scp2/source/ooo.po10
-rw-r--r--source/et/scp2/source/winexplorerext.po15
-rw-r--r--source/et/sd/messages.po336
-rw-r--r--source/et/sfx2/messages.po294
-rw-r--r--source/et/shell/messages.po44
-rw-r--r--source/et/starmath/messages.po134
-rw-r--r--source/et/svtools/messages.po606
-rw-r--r--source/et/svx/messages.po91
-rw-r--r--source/et/sw/messages.po274
-rw-r--r--source/eu/cui/messages.po619
-rw-r--r--source/eu/extensions/messages.po78
-rw-r--r--source/eu/helpcontent2/source/auxiliary.po156
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/python.po72
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po58
-rw-r--r--source/eu/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/eu/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/sdraw.po8
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/00.po22
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/01.po22
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po84
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/eu/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po1814
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po192
-rw-r--r--source/eu/helpcontent2/source/text/simpress.po10
-rw-r--r--source/eu/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/eu/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/eu/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po38
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po63
-rw-r--r--source/eu/sc/messages.po237
-rw-r--r--source/eu/scp2/source/ooo.po14
-rw-r--r--source/eu/scp2/source/winexplorerext.po15
-rw-r--r--source/eu/sd/messages.po350
-rw-r--r--source/eu/sfx2/messages.po298
-rw-r--r--source/eu/shell/messages.po52
-rw-r--r--source/eu/starmath/messages.po134
-rw-r--r--source/eu/svtools/messages.po612
-rw-r--r--source/eu/svx/messages.po116
-rw-r--r--source/eu/sw/messages.po314
-rw-r--r--source/fa/basctl/messages.po18
-rw-r--r--source/fa/cui/messages.po425
-rw-r--r--source/fa/extensions/messages.po76
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/fa/sc/messages.po228
-rw-r--r--source/fa/scp2/source/ooo.po10
-rw-r--r--source/fa/scp2/source/winexplorerext.po15
-rw-r--r--source/fa/sd/messages.po336
-rw-r--r--source/fa/sfx2/messages.po294
-rw-r--r--source/fa/shell/messages.po52
-rw-r--r--source/fa/starmath/messages.po134
-rw-r--r--source/fa/svtools/messages.po606
-rw-r--r--source/fa/svx/messages.po92
-rw-r--r--source/fa/sw/messages.po274
-rw-r--r--source/fi/chart2/messages.po10
-rw-r--r--source/fi/cui/messages.po427
-rw-r--r--source/fi/extensions/messages.po76
-rw-r--r--source/fi/helpcontent2/source/auxiliary.po152
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/fi/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/fi/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/fi/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/fi/sc/messages.po223
-rw-r--r--source/fi/scp2/source/ooo.po10
-rw-r--r--source/fi/scp2/source/winexplorerext.po15
-rw-r--r--source/fi/sd/messages.po336
-rw-r--r--source/fi/sfx2/messages.po294
-rw-r--r--source/fi/shell/messages.po44
-rw-r--r--source/fi/starmath/messages.po134
-rw-r--r--source/fi/svtools/messages.po606
-rw-r--r--source/fi/svx/messages.po91
-rw-r--r--source/fi/sw/messages.po274
-rw-r--r--source/fr/cui/messages.po435
-rw-r--r--source/fr/extensions/messages.po78
-rw-r--r--source/fr/formula/messages.po12
-rw-r--r--source/fr/helpcontent2/source/auxiliary.po164
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/fr/helpcontent2/source/text/scalc/00.po26
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po200
-rw-r--r--source/fr/helpcontent2/source/text/scalc/02.po10
-rw-r--r--source/fr/helpcontent2/source/text/scalc/04.po20
-rw-r--r--source/fr/helpcontent2/source/text/scalc/05.po32
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po18
-rw-r--r--source/fr/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/fr/helpcontent2/source/text/sdraw.po106
-rw-r--r--source/fr/helpcontent2/source/text/sdraw/00.po18
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po316
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po118
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po534
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po2000
-rw-r--r--source/fr/helpcontent2/source/text/shared/help.po8
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/fr/helpcontent2/source/text/simpress.po78
-rw-r--r--source/fr/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/fr/helpcontent2/source/text/swriter/00.po188
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po36
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po54
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po223
-rw-r--r--source/fr/sc/messages.po230
-rw-r--r--source/fr/scp2/source/ooo.po14
-rw-r--r--source/fr/scp2/source/winexplorerext.po15
-rw-r--r--source/fr/sd/messages.po346
-rw-r--r--source/fr/sfx2/messages.po321
-rw-r--r--source/fr/shell/messages.po52
-rw-r--r--source/fr/starmath/messages.po134
-rw-r--r--source/fr/svtools/messages.po608
-rw-r--r--source/fr/svx/messages.po120
-rw-r--r--source/fr/sw/messages.po469
-rw-r--r--source/fr/vcl/messages.po184
-rw-r--r--source/fr/wizards/messages.po52
-rw-r--r--source/fr/wizards/source/resources.po12
-rw-r--r--source/fy/cui/messages.po435
-rw-r--r--source/fy/extensions/messages.po78
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po37
-rw-r--r--source/fy/sc/messages.po231
-rw-r--r--source/fy/scp2/source/ooo.po14
-rw-r--r--source/fy/scp2/source/winexplorerext.po8
-rw-r--r--source/fy/sd/messages.po346
-rw-r--r--source/fy/sfx2/messages.po300
-rw-r--r--source/fy/shell/messages.po52
-rw-r--r--source/fy/starmath/messages.po134
-rw-r--r--source/fy/svtools/messages.po612
-rw-r--r--source/fy/svx/messages.po116
-rw-r--r--source/fy/sw/messages.po336
-rw-r--r--source/fy/vcl/messages.po36
-rw-r--r--source/fy/wizards/messages.po10
-rw-r--r--source/fy/wizards/source/resources.po8
-rw-r--r--source/ga/cui/messages.po427
-rw-r--r--source/ga/extensions/messages.po76
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ga/sc/messages.po223
-rw-r--r--source/ga/scp2/source/ooo.po10
-rw-r--r--source/ga/scp2/source/winexplorerext.po14
-rw-r--r--source/ga/sd/messages.po344
-rw-r--r--source/ga/sfx2/messages.po298
-rw-r--r--source/ga/shell/messages.po44
-rw-r--r--source/ga/starmath/messages.po134
-rw-r--r--source/ga/svtools/messages.po606
-rw-r--r--source/ga/svx/messages.po91
-rw-r--r--source/ga/sw/messages.po274
-rw-r--r--source/gd/cui/messages.po427
-rw-r--r--source/gd/dbaccess/messages.po8
-rw-r--r--source/gd/extensions/messages.po78
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po61
-rw-r--r--source/gd/sc/messages.po223
-rw-r--r--source/gd/scp2/source/ooo.po12
-rw-r--r--source/gd/scp2/source/winexplorerext.po15
-rw-r--r--source/gd/sd/messages.po344
-rw-r--r--source/gd/sfx2/messages.po300
-rw-r--r--source/gd/shell/messages.po44
-rw-r--r--source/gd/starmath/messages.po134
-rw-r--r--source/gd/svtools/messages.po606
-rw-r--r--source/gd/svx/messages.po91
-rw-r--r--source/gd/sw/messages.po276
-rw-r--r--source/gl/cui/messages.po437
-rw-r--r--source/gl/extensions/messages.po78
-rw-r--r--source/gl/helpcontent2/source/auxiliary.po154
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/gl/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/gl/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/gl/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po39
-rw-r--r--source/gl/sc/messages.po229
-rw-r--r--source/gl/scp2/source/ooo.po12
-rw-r--r--source/gl/scp2/source/winexplorerext.po15
-rw-r--r--source/gl/sd/messages.po352
-rw-r--r--source/gl/sfx2/messages.po300
-rw-r--r--source/gl/shell/messages.po44
-rw-r--r--source/gl/starmath/messages.po134
-rw-r--r--source/gl/svtools/messages.po660
-rw-r--r--source/gl/svx/messages.po118
-rw-r--r--source/gl/sw/messages.po320
-rw-r--r--source/gu/cui/messages.po427
-rw-r--r--source/gu/extensions/messages.po76
-rw-r--r--source/gu/helpcontent2/source/auxiliary.po150
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/gu/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/gu/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/gu/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/gu/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/gu/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/gu/sc/messages.po226
-rw-r--r--source/gu/scp2/source/ooo.po10
-rw-r--r--source/gu/scp2/source/winexplorerext.po15
-rw-r--r--source/gu/sd/messages.po336
-rw-r--r--source/gu/sfx2/messages.po294
-rw-r--r--source/gu/shell/messages.po44
-rw-r--r--source/gu/starmath/messages.po134
-rw-r--r--source/gu/svtools/messages.po606
-rw-r--r--source/gu/svx/messages.po92
-rw-r--r--source/gu/sw/messages.po272
-rw-r--r--source/gug/cui/messages.po427
-rw-r--r--source/gug/extensions/messages.po76
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/gug/sc/messages.po224
-rw-r--r--source/gug/scp2/source/ooo.po10
-rw-r--r--source/gug/scp2/source/winexplorerext.po14
-rw-r--r--source/gug/sd/messages.po336
-rw-r--r--source/gug/sfx2/messages.po294
-rw-r--r--source/gug/shell/messages.po44
-rw-r--r--source/gug/starmath/messages.po134
-rw-r--r--source/gug/svtools/messages.po604
-rw-r--r--source/gug/svx/messages.po91
-rw-r--r--source/gug/sw/messages.po276
-rw-r--r--source/he/cui/messages.po427
-rw-r--r--source/he/extensions/messages.po76
-rw-r--r--source/he/helpcontent2/source/auxiliary.po152
-rw-r--r--source/he/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/he/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/he/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/he/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/he/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/he/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/he/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/he/sc/messages.po225
-rw-r--r--source/he/scp2/source/ooo.po10
-rw-r--r--source/he/scp2/source/winexplorerext.po16
-rw-r--r--source/he/sd/messages.po336
-rw-r--r--source/he/sfx2/messages.po294
-rw-r--r--source/he/shell/messages.po44
-rw-r--r--source/he/starmath/messages.po134
-rw-r--r--source/he/svtools/messages.po606
-rw-r--r--source/he/svx/messages.po92
-rw-r--r--source/he/sw/messages.po272
-rw-r--r--source/hi/cui/messages.po425
-rw-r--r--source/hi/extensions/messages.po76
-rw-r--r--source/hi/helpcontent2/source/auxiliary.po150
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/guide.po32
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/hi/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/hi/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/hi/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/hi/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/hi/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/hi/sc/messages.po225
-rw-r--r--source/hi/scp2/source/ooo.po10
-rw-r--r--source/hi/scp2/source/winexplorerext.po15
-rw-r--r--source/hi/sd/messages.po336
-rw-r--r--source/hi/sfx2/messages.po294
-rw-r--r--source/hi/shell/messages.po44
-rw-r--r--source/hi/starmath/messages.po134
-rw-r--r--source/hi/svtools/messages.po606
-rw-r--r--source/hi/svx/messages.po92
-rw-r--r--source/hi/sw/messages.po274
-rw-r--r--source/hr/basctl/messages.po20
-rw-r--r--source/hr/chart2/messages.po8
-rw-r--r--source/hr/cui/messages.po427
-rw-r--r--source/hr/dbaccess/messages.po10
-rw-r--r--source/hr/extensions/messages.po76
-rw-r--r--source/hr/filter/messages.po12
-rw-r--r--source/hr/formula/messages.po10
-rw-r--r--source/hr/helpcontent2/source/auxiliary.po152
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/hr/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/hr/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/hr/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/hr/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/hr/sc/messages.po223
-rw-r--r--source/hr/scp2/source/ooo.po10
-rw-r--r--source/hr/scp2/source/winexplorerext.po15
-rw-r--r--source/hr/sd/messages.po340
-rw-r--r--source/hr/sfx2/messages.po294
-rw-r--r--source/hr/shell/messages.po44
-rw-r--r--source/hr/starmath/messages.po134
-rw-r--r--source/hr/svtools/messages.po606
-rw-r--r--source/hr/svx/messages.po91
-rw-r--r--source/hr/sw/messages.po274
-rw-r--r--source/hr/xmlsecurity/messages.po12
-rw-r--r--source/hsb/cui/messages.po427
-rw-r--r--source/hsb/extensions/messages.po78
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po37
-rw-r--r--source/hsb/sc/messages.po233
-rw-r--r--source/hsb/scp2/source/ooo.po14
-rw-r--r--source/hsb/scp2/source/winexplorerext.po8
-rw-r--r--source/hsb/sd/messages.po344
-rw-r--r--source/hsb/sfx2/messages.po300
-rw-r--r--source/hsb/shell/messages.po51
-rw-r--r--source/hsb/starmath/messages.po134
-rw-r--r--source/hsb/svtools/messages.po608
-rw-r--r--source/hsb/svx/messages.po97
-rw-r--r--source/hsb/sw/messages.po276
-rw-r--r--source/hu/basctl/messages.po20
-rw-r--r--source/hu/cui/messages.po435
-rw-r--r--source/hu/extensions/messages.po76
-rw-r--r--source/hu/formula/messages.po10
-rw-r--r--source/hu/helpcontent2/source/auxiliary.po154
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/hu/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/hu/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/hu/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/hu/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po89
-rw-r--r--source/hu/sc/messages.po223
-rw-r--r--source/hu/scp2/source/ooo.po16
-rw-r--r--source/hu/scp2/source/winexplorerext.po14
-rw-r--r--source/hu/sd/messages.po382
-rw-r--r--source/hu/sfx2/messages.po304
-rw-r--r--source/hu/shell/messages.po52
-rw-r--r--source/hu/starmath/messages.po134
-rw-r--r--source/hu/svtools/messages.po618
-rw-r--r--source/hu/svx/messages.po128
-rw-r--r--source/hu/sw/messages.po407
-rw-r--r--source/hu/vcl/messages.po80
-rw-r--r--source/hu/wizards/messages.po10
-rw-r--r--source/hu/wizards/source/resources.po10
-rw-r--r--source/hu/xmlsecurity/messages.po12
-rw-r--r--source/id/cui/messages.po443
-rw-r--r--source/id/extensions/messages.po78
-rw-r--r--source/id/helpcontent2/source/auxiliary.po164
-rw-r--r--source/id/helpcontent2/source/text/sbasic/guide.po42
-rw-r--r--source/id/helpcontent2/source/text/sbasic/python.po50
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/id/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/id/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/id/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/id/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/id/sc/messages.po223
-rw-r--r--source/id/scp2/source/ooo.po10
-rw-r--r--source/id/scp2/source/winexplorerext.po17
-rw-r--r--source/id/sd/messages.po344
-rw-r--r--source/id/sfx2/messages.po298
-rw-r--r--source/id/shell/messages.po44
-rw-r--r--source/id/starmath/messages.po134
-rw-r--r--source/id/svtools/messages.po606
-rw-r--r--source/id/svx/messages.po91
-rw-r--r--source/id/sw/messages.po276
-rw-r--r--source/is/basctl/messages.po8
-rw-r--r--source/is/cui/messages.po427
-rw-r--r--source/is/extensions/messages.po76
-rw-r--r--source/is/filter/messages.po18
-rw-r--r--source/is/helpcontent2/source/auxiliary.po180
-rw-r--r--source/is/helpcontent2/source/text/sbasic/guide.po30
-rw-r--r--source/is/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/is/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/is/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/is/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/is/helpcontent2/source/text/simpress.po74
-rw-r--r--source/is/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/is/helpcontent2/source/text/smath.po8
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/is/sc/messages.po223
-rw-r--r--source/is/scp2/source/ooo.po14
-rw-r--r--source/is/scp2/source/winexplorerext.po17
-rw-r--r--source/is/sd/messages.po336
-rw-r--r--source/is/sfx2/messages.po300
-rw-r--r--source/is/shell/messages.po52
-rw-r--r--source/is/starmath/messages.po134
-rw-r--r--source/is/svtools/messages.po616
-rw-r--r--source/is/svx/messages.po103
-rw-r--r--source/is/sw/messages.po274
-rw-r--r--source/it/cui/messages.po427
-rw-r--r--source/it/extensions/messages.po76
-rw-r--r--source/it/helpcontent2/source/auxiliary.po154
-rw-r--r--source/it/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/it/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/it/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/it/sc/messages.po223
-rw-r--r--source/it/scp2/source/ooo.po10
-rw-r--r--source/it/scp2/source/winexplorerext.po15
-rw-r--r--source/it/sd/messages.po344
-rw-r--r--source/it/sfx2/messages.po298
-rw-r--r--source/it/shell/messages.po44
-rw-r--r--source/it/starmath/messages.po134
-rw-r--r--source/it/svtools/messages.po606
-rw-r--r--source/it/svx/messages.po91
-rw-r--r--source/it/sw/messages.po274
-rw-r--r--source/ja/cui/messages.po437
-rw-r--r--source/ja/extensions/messages.po76
-rw-r--r--source/ja/helpcontent2/source/auxiliary.po152
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ja/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/ja/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ja/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ja/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ja/sc/messages.po223
-rw-r--r--source/ja/scp2/source/ooo.po10
-rw-r--r--source/ja/scp2/source/winexplorerext.po15
-rw-r--r--source/ja/sd/messages.po342
-rw-r--r--source/ja/sfx2/messages.po294
-rw-r--r--source/ja/shell/messages.po44
-rw-r--r--source/ja/starmath/messages.po134
-rw-r--r--source/ja/svtools/messages.po606
-rw-r--r--source/ja/svx/messages.po91
-rw-r--r--source/ja/sw/messages.po272
-rw-r--r--source/jv/cui/messages.po425
-rw-r--r--source/jv/extensions/messages.po76
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/jv/sc/messages.po226
-rw-r--r--source/jv/scp2/source/ooo.po10
-rw-r--r--source/jv/scp2/source/winexplorerext.po6
-rw-r--r--source/jv/sd/messages.po336
-rw-r--r--source/jv/sfx2/messages.po294
-rw-r--r--source/jv/shell/messages.po44
-rw-r--r--source/jv/starmath/messages.po134
-rw-r--r--source/jv/svtools/messages.po604
-rw-r--r--source/jv/svx/messages.po91
-rw-r--r--source/jv/sw/messages.po272
-rw-r--r--source/ka/cui/messages.po425
-rw-r--r--source/ka/extensions/messages.po76
-rw-r--r--source/ka/helpcontent2/source/auxiliary.po150
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/guide.po32
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ka/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/ka/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ka/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ka/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ka/sc/messages.po225
-rw-r--r--source/ka/scp2/source/ooo.po10
-rw-r--r--source/ka/scp2/source/winexplorerext.po13
-rw-r--r--source/ka/sd/messages.po336
-rw-r--r--source/ka/sfx2/messages.po294
-rw-r--r--source/ka/shell/messages.po44
-rw-r--r--source/ka/starmath/messages.po134
-rw-r--r--source/ka/svtools/messages.po606
-rw-r--r--source/ka/svx/messages.po92
-rw-r--r--source/ka/sw/messages.po272
-rw-r--r--source/kab/cui/messages.po427
-rw-r--r--source/kab/extensions/messages.po76
-rw-r--r--source/kab/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/kab/sc/messages.po223
-rw-r--r--source/kab/scp2/source/ooo.po10
-rw-r--r--source/kab/scp2/source/winexplorerext.po6
-rw-r--r--source/kab/sd/messages.po336
-rw-r--r--source/kab/sfx2/messages.po294
-rw-r--r--source/kab/shell/messages.po44
-rw-r--r--source/kab/starmath/messages.po134
-rw-r--r--source/kab/svtools/messages.po606
-rw-r--r--source/kab/svx/messages.po91
-rw-r--r--source/kab/sw/messages.po276
-rw-r--r--source/kk/cui/messages.po427
-rw-r--r--source/kk/dbaccess/messages.po8
-rw-r--r--source/kk/extensions/messages.po104
-rw-r--r--source/kk/filter/messages.po18
-rw-r--r--source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/kk/sc/messages.po223
-rw-r--r--source/kk/scp2/source/ooo.po12
-rw-r--r--source/kk/scp2/source/winexplorerext.po12
-rw-r--r--source/kk/sd/messages.po368
-rw-r--r--source/kk/sfx2/messages.po298
-rw-r--r--source/kk/shell/messages.po44
-rw-r--r--source/kk/starmath/messages.po134
-rw-r--r--source/kk/svtools/messages.po606
-rw-r--r--source/kk/svx/messages.po91
-rw-r--r--source/kk/sw/messages.po276
-rw-r--r--source/kk/uui/messages.po13
-rw-r--r--source/kl/cui/messages.po425
-rw-r--r--source/kl/extensions/messages.po76
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/kl/sc/messages.po226
-rw-r--r--source/kl/scp2/source/ooo.po10
-rw-r--r--source/kl/scp2/source/winexplorerext.po14
-rw-r--r--source/kl/sd/messages.po336
-rw-r--r--source/kl/sfx2/messages.po294
-rw-r--r--source/kl/shell/messages.po44
-rw-r--r--source/kl/starmath/messages.po134
-rw-r--r--source/kl/svtools/messages.po604
-rw-r--r--source/kl/svx/messages.po91
-rw-r--r--source/kl/sw/messages.po272
-rw-r--r--source/km/cui/messages.po427
-rw-r--r--source/km/extensions/messages.po76
-rw-r--r--source/km/helpcontent2/source/auxiliary.po152
-rw-r--r--source/km/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/km/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/km/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/km/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/km/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/km/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/km/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/km/sc/messages.po226
-rw-r--r--source/km/scp2/source/ooo.po10
-rw-r--r--source/km/scp2/source/winexplorerext.po13
-rw-r--r--source/km/sd/messages.po336
-rw-r--r--source/km/sfx2/messages.po294
-rw-r--r--source/km/shell/messages.po44
-rw-r--r--source/km/starmath/messages.po134
-rw-r--r--source/km/svtools/messages.po606
-rw-r--r--source/km/svx/messages.po92
-rw-r--r--source/km/sw/messages.po274
-rw-r--r--source/kmr-Latn/cui/messages.po425
-rw-r--r--source/kmr-Latn/extensions/messages.po76
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/kmr-Latn/sc/messages.po228
-rw-r--r--source/kmr-Latn/scp2/source/ooo.po10
-rw-r--r--source/kmr-Latn/scp2/source/winexplorerext.po17
-rw-r--r--source/kmr-Latn/sd/messages.po336
-rw-r--r--source/kmr-Latn/sfx2/messages.po294
-rw-r--r--source/kmr-Latn/shell/messages.po44
-rw-r--r--source/kmr-Latn/starmath/messages.po134
-rw-r--r--source/kmr-Latn/svtools/messages.po606
-rw-r--r--source/kmr-Latn/svx/messages.po91
-rw-r--r--source/kmr-Latn/sw/messages.po272
-rw-r--r--source/kn/cui/messages.po427
-rw-r--r--source/kn/extensions/messages.po76
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/kn/sc/messages.po227
-rw-r--r--source/kn/scp2/source/ooo.po10
-rw-r--r--source/kn/scp2/source/winexplorerext.po15
-rw-r--r--source/kn/sd/messages.po336
-rw-r--r--source/kn/sfx2/messages.po295
-rw-r--r--source/kn/shell/messages.po44
-rw-r--r--source/kn/starmath/messages.po134
-rw-r--r--source/kn/svtools/messages.po606
-rw-r--r--source/kn/svx/messages.po92
-rw-r--r--source/kn/sw/messages.po274
-rw-r--r--source/ko/basctl/messages.po18
-rw-r--r--source/ko/cui/messages.po427
-rw-r--r--source/ko/extensions/messages.po76
-rw-r--r--source/ko/helpcontent2/source/auxiliary.po152
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ko/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/ko/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ko/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ko/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ko/sc/messages.po223
-rw-r--r--source/ko/scp2/source/ooo.po10
-rw-r--r--source/ko/scp2/source/winexplorerext.po8
-rw-r--r--source/ko/sd/messages.po344
-rw-r--r--source/ko/sfx2/messages.po296
-rw-r--r--source/ko/shell/messages.po44
-rw-r--r--source/ko/starmath/messages.po134
-rw-r--r--source/ko/svtools/messages.po606
-rw-r--r--source/ko/svx/messages.po91
-rw-r--r--source/ko/sw/messages.po276
-rw-r--r--source/kok/cui/messages.po425
-rw-r--r--source/kok/extensions/messages.po76
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/kok/sc/messages.po228
-rw-r--r--source/kok/scp2/source/ooo.po10
-rw-r--r--source/kok/scp2/source/winexplorerext.po13
-rw-r--r--source/kok/sd/messages.po336
-rw-r--r--source/kok/sfx2/messages.po294
-rw-r--r--source/kok/shell/messages.po44
-rw-r--r--source/kok/starmath/messages.po134
-rw-r--r--source/kok/svtools/messages.po606
-rw-r--r--source/kok/svx/messages.po92
-rw-r--r--source/kok/sw/messages.po275
-rw-r--r--source/ks/cui/messages.po425
-rw-r--r--source/ks/extensions/messages.po76
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ks/sc/messages.po228
-rw-r--r--source/ks/scp2/source/ooo.po10
-rw-r--r--source/ks/scp2/source/winexplorerext.po13
-rw-r--r--source/ks/sd/messages.po336
-rw-r--r--source/ks/sfx2/messages.po296
-rw-r--r--source/ks/shell/messages.po44
-rw-r--r--source/ks/starmath/messages.po134
-rw-r--r--source/ks/svtools/messages.po606
-rw-r--r--source/ks/svx/messages.po92
-rw-r--r--source/ks/sw/messages.po272
-rw-r--r--source/ky/cui/messages.po425
-rw-r--r--source/ky/extensions/messages.po76
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ky/sc/messages.po223
-rw-r--r--source/ky/scp2/source/ooo.po10
-rw-r--r--source/ky/scp2/source/winexplorerext.po14
-rw-r--r--source/ky/sd/messages.po336
-rw-r--r--source/ky/sfx2/messages.po294
-rw-r--r--source/ky/shell/messages.po44
-rw-r--r--source/ky/starmath/messages.po134
-rw-r--r--source/ky/svtools/messages.po604
-rw-r--r--source/ky/svx/messages.po91
-rw-r--r--source/ky/sw/messages.po270
-rw-r--r--source/lb/cui/messages.po425
-rw-r--r--source/lb/extensions/messages.po76
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/lb/sc/messages.po228
-rw-r--r--source/lb/scp2/source/ooo.po10
-rw-r--r--source/lb/scp2/source/winexplorerext.po13
-rw-r--r--source/lb/sd/messages.po336
-rw-r--r--source/lb/sfx2/messages.po294
-rw-r--r--source/lb/shell/messages.po44
-rw-r--r--source/lb/starmath/messages.po134
-rw-r--r--source/lb/svtools/messages.po604
-rw-r--r--source/lb/svx/messages.po91
-rw-r--r--source/lb/sw/messages.po270
-rw-r--r--source/lo/cui/messages.po425
-rw-r--r--source/lo/extensions/messages.po76
-rw-r--r--source/lo/helpcontent2/source/auxiliary.po150
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/guide.po30
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/lo/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/lo/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/lo/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/lo/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/lo/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/lo/sc/messages.po228
-rw-r--r--source/lo/scp2/source/ooo.po10
-rw-r--r--source/lo/scp2/source/winexplorerext.po13
-rw-r--r--source/lo/sd/messages.po336
-rw-r--r--source/lo/sfx2/messages.po294
-rw-r--r--source/lo/shell/messages.po44
-rw-r--r--source/lo/starmath/messages.po134
-rw-r--r--source/lo/svtools/messages.po606
-rw-r--r--source/lo/svx/messages.po91
-rw-r--r--source/lo/sw/messages.po270
-rw-r--r--source/lt/cui/messages.po503
-rw-r--r--source/lt/extensions/messages.po86
-rw-r--r--source/lt/filter/messages.po14
-rw-r--r--source/lt/filter/source/config/fragments/filters.po8
-rw-r--r--source/lt/formula/messages.po8
-rw-r--r--source/lt/helpcontent2/source/auxiliary.po156
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/guide.po30
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/lt/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po38
-rw-r--r--source/lt/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po124
-rw-r--r--source/lt/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po1526
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/lt/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po394
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po74
-rw-r--r--source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po93
-rw-r--r--source/lt/sc/messages.po303
-rw-r--r--source/lt/scp2/source/ooo.po18
-rw-r--r--source/lt/scp2/source/winexplorerext.po15
-rw-r--r--source/lt/sd/messages.po369
-rw-r--r--source/lt/sfx2/messages.po342
-rw-r--r--source/lt/shell/messages.po44
-rw-r--r--source/lt/starmath/messages.po170
-rw-r--r--source/lt/svtools/messages.po606
-rw-r--r--source/lt/svx/messages.po97
-rw-r--r--source/lt/sw/messages.po306
-rw-r--r--source/lt/wizards/messages.po10
-rw-r--r--source/lt/xmlsecurity/messages.po10
-rw-r--r--source/lv/cui/messages.po427
-rw-r--r--source/lv/extensions/messages.po78
-rw-r--r--source/lv/helpcontent2/source/auxiliary.po152
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/lv/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/lv/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/lv/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/lv/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po31
-rw-r--r--source/lv/sc/messages.po223
-rw-r--r--source/lv/scp2/source/ooo.po12
-rw-r--r--source/lv/scp2/source/winexplorerext.po15
-rw-r--r--source/lv/sd/messages.po344
-rw-r--r--source/lv/sfx2/messages.po300
-rw-r--r--source/lv/shell/messages.po44
-rw-r--r--source/lv/starmath/messages.po136
-rw-r--r--source/lv/svtools/messages.po612
-rw-r--r--source/lv/svx/messages.po91
-rw-r--r--source/lv/sw/messages.po322
-rw-r--r--source/mai/cui/messages.po425
-rw-r--r--source/mai/extensions/messages.po76
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/mai/sc/messages.po228
-rw-r--r--source/mai/scp2/source/ooo.po10
-rw-r--r--source/mai/scp2/source/winexplorerext.po15
-rw-r--r--source/mai/sd/messages.po336
-rw-r--r--source/mai/sfx2/messages.po296
-rw-r--r--source/mai/shell/messages.po44
-rw-r--r--source/mai/starmath/messages.po134
-rw-r--r--source/mai/svtools/messages.po606
-rw-r--r--source/mai/svx/messages.po92
-rw-r--r--source/mai/sw/messages.po272
-rw-r--r--source/mk/cui/messages.po425
-rw-r--r--source/mk/extensions/messages.po76
-rw-r--r--source/mk/helpcontent2/source/auxiliary.po150
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/mk/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/mk/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/mk/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/mk/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/mk/sc/messages.po228
-rw-r--r--source/mk/scp2/source/ooo.po10
-rw-r--r--source/mk/scp2/source/winexplorerext.po13
-rw-r--r--source/mk/sd/messages.po336
-rw-r--r--source/mk/sfx2/messages.po294
-rw-r--r--source/mk/shell/messages.po44
-rw-r--r--source/mk/starmath/messages.po134
-rw-r--r--source/mk/svtools/messages.po606
-rw-r--r--source/mk/svx/messages.po92
-rw-r--r--source/mk/sw/messages.po272
-rw-r--r--source/ml/cui/messages.po427
-rw-r--r--source/ml/extensions/messages.po76
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ml/sc/messages.po225
-rw-r--r--source/ml/scp2/source/ooo.po10
-rw-r--r--source/ml/scp2/source/winexplorerext.po15
-rw-r--r--source/ml/sd/messages.po336
-rw-r--r--source/ml/sfx2/messages.po294
-rw-r--r--source/ml/shell/messages.po44
-rw-r--r--source/ml/starmath/messages.po134
-rw-r--r--source/ml/svtools/messages.po606
-rw-r--r--source/ml/svx/messages.po92
-rw-r--r--source/ml/sw/messages.po274
-rw-r--r--source/mn/cui/messages.po425
-rw-r--r--source/mn/extensions/messages.po76
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/mn/sc/messages.po228
-rw-r--r--source/mn/scp2/source/ooo.po10
-rw-r--r--source/mn/scp2/source/winexplorerext.po13
-rw-r--r--source/mn/sd/messages.po336
-rw-r--r--source/mn/sfx2/messages.po295
-rw-r--r--source/mn/shell/messages.po44
-rw-r--r--source/mn/starmath/messages.po134
-rw-r--r--source/mn/svtools/messages.po606
-rw-r--r--source/mn/svx/messages.po92
-rw-r--r--source/mn/sw/messages.po272
-rw-r--r--source/mni/cui/messages.po425
-rw-r--r--source/mni/extensions/messages.po76
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/mni/sc/messages.po228
-rw-r--r--source/mni/scp2/source/ooo.po10
-rw-r--r--source/mni/scp2/source/winexplorerext.po13
-rw-r--r--source/mni/sd/messages.po336
-rw-r--r--source/mni/sfx2/messages.po294
-rw-r--r--source/mni/shell/messages.po44
-rw-r--r--source/mni/starmath/messages.po134
-rw-r--r--source/mni/svtools/messages.po606
-rw-r--r--source/mni/svx/messages.po92
-rw-r--r--source/mni/sw/messages.po272
-rw-r--r--source/mr/cui/messages.po427
-rw-r--r--source/mr/extensions/messages.po76
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/mr/sc/messages.po227
-rw-r--r--source/mr/scp2/source/ooo.po10
-rw-r--r--source/mr/scp2/source/winexplorerext.po15
-rw-r--r--source/mr/sd/messages.po336
-rw-r--r--source/mr/sfx2/messages.po294
-rw-r--r--source/mr/shell/messages.po44
-rw-r--r--source/mr/starmath/messages.po134
-rw-r--r--source/mr/svtools/messages.po606
-rw-r--r--source/mr/svx/messages.po92
-rw-r--r--source/mr/sw/messages.po274
-rw-r--r--source/my/cui/messages.po425
-rw-r--r--source/my/extensions/messages.po76
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/my/sc/messages.po225
-rw-r--r--source/my/scp2/source/ooo.po10
-rw-r--r--source/my/scp2/source/winexplorerext.po13
-rw-r--r--source/my/sd/messages.po336
-rw-r--r--source/my/sfx2/messages.po294
-rw-r--r--source/my/shell/messages.po44
-rw-r--r--source/my/starmath/messages.po134
-rw-r--r--source/my/svtools/messages.po606
-rw-r--r--source/my/svx/messages.po92
-rw-r--r--source/my/sw/messages.po274
-rw-r--r--source/nb/cui/messages.po427
-rw-r--r--source/nb/extensions/messages.po78
-rw-r--r--source/nb/helpcontent2/source/auxiliary.po156
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/python.po46
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/nb/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/nb/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/nb/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/nb/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/nb/sc/messages.po223
-rw-r--r--source/nb/scp2/source/ooo.po12
-rw-r--r--source/nb/scp2/source/winexplorerext.po15
-rw-r--r--source/nb/sd/messages.po344
-rw-r--r--source/nb/sfx2/messages.po300
-rw-r--r--source/nb/shell/messages.po44
-rw-r--r--source/nb/starmath/messages.po136
-rw-r--r--source/nb/svtools/messages.po606
-rw-r--r--source/nb/svx/messages.po91
-rw-r--r--source/nb/sw/messages.po276
-rw-r--r--source/ne/cui/messages.po425
-rw-r--r--source/ne/extensions/messages.po76
-rw-r--r--source/ne/helpcontent2/source/auxiliary.po152
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ne/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/ne/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ne/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ne/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ne/sc/messages.po225
-rw-r--r--source/ne/scp2/source/ooo.po10
-rw-r--r--source/ne/scp2/source/winexplorerext.po15
-rw-r--r--source/ne/sd/messages.po336
-rw-r--r--source/ne/sfx2/messages.po294
-rw-r--r--source/ne/shell/messages.po44
-rw-r--r--source/ne/starmath/messages.po134
-rw-r--r--source/ne/svtools/messages.po606
-rw-r--r--source/ne/svx/messages.po92
-rw-r--r--source/ne/sw/messages.po272
-rw-r--r--source/nl/cui/messages.po667
-rw-r--r--source/nl/extensions/messages.po78
-rw-r--r--source/nl/helpcontent2/source/auxiliary.po156
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/python.po46
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/nl/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/nl/helpcontent2/source/text/sdraw/00.po16
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po67
-rw-r--r--source/nl/sc/messages.po263
-rw-r--r--source/nl/scp2/source/ooo.po12
-rw-r--r--source/nl/scp2/source/winexplorerext.po15
-rw-r--r--source/nl/sd/messages.po350
-rw-r--r--source/nl/sfx2/messages.po302
-rw-r--r--source/nl/shell/messages.po52
-rw-r--r--source/nl/starmath/messages.po134
-rw-r--r--source/nl/svtools/messages.po614
-rw-r--r--source/nl/svx/messages.po124
-rw-r--r--source/nl/sw/messages.po320
-rw-r--r--source/nl/wizards/messages.po10
-rw-r--r--source/nl/wizards/source/resources.po10
-rw-r--r--source/nn/cui/messages.po503
-rw-r--r--source/nn/dbaccess/messages.po8
-rw-r--r--source/nn/extensions/messages.po78
-rw-r--r--source/nn/helpcontent2/source/auxiliary.po156
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/python.po84
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po26
-rw-r--r--source/nn/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po1780
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/nn/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po89
-rw-r--r--source/nn/sc/messages.po257
-rw-r--r--source/nn/scp2/source/ooo.po12
-rw-r--r--source/nn/scp2/source/winexplorerext.po8
-rw-r--r--source/nn/sd/messages.po344
-rw-r--r--source/nn/sfx2/messages.po300
-rw-r--r--source/nn/shell/messages.po44
-rw-r--r--source/nn/starmath/messages.po134
-rw-r--r--source/nn/svtools/messages.po612
-rw-r--r--source/nn/svx/messages.po124
-rw-r--r--source/nn/sw/messages.po316
-rw-r--r--source/nn/wizards/messages.po10
-rw-r--r--source/nn/wizards/source/resources.po8
-rw-r--r--source/nr/cui/messages.po425
-rw-r--r--source/nr/extensions/messages.po76
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/nr/sc/messages.po228
-rw-r--r--source/nr/scp2/source/ooo.po10
-rw-r--r--source/nr/scp2/source/winexplorerext.po13
-rw-r--r--source/nr/sd/messages.po336
-rw-r--r--source/nr/sfx2/messages.po296
-rw-r--r--source/nr/shell/messages.po44
-rw-r--r--source/nr/starmath/messages.po134
-rw-r--r--source/nr/svtools/messages.po606
-rw-r--r--source/nr/svx/messages.po92
-rw-r--r--source/nr/sw/messages.po272
-rw-r--r--source/nso/cui/messages.po425
-rw-r--r--source/nso/extensions/messages.po76
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/nso/sc/messages.po228
-rw-r--r--source/nso/scp2/source/ooo.po10
-rw-r--r--source/nso/scp2/source/winexplorerext.po13
-rw-r--r--source/nso/sd/messages.po336
-rw-r--r--source/nso/sfx2/messages.po294
-rw-r--r--source/nso/shell/messages.po44
-rw-r--r--source/nso/starmath/messages.po134
-rw-r--r--source/nso/svtools/messages.po606
-rw-r--r--source/nso/svx/messages.po92
-rw-r--r--source/nso/sw/messages.po274
-rw-r--r--source/oc/cui/messages.po427
-rw-r--r--source/oc/extensions/messages.po78
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/oc/sc/messages.po223
-rw-r--r--source/oc/scp2/source/ooo.po10
-rw-r--r--source/oc/scp2/source/winexplorerext.po15
-rw-r--r--source/oc/sd/messages.po602
-rw-r--r--source/oc/sfx2/messages.po294
-rw-r--r--source/oc/shell/messages.po44
-rw-r--r--source/oc/starmath/messages.po134
-rw-r--r--source/oc/svtools/messages.po606
-rw-r--r--source/oc/svx/messages.po121
-rw-r--r--source/oc/sw/messages.po656
-rw-r--r--source/oc/vcl/messages.po126
-rw-r--r--source/om/cui/messages.po425
-rw-r--r--source/om/extensions/messages.po76
-rw-r--r--source/om/helpcontent2/source/auxiliary.po150
-rw-r--r--source/om/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/om/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/om/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/om/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/om/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/om/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/om/sc/messages.po228
-rw-r--r--source/om/scp2/source/ooo.po10
-rw-r--r--source/om/scp2/source/winexplorerext.po13
-rw-r--r--source/om/sd/messages.po336
-rw-r--r--source/om/sfx2/messages.po294
-rw-r--r--source/om/shell/messages.po44
-rw-r--r--source/om/starmath/messages.po134
-rw-r--r--source/om/svtools/messages.po606
-rw-r--r--source/om/svx/messages.po92
-rw-r--r--source/om/sw/messages.po272
-rw-r--r--source/or/cui/messages.po427
-rw-r--r--source/or/extensions/messages.po76
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/or/sc/messages.po225
-rw-r--r--source/or/scp2/source/ooo.po10
-rw-r--r--source/or/scp2/source/winexplorerext.po15
-rw-r--r--source/or/sd/messages.po336
-rw-r--r--source/or/sfx2/messages.po294
-rw-r--r--source/or/shell/messages.po44
-rw-r--r--source/or/starmath/messages.po134
-rw-r--r--source/or/svtools/messages.po606
-rw-r--r--source/or/svx/messages.po92
-rw-r--r--source/or/sw/messages.po274
-rw-r--r--source/pa-IN/cui/messages.po425
-rw-r--r--source/pa-IN/extensions/messages.po76
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/pa-IN/sc/messages.po225
-rw-r--r--source/pa-IN/scp2/source/ooo.po10
-rw-r--r--source/pa-IN/scp2/source/winexplorerext.po15
-rw-r--r--source/pa-IN/sd/messages.po336
-rw-r--r--source/pa-IN/sfx2/messages.po294
-rw-r--r--source/pa-IN/shell/messages.po44
-rw-r--r--source/pa-IN/starmath/messages.po134
-rw-r--r--source/pa-IN/svtools/messages.po606
-rw-r--r--source/pa-IN/svx/messages.po92
-rw-r--r--source/pa-IN/sw/messages.po272
-rw-r--r--source/pl/cui/messages.po427
-rw-r--r--source/pl/extensions/messages.po76
-rw-r--r--source/pl/helpcontent2/source/auxiliary.po154
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/pl/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/pl/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/pl/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/pl/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/pl/sc/messages.po223
-rw-r--r--source/pl/scp2/source/ooo.po12
-rw-r--r--source/pl/scp2/source/winexplorerext.po15
-rw-r--r--source/pl/sd/messages.po344
-rw-r--r--source/pl/sfx2/messages.po298
-rw-r--r--source/pl/shell/messages.po44
-rw-r--r--source/pl/starmath/messages.po134
-rw-r--r--source/pl/svtools/messages.po606
-rw-r--r--source/pl/svx/messages.po91
-rw-r--r--source/pl/sw/messages.po276
-rw-r--r--source/pt-BR/cui/messages.po714
-rw-r--r--source/pt-BR/extensions/messages.po78
-rw-r--r--source/pt-BR/helpcontent2/source/auxiliary.po156
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/python.po56
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po20
-rw-r--r--source/pt-BR/helpcontent2/source/text/schart/00.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw/00.po26
-rw-r--r--source/pt-BR/helpcontent2/source/text/sdraw/01.po22
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po1700
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po20
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po53
-rw-r--r--source/pt-BR/sc/messages.po233
-rw-r--r--source/pt-BR/scp2/source/ooo.po14
-rw-r--r--source/pt-BR/scp2/source/winexplorerext.po15
-rw-r--r--source/pt-BR/sd/messages.po344
-rw-r--r--source/pt-BR/sfx2/messages.po302
-rw-r--r--source/pt-BR/shell/messages.po52
-rw-r--r--source/pt-BR/starmath/messages.po134
-rw-r--r--source/pt-BR/svtools/messages.po608
-rw-r--r--source/pt-BR/svx/messages.po99
-rw-r--r--source/pt-BR/sw/messages.po278
-rw-r--r--source/pt/cui/messages.po427
-rw-r--r--source/pt/extensions/messages.po78
-rw-r--r--source/pt/helpcontent2/source/auxiliary.po156
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/python.po44
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/pt/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/pt/helpcontent2/source/text/sdraw.po42
-rw-r--r--source/pt/helpcontent2/source/text/sdraw/00.po26
-rw-r--r--source/pt/helpcontent2/source/text/sdraw/01.po22
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po12
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/pt/helpcontent2/source/text/simpress.po72
-rw-r--r--source/pt/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po24
-rw-r--r--source/pt/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po37
-rw-r--r--source/pt/sc/messages.po231
-rw-r--r--source/pt/scp2/source/ooo.po14
-rw-r--r--source/pt/scp2/source/winexplorerext.po15
-rw-r--r--source/pt/sd/messages.po346
-rw-r--r--source/pt/sfx2/messages.po300
-rw-r--r--source/pt/shell/messages.po52
-rw-r--r--source/pt/starmath/messages.po134
-rw-r--r--source/pt/svtools/messages.po612
-rw-r--r--source/pt/svx/messages.po116
-rw-r--r--source/pt/sw/messages.po314
-rw-r--r--source/ro/cui/messages.po427
-rw-r--r--source/ro/extensions/messages.po76
-rw-r--r--source/ro/helpcontent2/source/auxiliary.po152
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/guide.po30
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/ro/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/ro/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ro/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/ro/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ro/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ro/sc/messages.po225
-rw-r--r--source/ro/scp2/source/ooo.po10
-rw-r--r--source/ro/scp2/source/winexplorerext.po16
-rw-r--r--source/ro/sd/messages.po336
-rw-r--r--source/ro/sfx2/messages.po294
-rw-r--r--source/ro/shell/messages.po44
-rw-r--r--source/ro/starmath/messages.po134
-rw-r--r--source/ro/svtools/messages.po606
-rw-r--r--source/ro/svx/messages.po91
-rw-r--r--source/ro/sw/messages.po274
-rw-r--r--source/ru/cui/messages.po427
-rw-r--r--source/ru/extensions/messages.po78
-rw-r--r--source/ru/helpcontent2/source/auxiliary.po154
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/ru/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/ru/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ru/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/ru/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ru/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ru/sc/messages.po223
-rw-r--r--source/ru/scp2/source/ooo.po12
-rw-r--r--source/ru/scp2/source/winexplorerext.po15
-rw-r--r--source/ru/sd/messages.po344
-rw-r--r--source/ru/sfx2/messages.po300
-rw-r--r--source/ru/shell/messages.po44
-rw-r--r--source/ru/starmath/messages.po134
-rw-r--r--source/ru/svtools/messages.po606
-rw-r--r--source/ru/svx/messages.po91
-rw-r--r--source/ru/sw/messages.po274
-rw-r--r--source/rw/cui/messages.po425
-rw-r--r--source/rw/extensions/messages.po76
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/rw/sc/messages.po228
-rw-r--r--source/rw/scp2/source/ooo.po10
-rw-r--r--source/rw/scp2/source/winexplorerext.po13
-rw-r--r--source/rw/sd/messages.po336
-rw-r--r--source/rw/sfx2/messages.po294
-rw-r--r--source/rw/shell/messages.po44
-rw-r--r--source/rw/starmath/messages.po134
-rw-r--r--source/rw/svtools/messages.po606
-rw-r--r--source/rw/svx/messages.po92
-rw-r--r--source/rw/sw/messages.po272
-rw-r--r--source/sa-IN/cui/messages.po425
-rw-r--r--source/sa-IN/extensions/messages.po76
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/sa-IN/sc/messages.po228
-rw-r--r--source/sa-IN/scp2/source/ooo.po10
-rw-r--r--source/sa-IN/scp2/source/winexplorerext.po15
-rw-r--r--source/sa-IN/sd/messages.po336
-rw-r--r--source/sa-IN/sfx2/messages.po294
-rw-r--r--source/sa-IN/shell/messages.po44
-rw-r--r--source/sa-IN/starmath/messages.po134
-rw-r--r--source/sa-IN/svtools/messages.po606
-rw-r--r--source/sa-IN/svx/messages.po92
-rw-r--r--source/sa-IN/sw/messages.po274
-rw-r--r--source/sah/cui/messages.po425
-rw-r--r--source/sah/extensions/messages.po76
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/sah/sc/messages.po223
-rw-r--r--source/sah/scp2/source/ooo.po10
-rw-r--r--source/sah/scp2/source/winexplorerext.po6
-rw-r--r--source/sah/sd/messages.po336
-rw-r--r--source/sah/sfx2/messages.po294
-rw-r--r--source/sah/shell/messages.po44
-rw-r--r--source/sah/starmath/messages.po134
-rw-r--r--source/sah/svtools/messages.po604
-rw-r--r--source/sah/svx/messages.po91
-rw-r--r--source/sah/sw/messages.po270
-rw-r--r--source/sat/cui/messages.po427
-rw-r--r--source/sat/extensions/messages.po76
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/sat/sc/messages.po224
-rw-r--r--source/sat/scp2/source/ooo.po10
-rw-r--r--source/sat/scp2/source/winexplorerext.po13
-rw-r--r--source/sat/sd/messages.po336
-rw-r--r--source/sat/sfx2/messages.po294
-rw-r--r--source/sat/shell/messages.po44
-rw-r--r--source/sat/starmath/messages.po134
-rw-r--r--source/sat/svtools/messages.po606
-rw-r--r--source/sat/svx/messages.po92
-rw-r--r--source/sat/sw/messages.po274
-rw-r--r--source/sd/cui/messages.po425
-rw-r--r--source/sd/extensions/messages.po76
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/sd/sc/messages.po228
-rw-r--r--source/sd/scp2/source/ooo.po10
-rw-r--r--source/sd/scp2/source/winexplorerext.po13
-rw-r--r--source/sd/sd/messages.po336
-rw-r--r--source/sd/sfx2/messages.po294
-rw-r--r--source/sd/shell/messages.po44
-rw-r--r--source/sd/starmath/messages.po134
-rw-r--r--source/sd/svtools/messages.po606
-rw-r--r--source/sd/svx/messages.po92
-rw-r--r--source/sd/sw/messages.po274
-rw-r--r--source/si/cui/messages.po425
-rw-r--r--source/si/extensions/messages.po76
-rw-r--r--source/si/helpcontent2/source/auxiliary.po150
-rw-r--r--source/si/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/si/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/si/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/si/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/si/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/si/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/si/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/si/sc/messages.po225
-rw-r--r--source/si/scp2/source/ooo.po10
-rw-r--r--source/si/scp2/source/winexplorerext.po15
-rw-r--r--source/si/sd/messages.po336
-rw-r--r--source/si/sfx2/messages.po294
-rw-r--r--source/si/shell/messages.po44
-rw-r--r--source/si/starmath/messages.po134
-rw-r--r--source/si/svtools/messages.po606
-rw-r--r--source/si/svx/messages.po92
-rw-r--r--source/si/sw/messages.po274
-rw-r--r--source/sid/cui/messages.po425
-rw-r--r--source/sid/extensions/messages.po76
-rw-r--r--source/sid/helpcontent2/source/auxiliary.po150
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/sid/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/sid/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/sid/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/sid/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/sid/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/sid/sc/messages.po225
-rw-r--r--source/sid/scp2/source/ooo.po10
-rw-r--r--source/sid/scp2/source/winexplorerext.po16
-rw-r--r--source/sid/sd/messages.po336
-rw-r--r--source/sid/sfx2/messages.po294
-rw-r--r--source/sid/shell/messages.po44
-rw-r--r--source/sid/starmath/messages.po134
-rw-r--r--source/sid/svtools/messages.po606
-rw-r--r--source/sid/svx/messages.po92
-rw-r--r--source/sid/sw/messages.po274
-rw-r--r--source/sk/cui/messages.po427
-rw-r--r--source/sk/extensions/messages.po78
-rw-r--r--source/sk/helpcontent2/source/auxiliary.po152
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/sk/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po14
-rw-r--r--source/sk/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/sk/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/sk/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po71
-rw-r--r--source/sk/sc/messages.po257
-rw-r--r--source/sk/scp2/source/ooo.po12
-rw-r--r--source/sk/scp2/source/winexplorerext.po15
-rw-r--r--source/sk/sd/messages.po344
-rw-r--r--source/sk/sfx2/messages.po300
-rw-r--r--source/sk/shell/messages.po44
-rw-r--r--source/sk/starmath/messages.po134
-rw-r--r--source/sk/svtools/messages.po612
-rw-r--r--source/sk/svx/messages.po91
-rw-r--r--source/sk/sw/messages.po362
-rw-r--r--source/sk/wizards/messages.po10
-rw-r--r--source/sk/wizards/source/resources.po10
-rw-r--r--source/sq/cui/messages.po427
-rw-r--r--source/sq/extensions/messages.po76
-rw-r--r--source/sq/helpcontent2/source/auxiliary.po152
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/guide.po30
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/sq/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/sq/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/sq/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/sq/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/sq/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/sq/sc/messages.po223
-rw-r--r--source/sq/scp2/source/ooo.po10
-rw-r--r--source/sq/scp2/source/winexplorerext.po13
-rw-r--r--source/sq/sd/messages.po336
-rw-r--r--source/sq/sfx2/messages.po294
-rw-r--r--source/sq/shell/messages.po44
-rw-r--r--source/sq/starmath/messages.po134
-rw-r--r--source/sq/svtools/messages.po604
-rw-r--r--source/sq/svx/messages.po92
-rw-r--r--source/sq/sw/messages.po272
-rw-r--r--source/ss/cui/messages.po425
-rw-r--r--source/ss/extensions/messages.po76
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ss/sc/messages.po228
-rw-r--r--source/ss/scp2/source/ooo.po10
-rw-r--r--source/ss/scp2/source/winexplorerext.po13
-rw-r--r--source/ss/sd/messages.po336
-rw-r--r--source/ss/sfx2/messages.po294
-rw-r--r--source/ss/shell/messages.po44
-rw-r--r--source/ss/starmath/messages.po134
-rw-r--r--source/ss/svtools/messages.po606
-rw-r--r--source/ss/svx/messages.po92
-rw-r--r--source/ss/sw/messages.po270
-rw-r--r--source/st/cui/messages.po425
-rw-r--r--source/st/extensions/messages.po76
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/st/sc/messages.po228
-rw-r--r--source/st/scp2/source/ooo.po10
-rw-r--r--source/st/scp2/source/winexplorerext.po13
-rw-r--r--source/st/sd/messages.po336
-rw-r--r--source/st/sfx2/messages.po294
-rw-r--r--source/st/shell/messages.po44
-rw-r--r--source/st/starmath/messages.po134
-rw-r--r--source/st/svtools/messages.po606
-rw-r--r--source/st/svx/messages.po92
-rw-r--r--source/st/sw/messages.po270
-rw-r--r--source/sv/cui/messages.po427
-rw-r--r--source/sv/extensions/messages.po76
-rw-r--r--source/sv/helpcontent2/source/auxiliary.po154
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/sv/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/sv/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/sv/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/sv/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/sv/sc/messages.po223
-rw-r--r--source/sv/scp2/source/ooo.po10
-rw-r--r--source/sv/scp2/source/winexplorerext.po15
-rw-r--r--source/sv/sd/messages.po342
-rw-r--r--source/sv/sfx2/messages.po300
-rw-r--r--source/sv/shell/messages.po44
-rw-r--r--source/sv/starmath/messages.po134
-rw-r--r--source/sv/svtools/messages.po606
-rw-r--r--source/sv/svx/messages.po91
-rw-r--r--source/sv/sw/messages.po274
-rw-r--r--source/sw-TZ/cui/messages.po425
-rw-r--r--source/sw-TZ/extensions/messages.po76
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/sw-TZ/sc/messages.po228
-rw-r--r--source/sw-TZ/scp2/source/ooo.po10
-rw-r--r--source/sw-TZ/scp2/source/winexplorerext.po13
-rw-r--r--source/sw-TZ/sd/messages.po336
-rw-r--r--source/sw-TZ/sfx2/messages.po294
-rw-r--r--source/sw-TZ/shell/messages.po44
-rw-r--r--source/sw-TZ/starmath/messages.po134
-rw-r--r--source/sw-TZ/svtools/messages.po606
-rw-r--r--source/sw-TZ/svx/messages.po92
-rw-r--r--source/sw-TZ/sw/messages.po270
-rw-r--r--source/szl/cui/messages.po425
-rw-r--r--source/szl/extensions/messages.po76
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/szl/sc/messages.po223
-rw-r--r--source/szl/scp2/source/ooo.po10
-rw-r--r--source/szl/scp2/source/winexplorerext.po10
-rw-r--r--source/szl/sd/messages.po336
-rw-r--r--source/szl/sfx2/messages.po294
-rw-r--r--source/szl/shell/messages.po44
-rw-r--r--source/szl/starmath/messages.po134
-rw-r--r--source/szl/svtools/messages.po604
-rw-r--r--source/szl/svx/messages.po91
-rw-r--r--source/szl/sw/messages.po270
-rw-r--r--source/ta/cui/messages.po427
-rw-r--r--source/ta/extensions/messages.po76
-rw-r--r--source/ta/helpcontent2/source/auxiliary.po154
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/ta/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/ta/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ta/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ta/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ta/sc/messages.po224
-rw-r--r--source/ta/scp2/source/ooo.po10
-rw-r--r--source/ta/scp2/source/winexplorerext.po10
-rw-r--r--source/ta/sd/messages.po336
-rw-r--r--source/ta/sfx2/messages.po294
-rw-r--r--source/ta/shell/messages.po44
-rw-r--r--source/ta/starmath/messages.po134
-rw-r--r--source/ta/svtools/messages.po606
-rw-r--r--source/ta/svx/messages.po91
-rw-r--r--source/ta/sw/messages.po272
-rw-r--r--source/te/cui/messages.po427
-rw-r--r--source/te/extensions/messages.po76
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/te/sc/messages.po226
-rw-r--r--source/te/scp2/source/ooo.po10
-rw-r--r--source/te/scp2/source/winexplorerext.po15
-rw-r--r--source/te/sd/messages.po336
-rw-r--r--source/te/sfx2/messages.po294
-rw-r--r--source/te/shell/messages.po44
-rw-r--r--source/te/starmath/messages.po134
-rw-r--r--source/te/svtools/messages.po606
-rw-r--r--source/te/svx/messages.po92
-rw-r--r--source/te/sw/messages.po274
-rw-r--r--source/tg/cui/messages.po425
-rw-r--r--source/tg/extensions/messages.po76
-rw-r--r--source/tg/helpcontent2/source/auxiliary.po150
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/guide.po30
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/tg/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/tg/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/tg/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/tg/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/tg/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/tg/sc/messages.po228
-rw-r--r--source/tg/scp2/source/ooo.po10
-rw-r--r--source/tg/scp2/source/winexplorerext.po13
-rw-r--r--source/tg/sd/messages.po336
-rw-r--r--source/tg/sfx2/messages.po294
-rw-r--r--source/tg/shell/messages.po44
-rw-r--r--source/tg/starmath/messages.po134
-rw-r--r--source/tg/svtools/messages.po606
-rw-r--r--source/tg/svx/messages.po92
-rw-r--r--source/tg/sw/messages.po272
-rw-r--r--source/th/cui/messages.po425
-rw-r--r--source/th/extensions/messages.po76
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/th/sc/messages.po227
-rw-r--r--source/th/scp2/source/ooo.po10
-rw-r--r--source/th/scp2/source/winexplorerext.po8
-rw-r--r--source/th/sd/messages.po336
-rw-r--r--source/th/sfx2/messages.po296
-rw-r--r--source/th/shell/messages.po44
-rw-r--r--source/th/starmath/messages.po134
-rw-r--r--source/th/svtools/messages.po606
-rw-r--r--source/th/svx/messages.po92
-rw-r--r--source/th/sw/messages.po272
-rw-r--r--source/ti/cui/messages.po425
-rw-r--r--source/ti/extensions/messages.po76
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ti/sc/messages.po223
-rw-r--r--source/ti/scp2/source/ooo.po10
-rw-r--r--source/ti/scp2/source/winexplorerext.po12
-rw-r--r--source/ti/sd/messages.po336
-rw-r--r--source/ti/sfx2/messages.po294
-rw-r--r--source/ti/shell/messages.po44
-rw-r--r--source/ti/starmath/messages.po134
-rw-r--r--source/ti/svtools/messages.po604
-rw-r--r--source/ti/svx/messages.po91
-rw-r--r--source/ti/sw/messages.po272
-rw-r--r--source/tn/cui/messages.po425
-rw-r--r--source/tn/extensions/messages.po76
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/tn/sc/messages.po228
-rw-r--r--source/tn/scp2/source/ooo.po10
-rw-r--r--source/tn/scp2/source/winexplorerext.po11
-rw-r--r--source/tn/sd/messages.po336
-rw-r--r--source/tn/sfx2/messages.po294
-rw-r--r--source/tn/shell/messages.po44
-rw-r--r--source/tn/starmath/messages.po134
-rw-r--r--source/tn/svtools/messages.po606
-rw-r--r--source/tn/svx/messages.po92
-rw-r--r--source/tn/sw/messages.po272
-rw-r--r--source/tr/cui/messages.po441
-rw-r--r--source/tr/extensions/messages.po78
-rw-r--r--source/tr/helpcontent2/source/auxiliary.po164
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/guide.po42
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/python.po44
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po18
-rw-r--r--source/tr/helpcontent2/source/text/schart/00.po10
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/tr/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/tr/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/tr/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po22
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/tr/sc/messages.po229
-rw-r--r--source/tr/scp2/source/ooo.po12
-rw-r--r--source/tr/scp2/source/winexplorerext.po15
-rw-r--r--source/tr/sd/messages.po344
-rw-r--r--source/tr/sfx2/messages.po298
-rw-r--r--source/tr/shell/messages.po44
-rw-r--r--source/tr/starmath/messages.po134
-rw-r--r--source/tr/svtools/messages.po606
-rw-r--r--source/tr/svx/messages.po91
-rw-r--r--source/tr/sw/messages.po274
-rw-r--r--source/ts/cui/messages.po425
-rw-r--r--source/ts/extensions/messages.po76
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ts/sc/messages.po228
-rw-r--r--source/ts/scp2/source/ooo.po10
-rw-r--r--source/ts/scp2/source/winexplorerext.po13
-rw-r--r--source/ts/sd/messages.po336
-rw-r--r--source/ts/sfx2/messages.po294
-rw-r--r--source/ts/shell/messages.po44
-rw-r--r--source/ts/starmath/messages.po134
-rw-r--r--source/ts/svtools/messages.po606
-rw-r--r--source/ts/svx/messages.po92
-rw-r--r--source/ts/sw/messages.po270
-rw-r--r--source/tt/cui/messages.po425
-rw-r--r--source/tt/extensions/messages.po76
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/tt/sc/messages.po226
-rw-r--r--source/tt/scp2/source/ooo.po10
-rw-r--r--source/tt/scp2/source/winexplorerext.po14
-rw-r--r--source/tt/sd/messages.po336
-rw-r--r--source/tt/sfx2/messages.po294
-rw-r--r--source/tt/shell/messages.po44
-rw-r--r--source/tt/starmath/messages.po134
-rw-r--r--source/tt/svtools/messages.po604
-rw-r--r--source/tt/svx/messages.po91
-rw-r--r--source/tt/sw/messages.po270
-rw-r--r--source/ug/cui/messages.po427
-rw-r--r--source/ug/extensions/messages.po76
-rw-r--r--source/ug/helpcontent2/source/auxiliary.po150
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared.po4
-rw-r--r--source/ug/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/ug/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ug/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/ug/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/ug/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po12
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ug/sc/messages.po225
-rw-r--r--source/ug/scp2/source/ooo.po10
-rw-r--r--source/ug/scp2/source/winexplorerext.po15
-rw-r--r--source/ug/sd/messages.po336
-rw-r--r--source/ug/sfx2/messages.po294
-rw-r--r--source/ug/shell/messages.po44
-rw-r--r--source/ug/starmath/messages.po134
-rw-r--r--source/ug/svtools/messages.po606
-rw-r--r--source/ug/svx/messages.po92
-rw-r--r--source/ug/sw/messages.po274
-rw-r--r--source/uk/cui/messages.po443
-rw-r--r--source/uk/extensions/messages.po84
-rw-r--r--source/uk/helpcontent2/source/auxiliary.po156
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/python.po48
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/uk/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/uk/helpcontent2/source/text/scalc/00.po8
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po26
-rw-r--r--source/uk/helpcontent2/source/text/schart/00.po12
-rw-r--r--source/uk/helpcontent2/source/text/sdraw.po42
-rw-r--r--source/uk/helpcontent2/source/text/sdraw/00.po26
-rw-r--r--source/uk/helpcontent2/source/text/sdraw/01.po22
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po152
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po1342
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po180
-rw-r--r--source/uk/helpcontent2/source/text/simpress.po10
-rw-r--r--source/uk/helpcontent2/source/text/simpress/00.po12
-rw-r--r--source/uk/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/uk/helpcontent2/source/text/simpress/02.po8
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po37
-rw-r--r--source/uk/sc/messages.po235
-rw-r--r--source/uk/scp2/source/ooo.po12
-rw-r--r--source/uk/scp2/source/winexplorerext.po15
-rw-r--r--source/uk/sd/messages.po344
-rw-r--r--source/uk/sfx2/messages.po300
-rw-r--r--source/uk/shell/messages.po44
-rw-r--r--source/uk/starmath/messages.po134
-rw-r--r--source/uk/svtools/messages.po612
-rw-r--r--source/uk/svx/messages.po91
-rw-r--r--source/uk/sw/messages.po280
-rw-r--r--source/ur/cui/messages.po425
-rw-r--r--source/ur/extensions/messages.po76
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ur/sc/messages.po223
-rw-r--r--source/ur/scp2/source/ooo.po10
-rw-r--r--source/ur/scp2/source/winexplorerext.po14
-rw-r--r--source/ur/sd/messages.po336
-rw-r--r--source/ur/sfx2/messages.po294
-rw-r--r--source/ur/shell/messages.po44
-rw-r--r--source/ur/starmath/messages.po134
-rw-r--r--source/ur/svtools/messages.po604
-rw-r--r--source/ur/svx/messages.po91
-rw-r--r--source/ur/sw/messages.po270
-rw-r--r--source/uz/cui/messages.po425
-rw-r--r--source/uz/extensions/messages.po76
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/uz/sc/messages.po228
-rw-r--r--source/uz/scp2/source/ooo.po10
-rw-r--r--source/uz/scp2/source/winexplorerext.po13
-rw-r--r--source/uz/sd/messages.po336
-rw-r--r--source/uz/sfx2/messages.po294
-rw-r--r--source/uz/shell/messages.po44
-rw-r--r--source/uz/starmath/messages.po134
-rw-r--r--source/uz/svtools/messages.po606
-rw-r--r--source/uz/svx/messages.po91
-rw-r--r--source/uz/sw/messages.po270
-rw-r--r--source/ve/cui/messages.po425
-rw-r--r--source/ve/extensions/messages.po76
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/ve/sc/messages.po228
-rw-r--r--source/ve/scp2/source/ooo.po10
-rw-r--r--source/ve/scp2/source/winexplorerext.po13
-rw-r--r--source/ve/sd/messages.po336
-rw-r--r--source/ve/sfx2/messages.po294
-rw-r--r--source/ve/shell/messages.po44
-rw-r--r--source/ve/starmath/messages.po134
-rw-r--r--source/ve/svtools/messages.po606
-rw-r--r--source/ve/svx/messages.po92
-rw-r--r--source/ve/sw/messages.po270
-rw-r--r--source/vec/cui/messages.po427
-rw-r--r--source/vec/extensions/messages.po76
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/vec/sc/messages.po223
-rw-r--r--source/vec/scp2/source/ooo.po10
-rw-r--r--source/vec/scp2/source/winexplorerext.po8
-rw-r--r--source/vec/sd/messages.po344
-rw-r--r--source/vec/sfx2/messages.po298
-rw-r--r--source/vec/shell/messages.po44
-rw-r--r--source/vec/starmath/messages.po134
-rw-r--r--source/vec/svtools/messages.po606
-rw-r--r--source/vec/svx/messages.po91
-rw-r--r--source/vec/sw/messages.po276
-rw-r--r--source/vi/cui/messages.po425
-rw-r--r--source/vi/extensions/messages.po76
-rw-r--r--source/vi/helpcontent2/source/auxiliary.po150
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/vi/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/vi/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/vi/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/vi/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/vi/sc/messages.po225
-rw-r--r--source/vi/scp2/source/ooo.po10
-rw-r--r--source/vi/scp2/source/winexplorerext.po15
-rw-r--r--source/vi/sd/messages.po336
-rw-r--r--source/vi/sfx2/messages.po294
-rw-r--r--source/vi/shell/messages.po44
-rw-r--r--source/vi/starmath/messages.po134
-rw-r--r--source/vi/svtools/messages.po606
-rw-r--r--source/vi/svx/messages.po92
-rw-r--r--source/vi/sw/messages.po272
-rw-r--r--source/xh/cui/messages.po425
-rw-r--r--source/xh/extensions/messages.po76
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/xh/sc/messages.po228
-rw-r--r--source/xh/scp2/source/ooo.po10
-rw-r--r--source/xh/scp2/source/winexplorerext.po13
-rw-r--r--source/xh/sd/messages.po336
-rw-r--r--source/xh/sfx2/messages.po295
-rw-r--r--source/xh/shell/messages.po44
-rw-r--r--source/xh/starmath/messages.po134
-rw-r--r--source/xh/svtools/messages.po606
-rw-r--r--source/xh/svx/messages.po92
-rw-r--r--source/xh/sw/messages.po270
-rw-r--r--source/zh-CN/connectivity/messages.po8
-rw-r--r--source/zh-CN/cui/messages.po895
-rw-r--r--source/zh-CN/dbaccess/messages.po36
-rw-r--r--source/zh-CN/dictionaries/af_ZA.po8
-rw-r--r--source/zh-CN/extensions/messages.po78
-rw-r--r--source/zh-CN/extras/source/gallery/share.po8
-rw-r--r--source/zh-CN/filter/messages.po6
-rw-r--r--source/zh-CN/framework/messages.po6
-rw-r--r--source/zh-CN/helpcontent2/source/auxiliary.po164
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/guide.po36
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/python.po98
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared.po46
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/02.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/sbasic/shared/03.po12
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/00.po12
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po90
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po14
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart/00.po161
-rw-r--r--source/zh-CN/helpcontent2/source/text/schart/01.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw.po46
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/00.po26
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/01.po20
-rw-r--r--source/zh-CN/helpcontent2/source/text/sdraw/guide.po56
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po66
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po160
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/02.po2478
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po1844
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po318
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/00.po22
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/01.po28
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/02.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/04.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po28
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/02.po12
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po46
-rw-r--r--source/zh-CN/instsetoo_native/inc_openoffice/windows/msi_languages.po16
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po213
-rw-r--r--source/zh-CN/readlicense_oo/docs.po8
-rw-r--r--source/zh-CN/sc/messages.po251
-rw-r--r--source/zh-CN/scp2/source/ooo.po28
-rw-r--r--source/zh-CN/scp2/source/winexplorerext.po8
-rw-r--r--source/zh-CN/sd/messages.po358
-rw-r--r--source/zh-CN/sfx2/messages.po304
-rw-r--r--source/zh-CN/shell/messages.po52
-rw-r--r--source/zh-CN/shell/source/win32/shlxthandler/res.po16
-rw-r--r--source/zh-CN/starmath/messages.po136
-rw-r--r--source/zh-CN/svtools/messages.po620
-rw-r--r--source/zh-CN/svx/messages.po170
-rw-r--r--source/zh-CN/sw/messages.po316
-rw-r--r--source/zh-CN/vcl/messages.po8
-rw-r--r--source/zh-TW/cui/messages.po427
-rw-r--r--source/zh-TW/extensions/messages.po78
-rw-r--r--source/zh-TW/helpcontent2/source/auxiliary.po152
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/guide.po34
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/python.po38
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/sbasic/shared/03.po10
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/zh-TW/helpcontent2/source/text/schart/00.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po10
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/02.po4
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/guide.po1330
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po178
-rw-r--r--source/zh-TW/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po14
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/zh-TW/sc/messages.po223
-rw-r--r--source/zh-TW/scp2/source/ooo.po12
-rw-r--r--source/zh-TW/scp2/source/winexplorerext.po13
-rw-r--r--source/zh-TW/sd/messages.po344
-rw-r--r--source/zh-TW/sfx2/messages.po300
-rw-r--r--source/zh-TW/shell/messages.po44
-rw-r--r--source/zh-TW/starmath/messages.po134
-rw-r--r--source/zh-TW/svtools/messages.po606
-rw-r--r--source/zh-TW/svx/messages.po91
-rw-r--r--source/zh-TW/sw/messages.po274
-rw-r--r--source/zu/cui/messages.po425
-rw-r--r--source/zu/extensions/messages.po76
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po29
-rw-r--r--source/zu/sc/messages.po228
-rw-r--r--source/zu/scp2/source/ooo.po10
-rw-r--r--source/zu/scp2/source/winexplorerext.po15
-rw-r--r--source/zu/sd/messages.po336
-rw-r--r--source/zu/sfx2/messages.po294
-rw-r--r--source/zu/shell/messages.po44
-rw-r--r--source/zu/starmath/messages.po134
-rw-r--r--source/zu/svtools/messages.po606
-rw-r--r--source/zu/svx/messages.po92
-rw-r--r--source/zu/sw/messages.po274
2653 files changed, 202340 insertions, 247151 deletions
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 5761fd1708f..2efbd3b7d99 100644
--- a/source/ab/cui/messages.po
+++ b/source/ab/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1628,107 +1628,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Иқәыргылатәуп адиагональтә ҵәаӷәақәа рымацара"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Агага ада"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1771,7 +1766,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1891,7 +1886,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2131,7 +2126,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2386,12 +2381,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2461,7 +2456,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2541,7 +2536,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2782,7 +2777,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3367,66 +3362,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME иазкны"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "А_лахәылацәа"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Веб-саит"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Алокаль: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Шәахә. ажурнал: $GITHASH "
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice базас иамоуп OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3541,17 +3541,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Иҧсахтәуп"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Иҧсахлатәуп:"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Ала:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Атеқст мацара"
@@ -4376,6 +4376,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Ажәа иминималу аура"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5487,27 +5647,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Аҷыдаҟазшьақәа"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Афреим:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Ахьӡ:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Альтенативатә теқст:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Ахҳәаа:"
@@ -9034,80 +9194,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Аилыркаага"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ихархәатәуп %PRODUCTNAME адиалогқәа"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Аартра/Аиқәырхара рдиалогқәа"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ихархәатәуп %PRODUCTNAME адиалогқәа"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Акьыҧхьра адиалогқәа"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Адокумент аҭагылазаашьа"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ашықәс (ҩ-цифрак)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -10978,25 +11138,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Даҽа темак"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox атемақәа"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11625,102 +11770,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Ашәарҭадара апараметрқәа"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Firefox атема алхра"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12733,27 +12782,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ab/extensions/messages.po b/source/ab/extensions/messages.po
index e23af52909a..1d63f633448 100644
--- a/source/ab/extensions/messages.po
+++ b/source/ab/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3050,162 +3050,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Аҭыжьҩы"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Аредақтор"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Атип"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Ашықәс"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Ахы"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Аҭыжьымҭа"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Амза"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Ажурнал"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Аномер"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Азгәаҭа"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr ""
@@ -3380,28 +3380,28 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Иҭажәгал, адырқәа ртип ҿыц ахьӡ:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Анапаҵаҩра"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
index ac39e34eebc..73b6ca460c4 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23481,6 +23481,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25775,6 +25784,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25793,6 +25811,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index 19559cab6e8..b56bb5017ea 100644
--- a/source/ab/sc/messages.po
+++ b/source/ab/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15170,6 +15170,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15720,12 +15725,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16946,81 +16951,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Адырқәа рформа"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Иарктәуп"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Иацҵатәуп анҵамҭа"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "Иаҧҵатәуп"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Ианыхтәуп"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Анаҩстәи анҵамҭа"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Иарктәуп"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Аҭыҧхәаҧшра..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18746,32 +18711,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Адырқәа"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Аиҵагылақәа"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Ацәаҳәақәа"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Аинтервал:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Апараметрқәа"
@@ -18911,167 +18881,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21567,17 +21539,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23449,107 +23431,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Иаарҧштәуп"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Иҵәахтәуп"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Адаҟьақәа реимҟьарақәа"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Абиеқтқәа/Асахьақәа:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Адиаграммақәа:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Асахьақәа:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Иаарҧштәуп"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Иҵәахтәуп"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Иаарҧштәуп"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Иҵәахтәуп"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Иаарҧштәуп"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Иҵәахтәуп"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Аобиеқтқәа"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Амасштаб"
diff --git a/source/ab/scp2/source/ooo.po b/source/ab/scp2/source/ooo.po
index b3b13428cdc..e774698ea30 100644
--- a/source/ab/scp2/source/ooo.po
+++ b/source/ab/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Афаил аартра"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ab/scp2/source/winexplorerext.po b/source/ab/scp2/source/winexplorerext.po
index 007e5f42a86..597f2c10192 100644
--- a/source/ab/scp2/source/winexplorerext.po
+++ b/source/ab/scp2/source/winexplorerext.po
@@ -3,16 +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: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2014-11-02 19:11+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ab\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1414955484.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
msgstr ""
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index b8e6d343867..a9b6e372fa2 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2584,6 +2584,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3043,164 +3048,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4601,160 +4791,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index 8d646f10493..2c9cd11a01e 100644
--- a/source/ab/sfx2/messages.po
+++ b/source/ab/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -875,52 +875,47 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Ари астиль ыҟоуп. Ихҩылаатәума?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Еиҭашьақәыргылатәуп"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -928,116 +923,116 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Ахархәара змоу астильқәа:"
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Анавигатор"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Идәықәҵатәуп"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Ашрифт"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Иаҧҵатәуп алкаараз астиль"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Ирҿыцтәуп астиль"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Иаҟәыхтәуп аҭаҩра"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Апринтер ҭацәым"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (аҧхьара мацараз)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1045,7 +1040,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1053,7 +1048,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1061,14 +1056,14 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1076,7 +1071,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1084,17 +1079,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1102,350 +1097,360 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Ари адокумент аартуп аҧхьара мацаразы."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Адокумент акьыҧхьра"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Анапаҵаҩтәуп адокумент"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Еиҭа апараметрқәа"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Иарктәуп аварахьтәи апанель"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Иарктәуп аварахьтәи апанель"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Иқәгатәуп"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1794,32 +1799,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr ""
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Ахьӡ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Атип"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Аҵакы"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Атип"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ааи"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Мап"
@@ -1829,17 +1819,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Иҭажәгал аобиеқт ахьӡ"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Атип"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Аҵакы"
@@ -1973,18 +1963,18 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Аҭыҧ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Атип:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Иҧсахтәуп ажәамаӡа"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Ашаблон:"
@@ -1994,27 +1984,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Азеиҧшқәа "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Ахҳәаа"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Ашәарҭадара"
@@ -2230,6 +2220,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ab/shell/messages.po b/source/ab/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ab/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ab/starmath/messages.po b/source/ab/starmath/messages.po
index 60f320e6ffa..14474fb372d 100644
--- a/source/ab/starmath/messages.po
+++ b/source/ab/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1673,265 +1673,290 @@ msgid "Examples"
msgstr "Аҿырҧштәқәа"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Истандарту"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Акурсив"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Ажәпа"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "аиқәаҵәа"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Аиаҵәа"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "аҟаҧшь"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr ""
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Аамҭа"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
#, fuzzy
msgctxt "STR_TEAL"
msgid "teal"
msgstr "ачаи"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "аҩежь"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Иҵәахтәуп"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "акегль"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "агарнитура"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "арымарахь"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ацентр ала"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "арыгьарахь"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Акомандақәа"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Аформула"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Адокумент аиқәырхара..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION аформула"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "АГХА : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Ҳаззыҧшымыз асимвол"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Иаҵанакуа"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Ахы"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Аформула атеқст"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr ""
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ашәагаа"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Ахалагаратә шәагаа"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Адаҟьа ашәагаа иақәыршәаны"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Амасштаб"
@@ -1997,6 +2022,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Аелементқәа"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ab/svtools/messages.po b/source/ab/svtools/messages.po
index a60483add12..6a82071fcc0 100644
--- a/source/ab/svtools/messages.po
+++ b/source/ab/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1522 +15,1524 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195163.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Иаҟәыхтәуп: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
+msgid "Redo: "
msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Атеқст амацара"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Асервер Star аформат"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Аобиеқт Star аформат"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
#, fuzzy
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Ихархәатәуп аобиеқт"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarChart аобиеқт"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 аобиеқт"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarChart 5.0 аобиеқт"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc аобиеқт"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarChart 4.0 аобиеқт"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarChart 5.0 аобиеқт"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart аобиеқт"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 аобиеқт"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 аобиеқт"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage аобиеқт"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 аобиеқт"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 аобиеқт"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath аобиеқт"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 аобиеқт"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 аобиеқт"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word аобиеқт"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx адокумент"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 аобиеқт"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer аобиеқт"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web аобиеқт"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Еилоу адокумент "
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw аобиеқт"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress аобиеқт"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc аобиеқт"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart аобиеқт"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math аобиеқт"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows аметафаил"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Ахалагаратә дырқәа ртаблица"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 адиалог"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Аимадара"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Ахьӡ"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Ашәагаа"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Ианыҧсахыз арыцхә"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Атип"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ""
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Акаталог"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Афаил"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Инормалтәу"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Акодркра"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Ажәар"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Ажәар"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Иахьа"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Иҭацәуп"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Ипоу"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Акурсив"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Ажәпа"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Аиқәаҵәа"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Ашәҟәы"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Аҭыҧхәаҧшра..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Иацҵатәуп"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Афаил ашәагаа %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Post"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Апорт"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Ааҭгылара"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Аныхра ахырҧоуп"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Азыҧшра"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Акьыҧхьра"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Агха"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Ианыхтәуп адаҟьа"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Аенергиа аекономиа арежим"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Адокументқәа ыҟыӡам"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Ихиоуп"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Анаҩс >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Ашьаҿақәа"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<мап>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Аиҿкаара"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Аҟәша"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ахьӡ"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Ажәла"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Амҩа ахьӡ"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Атәыла"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ақалақь"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
#, fuzzy
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Ахы"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Аҭыҧ"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Аинициалқәа"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Азгәаҭа"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Акод"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Апеиджер"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Амобилтә"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Амзар"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Иалхтәуп JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Асахьа"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Аконфигурациатә фаил"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr ""
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Адырқәа рбаза атаблица"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Асистематә фаил"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Аилыркаага афаил"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML адокумент"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Архив афаил"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Ажурнал"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Атқстә фаил"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Аимадара"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel ашаблон"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Апакеттә фаил"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Афаил"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Аҭаӡ"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Атеқстә документ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Аелектронтә таблица"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Апрезентациа"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Асахьа"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML адокумент"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Еилоу адокумент"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Аформула"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Адырқәа рбаза"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 аелектронтә таблица ашаблон"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 асахьа ашаблон"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 апрезентациа ашаблон"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 атеқсттә документ ашаблон"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint ашаблон"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 аформула"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 адиаграмма"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 асахьа"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 аелектронтә таблица"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 апрезентациа"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org атеқсттә документ"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 еилоу адокумент"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument адырқәа рбаза"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument асахьа"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument аформула"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument еилоу адокумент"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument апрезентациа"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocumentа аелектронтә таблица"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument атеқсттә документ"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument аелектронтә таблица ашаблон"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument асахьа ашаблон"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument апрезентациа ашаблон"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument атеқсттә документ ашаблон"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME арҭбаара"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 9c7e2dc03d2..e11c7ddae8c 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7937,6 +7937,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12207,82 +12212,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Ихархәатәуп"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Иалхтәуп"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Акәакьҭаиаша"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Аеллипс"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Агеометриа аҧсахра"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Иаҟәыхтәуп "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Ирхынҳәтәуп"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr ""
@@ -12590,112 +12600,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Ихархәатәуп"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Иаарттәуп..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Еиқәырхатәуп..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Иарктәуп"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Иалхтәуп"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Акәакьҭаиаша"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Аеллипс"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Агеометриа аҧсахра"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Иаҟәыхтәуп "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Ирхынҳәтәуп"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Аҷыдаҟазшьақәа..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Адрес:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Афреим:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Атеқст:"
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index da081182e87..669b97d2eb5 100644
--- a/source/ab/sw/messages.po
+++ b/source/ab/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3137,7 +3137,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12255,147 +12255,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12405,152 +12405,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13638,8 +13638,8 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Аформа ахьчара"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -17047,50 +17047,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
#, fuzzy
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Ахәаҧшра"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-#, fuzzy
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Ахәаҧшра"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Атип"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Астильқәа"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Аиҵагылақәа"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
#, fuzzy
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Аҿаҧшыра"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+#, fuzzy
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Ахәаҧшра"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17323,313 +17323,313 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Ариашара..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Ахы:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Атип:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Ахы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Атаблицақәа рыхьӡынҵа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Ахархәаҩ итип 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Аобиеқтқәа рыхьӡынҵа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Аформа:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~Адокумент зегьы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Аконтур"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Атаблицақәа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Асахьақәа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE аобиеқтқәа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Иацҵоу астильқәа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Астильқәа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Ихархәатәуп астильқәа..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Апараметрқәа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Акатегориа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
#, fuzzy
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Азхьарҧш: "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Ахьӡ атеқст"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Ахыцқәа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Аелементқәа рформатркра"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Афаил"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Апараметрқәа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Абызшәақәа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Асортра"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Абзац астильқәа"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Астандарт"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Ариашара"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index d5e00b3440f..1aad7124dd3 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-01-22 09:34+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Tik asb. ’n geldige tema-adres of soekterm."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Stel geen rande"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Stel slegs buiterand"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Stel buiterand en horisontale lyne"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Stel buiterand en alle binnelyne"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Stel buiterand sonder verandering van binnelyne"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Stel net diagonale lyne op"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Stel al vier rande"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Stel slegs linker- en regterrande"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Stel slegs boonste en onderste rande"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Stel slegs linkerrand"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Stel boonste en onderste rande en alle binnelyne op"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Stel regter en linker rande en alle binnelyne op"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Geen skadu"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Gooi skaduwee na regs onder"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Gooi skaduwee na regs bo"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Gooi skaduwee na links onder"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Gooi skaduwee na links bo"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Onderteken deur: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3377,66 +3372,71 @@ msgid "About %PRODUCTNAME"
msgstr "Aangaande %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Be_dankings"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Webwerf"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Bou-ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Lokaliteit: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Koppelvlaktaal: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME is ’n moderne, oopbron-, gebruikervriendelike produktiwiteitsuite vir woordverwerking, sigblaaie, voorleggings en nog wat."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Kopiereg © 2000–2019 LibreOffice-bydraers."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice was gebaseer op OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME is afgelei vanaf LibreOffice wat gebaseer was op OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Dié vrystelling is verskaf deur %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3551,17 +3551,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Ve_rvang"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Vervang"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Met:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Slegs _teks"
@@ -4381,6 +4381,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimum woordlengte"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5495,27 +5655,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Eienskappe"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Raam:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Naam:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternatiewe _teks:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Beskrywing:"
@@ -9034,80 +9194,80 @@ msgstr "Wys “Geen vanlynhulp geïnstalleer” opwipvenster"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hulp"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Gebr_uik %PRODUCTNAME-dialoë"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Stoor-dialoë"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Gebruik %PRODUCTNAME-_dialoë"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Drukdialoë"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Drukaksie stel “dokument gewysig”-status"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpreteer as jare tussen "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "en "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jaar (twee syfers)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Versamel gebruiksdata en stuur dit aan die Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help %PRODUCTNAME te verbeter"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Laai %PRODUCTNAME wanneer rekenaar aanskakel"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Aktieer Snelbeginner in stelsellaai"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME-snelbeginner"
@@ -10981,25 +11141,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Vooraf geïnstalleerde tema"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Eie tema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Of kies uit die temas wat met uitbreidings geïnstalleer is:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox-temas"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11629,102 +11774,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Sekuriteitsopsies"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Kies Firefox-tema"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Soekterm of adres"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ka_tegorie:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstrak"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Oortuigings"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Mode"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film en TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Vakansie"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musiek"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natuur"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Ander"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Landskap"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Seisoene"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Effe kleur"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Webwerwe"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Uitgesoek"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12731,27 +12780,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/af/extensions/messages.po b/source/af/extensions/messages.po
index b1d6fd682af..b14608060be 100644
--- a/source/af/extensions/messages.po
+++ b/source/af/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-21 09:36+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3103,162 +3103,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Kolomuitleg vir tabel “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Kort naam"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Outeur(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Uitgewer"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Hoofstuk"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Redakteur"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Soor_t"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Jaar"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tite_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dres"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Blads_y(e)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "U_itgawe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Boektitel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Soor_t publikasie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Org_anisasie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "_Instelling"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versiteit"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "S_oort verslag"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Maand"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Joernaal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Nomm_er"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "_Reeks"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Ann_otering"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Gebruikergedefinieerde veld _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Gebruikergedefinieerde veld _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Gebruikergedefinieerde veld _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Gebruikergedefinieerde veld _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Gebruikergedefinieerde veld _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Kolomname"
@@ -3433,28 +3433,28 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Tik ’n naam vir die nuwe datasoort in:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Skakel velde"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Voorstel"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Subvorms kan gebruik word om gedetailleerde data oor die huidige rekord van die meestervorm te wys. Om dit te doen, kan u spesifiseer watter kolomme in die subvorm met watter kolomme in die meestervorm ooreenkom."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiket"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiket"
diff --git a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
index de9ef08e603..f8e94f79915 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-22 14:39+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23473,6 +23473,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Meer velde"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25769,6 +25778,15 @@ msgstr "Oortjies"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25787,6 +25805,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index 460933b9a00..2e6c01f5bd7 100644
--- a/source/af/sc/messages.po
+++ b/source/af/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-22 10:10+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15643,6 +15643,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16212,12 +16217,12 @@ msgstr "Voorwaardelike formatering"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17523,90 +17528,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "~Sluit"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nuwe rekord"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "Nuwe"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Skrap"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Teruglaai"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Vorige rekord"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Volgende rekord"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "~Sluit"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Blaai..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Databasisomvangs"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19411,36 +19373,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolom"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Ry"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Gegroepeer volgens: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19587,167 +19554,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22390,17 +22359,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24385,111 +24364,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~Venster"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Wys"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Versteek"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Bladsybreuk"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Grafieke"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Tekenobjekte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Wys"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Versteek"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Wys"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Versteek"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Wys"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Versteek"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoem"
diff --git a/source/af/scp2/source/ooo.po b/source/af/scp2/source/ooo.po
index fecdf9dffaa..0d97532debe 100644
--- a/source/af/scp2/source/ooo.po
+++ b/source/af/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-21 07:47+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Open dokument"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/af/scp2/source/winexplorerext.po b/source/af/scp2/source/winexplorerext.po
index 85240ca537a..673510f141f 100644
--- a/source/af/scp2/source/winexplorerext.po
+++ b/source/af/scp2/source/winexplorerext.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-11-13 20:14+0000\n"
-"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:12+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: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1352837663.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369347126.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Stel die Microsoft Windows Explorer in staat om inligting oor %PRODUCTNAME-dokumente te vertoon, byvoorbeeld duimnaelprentjies."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index a15e32f2e16..1a657ae6ca7 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-22 14:41+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2635,6 +2635,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3114,164 +3119,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4760,160 +4950,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index f2ca392cd6c..cdd03934311 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-22 10:48+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -912,11 +912,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " J: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Verwyder eienskap"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -925,27 +920,27 @@ msgstr ""
"Die ingevoerde waarde stem nie met die gespesifiseerde tipe ooreen nie.\n"
"Die waarde sal as teks gestoor word."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Styl bestaan reeds. Oorskryf?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Stel te~rug"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Hierdie naam is reeds in gebruik."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Hierdie styl bestaan nie."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -954,7 +949,7 @@ msgstr ""
"Hierdie styl kan nie as basisstyl gebruik word nie\n"
"omdat dit tot 'n rekursiewe verwysing sou lei."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -963,7 +958,7 @@ msgstr ""
"Naam bestaan reeds as ’n verstekstyl.\n"
"Kies asseblief ’n ander naam."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -974,94 +969,94 @@ msgstr ""
"As hulle geskrap word, sal teks terugval na die ouer-styl.\n"
"Wil u nogtans hierdie style skrap?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Style in gebruik:"
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Foutiewe wagwoordbevestiging"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Stuur"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Font"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Wys voorskoue"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Sien weergaweopmerking"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(geen naam gegee nie)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Stillys"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hiërargies"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Invulformaat-modus"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nuwe styl uit seleksie"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Werk styl by"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Wil u werklik die opname kanselleer? Alle stappe wat tot op hierdie stadium opgeneem is, sal verlore gaan."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Kanselleer opname"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Die sjablone word vir eerste gebruik geïnisialiseer."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1070,7 +1065,7 @@ msgstr ""
"Geen verstek drukker gevind nie.\n"
"Kies asseblief 'n drukker en probeer weer."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1079,17 +1074,17 @@ msgstr ""
"Kon nie drukker aansit nie.\n"
"Gaan asseblief u drukkeropstelling na."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Drukker besig"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (leesalleen)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1100,7 +1095,7 @@ msgstr ""
"Moet die nuwe instellings \n"
"in die aktiewe dokument gestoor word?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1111,7 +1106,7 @@ msgstr ""
"Moet die nuwe instellings in die \n"
"aktiewe dokument gestoor word?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1122,7 +1117,7 @@ msgstr ""
"Moet die nuwe instellings \n"
"in die aktiewe dokument gestoor word?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1131,7 +1126,7 @@ msgstr ""
"Die dokument kan nie toegemaak word nie\n"
"omdat ’n druktaak uitgevoer word."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1139,7 +1134,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1150,17 +1145,17 @@ msgstr ""
"\n"
"Foutkode is $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Fout met stuur van e-pos"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Hierdie dokument kan nie geredigeer word nie, moontlik weens ontbrekende toegangsregte. Wil u ’n kopie van die dokument redigeer?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1171,350 +1166,360 @@ msgstr ""
"\n"
"U kan ook probeer om die slot te ignoreer en die lêer te open vir redigering."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Open ~kopie"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Open"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (herstelde dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Raak betrokke"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Skenkings"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dié dokument is oop in leesalleen modus."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Dié PDF is oop in leesalleen modus om die bestaande lêer te kan onderteken."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Vlak"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nasionale sekuriteit:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Redigeer dokument"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Onderteken dokument"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dié dokument het ’n ongeldige handtekening."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Die handtekening is geldig, maar die dokument is gewysig."
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Die handtekening is OK, maar die sertifikaat kon nie gevalideer word nie."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Die handtekening is OK, maar die dokument is slegs gedeeltelik onderteken."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Die sertifikaat kon nie gevalideer word nie en die dokument is slegs gedeeltelik onderteken."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dié dokument is digitaal onderteken en die handtekening is geldig."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Wys handtekeninge"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Meer ~opsies"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Verwyder"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wagwoordlengte"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1882,32 +1887,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Weergaweopmerking:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Naam"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Soort"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Waarde"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Soort"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ja"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nee"
@@ -1917,17 +1907,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "V_oeg eienskap by"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Naam"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Soort"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Waarde"
@@ -2057,17 +2047,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Ligging:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Soor_t:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Verander _wagwoord"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Sjabloon:"
@@ -2077,27 +2067,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Eienskappe van “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Algemeen"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Beskrywing"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Doelgemaakte eienskappe"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS-eienskappe"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Sekuriteit"
@@ -2316,6 +2306,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/af/shell/messages.po b/source/af/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/af/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/af/starmath/messages.po b/source/af/starmath/messages.po
index 73528003742..40b98a5a236 100644
--- a/source/af/starmath/messages.po
+++ b/source/af/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-01-22 13:42+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1666,266 +1666,291 @@ msgid "Examples"
msgstr "Voorbeelde"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standaard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Skuinsdruk"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Vetdruk"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "swart"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blou"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "groen"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "rooi"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "siaan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grys"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lemmetjie"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "maroen"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "vlootblou"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olyf"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "pers"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silwer"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "geel"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Versteek"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "Grootte"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Font"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "links"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Sentreer"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "regs"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Bevele"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formule"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Stoor tans dokument..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION-formule"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FOUT : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Onverwagte karakter"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' verwag"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' verwag"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' verwag"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' verwag"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' verwag"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Kleur vereis"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'REGS' verwag"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Inhoud"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formuleteks"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Grense"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Grootte"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Oo~rspronklike grootte"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Pas by bladsy"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalering"
@@ -1990,6 +2015,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elemente"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/af/svtools/messages.po b/source/af/svtools/messages.po
index cc1ed7324a8..9f881cc6055 100644
--- a/source/af/svtools/messages.po
+++ b/source/af/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-18 10:51+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1519 +16,1521 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547808676.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Ontdoen: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Her~doen: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Herhaal: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Ongeformateerde teks"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Ongformateerde teks (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap-beeld (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface-metalêer (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rykteksformatering (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rykteksformatering (Ryk teks)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME-tekeningformaat"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView-biskaart/animasie (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statusinligting uit Svx- interne skakel"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME-skakel (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-boekmerk"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star-bedienerformaat"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star-objekformaat"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Minitoepassing-objek"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Inpropobjek"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0-objek"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0-objek"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0-objek"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0-objek"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0-objek"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0-objek"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0-objek"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-objek"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0-objek"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0-objek"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0-objek"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-objek"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0-objek"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0-objek"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-objek"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0-objek"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objek"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-objek"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0-objek"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0-objek"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-objek"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0-objek"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0-objek"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint-objek"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Eenvoudige HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE-skakel)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word-objek"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet-objek"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-dokumentobjek"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-dokumentinligting"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokument"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objek"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafika-objek"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer-objek"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web-objek"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer-meesterobjek"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw-objek"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress-objek"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc-objek"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart-objek"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math-objek"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-metalêer"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Databron-objek"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Databrontabel"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-navraag"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0-dialoog"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Skakel"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-formaat sonder opmerkings"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objek % kon nie ingevoeg word nie."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objek uit lêer % kon nie ingevoeg word nie."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Verdere objekte"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Onbekende brondokument"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Naam"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Grootte"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Datum gewysig"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Soort"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Grepe"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KG"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MG"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GG"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ry: %1, kolom: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tipe: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Gids"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Lêer"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Leë veld"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeries"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normaal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Karakterstel"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Woordeboek"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Hale"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhujin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Foonboek"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foneties (alfanumeries eerste)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foneties (alfanumeries laaste)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeries"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Woordeboek"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Hale"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhujin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foneties (alfanumeries eerste, gegroepeer volgens lettergrepe)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foneties (alfanumeries eerste, gegroepeer volgens konsonante)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foneties (alfanumeries laaste, gegroepeer volgens lettergrepe)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foneties (alfanumeries laaste, gegroepeer volgens konsonante)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Vandag"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Geen"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lig"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Ligte skuinsdruk"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Gewoon"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Skuinsdruk"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Vetdruk"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Vet skuinsdruk"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Swart"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Swart skuinsdruk"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Boek"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Vet skuinsdruk"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Slank"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Slank vetdruk"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Slank vet kursief"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Slank vet skuinsdruk"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Slank kursief"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Slank skuinsdruk"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ekstra lig kursief"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstra lig kursief"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Skuinsdruk"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semi-vetdruk"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semi-vet skuinsdruk"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Die selfde font sal gebruik word vir die drukker en die skerm."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Hierdie is ’n drukfont. Die skermvoorkoms kan verskil."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Hierdie fontstyl sal nageboots word of die naaste ooreenstemmende styl sal gebruik word."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Hierdie font is nie geïnstalleer nie. Die naaste beskikbare font sal gebruik word."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Blaai..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Skuif tuis"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Skuif links"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Skuif regs"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Skuif na einde"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Voeg by"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horisontale liniaal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertikale liniaal"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bis drempel"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bis-versagting"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bis-grysskaal"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bis-kleur"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bis-grysskaal"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bis-kleur"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bis- ware kleur"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Die beeld benodig omtrent %1 KG geheue."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Die beeld benodig omtrent %1 KG geheue; die lêergrootte is %2 KG."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Die lêergrootte is %1 KG."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "rekenaar"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "poort"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Ander CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Gereed"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Tydelik gestop"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Skrapping hangend"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Besig"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inisialiseer tans"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Wagtend"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Warm tans op"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Verwerk tans"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Druk tans"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Vanlyn"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fout"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Onbekende bediener"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papierverstopping"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nie genoeg papier nie"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Handmatige papierinvoer"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papierprobleem"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "T/A aktief"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Afvoerrakkie vol"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Poeierink is min"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Geen poeierink"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Skrap bladsy"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Gebruikersoptrede nodig"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Onvoldoende geheue"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Deksel oop"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Kragspaarmodus"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Verstek drukker"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumente"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Klaar"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Volgende >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Teru~g"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Stappe"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<geen>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Maatskappy"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Afdeling"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Naam"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Van"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Straat"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Poskode"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Stad"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posisie"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adresvorm"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Voorletters"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Komplimentêre afsluiting"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: tuis"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: werk"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Gebruiker 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Gebruiker 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Gebruiker 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Gebruiker 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provinsie"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: kantoor"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Roeper"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Selfoon"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: ander"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Nooi"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ se $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME benodig ’n Java-looptydomgewing (JRE) om dié taak te verrig. Installeer asb. ’n JRE en herbegin %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME benodig ’n %BITNESS-bis Java-looptydomgewing (JRE) om dié taak te verrig. Installeer asb. ’n JRE en herbegin %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME benodig Oracle se Java-ontwikkelingspakket (JDK) op macOS 10.10 of later om dié taak te verrig. Installeer hulle asb. en herbegin %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Die %PRODUCTNAME-opstelling is verander. Onder %PRODUCTNAME - Voorkeure - %PRODUCTNAME - Gevorderd, kies die Java-looptydomgewing wat u wil hê %PRODUCTNAME moet gebruik."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Die %PRODUCTNAME-opstelling is verander. Onder Nutsgoed - Opsies - %PRODUCTNAME - Gevorderd, kies die Java-looptydomgewing wat u wil hê %PRODUCTNAME moet gebruik."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME benodig ’n Java-looptydomgewing (JRE) om dié taak te verrig. Die gekose JRE werk nie. Kies asb. ’n ander weergawe of installeer ’n nuwe JRE en kies dit onder %PRODUCTNAME - Voorkeure - %PRODUCTNAME - Gevorderd."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME benodig ’n Java-looptydomgewing (JRE) om dié taak te verrig. Die gekose JRE werk nie. Kies asb. ’n ander weergawe of installeer ’n nuwe JRE en kies dit onder Nutsgoed - Opsies - %PRODUCTNAME - Gevorderd."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE vereis"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Kies JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE is defektief"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Bronkode"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Boekmerklêer"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafika"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Opstellinglêer"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Toepassing"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Databasistabel"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Stelsellêer"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-dokument"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Hulplêer"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Argieflêer"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Log-lêer"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice-databasis"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0-meesterdokument"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice-beeld"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekslêer"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Skakel"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0-sjabloon"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-dokument"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-sjabloon"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch-lêer"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Lêer"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Vouer"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Teksdokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Sigblad"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Voorlegging"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tekening"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Meesterdokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formule"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Databasis"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0-sigbladsjabloon"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0-tekeningsjabloon"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0-voorleggingsjabloon"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0-teksdokumentsjabloon"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Plaaslike skyf"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Skyfaandrywer"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-aandrywer"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Netwerkverbinding"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-dokument"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-sjabloon"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-vertoning"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0-formule"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0-grafiek"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0-tekening"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0-sigblad"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0-voorlegging"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0-teksdokument"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0-meesterdokument"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-databasis"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-tekening"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-formule"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-meesterdokument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-voorlegging"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-sigblad"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-teks"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-sigbladsjabloon"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-tekeningsjabloon"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-voorleggingsjabloon"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekssjabloon"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-uitbreiding"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell-speltoetser"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen-woordafbreker"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes-tesourus"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lys van geïgnoreerde woorde"
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 0c2b8d72b3d..287ee462f09 100644
--- a/source/af/svx/messages.po
+++ b/source/af/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-22 14:39+0000\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8041,6 +8041,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Links na regs (vertikaal)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12468,85 +12473,90 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Kontoerredigeerder"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Pas toe"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Werkarea"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Kies"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Reghoek"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellips"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Poligoon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Redigeer punte"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Skuif punte"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Voeg punte in"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Skrap punte"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "OutoKontoer"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Ontdoen "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Herdoen"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Kleurtoleransie"
@@ -12867,120 +12877,114 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Voet"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ImageMap-redigeerder"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Pas toe"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Open..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Stoor..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Sluit"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Kies"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Reghoek"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellips"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Poligoon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Vryvormveelhoek"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Redigeer punte"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Skuif punte"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Voeg punte in"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Skrap punte"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Ontdoen "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Rooi"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktief"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Eienskappe..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adres:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Raam:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Teks:"
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 5ab19e98515..040015c1396 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:43+0200\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: af\n"
@@ -3113,9 +3113,9 @@ msgid "Change object title of $1"
msgstr "Verander objektitel van $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Verander objekbeskrywing van $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12015,147 +12015,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hulp"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Lêer"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Tuis"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Tuis"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Voeg _in"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Voeg ~in"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Uit~leg"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Uit~leg"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Verwysing_s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Verwysing~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "He_rsien"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "He~rsien"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Aansig"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Beeld"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Beeld"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "T_eken"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "T~eken"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objek"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objek"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Druk"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Druk"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Vo_rm"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Vo~rm"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ge_reedskap"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Ge~reedskap"
@@ -12165,152 +12165,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Lêer"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Voeg _in"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Vou om"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Uitleg"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Verwysing_s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "He_rsien"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Aansig"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abel"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Beeld"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "T_eken"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objek"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Druk"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Ge_reedskap"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13378,8 +13378,8 @@ msgstr "Rek woordspasiëring in reëls met handmatige lynbreuke in alkantbelynde
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Beskerm dokument"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16664,47 +16664,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Inhoudsopgawe, indeks, of bibliografie"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Voorskou"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Voorskou"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Soort"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Inskrywings"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Style"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Kolomme"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Agtergrond"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Voorskou"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "V_lak"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "Soor_t"
@@ -16934,305 +16934,305 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "R_edigeer..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Soort:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Tabelinhoud"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Gebruikergedefinieer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografie 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Beskerm teen handmatige veranderinge"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Titel en soort"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Vir:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Die hele dokument"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Die hoofstuk"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evalueer tot op vlak:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Skep indeks of inhoudsopgawe"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Skema"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Inde_ksmerkers"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabelle"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Te_ksrame"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafika"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objekte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Gebruik vlak van bronhoofstuk"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Addisionele style"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Styl_e"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Ken style toe..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Byskrifte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objekname"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorie:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Vertoon:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Verwysings"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorie en nommer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Byskrifteks"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Skep vanaf"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Skep vanaf die volgende objekte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Hakies:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Nommer inskrywings"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[geen]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formaat van inskrywings"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Kombineer identiese inskrywings"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Kombineer identiese inskrywings met p of _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Kombineer met -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Kassensitief"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Elke sleutel ’n aparte inskrywing"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Konkordansielêer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Lêer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opsies"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Taal:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Sleuteltipe:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sorteer"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "V_lakke"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Paragraaf_style"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Verstek"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "R_edigeer"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Toekenning"
diff --git a/source/am/basic/messages.po b/source/am/basic/messages.po
index ee368b952a2..7e644d7ef58 100644
--- a/source/am/basic/messages.po
+++ b/source/am/basic/messages.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: 2018-02-27 15:07+0100\n"
-"PO-Revision-Date: 2017-10-22 19:13+0000\n"
+"PO-Revision-Date: 2019-05-19 16:35+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1508699632.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558283735.000000\n"
#: basic/inc/basic.hrc:27
msgctxt "RID_BASIC_START"
@@ -24,12 +24,12 @@ msgstr "የ አገባብ ስህተት"
#: basic/inc/basic.hrc:28
msgctxt "RID_BASIC_START"
msgid "Return without Gosub."
-msgstr "ይመልሳል ያለ ንዑስ መሄጃ"
+msgstr "ያለ ንዑስ መሄጃ ይመልሳል"
#: basic/inc/basic.hrc:29
msgctxt "RID_BASIC_START"
msgid "Incorrect entry; please retry."
-msgstr "የተሳሳተ ማስገቢያ: እባክዎን እንደገና ይሞክሩ"
+msgstr "የ ተሳሳተ ማስገቢያ: እባክዎን እንደገና ይሞክሩ"
#: basic/inc/basic.hrc:30
msgctxt "RID_BASIC_START"
diff --git a/source/am/chart2/messages.po b/source/am/chart2/messages.po
index b826fd1befa..0c34c0a282a 100644
--- a/source/am/chart2/messages.po
+++ b/source/am/chart2/messages.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: 2019-01-12 13:17+0100\n"
-"PO-Revision-Date: 2019-01-21 03:43+0000\n"
+"PO-Revision-Date: 2019-05-21 14: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: 1548042188.000000\n"
+"X-POOTLE-MTIME: 1558448425.000000\n"
#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
@@ -2834,7 +2834,7 @@ msgstr "_ክፍተት"
#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:138
msgctxt "tp_SeriesToAxis|FT_OVERLAP"
msgid "_Overlap"
-msgstr "_መደረቢያ"
+msgstr "_መደራረቢያ"
#: chart2/uiconfig/ui/tp_SeriesToAxis.ui:178
msgctxt "tp_SeriesToAxis|CB_BARS_SIDE_BY_SIDE"
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index 43635f2d202..9a2705cb812 100644
--- a/source/am/cui/messages.po
+++ b/source/am/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-04-19 19:55+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-24 16: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: LibreOffice\n"
-"X-POOTLE-MTIME: 1555703730.000000\n"
+"X-POOTLE-MTIME: 1558715960.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "እባክዎን ዋጋ ያለው የ ገጽታ አድራሻ ወይንም የ መፈለጊያ ደንብ ያስገቡ:"
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "ድንበሮች አታሰናዳ"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "የውጪ ድንበሮችን ብቻ ማሰናጃ"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "የ ውጪ ድንበሮች እና የ አግድም መስመሮች ማሰናጃ"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "የውጪ ድንበሮች እና የውስጥ መስመሮች በሙሉ ማሰናጃ"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "የውስጥ መስመሮች ሳይቀየሩ የውጪ ድንበሮችን ማሰናጃ"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "የአግድም መስመሮች ብቻ ማሰናጃ"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "አራቱንም ድንበሮች በሙሉ ማሰናጃ"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "የ ግራ እና የ ቀኝ ድንበሮችን ብቻ ማሰናጃ"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "የ ላይ እና የ ታች ድንበሮች ብቻ ማሰናጃ"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "የ ግራ ድንበር ብቻ ማሰናጃ"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "የ ላይ እና የ ታች ድንበሮችን እና ሁሉንም የ ውስጥ መስመሮች ማሰናጃ"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "የ ግራ እና የ ቀኝ ድንበሮችን እና ሁሉንም የውስጥ መስመሮችን ማሰናጃ"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "ጥላ የለም"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ከ ታች በ ቀኝ በኩል ጥላ ማጥላት"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ከ ላይ በ ቀኝ በኩል ጥላ ማጥላት"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ከ ታች በ ግራ በኩል ጥላ ማጥላት"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ከ ላይ በ ግራ በኩል ጥላ ማጥላት"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "የ ተፈረመው በ: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "ሁሉንም ፋይሎች"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "የ ተመዘገቡ ዳታቤዞች"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "ስለ %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "ምስ_ጋና"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_ድሕረ ገጽ"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "ቋንቋ: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "መጠቀሚያ -ቋንቋ: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "መግቢያውን ይመልከቱ: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME open source productivity suite ዘመናዊ: በጣም-ቀላል-ለመጠቀም: ለ ቃላት ማቀናበሪያ: ለ ሰንጠረዥ: ለ ማቅረቢያ እና ሌሎችም: ተዘጋጅቶ የ ቀረበው በ ሳምሶን በለጠ በላይነህ ነው"
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 LibreOffice contributors."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "የ ሊብሬ ቢሮ መሰረት OpenOffice.org ነው"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME የ ሊብሬ ቢሮ መሰረት የመነጨው ከ OpenOffice.org ነው"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "ይህ ስርጭት የቀረበው በ %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_መቀየሪያ"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "መተ_ኪያ"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_ጋር:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_ጽሁፍ ብቻ"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "አነስተኛ የ ቃላት እርዝመት"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -4533,7 +4693,7 @@ msgstr "ጽሁፍ ራሱ በራሱ _መጠቅለያ"
#: cui/uiconfig/ui/cellalignment.ui:254
msgctxt "cellalignment|checkShrinkFitCellSize"
msgid "_Shrink to fit cell size"
-msgstr "_ማሳነሻ በክፍሉ ልክ መጠን"
+msgstr "በ ክፍሉ ልክ መጠን _ማሳነሻ"
#: cui/uiconfig/ui/cellalignment.ui:270
msgctxt "cellalignment|checkHyphActive"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "ባህሪዎች"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ክ_ፈፍ:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_ስም:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "አማራጭ _ጽሁፍ:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_መግለጫ:"
@@ -9019,80 +9179,80 @@ msgstr "ማሳያ \"ከ መስመር ውጪ እርዳታ አልተገጠመም\"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "እርዳታ"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_መጠቀሚያ %PRODUCTNAME ንግግሮች"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "መክፈቻ/ማስቀመጫ ንግግሮች"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "መጠቀሚያ %PRODUCTNAME _ንግግሮች"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "የ ማተሚያ ንግግሮች"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_ማተሚያ ማሰናጃ ለ \"ሰነድ ማሻሻያ\" ሁኔታ"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "የሰነድ ሁኔታዎች"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_መተርጓሚያ እንደ በ አመቶች መካከል "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "እና "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "አመት (ሁለት አሀዝ)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "የ አጠቃቀም ዳታ መስብሰቢያ እና ለ ሰነድ አዘጋጆቹ መላኪያ"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "እንድናሻሻል ይርዱን %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "መጫኛ %PRODUCTNAME ስርአቱ በሚጀምር-ጊዜ"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "በ ስርአቱ ትሪ ላይ በፍጥነት ማስጀመሪያ ማስቻያ"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME በፍጥነት ማስጀመሪያ"
@@ -9285,7 +9445,7 @@ msgstr "የ ስርአተ ነጥ_ብ ባህሪዎች"
#: cui/uiconfig/ui/optjsearchpage.ui:362
msgctxt "optjsearchpage|ignorewhitespace"
msgid "_Whitespace characters"
-msgstr "_የነጭ ክፍተት ባህሪዎች"
+msgstr "የ _ነጭ ክፍተት ባህሪዎች"
#: cui/uiconfig/ui/optjsearchpage.ui:379
msgctxt "optjsearchpage|ignoremiddledot"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "በቅድሚያ የ ተገጠመ ገፅታ"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "የራስ ገጽታ"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "ወይንም ይምረጡ በ ተጨማሪዎች ከ ተገጠሙት ገጽታዎች ውስጥ:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "የ ፋየርፎክስ ገጽታዎች"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "የ ደህንነት ምርጫዎች"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "የ ፋየርፎክስ ገጽታ ይምረጡ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "መፈለጊያ ደንብ ወይንም አድራሻ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "ም_ድብ:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "ግልጽ ያልሆነ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "ምክንያት"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "ፋሺን"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "ፊልም እና ቲቪ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "ፋየርፎክስ"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "በአላት"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "ሙዚቃ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "ተፈጥሮ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "ሌላ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "ወቅታዊ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "ሙሉ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "ስፖርት"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "ድህረ ገጽ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "ገጽታዎች"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/am/editeng/messages.po b/source/am/editeng/messages.po
index 3e3629a4093..0eadf825b25 100644
--- a/source/am/editeng/messages.po
+++ b/source/am/editeng/messages.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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2019-04-29 00:06+0000\n"
+"PO-Revision-Date: 2019-05-28 00:54+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1556496414.000000\n"
+"X-POOTLE-MTIME: 1559004887.000000\n"
#: editeng/uiconfig/ui/spellmenu.ui:12
msgctxt "spellmenu|ignore"
@@ -193,7 +193,7 @@ msgstr "ነጭ"
#: include/editeng/editrids.hrc:60
msgctxt "RID_SVXITEMS_ITALIC_NONE"
msgid "Not Italic"
-msgstr "ያላዘመመ"
+msgstr "ማዝመሚያ አይደለም"
#: include/editeng/editrids.hrc:61
msgctxt "RID_SVXITEMS_ITALIC_OBLIQUE"
@@ -477,7 +477,7 @@ msgstr "በ ላዩ ላይ መሰረዣ"
#: include/editeng/editrids.hrc:124
msgctxt "RID_SVXITEMS_STRIKEOUT_BOLD"
msgid "Bold strikethrough"
-msgstr "በማድመቂያ መሰረዣ"
+msgstr "በ ማድመቂያ መሰረዣ"
#: include/editeng/editrids.hrc:125
msgctxt "RID_SVXITEMS_STRIKEOUT_SLASH"
@@ -701,7 +701,7 @@ msgstr "ብልጭ ድርግም ባይ"
#: include/editeng/editrids.hrc:176
msgctxt "RID_SVXITEMS_BLINK_FALSE"
msgid "Not Blinking"
-msgstr "ብልጭ ድርግም የማይል"
+msgstr "ብልጭ ድርግም አይልም"
#: include/editeng/editrids.hrc:177
msgctxt "RID_SVXITEMS_AUTOKERN_TRUE"
@@ -1068,12 +1068,12 @@ msgstr "ጽሁፉ ዞሯል በ $(ARG1)°"
#: include/editeng/editrids.hrc:251
msgctxt "RID_SVXITEMS_CHARSCALE"
msgid "Characters scaled $(ARG1)%"
-msgstr "የተመጠኑ ባህሪዎች $(ARG1)%"
+msgstr "የ ተመጠኑ ባህሪዎች $(ARG1)%"
#: include/editeng/editrids.hrc:252
msgctxt "RID_SVXITEMS_CHARSCALE_OFF"
msgid "No scaled characters"
-msgstr "የተመጠኑ ባህሪዎች የሉም"
+msgstr "የ ተመጠኑ ባህሪዎች የሉም"
#: include/editeng/editrids.hrc:253
msgctxt "RID_SVXITEMS_RELIEF_NONE"
diff --git a/source/am/extensions/messages.po b/source/am/extensions/messages.po
index 62d647a3b11..c4719995121 100644
--- a/source/am/extensions/messages.po
+++ b/source/am/extensions/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-19 14:18+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-22 18:11+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: 1555683495.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558548713.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -2211,7 +2211,7 @@ msgstr ""
#: extensions/inc/strings.hrc:343
msgctxt "RID_BIB_STR_FRAME_TITLE"
msgid "Bibliography Database"
-msgstr "የ ጽሁፎች ዝርዝር ዳታቤዝ"
+msgstr "የ ቢብሊዮግራፊ ዳታቤዝ"
#: extensions/inc/strings.hrc:344
msgctxt "RID_MAP_QUESTION"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "የ አምድ እቅድ ለ ሰንጠረዥ “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_አጭር ስም"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_ደራሲ(ዎች)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_አሳታሚው"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_ምዕራፍ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "አራሚው"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_አይነት"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_አመት"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "አርእ_ስት"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "አ_ድራሻ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "ገ_ጽ(ጾች)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "እት_ም"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "የ _መጽሐፍ አርእስት"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "መጠን"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "የ ሕትመት አ_ይነት"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "ድር_ጅት"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "ድር_ጅት"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "ዩኒቨ_ርስቲ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "የ መግ_ለጫው አይነት"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_ወር"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_ማስታወሻ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "ቁጥ_ር"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "ተከ_ታታይ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "ማብራ_ሪያ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_ማስታወሻ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "በ ተጠቃሚው-የሚወሰነ ሜዳ _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "በ ተጠቃሚው-የሚወሰነ ሜዳ _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "በ ተጠቃሚው-የሚወሰነ ሜዳ _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "በ ተጠቃሚው-የሚወሰነ ሜዳ _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "በ ተጠቃሚው-የሚወሰነ ሜዳ _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "የ አምድ ስሞች"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "ለ አዲሱ የ ዳታ አይነት ስም ይጻፉ:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "አገናኝ ሜዳዎች"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "አስተያየት"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "ንዑስ ፎርሞች ዝርዝር ዳታዎችን ለማሳየት ይጠቅማሉ ስለ አሁኑ ዋናው መዝገብ ፡ ይህን ለማድረግ መወሰን ይኖርቦታል የትኞቹ አምዶች ከንዑስ አምዶቹ ጋር ከዋናው አምዶች ጋር እንደሚዛመዱ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ምልክት"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "ምልክት"
diff --git a/source/am/extras/source/autocorr/emoji.po b/source/am/extras/source/autocorr/emoji.po
index c25e08943bc..3851fcbee73 100644
--- a/source/am/extras/source/autocorr/emoji.po
+++ b/source/am/extras/source/autocorr/emoji.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-12-20 08:16+0100\n"
-"PO-Revision-Date: 2018-03-24 19:25+0000\n"
+"PO-Revision-Date: 2019-05-21 14: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: 1521919514.000000\n"
+"X-POOTLE-MTIME: 1558448431.000000\n"
#. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
@@ -10931,7 +10931,7 @@ msgctxt ""
"OVERLAP\n"
"LngText.text"
msgid "overlap"
-msgstr ""
+msgstr "መደራረቢያ"
#. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji
#: emoji.ulf
diff --git a/source/am/filter/messages.po b/source/am/filter/messages.po
index 2832d23b3d1..ce0dcdedb29 100644
--- a/source/am/filter/messages.po
+++ b/source/am/filter/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-29 00:07+0000\n"
+"PO-Revision-Date: 2019-05-19 19:44+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: 1556496445.000000\n"
+"X-POOTLE-MTIME: 1558295089.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_UNKNOWN_APPLICATION"
@@ -62,12 +62,12 @@ msgstr "XSLT ን ለ መላክ ማግኘት አልተቻለም: እባክዎን
#: filter/inc/strings.hrc:33
msgctxt "STR_ERROR_IMPORT_XSLT_NOT_FOUND"
msgid "The XSLT for import cannot be found. Please enter a valid path."
-msgstr "XSLT ን ለማምጣት ማግኘት አልተቻለም: እባክዎን ዋጋ ያለው መንገድ ያስገቡ"
+msgstr "XSLT ለ ማምጣት ማግኘት አልተቻለም: እባክዎን ዋጋ ያለው መንገድ ያስገቡ"
#: filter/inc/strings.hrc:34
msgctxt "STR_ERROR_IMPORT_TEMPLATE_NOT_FOUND"
msgid "The given import template cannot be found. Please enter a valid path."
-msgstr "የ ተሰጠውን ማምጫ ቴምፕሌት ማግኘት አልተቻለም: እባክዎን ዋጋ ያለው መንገድ ያስገቡ"
+msgstr "የ ተሰጠውን ቴምፕሌት ማምጫ ማግኘት አልተቻለም: እባክዎን ዋጋ ያለው መንገድ ያስገቡ"
#: filter/inc/strings.hrc:35
msgctxt "STR_DEFAULT_FILTER_NAME"
@@ -127,7 +127,7 @@ msgstr "XML Filter List"
#: filter/inc/strings.hrc:46
msgctxt "T602FILTER_STR_IMPORT_DIALOG_TITLE"
msgid "Settings for T602 import"
-msgstr "Settings for T602 import"
+msgstr "ማሰናጃ ለ T602 ማምጫ"
#: filter/inc/strings.hrc:47
msgctxt "T602FILTER_STR_ENCODING_LABEL"
diff --git a/source/am/forms/messages.po b/source/am/forms/messages.po
index fe184065db5..3803426a1ae 100644
--- a/source/am/forms/messages.po
+++ b/source/am/forms/messages.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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2017-10-09 18:36+0000\n"
+"PO-Revision-Date: 2019-05-19 17:58+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507574189.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558288695.000000\n"
#: forms/inc/strings.hrc:25
msgctxt "RID_BASELISTBOX_ERROR_FILLLIST"
@@ -218,7 +218,7 @@ msgstr "$2 ክፍልፋይ አሀዝ ይፈቀዳል ከበዛ"
#: forms/inc/strings.hrc:65
msgctxt "RID_STR_XFORMS_VALUE_LENGTH"
msgid "The string must be $2 characters long."
-msgstr "የሀረጉ $2 ባህሪዎች መርዘም አለበት"
+msgstr "ሀረጉ $2 ባህሪዎች መርዘም አለበት"
#: forms/inc/strings.hrc:66
msgctxt "RID_STR_XFORMS_VALUE_MIN_LENGTH"
diff --git a/source/am/helpcontent2/source/auxiliary.po b/source/am/helpcontent2/source/auxiliary.po
index aa2bbc19321..5df4b7f9059 100644
--- a/source/am/helpcontent2/source/auxiliary.po
+++ b/source/am/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-08-05 19:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "ጠቅላላ መረጃ"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "ማቅረቢያ እና መሳያ (ማስደነቂያ/መሳያ)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "ቱልባሮች"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "መሳያዎች (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "ዝርዝሮች"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "ቱልባሮች"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "እቃዎች: ንድፎች እና ቢትማፕስ"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "ቡድን እና ደረጃዎች"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "ጽሁፍ በ ማቅረቢያዎች እና በ ስእሎች ውስጥ"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/guide.po b/source/am/helpcontent2/source/text/sbasic/guide.po
index 0b309db7150..015b8cbaa47 100644
--- a/source/am/helpcontent2/source/text/sbasic/guide.po
+++ b/source/am/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-04 23:04+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "ማወዳደሪያ Access2Base ከ MSAccess VBA ጋር"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "ንግግር በ ፕሮግራም ኮድ መክፈቻ"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>ክፍል/ንግግር መቀያየሪያ</bookmark_value><bookmark_value>ንግግር: የ ፕሮግራም ኮድ በመጠቀም ማሳያ (ምሳሌ)</bookmark_value><bookmark_value>ምሳሌዎች: ንግግር ማሳያ የ ፕሮግራም ኮድ በመጠቀም</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/python.po b/source/am/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/am/helpcontent2/source/text/sbasic/python.po
+++ b/source/am/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 15ec8285325..73911892a43 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic እርዳታ</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/03.po b/source/am/helpcontent2/source/text/sbasic/shared/03.po
index 5b0e03cb2f5..a39b60a4f83 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr "ተግባሮች እና ንዑስ አሰራሮች ለ ክፍል መቆጣ
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index 8ac5f73414b..36b337ea850 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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-12-20 01:13+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">እርስዎ ማስገባት የሚፈልጉትን ፋይል ፈልገው ያግኙ </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">URL ያስገቡ ወይንም የ ፋይል ስምእርስዎ ማስገባት የሚፈልጉትን ዳታ የይያዘውን: እና ይጫኑ ማስገቢያ </ahelp> URL ብቻ ይጠየቃል ከ ኔትዎርክ ወይንም የ ፋይል ስርአት ውስጥ:"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">እርስዎ ማስገባት የሚፈልጉትን ሰንጠረዥ ወይንም የ ዳታ መጠን ይምረጡ</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">እርስዎ ማዋሀድ የሚፈልጉትን የ ክፍል መጠን መወሰኛ በ ተዘረዘረው የ ክፍል መጠን ውስጥ በ <emph> መጠኖች ማዋሀጃ </emph> ሳጥን ውስጥ: ይምረጡ የ ክፍል መጠን ከ ወረቀት ውስጥ: እና ከዛ ይጫኑ <emph> መጨመሪያ </emph> እርስዎ እንዲሁም መምረጥ ይችላሉ ስም በ ቅድሚያ የተገለጸ ክፍል <emph> የ ዳታ መጠን ምንጭ </emph> ዝርዝር ውስጥ </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart/00.po b/source/am/helpcontent2/source/text/schart/00.po
index dba3187737b..56d590d0c41 100644
--- a/source/am/helpcontent2/source/text/schart/00.po
+++ b/source/am/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-21 16:42+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">በ ቻርትስ አይነት ንግግር ውስጥ የ መስመር ቻርትስ ወይንም የ XY ቻርትስ መስመሮች የሚያሳያ: ይምረጡ ለስላሳ መስመሮች አይነት ከ ወደ ታች የሚዘረገፍ: እና ከዛ ይጫኑ የ ባህሪዎች ቁልፍ</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">በ ቻርትስ አይነት ንግግር ውስጥ የ መስመር ቻርትስ ወይንም የ XY ቻርትስ መስመሮች የሚያሳያ: ይምረጡ የ ደረጃ መስመሮች አይነት ከ ወደ ታች የሚዘረገፍ: እና ከዛ ይጫኑ የ ባህሪዎች ቁልፍ</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/am/helpcontent2/source/text/sdraw.po b/source/am/helpcontent2/source/text/sdraw.po
index f455cdb7a41..bce2e538648 100644
--- a/source/am/helpcontent2/source/text/sdraw.po
+++ b/source/am/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-10-09 14:54+0000\n"
+"PO-Revision-Date: 2019-05-16 18:48+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507560880.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558032491.000000\n"
#: main0000.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "ማረሚያ"
#: main_edit.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"hd_id3150868\n"
"help.text"
msgid "<link href=\"text/sdraw/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_edit.xhp\" name=\"Edit\">ማረሚያ</link>"
#: main_edit.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
-msgstr ""
+msgstr "በዚህ ዝርዝር ውስጥ ያሉ ትእዛዞች የሚጠቅሙት የ መሳያ ሰነዶችን ለ ማረም ነው (ለምሳሌ ኮፒ ማድረጊያ እና መለጠፊያ)"
#: main_edit.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"hd_id3147396\n"
"help.text"
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">የተለየ መለጠፊያ</link>"
#: main_edit.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"hd_id3149400\n"
"help.text"
msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">መፈለጊያ & መቀየሪያ</link>"
#: main_edit.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"hd_id3153713\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">ነጥቦች</link>"
#: main_edit.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id3147340\n"
"help.text"
msgid "Enables you to edit points on your drawing."
-msgstr ""
+msgstr "በ እርስዎ ስእል ላይ ነጥቦችን ማረም ያስችሎታል"
#: main_edit.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"hd_id3149258\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">መጋጠሚያ ነጥቦች</link>"
#: main_edit.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"hd_id3147005\n"
"help.text"
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">ማባዣ</link>"
#: main_edit.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"hd_id3154650\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">ሜዳዎች</link>"
#: main_edit.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"hd_id3156446\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">አገናኞች</link>"
#: main_edit.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">አገናኝ</link>"
#: main_format.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "አቀራረብ"
#: main_format.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"hd_id3153770\n"
"help.text"
msgid "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">አቀራረብ</link>"
#: main_format.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">ባህሪ</link>"
#: main_format.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"hd_id3146979\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">አንቀጽ</link>"
#: main_format.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"hd_id3166426\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Bullets and Numbering\">ነጥቦች እና ቁጥር መስጫ</link>"
#: main_format.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"hd_id3146971\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">ቦታ እና መጠን</link>"
#: main_format.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"hd_id3148576\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">መስመር</link>"
#: main_format.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">ቦታ</link>"
#: main_format.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"hd_id3153878\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">ጽሁፍ</link>"
#: main_format.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"hd_id3153913\n"
"help.text"
msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">ደረጃ</link>"
#: main_insert.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "ማስገቢያ"
#: main_insert.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id3148797\n"
"help.text"
msgid "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insert</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">ማስገቢያ</link>"
#: main_insert.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">ደረጃ</link>"
#: main_insert.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"hd_id3147397\n"
"help.text"
msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">መቁረጫ ነጥብ/መስመር ማስገቢያ</link>"
#: main_insert.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"hd_id0915200910361385\n"
"help.text"
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">አስተያየት</link>"
#: main_insert.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">የ ተለዩ ባህሪዎች</link>"
#: main_insert.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id3150749\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">አገናኝ</link>"
#: main_insert.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"hd_id3156385\n"
"help.text"
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">ሰንጠረዥ</link>"
#: main_insert.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"hd_id3147003\n"
"help.text"
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">ቻርት</link>"
#: main_insert.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id0302200904020595\n"
"help.text"
msgid "Inserts a chart."
-msgstr ""
+msgstr "ቻርት ማስገቢያ"
#: main_insert.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">ተንሳፋፊ ክፈፍ</link>"
#: main_insert.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">ፋይል</link>"
#: main_page.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "ገጽ"
#: main_page.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"hd_id41556822227733\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">ገጽ</link>"
#: main_page.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"hd_id131556822326832\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">አዲስ ገጽ</link>"
#: main_page.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"hd_id3155091\n"
"help.text"
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">ባህሪዎች</link>"
#: main_tools.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "መሳሪያዎች"
#: main_tools.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/sdraw/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_tools.xhp\" name=\"Tools\">መሳሪያዎች</link>"
#: main_tools.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"hd_id3148699\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">የ ምስል ካርታ</link>"
#: main_tools.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"hd_id3153415\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">በራሱ ማረሚያ ምርጫዎች</link>"
#: main_tools.xhp
msgctxt ""
@@ -1022,4 +1022,4 @@ msgctxt ""
"hd_id3150044\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">ማስተካከያ</link>"
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 09bb862b9c5..77374e300aa 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-17 21:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">ይምረጡ <switchinline select=\"sys\"><cas
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - የ ግል ማድረጊያ </emph>:</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index b681c956219..07e0c8de4bd 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index 2445fd67565..dd92caf2c87 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-12-10 01:39+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">የ ጽሁፍ ምርጫ በ ተመረጠው መቆጣጠሪያው ላይ ይቆይ እንደሆን ትኩረቱ በ መቆጣጠሪያው ላይ ሳይሆን ሲቀር </ahelp> እርስዎ ካሰናዱ <emph> ምርጫ መደበቂያ </emph> ወደ \"አይ\" የ ተመረጠው ጽሁፍ ይቆያል እንደ ተመረጠ ትኩረቱ በ መቆጣጠሪያው ላይ ሳይሆን ሲቀር ጽሁፉን በያዘው ላይ ሳይሆን ሲቀር"
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index bcac134a920..814df85fa74 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-12-09 17:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index 08ec3d6a335..b8445646004 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-12-10 01:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "የ ግል ማድረጊያ"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>ገጽታዎች;ማሰናጃ ምርጫ</bookmark_value> <bookmark_value> ማሰናጃ ምርጫ;ገጽታዎች</bookmark_value> <bookmark_value>የ ግል ማድረጊያ;Mozilla Firefox ገጽታዎች</bookmark_value> <bookmark_value>ባህሪዎች;የ ግል ማድረጊያ</bookmark_value> <bookmark_value>የ ግል ማድረጊያ;ባህሪዎች</bookmark_value> <bookmark_value>Mozilla Firefox ገጽታዎች;የ ግል ማድረጊያ</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">የ ግል ማድረጊያ </link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "እርስዎ ማስተካከል ይችላሉ %PRODUCTNAME በ ተመሳሳይ ገጽታዎች ዝግጁ ለሆኑ ለ Mozilla Firefox. የ ዝርዝር መደርደሪያ እና የ እቃ መደርደሪያ ማሳረፊያ ከ ላይ በኩል እና ከ ታች በኩል መስኮት ውስጥ የ ተመረጠውን ገጽታ ያሳያል በ መደብ ውስጥ"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Mozilla Firefox ገጽታዎች ዝግጁ ናቸው ከ Mozilla ድህረ ገጽ ከሚቀጥለው አድራሻ ውስጥ: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "ማንኛውም የ Firefox-compliant ገጽታ ይሰራል በ %PRODUCTNAME. ነገር ግን: ሁሉም ገጽታ ጥሩ እይታ ላይሰጥ ይችላል—ምስሉ በ እራ ላይ ከሆነ: ምናልባት ጣልቃ ሊገባ ይችላል ከ ምልክቶች እና ዝርዝሮች አንባቢ ጋር"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "የ Firefox ገጽታዎች:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "የሚቀጥለው ምርጫ ዝግጁ ነው:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "ነባር መመልከቻ: ገጽታዎችን አይጠቀሙ"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">የ እቃ መደርደሪያዎች’ መደብ የ ወረሰው ከ መደብ ማሰናጃ አካባቢ ነው ከ እርስዎ የ ዴስክቶፕ አካባቢ </ahelp> ይህ ነባር ማሰናጃ ነው ለ %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "የ እርስዎ ገጽታ"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">ይምረጡ ይህን ምርጫ ለ መክፈት የ “ Firefox Theme” ንግግር እና እርስዎ የሚፈልጉትን ለ መምረጥ </ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "ይምረጡ የ Firefox Theme ንግግር"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "ይህ ንግግር ለ እርስዎ የሚያሳየው የ ተወሰነ ገጽታ መግጠሚያ ነው ወይንም ለ እርስዎ በ ጨረፍታ ሌላ አስገራሚ ገጽታዎች ማየት ይችላሉ ከ Mozilla Firefox ገጽታ ድህረ ገጽ ውስጥ"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "መፈለጊያ"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">ምድቡን መሰረት ባደረገ በ ደፈናው ምርጫ ዘጠኝ ገጽታዎች ማሳያ በ ቁልፎች ውስጥ የሚታየውን </ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "ይጫኑ አንዱን ቁልፍ ከ አምስቱ ውስጥ ለ ማሳየት የ ምስል ቦታ በ ደፈናው ምርጫ ከ ዘጠኝ ገጽታዎች ውስጥ ከ ምድቡ ጋር የሚመሳሰሉ በ ቁልፉ የ ተጠቆመውን"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "ይምረጡ ከሚታዩት ገጽታዎች አንዱን: ይጫኑ በ ምስሉ ላይ እና ይጫኑ <item type=\"menuitem\"> እሺ </item>"
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po
index 19173866ba6..959c1e2689e 100644
--- a/source/am/helpcontent2/source/text/simpress/01.po
+++ b/source/am/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index c798a39fba7..3c9a732e35e 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "በ <emph> መደበኛ መደርደሪያው ላይ </emph> ይጫኑ የ <emph> መቃኛውን </emph> ምልክት <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\"> ምልክት </alt></image> ለ መክፈት <emph> መቃኛውን </emph>"
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "በ <emph> መቃኛ </emph> ይጫኑ የ <emph> ይዞታ መመልከቻ </emph> ምልክት <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\"> ምልክት </alt></image>"
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "ይጫኑ ራስጌ ከ <emph> መቃኛው </emph> ዝርዝር ውስጥ: እና ይጫኑ <emph> ምእራፍ ማሳደጊያ </emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\"> ምልክት </alt></image> ወይንም <emph> ምእራፍ መቀነሻ </emph> ምልክት <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\"> ምልክት </alt></image>"
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "ይጫኑ የ <emph> ከፍ ማድረጊያ ደረጃ </emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\"> ምልክት </alt></image> ወይንም <emph> ዝቅ ማድረጊያ ደረጃ </emph> ምልክት <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\"> ምልክት </alt></image>"
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "ይጫኑ የ <emph> ራስጌ ደረጃዎች ማሳያ </emph> ምልክት <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\"> ምልክት </alt></image> እና ቁጥሩን ከ ዝርዝር ውስጥ ይምረጡ"
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 2e765d167a8..55be827dc9b 100644
--- a/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/am/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-03 22:19+0000\n"
+"PO-Revision-Date: 2019-05-26 01:41+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1546553951.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558834901.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"OOO_CONTROL_54\n"
"LngText.text"
msgid "{&MSSansBold8}Custom Setup"
-msgstr "{&MSSansBold8}ማስተካከያ ማሰናጃ"
+msgstr "{&MSSansBold8}ማሰናጃ ማስተካከያ"
#: Control.ulf
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"OOO_CONTROL_65\n"
"LngText.text"
msgid "{&MSSansBold8}Custom Setup Tips"
-msgstr "{&MSSansBold8}ማስተካከያ ማሰናጃ ምክሮች"
+msgstr "{&MSSansBold8}ማሰናጃ ማስተካከያ ምክሮች"
#: Control.ulf
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"OOO_ERROR_131\n"
"LngText.text"
msgid "Installing a pre-requisite [2] failed. You might need to manually install it from Microsoft site to be able to run the product.[3]"
-msgstr ""
+msgstr "በ ቅድሚያ-የሚያስፈልገውን መግጠም [2] አልተሳካም: እርስዎ በ እጅ መግጠም አለብዎት ከ Microsoft site ይህን አካል ለ መጠቀም: [3]"
#: LaunchCo.ulf
msgctxt ""
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office.po b/source/am/officecfg/registry/data/org/openoffice/Office.po
index 7b5f97d624a..b5897c64279 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-04-18 23:33+0000\n"
+"PO-Revision-Date: 2019-05-24 16:40+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1555630428.000000\n"
+"X-POOTLE-MTIME: 1558716055.000000\n"
#: Addons.xcu
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Overlapped Control"
-msgstr "የተደራረበ መቆጣጠሪያ"
+msgstr "መደራረቢያ መቆጣጠሪያ"
#: ExtendedColorScheme.xcu
msgctxt ""
@@ -1769,7 +1769,7 @@ msgctxt ""
"Right\n"
"value.text"
msgid "Grow/Shrink size of notes font"
-msgstr "የማስታወሻዎችን ፊደል መጠን ማሳደጊያ/ማሳነሻ"
+msgstr "የ ማስታወሻ ፊደል መጠን ማሳደጊያ/ማሳነሻ"
#: PresenterScreen.xcu
msgctxt ""
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index c7efd388607..6d9ac7fab00 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-26 01:48+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-25 18:24+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1556243314.000000\n"
+"X-POOTLE-MTIME: 1558808669.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -3173,7 +3173,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Data Import"
-msgstr "የዳታ ማምጫ ማነቃቂያ"
+msgstr "የ ዳታ ማምጫ ማነቃቂያ"
#: CalcCommands.xcu
msgctxt ""
@@ -8708,7 +8708,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export"
-msgstr ""
+msgstr "መላኪያ ማዘጋጃ"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9599,7 +9599,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ta~ble Properties..."
-msgstr "የሰ~ንጠረዥ ባህሪዎች"
+msgstr "የ ሰን~ጠረዥ ባህሪዎች..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10220,7 +10220,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export (Black)"
-msgstr ""
+msgstr "መላኪያ ማዘጋጃ (ጥቁር)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10229,7 +10229,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export (White)"
-msgstr ""
+msgstr "መላኪያ ማዘጋጃ (ነጭ)"
#: DrawWindowState.xcu
msgctxt ""
@@ -10589,7 +10589,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Redacted Export"
-msgstr ""
+msgstr "መላኪያ ማዘጋጃ"
#: DrawWindowState.xcu
msgctxt ""
@@ -10877,7 +10877,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Redaction"
-msgstr ""
+msgstr "ማዘጋጃ"
#: Effects.xcu
msgctxt ""
@@ -16862,7 +16862,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Rectangle Redaction"
-msgstr ""
+msgstr "አራት ማእዘን ማዘጋጃ"
#: GenericCommands.xcu
msgctxt ""
@@ -16898,7 +16898,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Bibliography Database"
-msgstr "የ ~ጽሁፎች ዝርዝር ዳታቤዝ"
+msgstr "የ ~ቢብሊዮግራፊ ዳታቤዝ"
#: GenericCommands.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "የ ሰንጠረዥ ዘዴዎች"
#: GenericCommands.xcu
msgctxt ""
@@ -19177,7 +19177,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Frame Properties"
-msgstr "የክፈፍ ባህሪዎች"
+msgstr "የ ክፈፍ ባህሪዎች"
#: GenericCommands.xcu
msgctxt ""
@@ -20500,7 +20500,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeform"
-msgstr ""
+msgstr "ነፃ መስመር"
#: GenericCommands.xcu
msgctxt ""
@@ -20509,7 +20509,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Freeform Redaction"
-msgstr ""
+msgstr "ነፃ መስመር ማዘጋጃ"
#: GenericCommands.xcu
msgctxt ""
@@ -20860,7 +20860,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Export Directly to PDF as Bitmap"
-msgstr ""
+msgstr "በ ቀጥታ ወደ ፒዲኤፍ እንደ ቢትማፕ መላኪያ"
#: GenericCommands.xcu
msgctxt ""
@@ -20869,7 +20869,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Export Directly to PDF as Bitmap"
-msgstr ""
+msgstr "በ ቀጥታ ወደ ፒዲኤፍ እንደ ቢትማፕ መላኪያ"
#: GenericCommands.xcu
msgctxt ""
@@ -20932,7 +20932,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redact"
-msgstr ""
+msgstr "ማዘጋጃ"
#: GenericCommands.xcu
msgctxt ""
@@ -20941,7 +20941,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Redact"
-msgstr ""
+msgstr "ማዘጋጃ"
#: GenericCommands.xcu
msgctxt ""
@@ -20950,7 +20950,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Redact Document"
-msgstr ""
+msgstr "ሰነድ ማዘጋጃ"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "ተጨማሪ ሜዳዎች"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "ንድፍ እንደገና ማመንጫ"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "ምልክት"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "በ ቡድን መደርደሪያ"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -25927,7 +25954,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Table of Contents, Index or Bibliography"
-msgstr "የ ሰንጠረዥ ማውጫ ወይንም ለ ጽሁፎች ዝርዝር ማስገቢያ"
+msgstr "የ ሰንጠረዥ ማውጫ: ማውጫ ወይንም ቢብሊዮግራፊ ማስገቢያ"
#: WriterCommands.xcu
msgctxt ""
@@ -25936,7 +25963,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Table of Contents, ~Index or Bibliography..."
-msgstr "የ ሰንጠረዥ ማውጫ ~ማውጫ: ወይንም የ ጽሁፎች ዝርዝር..."
+msgstr "የ ሰንጠረዥ ማውጫ ~ማውጫ: ወይንም ቢብሊዮግራፊ..."
#: WriterCommands.xcu
msgctxt ""
@@ -25945,7 +25972,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Bibliography Entry..."
-msgstr "የ ~ጽሁፎች ዝርዝር ማስገቢያ..."
+msgstr "የ ~ቢብሊዮግራፊ ማስገቢያ..."
#: WriterCommands.xcu
msgctxt ""
@@ -26368,7 +26395,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Bibliography Entry..."
-msgstr "የ ~ጽሁፎች ዝርዝር ማስገቢያ..."
+msgstr "የ ~ቢብሊዮግራፊ ማስገቢያ..."
#: WriterCommands.xcu
msgctxt ""
@@ -27556,7 +27583,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Ta~ble Properties..."
-msgstr "የሰ~ንጠረዥ ባህሪዎች"
+msgstr "የ ሰን~ጠረዥ ባህሪዎች..."
#: WriterCommands.xcu
msgctxt ""
@@ -27574,7 +27601,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Table Properties..."
-msgstr "የ ሰ~ንጠረዥ ባህሪዎች..."
+msgstr "የ ~ሰንጠረዥ ባህሪዎች..."
#: WriterCommands.xcu
msgctxt ""
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "አረፍተ ነገር ይምረጡ"
#: WriterCommands.xcu
msgctxt ""
@@ -30796,7 +30823,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Legacy Form Fields"
-msgstr ""
+msgstr "መግለጫ ከ ሜዳዎች ውስጥ"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/am/reportdesign/messages.po b/source/am/reportdesign/messages.po
index 64a5db6d138..e4a5f33dca4 100644
--- a/source/am/reportdesign/messages.po
+++ b/source/am/reportdesign/messages.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: 2018-11-05 17:38+0100\n"
-"PO-Revision-Date: 2017-10-06 12:21+0000\n"
+"PO-Revision-Date: 2019-05-21 14:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507292475.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558448462.000000\n"
#: reportdesign/inc/stringarray.hrc:17
msgctxt "RID_STR_FORCENEWPAGE_CONST"
@@ -314,7 +314,7 @@ msgstr "የ መደቡ ግልጽነት"
#: reportdesign/inc/strings.hrc:58
msgctxt "RID_STR_OVERLAP_OTHER_CONTROL"
msgid "This operation is not allowed. The control overlaps with another one."
-msgstr "ይህ ተግባር የተፈቀደ አይደለም ፡ መቆጣጠሪያው በሌሎች ላይ ይደራረባል"
+msgstr "ይህ ተግባር የተፈቀደ አይደለም:፡ መቆጣጠሪያው በሌሎች ላይ ይደራረባል"
#: reportdesign/inc/strings.hrc:59
msgctxt "RID_STR_ILLEGAL_POSITION"
@@ -639,7 +639,7 @@ msgstr "ፊደል መቀየሪያ"
#: reportdesign/inc/strings.hrc:129
msgctxt "RID_STR_UNDO_CHANGEPAGE"
msgid "Change page attributes"
-msgstr "የገጽ ባህሪዎችን መቀየሪያ"
+msgstr "የ ገጽ ባህሪዎች መቀየሪያ"
#: reportdesign/inc/strings.hrc:130
msgctxt "RID_STR_PAGEHEADERFOOTER_INSERT"
@@ -779,7 +779,7 @@ msgstr "አዲስ ቡድን ለማስጀመር ዋጋ ወይም የዋጋ መጠ
#: reportdesign/inc/strings.hrc:159
msgctxt "STR_RPT_HELP_INTERVAL"
msgid "Interval or number of characters to group on."
-msgstr "በቡድን የሚደረገው የቁጥር ባህሪዎች ወይም ክፍተት"
+msgstr "በ ቡድን የሚደረገው የ ቁጥር ባህሪዎች ወይም ክፍተት"
#: reportdesign/inc/strings.hrc:160
msgctxt "STR_RPT_HELP_KEEP"
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index 178d1c860bc..e5184feffa7 100644
--- a/source/am/sc/messages.po
+++ b/source/am/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-21 19:09+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-21 14:21+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1555873779.000000\n"
+"X-POOTLE-MTIME: 1558448502.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -786,7 +786,7 @@ msgstr "ይህ መጠን በ ውስጡ ዋጋ ያለው ጥያቄ አልያዘ
#: sc/inc/globstr.hrc:175
msgctxt "STR_REIMPORT_EMPTY"
msgid "This range does not contain imported data."
-msgstr "ይህ መጠን በውስጡ ዋጋ ያለው ከውጪ የመጣ ዳታ የለውም"
+msgstr "ይህ መጠን በ ውስጡ ዋጋ ያለው ከ ውጪ የመጣ ዳታ የለውም"
#: sc/inc/globstr.hrc:176
msgctxt "STR_NOMULTISELECT"
@@ -2315,7 +2315,7 @@ msgid ""
msgstr ""
"የተመረጠው ክፍል ቀደም ሲል እንደ ሁኔታው አቀራረብ ነበረው: የነበረውን ጊዚያዊ አቀራረብ ማረም ይችላሉ ወይንም አዲስ መግለጫ በነበረው እንደ ሁኔታው አቀራረብ ላይ ደርበው መጻፍ ይችላሉ\n"
"\n"
-" የ ነበረውን ጊዚያዊ አቀራረብ ማረም ይፈልጋሉ?"
+"የ ነበረውን ጊዚያዊ አቀራረብ ማረም ይፈልጋሉ?"
#: sc/inc/globstr.hrc:473
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
@@ -14348,7 +14348,7 @@ msgstr "መሰረዣ"
#: sc/inc/strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Autosum"
-msgstr ""
+msgstr "በራሱ ድምር"
#: sc/inc/strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(exclusive access)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15570,27 +15575,27 @@ msgstr "አቀራረብ"
#: sc/uiconfig/scalc/ui/autosum.ui:12
msgctxt "autosum|sum"
msgid "Sum"
-msgstr ""
+msgstr "ድምር"
#: sc/uiconfig/scalc/ui/autosum.ui:20
msgctxt "autosum|average"
msgid "Average"
-msgstr ""
+msgstr "መካከለኛ"
#: sc/uiconfig/scalc/ui/autosum.ui:28
msgctxt "autosum|min"
msgid "Min"
-msgstr ""
+msgstr "አነስተኛ "
#: sc/uiconfig/scalc/ui/autosum.ui:36
msgctxt "autosum|max"
msgid "Max"
-msgstr ""
+msgstr "ከፍተኛ"
#: sc/uiconfig/scalc/ui/autosum.ui:44
msgctxt "autosum|count"
msgid "Count"
-msgstr ""
+msgstr "መቁጠሪያ"
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:35
msgctxt "cellprotectionpage|checkProtected"
@@ -15770,12 +15775,12 @@ msgstr "እንደ ሁኔታው አቀራረብ አስታዳዳሪ"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "መጠን"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16346,17 +16351,17 @@ msgstr ""
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:161
msgctxt "conflictsdialog|author"
msgid "Author"
-msgstr ""
+msgstr "ደራሲው"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:175
msgctxt "conflictsdialog|date"
msgid "Date"
-msgstr ""
+msgstr "ቀን"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:189
msgctxt "conflictsdialog|changes-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "ለውጦች"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:207
msgctxt "conflictsdialog|keepmine"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "ዳታ ፎርም"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_መዝጊያ"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "አዲስ መዝገብ"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_አዲስ"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_ማጥፊያ"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_እንደ ነበር መመለሻ"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_ቀደም ያለው መዝገብ"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "የሚቀ_ጥለው መዝገብ"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_መዝጊያ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "በ ቀጥታ ዳታ ማስተላለፊያ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "የ ሰነዱን ምንጭ URL ያስገቡ በ አካባቢ ፋይል ስርአት ውስጥ ወይንም እዚህ ኢንተርኔት ውስጥ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_መቃኛ..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "የ ዳታቤዝ መጠን:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "ዳታ አቅራቢ:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "መፈለጊያ ሀረግ:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "ማስተላለፊያ ምንጭ"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -17321,7 +17286,7 @@ msgstr "_አቀራረቡን ማስቀመጫ"
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:393
msgctxt "definedatabaserangedialog|DontSaveImportedData"
msgid "Don't save _imported data"
-msgstr "_የመጡ ዳታዎችን አታስቀምጥ"
+msgstr "የ _መጡ ዳታዎችን አታስቀምጥ"
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:411
msgctxt "definedatabaserangedialog|Source"
@@ -18596,17 +18561,17 @@ msgstr "ስሞች አስተዳዳሪ"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:127
msgctxt "managenamesdialog|name"
msgid "Name"
-msgstr ""
+msgstr "ስም"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:140
msgctxt "managenamesdialog|expression"
msgid "Range or formula expression"
-msgstr ""
+msgstr "የ መጠን ወይንም መቀመሪያ መግለጫ"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:153
msgctxt "managenamesdialog|scope"
msgid "Scope"
-msgstr ""
+msgstr "ክልል"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:183
msgctxt "managenamesdialog|info"
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "ውጤቶች ወደ:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "ዳታ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "አምዶች"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "ረድፎች"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "በ ቡድን"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "እረፍት:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "ደንቦች"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_እርዳታ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~ፋይል"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "ለ ተመረጡት ክፍሎች ድንበር ይወስኑ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "ማስረጊያ መጨመሪያ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "ማስረጊያ መቀነሻ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~ቤት"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "ሜ_ዳ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_እቅድ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "እቃ ማሰለፊያ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~እቅድ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_ስታትስቲክስ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_ዳታ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~ዳታ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "ምስ_ል"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_እቃ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~እቃ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~ብዙሀን መገናኛ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_ማተሚያ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~ማተሚያ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "የ ፍለጋው ውጤቶች"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "ወረቀት"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "ክፍል"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "ይዞታ"
@@ -23337,7 +23319,7 @@ msgstr "ሜዳዎች"
#: sc/uiconfig/scalc/ui/textimportoptions.ui:8
msgctxt "textimportoptions|TextImportOptionsDialog"
msgid "Import Options"
-msgstr "የማምጫ ምርጫዎች"
+msgstr "የ ማምጫ ምርጫዎች"
#: sc/uiconfig/scalc/ui/textimportoptions.ui:104
msgctxt "textimportoptions|custom"
@@ -23352,7 +23334,7 @@ msgstr "ራሱ በራሱ"
#: sc/uiconfig/scalc/ui/textimportoptions.ui:154
msgctxt "textimportoptions|label2"
msgid "Select the Language to Use for Import"
-msgstr "ለማምጫ የሚጠቀሙበትን ቋንቋ ይምረጡ"
+msgstr "ለ ማምጫ የሚጠቀሙበትን ቋንቋ ይምረጡ"
#: sc/uiconfig/scalc/ui/textimportoptions.ui:181
msgctxt "textimportoptions|convertdata"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "የ _ረቂቅ ምልክቶች"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "መስኮት"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "የ _መጋጠሚያ መስመሮች:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_ቀለም:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "ማሳያ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "በ ቀለም ክፍሎች ውስጥ ማሳያ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "መደበቂያ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "የ _ገጽ መጨረሻ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "የ እርዳታ መስመሮች በ ማንቀሳቀስ ላይ _እንዳሉ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "የ መመልከቻ እርዳታ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "እቃ_ዎች/ምስሎች:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Cha_rts:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "እቃዎች _መሳያ:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "ማሳያ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "መደበቂያ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "ማሳያ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "መደበቂያ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "ማሳያ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "መደበቂያ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "እቃዎች"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "ወረቀቶች ማ_ስማሚያ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "ማሳያ"
diff --git a/source/am/scp2/source/graphicfilter.po b/source/am/scp2/source/graphicfilter.po
index d6f88c4a8a2..23665386232 100644
--- a/source/am/scp2/source/graphicfilter.po
+++ b/source/am/scp2/source/graphicfilter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2018-03-24 19:42+0000\n"
+"PO-Revision-Date: 2019-05-19 19: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: 1521920552.000000\n"
+"X-POOTLE-MTIME: 1558295271.000000\n"
#: module_graphicfilter.ulf
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"STR_NAME_MODULE_OPTIONAL_GRFFLT_ADOBE\n"
"LngText.text"
msgid "Adobe Photoshop Import Filter"
-msgstr "የአዶቤ ፎቶሾፕ ማጣሪያ ማምጫ"
+msgstr "የ አዶቤ ፎቶሾፕ ማጣሪያ ማምጫ"
#: module_graphicfilter.ulf
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_GRFFLT_ADOBE\n"
"LngText.text"
msgid "Adobe Photoshop Import Filter"
-msgstr "የአዶቤ ፎቶሾፕ ማጣሪያ ማምጫ"
+msgstr "የ አዶቤ ፎቶሾፕ ማጣሪያ ማምጫ"
#: module_graphicfilter.ulf
msgctxt ""
diff --git a/source/am/scp2/source/ooo.po b/source/am/scp2/source/ooo.po
index abc9da2821d..2b0fa194d6b 100644
--- a/source/am/scp2/source/ooo.po
+++ b/source/am/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-21 19:19+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-24 19: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: 1555874382.000000\n"
+"X-POOTLE-MTIME: 1558724533.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "ሰነድ መክፈቻ"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (በ አስተማማኝ ዘዴ)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/am/scp2/source/winexplorerext.po b/source/am/scp2/source/winexplorerext.po
index dcca6294018..557f06d4fc5 100644
--- a/source/am/scp2/source/winexplorerext.po
+++ b/source/am/scp2/source/winexplorerext.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-04-09 01:25+0000\n"
-"Last-Translator: Samson <sambelet@yahoo.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2016-05-01 17:35+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1365470735.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1462124148.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "የ Microsoft Windows Explorer መረጃዎች እንዲያሳይ ማስቻያ እንደ %PRODUCTNAME ሰነዶችን በአውራ ጣት ጥፍር መጠን በቅድመ እይታ መመልከቻ"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index a6efeb59fe1..9fec842aa02 100644
--- a/source/am/sd/messages.po
+++ b/source/am/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-19 14:31+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "ይጫኑ hyperlink ለ መክፈት: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "የ HTML ንድፍ ስም"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_ፋይል"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_እርዳታ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~ፋይል"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ቤት"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "ሜ_ዳ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_ገጽ"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~ገጽ"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "ጽ_ሁፍ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "ጽ~ሁፍ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_ሰንጠረዥ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~ሰንጠረዥ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "መቀየሪያ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "ምስ_ል"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_እቃ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~እቃ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "ቅርጾች ማሳያ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_ፋይል"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_እርዳታ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~ፋይል"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ቤት"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "ሜ_ዳ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "ተ_ንሸራታች"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "ተ~ንሸራታች"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_ተንሸራታች ማሳያ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~ተንሸራታች ማሳያ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_ሰንጠረዥ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~ሰንጠረዥ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "መቀየሪያ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "ምስ_ል"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_እቃ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~እቃ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index 953baf9c8fa..145129376e0 100644
--- a/source/am/sfx2/messages.po
+++ b/source/am/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-19 19:22+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: 1555701775.000000\n"
#: include/sfx2/strings.hrc:25
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " አ: %1 ወ: %2 ቀ: %3 ሰ: %4 ደ: %5 ሰ: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "ባህሪ ማስወገጃ"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"ያስገቡት ዋጋ ከተመረጠው ዘዴ ጋር አይመሳሰልም \n"
"ዋጋው እንደ ጽሁፍ ይቀመጣል"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ዘዴው ቀደም ሲል ነበር: በላዩ ላይ ደርቤ ልጻፍበት?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~እንደ ነበር መመለሻ"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ይህን ስም ቀደም ሲል ተጠቅመውበታል"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ይህ ዘዴ አልተገኘም"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"ይህን ዘዴ እንደ መሰረታዊ ዘዴ ሊጠቀሙበት አይችሉም \n"
"ምክንያቱም የድግግሞሽ ማመሳከሪያ ውጤት ያስከትላል"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"ይህ ስም ቀደም ሲል በነባር ዘዴ ውስጥ ነበር \n"
"እባክዎን ሌላ አዲስ ስም ይምረጡ"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"እነዚህን ዘዴዎች ካጠፉ ጽሁፉ ወደ ነበረበት ወደ ወላጅ ዘዴው ይመለሳል\n"
"እነዚህን ዘዴዎች ማጥፋት ይፈልጋሉ?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "የሚጠቀሙት ዘዴዎች: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "መቃኛ"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "የተሳሳተ የመግቢያ ቃል ማረጋገጫ"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "መላኪያ"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ፊደል"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "ቅድመ እይታ ማሳያ"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "የእትም አስተያየት መመልከቻ"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(ምንም ስም አልተሰናዳም)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "የዘዴ ዝርዝር"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "በ ቅደም ተከተል"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "የ መሙያ አቀራረብ ዘዴ"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "አዲስ ዘዴ ከ ምርጫው ውስጥ"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "የ ዘዴዎች ተግባር"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "የ ማሻሻያ ዘዴ"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "በእርግጥ መመዝገቡን ማጥፋት ይፈልጋሉ? እስከ አሁን የተመዘገበው በሙሉ ይጠፋል"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ምዝገባውን መሰረዣ"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ቴምፕሌቶቹ ለ መጀመሪያ-ጊዜ መጠቀሚያ በ መነሳት ላይ ናቸው"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"ነባር ማተሚያ አልተገኘም \n"
"እባክዎን ማተሚያ ይምረጡ እና እንደገና ይሞክሩ"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"ማተሚያውን ማስጀመር አልተቻለም \n"
"እባክዎን የማተሚያውን ማዋቀሪያ ይመርምሩ"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "ማተሚያው በ ስራ ላይ ነው"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ለማንበብ ብቻ)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"በ ንቁ ሰነድ ውስጥ አዲስ የተዘጋጀውን \n"
"ማስቀመጥ ይፈልጋሉ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"በንቁ ሰነድ ውስጥ አዲስ የተዘጋጀውን \n"
"ማስቀመጥ ይፈልጋሉ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"በ ንቁ ሰነድ ውስጥ አዲስ የተዘጋጀውን \n"
"ማስቀመጥ ይፈልጋሉ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"ሰነዱን መዝጋት አልተቻለም ምክንያቱም \n"
" የህትመት ስራ እየተከናወነ ነው"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"እባክዎን ማሰናጃውን %PRODUCTNAME ይመርምሩ: ወይንም የኢ-ሜይል ፕሮግራም ማሰናጃ ይመርምሩ"
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"የ ስህተቱ ኮድ ይህ ነው $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "ደብዳቤ በ መላክ ላይ ስህተት ተፈጥሯል"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ይህን ሰነድ ማረም አይቻልም ፡ ምክንያቱም በፍቃድ ማጣት ምክንያት: የሰነዱን ኮፒ ማረም ይፈልጋሉ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"እርስዎ የ ተቆለፈውን መተው እና ፋይሉን ለ ማረም ለ መክፈት ይችላሉ"
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "~ኮፒ መክፈቻ"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~መክፈቻ"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (የተጠገነ ሰነድ)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "ሰነዱ ከሰርቨሩ አልወጣም"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "እባክዎን %PRODUCTNAME የ ተሻለ እንድንሆን ይርዱን!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "ይሳተፉ"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "ሰነዱ የተከፈተው ለማንበብ-ብቻ ዘዴ ነው"
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "ይህ PDF የ ተከፈተው ለ ንባብ-ብቻ ነው የ ነበረውን ፋይል መፈረም እንዲችሉ"
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "ይህ የዚህ ሰነድ ምድብ ምልክት ነው %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "ይህ ሰነድ መመደብ አለበት ቁራጭ ሰሌዳ ከ መለጠፉ በፊት"
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "ይህ ሰነድ አነስተኛ መመደቢያ ደረጃ አለው ከ ቁራጭ ሰሌዳ ይልቅ"
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "ደረጃ"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "የ አገር ደህንነት:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "የ መላኪያ መቆጣጠሪያ:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "የ ወጣበት ጊዜ"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ሰነድ ማረሚያ"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ሰነድ መፈረሚያ"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "ይህ ሰነድ ዋጋ የሌለው ፊርማ አለው"
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "ፊርማው ዋጋ ያለው ነው: ነገር ግን ሰነዱ ተሻሽሏል:"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "ፊርማው ጥሩ ነው: ነገር ግን የ ምስክር ወረቀቱን ማረጋገጥ አልተቻለም"
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "ፊርማው ጥሩ ነው: ነገር ግን ሰነዱ የ ተፈረመው በከፊል ነው"
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "ይህ ሰነድ ዲጂታሊ የ ተፈረመ ነው: እና ፊርማው ዋጋ ያለው ነው"
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "ፊርማዎች ማሳያ"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "ክፍል መዝጊያ"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ማሳረፊያ"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "አታሳርፍ"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "ተጨማሪ ምርጫዎች"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "የ ጎን መደርደሪያ መዝጊያ"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "የ ጎን መደርደሪያ ማሰናጃዎች"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "ማስተካከያ"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "ነባሩን መመለሻ"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "የ ጎን መደርደሪያ መዝጊያ"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "አሊዛሪን"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "የ ንብ እንጀራ"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "ሰማያዊ ክብ"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "የ ንድፍ እቅድ"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "ደማቅ ሰማያዊ"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "ቀይ"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "ትኩረት"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "የ ጫካ ወፍ"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "ማስደነቂያ"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "ቀስቃሽ"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "ብርሃን"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "ለምለም አረንጓዴ"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "ትልቅ ከተማ"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "እኩለ ሌሊት ሰማያዊ"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "ተፈጥሮ ማሳያ"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "እርሳስ"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "ፒያኖ"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "ቦርሳ"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "ሂደት"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "ፀሐይ መጥለቂያ"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "የ ጥንት"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "ደማቅ"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "ስራ ማመልከቻ"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "መቀጠያ"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "ነባር"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "ዘመናዊ"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "ዘመናዊ የ ንግድ ደብዳቤ sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "ዘመናዊ የ ንግድ ደብዳቤ serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "የ ንግድ ካርድ ከ አርማ ጋር"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ማስወገጃ"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "ሁሉንም ማጽጃ"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "የ መግቢያ ቃል እርዝመት"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "እርስዎ ያስገቡት የ መግቢያ ቃል የ መረጃ መለዋወጫ ችግር ይፈጥራል: እባክዎን የ መግቢያ ቃል ያስገቡ ያነሰ ከ 52 ባይትስ: ወይንም የ በለጠ ከ 55 ባይትስ:"
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "የ እትም አስተያየት:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "ስም"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "አይነት"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "ዋጋ"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "አይነት"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "አዎ"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "አይ"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "_ባህሪ መጨመሪያ"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "ስም"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "አይነት"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "ዋጋ"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_አካባቢ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_አይነት:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_የመግቢያ ቃል መቀየሪያ"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ቴምፕሌት :"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "ባህሪዎች የ “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "ባጠቃላይ "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "መግለጫ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "ባህሪዎች ማስተካከያ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS ባህሪዎች"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "ደህንነት"
@@ -2294,6 +2284,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/am/shell/messages.po b/source/am/shell/messages.po
new file mode 100644
index 00000000000..e2ae73f68c9
--- /dev/null
+++ b/source/am/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-22 18:52+0000\n"
+"Last-Translator: Samson B <sambelet@yahoo.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: am\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558551161.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "ሰነድ መክፈቻ"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"እርስዎ ሰነድ እየከፈቱ ነው\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"እርስዎ ሰነድ የሚከፍቱት ለ መመልከት ነው ወይንስ ለ ማረም?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "መመልከቻ"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "ማረሚያ"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "መሰረዣ"
diff --git a/source/am/starmath/messages.po b/source/am/starmath/messages.po
index f042131de46..4708e5a771b 100644
--- a/source/am/starmath/messages.po
+++ b/source/am/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "ምሳሌዎች"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "መደበኛ"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ማዝመሚያ"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ማድመቂያ"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "ጥቁር"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ሰማያዊ"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "አረንጓዴ"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "ቀይ"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ሲያን"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "ቀይ የ ወይን ጠጅ"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ግራጫ"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "ሎሚ"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "የ ሸክላ ቀለም"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ሰማያዊ"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ወይራ"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ወይን ጠጅ"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ብር"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "አረንጓዴ ሰማያዊ"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "ቢጫ"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "መደበቂያ"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "መጠን"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "ፊደል"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "በ ግራ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "መሀከል"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "በ ቀኝ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "ትእዛዞች"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "መቀመሪያ"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ሰነዶችን በማስቀመጥ ላይ..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION መቀመሪያ"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ስህተት : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "ያልተጠበቀ ባህሪ"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "ያልተጠበቀ ምልክት"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' የተጠበቀ"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' የተጠበቀ"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' የተጠበቀ"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' የተጠበቀ"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "የ ግራ እና የ ቀኝ ምልክቶች አይመሳሰሉም"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', or 'serif' expected"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'መጠን' ያልተጠበቀ ምልክት አስከትሎ"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "ድርብ ማሰለፊያ አይፈቀድም"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "ድርብ በትንንሽ ዝቅ/ከፍ ብሎ መጻፍ አይቻልም"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' የተጠበቀ"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "ቀለም ያስፈልጋል"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'ቀኝ' የተጠበቀ"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ይዞታዎች"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~አርእስት"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "የ ~መቀመሪያ ጽሁፍ"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "ድ~ንበሮች"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "መጠን"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "ዋ~ናው መጠን"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "በ ~ገጹ ልክ"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~መመጠኛ"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "አካሎች"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/am/svtools/messages.po b/source/am/svtools/messages.po
index bf1ba2acd60..6498da236a9 100644
--- a/source/am/svtools/messages.po
+++ b/source/am/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-21 19:26+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-22 18:14+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555874813.000000\n"
+"X-POOTLE-MTIME: 1558548899.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "መተው: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "እንደገና~መስሪያ : "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~መድገሚያ: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "በ ትክክል ያልቀረበ ጽሁፍ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "በ ትክክል ያልቀረበ ጽሁፍ (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "የ ቢትማፕ ምስል (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "የ ሐብታም ጽሁፍ አቀራረብ (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "የ ሐብታም ጽሁፍ አቀራረብ (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME የ መሳያ አቀራረብ"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmap/animation (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info from Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape ምልክት ማድረጊያ"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server format"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star object format"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet object"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "ተሰኪ-እቃ"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 object"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 object"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 object"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 object"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 object"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 object"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 object"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw object"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 object"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 object"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 object"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc object"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 object"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 object"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart object"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 object"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage object"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 object"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 object"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath object"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 object"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 object"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint object"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "የ ዳታ መቀያየሪያ አቀራረብ (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word object"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet object"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "የቢሮ ሰነድ እቃ"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "የማስታወሻ ሰነድ መረጃ"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx document"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "የንድፍ እቃ"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 የ መጻፊያ እቃ"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 መጻፊያ/የ ዌብ እቃ"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 መጻፊያ/ዋናው እቃ"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 የ መሳያ እቃ"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 የ ማስደነቂያ እቃ"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 የ ሰንጠረዥ እቃ"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart object"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 የ ሂሳብ እቃ"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metafile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "የዳታ ምንጭ እቃ"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "የዳታ ምንጭ ሰንጠረዥ"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL query"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ንግግር"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "አገናኝ"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "የ HTML format ያለ አስተያየት"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "አካሉን % ማስገባት አልተቻለም"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "አካሉን ከ ፋይል % ማስገባት አልተቻለም"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "ተጨማሪ እቃዎች"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "ያልታወቀ ምንጭ"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "ስም"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "መጠን"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "የተሻሻለበት ቀን"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "አይነት"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ባይትስ"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ኪባ"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "ሜባ"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ጌባ"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "ረድፍ: %1, አምድ: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", አይነት: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ፎልደር"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ፋይል"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ባዶ ሜዳ"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "መደበኛ"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ባህሪ ማሰናጃ"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "መዝገበ ቃላት"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "መምቻ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "መሰረታዊ"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "የስልክ ማውጫ"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonetic (alphanumeric first)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonetic (alphanumeric last)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "መዝገበ ቃላት"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "መሰረታዊ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "መምቻ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonetic (alphanumeric first, grouped by syllables)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonetic (alphanumeric first, grouped by consonants)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonetic (alphanumeric last, grouped by syllables)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonetic (alphanumeric last, grouped by consonants)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ዛሬ"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "ምንም"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ቀላል"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ቀላል ማዝመሚያ"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "መደበኛ"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ማዝመሚያ"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ማድመቂያ"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ያዘመመ ማድመቂያ"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ጥቁር"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "ጥቁር ያዘመመ"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "መጽሀፍ"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "ማድመቂያ ማዝመሚያ"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "የታመቀ"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "የታመቀ ማድመቂያ"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "የታመቀ ማድመቂያ ማዝመሚያ"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "የታመቀ ማድመቂያ ማዝመሚያ"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "የታመቀ ማዝመሚያ"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "የታመቀ ማዝመሚያ"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "ተጨማሪ ብርሃን"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "ተጨማሪ ብርሃን ማዝመሚያ"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "ማዝመሚያ"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "ንዑስ ማድመቂያ"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "ንዑስ ማድመቂያ ማዝመሚያ"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "ተመሳሳይ ፊደል መጠቀሚያ ለ ሁለቱም ለ ማተሚያው እና ለ ስክሪኑ መመልከቻ"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "ይህ የ ማተሚያ ፊደል ነው: የ መመልከቻው ምስል ትንሽ ይለያል"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "የዚህ ፊደል ዘዴ ይታያል ወይም ተቀራራቢውን ተመሳሳይ ዘዴ ይጠቀማል"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ይህ ፊደል አልተገጠመም ፡ ተቀራራቢ ዝግጁ የሆነውን ፊደል ይጠቀማል"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "መቃኛ ..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ወደ ቤት ማንቀሳቀሻ"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ወደ ግራ ማንቀሳቀሻ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ወደ ቀኝ ማንቀሳቀሻ"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "ወደ መጨረሻው ማንቀሳቀሻ"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "መጨመሪያ"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "የ አግድም ማስመሪያ"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "የ ቁመት ማስመሪያ"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit threshold"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit dithered"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 ቢት ግራጫማ"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 ቢት ቀለም"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 ቢት ግራጫማ"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 ቢት ቀለም"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 ቢት እውነተኛ ቀለም"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ምስሉ በ ግምት ይህን ያህል %1 ኪባ ማስታወሻ ይፈልጋል"
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ምስሉ በ ግምት ይህን ያህል %1 ኪባ ማስታወሻ ይፈልጋል የ ፋይሉ መጠን ይህን ያህል ነው %2 ኪባ"
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "የፋይሉ መጠን %1 ኪባ"
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ጋባዥ"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ፖርት"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Other CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "ዝግጁ"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ተቋርጧል"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "በቀጠሮ ላይ ማጥፊያ"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "በስራ ላይ"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "በማስነሳት ላይ"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "በመጠበቅ ላይ"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "በሟሟቅ ላይ"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "በሂደት ላይ"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "በማተም ላይ"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ከመስመር ውጪ"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ስህተት"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "ያልታወቀ ሰርቨር"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "ወረቀቱ ነክሷል"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "በቂ ወረቀት የለም"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "በእጅ ማቀበያ"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "የወረቀት ችግር"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O active"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Output bin full"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "ቶነር ዝቅተኛ ነው"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "ቶነር የለም"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ገጹን ማጥፊያ"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "የተጠቃሚ ጣልቃ መግባት ያስፈልጋል"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "በቂ ያልሆነ memory"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "ሽፋኑን መክፈቻ"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "ሀይል ማዳኛ ዘዴ"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ነባር ማተሚያ"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d ሰነዶች"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~ጨርሷል"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~ይቀጥሉ >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ወደ ኋ~ላ"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ደረጃዎች"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ምንም>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ድርጅት"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "ክፍል"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "የ መጀመሪያ ስም"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "የ አባት ስም"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "መንገድ"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "አገር"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ፖሳቁ"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "ከተማ"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "አርእስት"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "አካባቢ"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "አድራሻ ከ"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "መነሻዎች"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Complimentary close"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "የ ቤት: ስልክ"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "የስራ: ስልክ"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "ፋክስ"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "ኢሜይል"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ማስታወሻ"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ተጠቃሚ 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ተጠቃሚ 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ተጠቃሚ 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ተጠቃሚ 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "መለያ"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "አገር"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "የቢሮ : ስልክ"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "ተንቀሳቃሽ"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ሌሎች: ስልኮች"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ቀን መቁጠሪያ"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "መጋበዣ"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ያስፈልጋል የ Java runtime environment (JRE) ይህን ተግባር ለመፈጸም እባክዎን JRE ን ይግጠሙ እና እንደገና ያስነሱ %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ያስፈልጋል የ %BITNESS-bit Java runtime environment (JRE) ይህን ተግባር ለ መፈጸም እባክዎን ይህን JRE ይግጠሙ እና እንደገና ያስነሱ %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME የ Oracle's Java Development Kit (JDK) ያስፈለጋል: በ Mac OS X 10.10 ወይንም ይህን ስራ ለ መፈጸም: እባክዎን ይግጠሙ እና እንደገና ያስጀምሩ %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ይህ %PRODUCTNAME ማዋቀሪያ ተቀይሯል: በ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - የ ረቀቀ ይምረጡ የ Java runtime environment መጠቀም የሚፈልጉትን በ %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ይህ %PRODUCTNAME ማዋቀሪያ ተቀይሯል: በ መሳሪያ - ምርጫ - %PRODUCTNAME - የረቀቀ: ይምረጡ የ Java runtime environment መጠቀም የሚፈልጉትን በ %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ይህ የ Java runtime environment ይፈልጋል: (JRE) ይህን ስራ ለ መፈጸም: የ ተመረጠው የ JRE የ ተበላሸ ነው: እባክዎን ሌላ እትም ይምረጡ: ወይንም ይግጠሙ አዲስ JRE እና ይምረጡ ከ %PRODUCTNAME - ምርጫዎች - %PRODUCTNAME - የረቀቀ"
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ይህ የ Java runtime environment ይፈልጋል: (JRE) ይህን ስራ ለ መፈጸም: የ ተመረጠው የ JRE የ ተበላሸ ነው: እባክዎን ሌላ እትም ይምረጡ: ወይንም ይግጠሙ አዲስ JRE እና ይምረጡ ከ መሳሪያዎች - ምርጫዎች - %PRODUCTNAME – የረቀቀ"
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ያስፈልጋል"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE ይምረጡ"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE የተበላሸ ነው"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "የ ኮዱ ምንጭ"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ፋይል ምልክት ማድረጊያ"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ንድፍ"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ፋይል ማዋቀሪያ"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "መተግበሪያ"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "የ ዳታቤዝ ሰንጠረዥ"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "የስርአት ፋይል"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word document"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "የእርዳታ ፋይል"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "የ HTML ሰነድ"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "የ ማህደር ፋይል"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "የመግቢያ ፋይል"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Database"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Master Document"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Image"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "የጽሁፍ ፋይል"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "አገናኝ"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Template"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel document"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel template"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch file"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ፋይል"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ፎልደር"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "የጽሁፍ ሰነድ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ሰንጠረዥ"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "ማቅረቢያ"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "መሳያ"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "የ HTML ሰነድ"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ዋናው ሰነድ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "መቀመሪያ"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ዳታቤዝ"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 የ ሰንጠረዥ ቴምፕሌት"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 የ መሳያ ቴምፕሌት"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 የ ማቅረቢያ ቴምፕሌት"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 የ ጽሁፍ ሰነድ ቴምፕሌት"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "የአካባቢ drive"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "የዲስክ drive"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "ሲዲ-ራም drive"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "የኔትዎርክ ግንኙነት"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint Document"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint Template"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 መቀመሪያ"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 መሳያ"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 ሰንጠረዥ"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 ማቅረቢያ"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 የ ጽሁፍ ሰነድ"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 ዋናው ሰነድ"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML Document"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument ዳታቤዝ"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument መሳያ"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument መቀመሪያ"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument ዋናው ሰነድ"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument ማቅረቢያ"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument ሰንጠረዥ"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument ጽሁፍ"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument የ ሰንጠረዥ ቴምፕሌት"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument የ መሳያ ቴምፕሌት"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument የ ማቅረቢያ ቴምፕሌት"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument የ ጽሁፍ ቴምፕሌት"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME ተጨማሪዎች"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell SpellChecker"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen Hyphenator"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes Thesaurus"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "የ ተተዉ ቃሎች ዝርዝር"
@@ -4127,7 +4129,7 @@ msgstr "Iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "English (Zambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
@@ -4622,7 +4624,7 @@ msgstr "የ ተሻሻለውን የ ሕትመት ስራ አቀራረብ በ ት
#: svtools/uiconfig/ui/restartdialog.ui:115
msgctxt "restartdialog|reason_bibliography_install"
msgid "For the bibliography to work properly, %PRODUCTNAME must be restarted."
-msgstr "የ ጽሁፎች ዝርዝር በ ትክክል እንዲሰራ %PRODUCTNAME እንደገና ማስጀመር ያስፈልጋል"
+msgstr "ቢብሊዮግራፊ በ ትክክል እንዲሰራ %PRODUCTNAME እንደገና ማስጀመር ያስፈልጋል"
#: svtools/uiconfig/ui/restartdialog.ui:130
msgctxt "restartdialog|reason_assigning_folders"
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index 5b5c0fb097f..f3bc667eac5 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 19:31+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 00:51+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557689486.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559004700.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -1527,7 +1527,7 @@ msgstr "የመስመር መገናኛ"
#: include/svx/strings.hrc:329
msgctxt "SIP_XATTRSET_LINE"
msgid "Line attributes"
-msgstr "የመስመር ባህሪዎች"
+msgstr "የ መስመር ባህሪዎች"
#: include/svx/strings.hrc:330
msgctxt "SIP_XA_FILLSTYLE"
@@ -1632,7 +1632,7 @@ msgstr "መደብ መሙያ"
#: include/svx/strings.hrc:350
msgctxt "SIP_XATTRSET_FILL"
msgid "Area attributes"
-msgstr "የቦታ ባህሪዎች"
+msgstr "የ ቦታ ባህሪዎች"
#: include/svx/strings.hrc:351
msgctxt "SIP_XA_FORMTXTSTYLE"
@@ -1892,7 +1892,7 @@ msgstr "የ ጽሁፍ ፍሰት ረቂቅ"
#: include/svx/strings.hrc:402
msgctxt "SIP_SA_XMLATTRIBUTES"
msgid "User-defined attributes"
-msgstr "የተጠቃሚ-መግለጫ ባህሪዎች"
+msgstr "የ ተጠቃሚ-መግለጫ ባህሪዎች"
#: include/svx/strings.hrc:403
msgctxt "SIP_SA_TEXT_USEFIXEDCELLHEIGHT"
@@ -2347,7 +2347,7 @@ msgstr "ከ ላይ ማስመሪያ"
#: include/svx/strings.hrc:493
msgctxt "SIP_EE_CHAR_STRIKEOUT"
msgid "Strikethrough"
-msgstr "መሰረዣ"
+msgstr "በላዩ ላይ መሰረዣ"
#: include/svx/strings.hrc:494
msgctxt "SIP_EE_CHAR_ITALIC"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "ከ ግራ-ወደ-ቀኝ (በ ቁመት)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "ከ ታች-ወደ-ላይ: ከ ግራ-ወደ-ቀኝ (በ ቁመት)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -8183,7 +8188,7 @@ msgstr "Hanging punctuation"
#: include/svx/svxitems.hrc:85
msgctxt "RID_ATTR_NAMES"
msgid "Forbidden characters"
-msgstr "የተከለከሉ ባህሪዎች"
+msgstr "የ ተከለከሉ ባህሪዎች"
#: include/svx/svxitems.hrc:86
msgctxt "RID_ATTR_NAMES"
@@ -10512,7 +10517,7 @@ msgstr "የ አካል ቁጥር:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "የ ጽሁፍ አካል:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "የ ብርሃን ምንጭ 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "ነጣ ያለ 1 ቀለም"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "ነጣ ያለ 2 ቀለም"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "ነጣ ያለ 3 ቀለም"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "ነጣ ያለ 4 ቀለም"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "ነጣ ያለ 5 ቀለም"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "ነጣ ያለ 6 ቀለም"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "ነጣ ያለ 7 ቀለም"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "ነጣ ያለ 8 ቀለም"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -11880,7 +11885,7 @@ msgstr "%PRODUCTNAME %PRODUCTVERSION ሰነድ ማዳኛ"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:76
msgctxt "docrecoverysavedialog|label1"
msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "በ ስህተት ምክንያት %PRODUCTNAME ተጋጭቷል: ይሰሩባቸው የ ነበሩ ሁሉም ፋይሎች አሁን ይቀመጣሉ: በሚቀጥለው ጊዜ %PRODUCTNAME ሲያስነሱ: የ እርስዎ ፋይሎች ራሳቸው በራሳቸው ይድናሉ:"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:98
msgctxt "docrecoverysavedialog|label2"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "ይወስኑ የ ቁመት ማካካሻ በ ፐርሰንት ከ መሀከል ለ ጥላ ዘዴ ከፍታ 50% በ ቁመት መሀከል ነው"
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "ቅርጽ ማረሚያ"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "መፈጸሚያ"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "የ ስራ ቦታ"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "ይምረጡ"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "አራት ማእዘን"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ኤሊፕስ"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "ፖሊጎን"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ነጥቦች ማረሚያ"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ነጥቦች ማንቀሳቀሻ"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ነጥቦች ማስገቢያ"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ነጥቦች ማጥፊያ"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "በራሱ ቅርጽ"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "መተው "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "እንደገና መስሪያ"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "ጠብታ መለኪያ"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "የ ቀለም ገደብ"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "ግርጌ"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "የ ምስል ካርታ ማረሚያ"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "መፈጸሚያ"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "መክፈቻ..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "ማስቀመጫ..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "መዝጊያ"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "ይምረጡ"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "አራት ማእዘን"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ኤሊፕስ"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "ፖሊጎን"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "ነፃ የ ፖሊጎን መስመር መፍጠሪያ"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ነጥቦች ማረሚያ"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ነጥቦች ማንቀሳቀሻ"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ነጥቦች ማስገቢያ"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ነጥቦች ማጥፊያ"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "መተው "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "እንደገና መስሪያ"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "ንቁ"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "ባህሪዎች..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "አድራሻ:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ክፈፍ:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "ጽሁፍ:"
@@ -13368,12 +13373,12 @@ msgstr "አስተያየት"
#: svx/uiconfig/ui/redlineviewpage.ui:146
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "ለውጦች"
#: svx/uiconfig/ui/redlineviewpage.ui:245
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "ለውጦች"
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index c113ce4f84a..6e520e16151 100644
--- a/source/am/sw/messages.po
+++ b/source/am/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:43+0200\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: LibreOffice\n"
-"X-POOTLE-MTIME: 1557690212.000000\n"
+"X-POOTLE-MTIME: 1558806118.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1380,12 +1380,12 @@ msgstr "የ ሰንጠረዥ ማውጫ 1"
#: sw/inc/strings.hrc:179
msgctxt "STR_POOLCOLL_TOX_AUTHORITIESH"
msgid "Bibliography Heading"
-msgstr "የ ጽሁፎች ዝርዝር ራስጌ"
+msgstr "የ ቢብሊዮግራፊ ራስጌ"
#: sw/inc/strings.hrc:180
msgctxt "STR_POOLCOLL_TOX_AUTHORITIES1"
msgid "Bibliography 1"
-msgstr "የ ጽሁፎች ዝርዝር 1"
+msgstr "ቢብሊዮግራፊ 1"
#. Document title style, not to be confused with Heading style
#: sw/inc/strings.hrc:182
@@ -2030,12 +2030,12 @@ msgstr "አምድ"
#: sw/inc/strings.hrc:325
msgctxt "STR_AUTHMRK_EDIT"
msgid "Edit Bibliography Entry"
-msgstr "የ ጽሁፎች ዝርዝር ማስገቢያ ማረሚያ"
+msgstr "የ ቢብሊዮግራፊ ማስገቢያ ማረሚያ"
#: sw/inc/strings.hrc:326
msgctxt "STR_AUTHMRK_INSERT"
msgid "Insert Bibliography Entry"
-msgstr "የ ጽሁፎች ዝርዝር ማስገቢያ ያስገቡ"
+msgstr "የ ቢብሊዮግራፊ ማስገቢያ ያስገቡ"
#: sw/inc/strings.hrc:327
msgctxt "STR_ACCESS_PAGESETUP_SPACING"
@@ -2665,7 +2665,7 @@ msgstr "ምስል ማጥፊያ"
#: sw/inc/strings.hrc:455
msgctxt "STR_TABLE_ATTR"
msgid "Apply table attributes"
-msgstr "የሰንጠረዥ ባህሪዎች መፈጸሚያ"
+msgstr "የ ሰንጠረዥ ባህሪዎች መፈጸሚያ"
#: sw/inc/strings.hrc:456
msgctxt "STR_UNDO_TABLE_AUTOFMT"
@@ -3065,7 +3065,7 @@ msgstr "ጽሁፍ"
#: sw/inc/strings.hrc:535
msgctxt "STR_AUTHORITY_ENTRY"
msgid "bibliography entry"
-msgstr "የ ጽሁፎች ዝርዝር ማስገቢያ..."
+msgstr "የ ቢብሊዮግራፊ ማስገቢያ"
#: sw/inc/strings.hrc:536
msgctxt "STR_SPECIALCHAR"
@@ -3108,9 +3108,9 @@ msgid "Change object title of $1"
msgstr "የ እቃዎች አርእስት መቀየሪያ ከ $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "የ እቃዎችን መግለጫ መቀየሪያ ከ $1"
+msgstr "የ እቃውን መግለጫ መቀየሪያ ከ $1"
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -3782,7 +3782,7 @@ msgstr "የ ሰንጠረዥ ማውጫ"
#: sw/inc/strings.hrc:688
msgctxt "STR_TOX_AUTH"
msgid "Bibliography"
-msgstr "የ ጽሁፎች ዝርዝር"
+msgstr "ቢብሊዮግራፊ"
#: sw/inc/strings.hrc:689
msgctxt "STR_TOX_CITATION"
@@ -4154,7 +4154,7 @@ msgstr "የማውጫ ማስገቢያ መጨመሪያ"
#: sw/inc/strings.hrc:764
msgctxt "STR_QUERY_CHANGE_AUTH_ENTRY"
msgid "The document already contains the bibliography entry but with different data. Do you want to adjust the existing entries?"
-msgstr "ሰነዱ ቀደም ሲል የ ጽሁፎች ዝርዝር ማስገቢያ ይዟል ነገር ግን ለተለየ ዳታ ነው: የነበረውን ማስገቢያ ማስተካከል ይፈልጋሉ?"
+msgstr "ሰነዱ ቀደም ሲል ቢብሊዮግራፊ ማስገቢያ ይዟል ነገር ግን ለተለየ ዳታ ነው: የ ነበረውን ማስገቢያ ማስተካከል ይፈልጋሉ?"
#: sw/inc/strings.hrc:766
msgctxt "STR_COMMENTS_LABEL"
@@ -4718,7 +4718,7 @@ msgstr "ጽሁፍ"
#: sw/inc/strings.hrc:892
msgctxt "STR_AUTHORITY"
msgid "Bibliography entry"
-msgstr "የ ጽሁፎች ዝርዝር ማስገቢያ..."
+msgstr "የ ቢብሊዮግራፊ ማስገቢያ"
#: sw/inc/strings.hrc:893
msgctxt "STR_HIDDENPARAFLD"
@@ -6375,7 +6375,7 @@ msgstr "Hyperlink መጨረሻ"
#: sw/inc/strings.hrc:1269
msgctxt "STR_TOKEN_HELP_AUTHORITY"
msgid "Bibliography entry: "
-msgstr "የ ጽሁፎች ዝርዝር ማስገቢያ...: "
+msgstr "የ ቢብሊዮግራፊ ማስገቢያ...: "
#: sw/inc/strings.hrc:1270
msgctxt "STR_CHARSTYLE"
@@ -7304,7 +7304,7 @@ msgstr "_ማምጫ..."
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:8
msgctxt "bibliographyentry|BibliographyEntryDialog"
msgid "Insert Bibliography Entry"
-msgstr "የ ጽሁፎች ዝርዝር ማስገቢያ መጨመሪያ"
+msgstr "የ ቢብሊዮግራፊ ማስገቢያ መጨመሪያ"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:80
msgctxt "bibliographyentry|insert"
@@ -7334,7 +7334,7 @@ msgstr "አጭር ስም"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:216
msgctxt "bibliographyentry|frombibliography"
msgid "From bibliography database"
-msgstr "ከ ጽሁፎች ዝርዝር ዳታቤዝ ውስጥ"
+msgstr "ከ ቢብሊዮግራፊ ዳታቤዝ ውስጥ"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:232
msgctxt "bibliographyentry|fromdocument"
@@ -8204,7 +8204,7 @@ msgstr "ማ_ስተካከያ..."
#: sw/uiconfig/swriter/ui/createauthorentry.ui:8
msgctxt "createauthorentry|CreateAuthorEntryDialog"
msgid "Define Bibliography Entry"
-msgstr "የ ጽሁፎች ዝርዝር ማስገቢያ መግለጫ"
+msgstr "የ ቢብሊዮግራፊ ማስገቢያ መግለጫ"
#: sw/uiconfig/swriter/ui/createauthorentry.ui:189
msgctxt "createauthorentry|label1"
@@ -8314,7 +8314,7 @@ msgstr "_ጠቅላላ ቃሉን"
#: sw/uiconfig/swriter/ui/dropcapspage.ui:93
msgctxt "dropcapspage|labelFT_DROPCAPS"
msgid "Number of _characters:"
-msgstr "የ_ባህሪዎች ቁጥር:"
+msgstr "የ _ባህሪዎች ቁጥር:"
#: sw/uiconfig/swriter/ui/dropcapspage.ui:107
msgctxt "dropcapspage|labelTXT_LINES"
@@ -9888,7 +9888,7 @@ msgstr "በ ሙሉ ገጾች ላይ _ማንጸባረቂያ"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "በ ጽሁፍ ድንበሮችች ውስጥ ማስቀመጫ:"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|label11"
@@ -12000,147 +12000,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_እርዳታ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~ፋይል"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~ቤት"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_እቅድ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~እቅድ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "ማመሳከሪያዎ_ች"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "ማመሳከሪ~ያ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_ሰንጠረዥ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~ሰንጠረዥ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "ምስ_ል"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_መሳያ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~መሳያ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_እቃ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~እቃ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_መገናኛ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_ማተሚያ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~ማተሚያ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
@@ -12150,152 +12150,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_ፋይል"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "~ፋይል"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_ቤት"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr "~ቤት"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_ማስገቢያ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "~ማስገቢያ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "መጠቅለያ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "እቅድ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "~እቅድ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "ማመሳከሪያዎ_ች"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr "ማመሳከሪ~ያ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_ክለሳ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr "~ክለሳ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_መመልከቻ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "~መመልከቻ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "ሰ_ንጠረዥ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr "~ሰንጠረዥ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "ምስል"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "ምስ~ል"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "መ_ሳያ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~መሳያ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "እቃ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~እቃ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_መገናኛ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~መገናኛ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "ማተሚያ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "~ማተሚያ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "ፎር_ም"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "ፎር~ም"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_መሳሪያዎች"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "~መሳሪያዎች"
@@ -13362,8 +13362,8 @@ msgstr "የ ቃላትን ክፍተት ማስፊያ በ መስመሮች ላይ
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "ፎርም መጠበቂያ"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16641,49 +16641,49 @@ msgstr "የ ገጽ ባህሪዎችን ማረሚያ"
#: sw/uiconfig/swriter/ui/tocdialog.ui:8
msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
-msgstr "የ ሰንጠረዥ ማውጫ: ማውጫ ወይንም የ ጽሁፍ ዝርዝር"
+msgstr "የ ሰንጠረዥ ማውጫ: ማውጫ ወይንም ቢብሊዮግራፊ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "ቅድመ እይታ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "ቅድመ እይታ"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "አይነት"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "ማስገቢያዎች"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "ዘዴዎች"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "አምዶች"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "መደብ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "ቅድመ እይታ"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_ደረጃ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_አይነት"
@@ -16913,302 +16913,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_ማረሚያ..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_አርእስት:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "አይነት:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "የ ሰንጠረዥ ማውጫዎች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "በ ፊደል ቅደም ተከተል ማውጫ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "የ አካሎች ሰንጠረዥ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "የማውጫ ሰንጠረዦች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "በተጠቃሚው-የሚገለጽ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "የእቃዎች ሰንጠረዥ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
-msgstr "የ ጽሁፎች ዝርዝር"
+msgstr "ቢብሊዮግራፊ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "በእጅ እንዳይቀየር የሚጠበቅ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "ዘዴ እና አርእስት"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ለ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "ጠቅላላ ሰነድ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "ምእራፍ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "መገምገሚያ እስከ ደረጃ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "ማውጫ መፍጠሪያ ወይንም የ ሰንጠረዥ ይዞታዎች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "ረቂቅ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "የ ማው_ጫ ምልክቶች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "ሰንጠረዦች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "የጽ_ሁፍ ክፈፎች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ንድፎች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "የ OLE እቃዎች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "ከ ምእራፉ ምንጭ ደረጃ መጠቀሚያ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_ተጨማሪ ዘዴዎች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "ዘዴ_ዎች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "ዘዴዎች መመደቢያ..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "መግለጫ ጽሁፍ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "ተ እቃ ስሞች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "ምድብ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "ማሳያ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "ማመሳከሪያዎች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "ምድብ እና ቁጥር"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "መግለጫ ጽሁፍ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "መፍጠሪያ ከ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "ከሚከተሉት እቃዎች ውስጥ መፍጠሪያ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_ቅንፎች:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_ቁጥር ማስገቢያዎች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[ምንም]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "የ ማስገቢያዎች አቀራረብ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "ተመሳሳይ ማስገቢያዎችን መቀላቀያ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "ተመሳሳይ ማስገቢያዎችን መቀላቀያ በ p ወይንም በ _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "መቀላቀያ ከ -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "ፊደል መመጠኛ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "በራሱ በትልልቅ ፊደል ማስገቢያ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "ቁልፎች እንደ ተለዩ ማስገቢያ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "ፋይል በ _ፊደል ቅደም ተከተል"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_ፋይል"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "ምርጫዎች"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ቋንቋ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "የ ቁልፍ አይነት:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "መለያ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_ደረጃዎች"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "የ አንቀጽ _ዘዴዎች"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_ነባር"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_ማረሚያ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "መመደቢያ"
diff --git a/source/am/swext/mediawiki/help.po b/source/am/swext/mediawiki/help.po
index fe84c6afa92..d573044fbcd 100644
--- a/source/am/swext/mediawiki/help.po
+++ b/source/am/swext/mediawiki/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-11-15 13:53+0100\n"
-"PO-Revision-Date: 2019-04-21 19:18+0000\n"
+"PO-Revision-Date: 2019-05-26 15: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: 1555874283.000000\n"
+"X-POOTLE-MTIME: 1558885260.000000\n"
#: help.tree
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id628070\n"
"help.text"
msgid "If the wiki allows anonymous access, you can leave the account text boxes empty. Else enter your user name and password."
-msgstr "ዊኪ ያለ ስም ፍቃድ ከ ሰጠ: እርስዎ የ መግለጫ ጽሁፍ ሳጥኑን ባዶ ይተዉት: ያለ በለዚያ የ ተጠቃሚ ስም እና የ መግቢያ ቃል ማስገባት አለብዎት"
+msgstr "ዊኪ ያለ ስም ፍቃድ መድረሻ ከ ሰጠ: እርስዎ የ መግለጫ ጽሁፍ ሳጥኑን ባዶ ይተዉት: ያለ በለዚያ የ ተጠቃሚ ስም እና የ መግቢያ ቃል ማስገባት አለብዎት"
#: wikiaccount.xhp
msgctxt ""
diff --git a/source/am/vcl/messages.po b/source/am/vcl/messages.po
index 227777da269..dfdb3d89820 100644
--- a/source/am/vcl/messages.po
+++ b/source/am/vcl/messages.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-21 19:50+0000\n"
+"PO-Revision-Date: 2019-05-23 18: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: 1555876246.000000\n"
+"X-POOTLE-MTIME: 1558634523.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -175,7 +175,7 @@ msgstr "#12 ፖስታ"
#: vcl/inc/print.hrc:59
msgctxt "RID_STR_PAPERNAMES"
msgid "16 Kai (16k)"
-msgstr ""
+msgstr "16 Kai (16k)"
#: vcl/inc/print.hrc:60
msgctxt "RID_STR_PAPERNAMES"
@@ -275,12 +275,12 @@ msgstr "የ ግብዣ ፖስታ"
#: vcl/inc/print.hrc:79
msgctxt "RID_STR_PAPERNAMES"
msgid "SuperA"
-msgstr ""
+msgstr "SuperA"
#: vcl/inc/print.hrc:80
msgctxt "RID_STR_PAPERNAMES"
msgid "SuperB"
-msgstr ""
+msgstr "SuperB"
#: vcl/inc/print.hrc:81
msgctxt "RID_STR_PAPERNAMES"
@@ -290,7 +290,7 @@ msgstr ""
#: vcl/inc/print.hrc:82
msgctxt "RID_STR_PAPERNAMES"
msgid "A4 Plus"
-msgstr ""
+msgstr "A4 Plus"
#: vcl/inc/print.hrc:83
msgctxt "RID_STR_PAPERNAMES"
@@ -385,27 +385,27 @@ msgstr "C8 ፖስታ"
#: vcl/inc/print.hrc:101
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch A"
-msgstr ""
+msgstr "Arch A"
#: vcl/inc/print.hrc:102
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch B"
-msgstr ""
+msgstr "Arch B"
#: vcl/inc/print.hrc:103
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch C"
-msgstr ""
+msgstr "Arch C"
#: vcl/inc/print.hrc:104
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch D"
-msgstr ""
+msgstr "Arch D"
#: vcl/inc/print.hrc:105
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch E"
-msgstr ""
+msgstr "Arch E"
#: vcl/inc/print.hrc:106
msgctxt "RID_STR_PAPERNAMES"
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index f3843f2a98e..c21920243b5 100644
--- a/source/an/cui/messages.po
+++ b/source/an/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1631,107 +1631,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr ""
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1774,7 +1769,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1894,7 +1889,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2134,7 +2129,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2389,12 +2384,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2464,7 +2459,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2544,7 +2539,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2785,7 +2780,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3388,67 +3383,72 @@ msgid "About %PRODUCTNAME"
msgstr "Arre~dol de %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME %s"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3567,17 +3567,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4420,6 +4420,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5553,28 +5713,28 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Propiedatz..."
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Nombre"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9160,81 +9320,81 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
#, fuzzy
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "~Aduya"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11151,24 +11311,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -11807,102 +11952,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12928,27 +12977,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/an/extensions/messages.po b/source/an/extensions/messages.po
index ee46034421b..a47a88f03ac 100644
--- a/source/an/extensions/messages.po
+++ b/source/an/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,167 +3093,167 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Tipo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Titol"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Adreza"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Numero"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr ""
@@ -3431,27 +3431,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr ""
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
index 3afe37561c8..3b8d829ec29 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25254,6 +25254,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -27663,6 +27672,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -27681,6 +27699,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index 68d9e0c944d..809c1861ecf 100644
--- a/source/an/sc/messages.po
+++ b/source/an/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16997,6 +16997,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -17572,12 +17577,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -18874,87 +18879,45 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Zarrar"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "Nuevo"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Eliminar"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Restablir"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Zarrar"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Entrevalos d'a base de datos"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -20754,36 +20717,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Datos"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Columna"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Ringlera"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "~Entrevalos"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr ""
@@ -20933,167 +20901,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -23707,17 +23677,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -25675,111 +25655,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Fines~tra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Amostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Amagar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Brinco de ~pachina"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diagramas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Obchectos de dibuixo"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Amostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Amagar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Amostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Amagar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Amostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Amagar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Obchectos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/an/scp2/source/ooo.po b/source/an/scp2/source/ooo.po
index 483995b287b..9165cfb58c8 100644
--- a/source/an/scp2/source/ooo.po
+++ b/source/an/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr ""
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/an/scp2/source/winexplorerext.po b/source/an/scp2/source/winexplorerext.po
index cb8b4b423f3..308d13f6658 100644
--- a/source/an/scp2/source/winexplorerext.po
+++ b/source/an/scp2/source/winexplorerext.po
@@ -2,17 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:20+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: an\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=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369347641.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
msgstr ""
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index 29fa37203f7..24199a586fe 100644
--- a/source/an/sd/messages.po
+++ b/source/an/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2620,6 +2620,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3088,164 +3093,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4654,160 +4844,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 0bbec5334d9..4aa93390cd8 100644
--- a/source/an/sfx2/messages.po
+++ b/source/an/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -887,53 +887,48 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr ""
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
#, fuzzy
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Res~tablir"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -941,116 +936,116 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navegador"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr ""
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Tipo de letra"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr ""
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr ""
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr ""
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr ""
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1058,7 +1053,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1066,7 +1061,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1074,14 +1069,14 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1089,7 +1084,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1097,17 +1092,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1115,350 +1110,360 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Edita o comentario..."
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr ""
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Borrar"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1807,34 +1812,18 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr ""
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nombre"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-#, fuzzy
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipo"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valura"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
#, fuzzy
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr ""
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr ""
@@ -1844,18 +1833,18 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nombre"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
#, fuzzy
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valura"
@@ -1986,17 +1975,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr ""
@@ -2006,27 +1995,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descripción"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr ""
@@ -2247,6 +2236,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/an/shell/messages.po b/source/an/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/an/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/an/starmath/messages.po b/source/an/starmath/messages.po
index 3cc9f49a579..6f670b25205 100644
--- a/source/an/starmath/messages.po
+++ b/source/an/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1656,274 +1656,299 @@ msgid "Examples"
msgstr "Eixemplo"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estandar"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr ""
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr ""
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Azul"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Verde"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr ""
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Griso"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Hora"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Amagar"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr ""
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Tipo de letra"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "Enta la cucha"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr ""
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "Brilo"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comentarios"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "~Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr ""
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr ""
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Conteniu"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Titol"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Cantos"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr ""
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Mida ~orichinal"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
@@ -1994,6 +2019,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr ""
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/an/svtools/messages.po b/source/an/svtools/messages.po
index 98765df7cb7..efb936aa687 100644
--- a/source/an/svtools/messages.po
+++ b/source/an/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1538 +16,1540 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195186.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr ""
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
+msgid "Redo: "
msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr ""
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr ""
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr ""
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
#, fuzzy
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Enla~z"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nombre"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr ""
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr ""
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipo"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ""
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr ""
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
#, fuzzy
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "~Fichero"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
#, fuzzy
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "~Chuego de caracters"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
#, fuzzy
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "~Garra"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
#, fuzzy
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Enta la dreita"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr ""
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr ""
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr ""
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr ""
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
#, fuzzy
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "~Navegar..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Adhibir"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Meter en pausa"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr ""
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr ""
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
#, fuzzy
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Trango~s"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr ""
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Interpresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamento"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
#, fuzzy
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nombres"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
#, fuzzy
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Apellidos"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr ""
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciudat"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titol"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posición"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr ""
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Estau/Provincia"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Busca"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Graficos"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr ""
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr ""
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
#, fuzzy
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
#, fuzzy
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Enla~z"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
#, fuzzy
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "~Fichero"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr ""
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documento de texto"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Fuella de calculo"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentación"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "~Debuxo"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Documento m~aestro"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "~Formula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de datos"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr ""
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr ""
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr ""
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr ""
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr ""
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr ""
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index dbe7bf965c5..f839015d98c 100644
--- a/source/an/svx/messages.po
+++ b/source/an/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7963,6 +7963,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12277,84 +12282,89 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
#, fuzzy
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Puntos d'edición"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Royo"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr ""
@@ -12679,116 +12689,111 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Piet de pachina"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Zarrar"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
#, fuzzy
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Puntos d'edición"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Royo"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "activo"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Propiedatz..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adreza"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index ae84263425e..d891b33d046 100644
--- a/source/an/sw/messages.po
+++ b/source/an/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3185,7 +3185,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12333,147 +12333,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12483,152 +12483,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13714,7 +13714,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17108,50 +17108,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "E~stilo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
#, fuzzy
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Columna"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
#, fuzzy
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fundo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17396,311 +17396,311 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "~Editar..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Definiu por l'~usuario"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
#, fuzzy
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabla"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Graficos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Obchectos OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "E~stilo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Opcions"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "ID Categoría"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Visualizar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "~Fichero"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opcions"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Por defecto"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 5c07c2ae477..e52a4a48604 100644
--- a/source/ar/cui/messages.po
+++ b/source/ar/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1640,107 +1640,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "بلا حدود"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "وضع حد خارجي فقط"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "وضع حد خارجي وخطوط أفقية"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "وضع حد خارجي وكل الخطوط الداخلية"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "وضع حد خارجي دون تعديل الخطوط الداخلية"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "تعيين الخطوط المائلة فقط"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "وضع الحدود الأربعة"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "وضع الحدّين الأيمن والأيسر فقط"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "وضع الحدّين العلوي والسفلي فقط"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "وضع الحد الأيسر فقط"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "وضع الحد الأعلى والأسفل، وجميع الخطوط الداخلية"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "وضع الحد الأيسر والأيمن، وجميع الخطوط الداخلية"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "بدون ظل"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "الظل أسفل اليمين"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "الظل أعلى اليمين"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "الظل أسفل اليسار"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "الظل أعلى اليسار"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "وقّعها: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1783,7 +1778,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1903,7 +1898,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2143,7 +2138,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2398,12 +2393,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2473,7 +2468,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2553,7 +2548,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2794,7 +2789,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3378,66 +3373,71 @@ msgid "About %PRODUCTNAME"
msgstr "عن %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "إ_شادات"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "م_وقع الوِب"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "‏%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "معرّف البناء: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "المحليّة: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "راجع السجل: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "‏%PRODUCTNAME هو حزمة من أدوات الإنتاجية الحديثة سهلة الاستخدام مفتوحة المصدر. مكوّن من برامج لمعالجة الكلمات، و الجداول الممتدّة، و العروض التّقديميّة و غيرها."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "بُنِي ليبر أوفيس على أوبن أوفيس.أورغ."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "‏%PRODUCTNAME مشتقّ من ليبر أوفيس والذي بُنِي على أوبن أوفيس.أورغ."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "هذه الإصدارة من تقديم %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3552,17 +3552,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "ا_ستبدل"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "اس_تبدل"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_بِ‍:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "ال_نّصوص فقط"
@@ -4382,6 +4382,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "أدنى طول للكلمة"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5494,27 +5654,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "خصائص"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "ال_عنوان:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "الإ_طار:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "الا_سم:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "النّ_صّ البديل:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "ال_وصف:"
@@ -9056,80 +9216,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "مساعدة"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "ا_ستخدم مربّعات حوار %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "مربّعات حوار الفتح و الحفظ"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "استخدم مربعات _حوار %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "مربعات حوار الطباعة"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "ال_طباعة تجعل حالة المستند ”مستند معدل“"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "حالة المستند"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "فسّرها على أنها ال_سنوات بين "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "و "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "السنة (رقمان)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "اجمع بيانات الاستخدام و أرسلها إلى «مؤسسة المستند المفتوح»"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "ساعد في تحسين %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "حمّل %PRODUCTNAME أثناء بدء النظام"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "فعّل التشغيل السريع في صينية النظام"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "تشغيل %PRODUCTNAME السريع"
@@ -11011,25 +11171,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "سِمَتَكْ"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "أو اختر من السمات المثبتة عبر الامتدادات:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "سمات فَيَرْفُكس"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11663,102 +11808,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "خيارات الأمن"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "اختيار سمة فيرفكس"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -12771,27 +12820,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ar/extensions/messages.po b/source/ar/extensions/messages.po
index 8c732ff83fb..3a4111ef36b 100644
--- a/source/ar/extensions/messages.po
+++ b/source/ar/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3142,184 +3142,184 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "تخطيط الأعمدة للجدول %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "الاسم ال_قصير"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "المؤلف/المؤلفون"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "النا_شر"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "ال_فصل"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "المحرر"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "ال_نوع"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "ال_سنة"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "المسمى الوظيفي"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "العنوان"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "ال_صفحة/الصفحات"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "النسخة"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "عنوان ال_كتاب"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "وحدة التخزين"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "نوع ال~منشور"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "الم~نظمة"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "ال~هيئة"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "الجامعة"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "نوع الت~قرير"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "الأ_شهر"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "دفتر اليومية"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "الرقم"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "السل~سلة"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "ال~تعليق التوضيحي"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "ملاحظة"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
#, fuzzy
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "مسار"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "حقل معرف من قبل المستخدم ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "حقل معرف من قبل المستخدم ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "حقل معرف من قبل المستخدم ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "حقل معرف من قبل المستخدم ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "حقل معرف من قبل المستخدم ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3498,27 +3498,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "اطبع اسمًا لنوع البيانات الجديد:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "حقول الرابط"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "اقترح"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "يمكن استخدام النماذج الفرعية لعرض بيانات تفصيلية حول السجل الحالي للنموذج الرئيسي. و للقيام بهذا، يمكنك تحديد الأعمدة الموجودة في النموذج الفرعي التي تطابق الأعمدة في النموذج الرئيسي."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "العنوان"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "العنوان"
diff --git a/source/ar/helpcontent2/source/auxiliary.po b/source/ar/helpcontent2/source/auxiliary.po
index 45480e40676..4beed95d88c 100644
--- a/source/ar/helpcontent2/source/auxiliary.po
+++ b/source/ar/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -273,6 +273,118 @@ msgctxt ""
msgid "General Information"
msgstr "معلومات عامة"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -502,7 +614,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -548,30 +660,6 @@ msgstr "أشرطة الأدوات"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "الرسوم (%PRODUCTNAME درو)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "القوائم"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "أشرطة الأدوات"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -612,18 +700,10 @@ msgstr "الكائنات، و الرسوميات و الصور النقطية"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "المجموعات و الطبقات"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "النصوص في العروض التقديمية و الرسوم"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/sbasic/guide.po b/source/ar/helpcontent2/source/text/sbasic/guide.po
index 0eee0fc04cf..a50888800cc 100644
--- a/source/ar/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ar/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,15 +541,15 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "فتح مربع حوار مع شفرات البرنامج"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
msgstr ""
#: show_dialog.xhp
diff --git a/source/ar/helpcontent2/source/text/sbasic/python.po b/source/ar/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/ar/helpcontent2/source/text/sbasic/python.po
+++ b/source/ar/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared.po b/source/ar/helpcontent2/source/text/sbasic/shared.po
index c7a9f4301ab..c8feafec33b 100644
--- a/source/ar/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ar/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,7 +36197,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/ar/helpcontent2/source/text/sbasic/shared/03.po b/source/ar/helpcontent2/source/text/sbasic/shared/03.po
index f66c55a8a5e..655ffd4e0a2 100644
--- a/source/ar/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ar/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index 33c11527f9a..ea2f59450ba 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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,7 +40949,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/ar/helpcontent2/source/text/schart/00.po b/source/ar/helpcontent2/source/text/schart/00.po
index 1ae30a1635c..04a8509c222 100644
--- a/source/ar/helpcontent2/source/text/schart/00.po
+++ b/source/ar/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 15:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index 54397b4bd72..7220cf07808 100644
--- a/source/ar/helpcontent2/source/text/shared/00.po
+++ b/source/ar/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index 02ac02b211d..016150250c6 100644
--- a/source/ar/helpcontent2/source/text/shared/01.po
+++ b/source/ar/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/ar/helpcontent2/source/text/shared/02.po b/source/ar/helpcontent2/source/text/shared/02.po
index 5f2025bcf37..54e7911df8b 100644
--- a/source/ar/helpcontent2/source/text/shared/02.po
+++ b/source/ar/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/guide.po b/source/ar/helpcontent2/source/text/shared/guide.po
index c05499d0682..5bfd07b8206 100644
--- a/source/ar/helpcontent2/source/text/shared/guide.po
+++ b/source/ar/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index f50f612492c..5ebcb2b0be4 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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/ar/helpcontent2/source/text/simpress/01.po b/source/ar/helpcontent2/source/text/simpress/01.po
index 75606574b09..7ff1056efc6 100644
--- a/source/ar/helpcontent2/source/text/simpress/01.po
+++ b/source/ar/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index 6d686195322..3eb94922660 100644
--- a/source/ar/helpcontent2/source/text/swriter/guide.po
+++ b/source/ar/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,7 +229,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
msgstr ""
#: arrange_chapters.xhp
@@ -237,7 +237,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
index d12a27c6206..9293c6b15a4 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23445,6 +23445,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -25758,6 +25767,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25776,6 +25794,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index 289b52710e8..4a165c6df4b 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15609,6 +15609,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(وصول حصري)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16162,12 +16167,12 @@ msgstr "أدر التّنسيقات الشّرطيّة"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17413,82 +17418,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "نموذج البيانات"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "إ_غلاق"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "سجل جديد"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "ج_ديد"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "ح_ذف"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "است_عادة"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "السجل ال_سابق"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "السجل ال_تالي"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "إ_غلاق"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "تيارات بيانات مباشرة"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "عنوان URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "أدخِل هنا مسارا لمستند مصدر في نظام الملفات المحلي أو على الشابكة."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_تصفّح..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "مجال قاعدة البيانات:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "مزوّد البيانات:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "نص البحث:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19262,34 +19226,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "النتائج إلى"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "التاريخ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "الأعمدة"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "الصفوف"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "جَمَعه"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "فترة"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "المُعاملات"
@@ -19433,167 +19402,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22206,17 +22177,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "نتائج البحث"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24160,115 +24141,120 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~نافذة"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "خطوط الشبكة"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "ال_لون:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "إظهار"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "إخفاء"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "فواصل الصفحات"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
#, fuzzy
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "خطوط مساعدة أ_ثناء التحريك"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
#, fuzzy
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "الكائنات/الصّور"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "الر_سوم البيانية:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_كائنات رسومية"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "اعرض"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "أخفِ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "اعرض"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "أخفِ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "اعرض"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "أخفِ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
#, fuzzy
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "_كائنات"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/ar/scp2/source/ooo.po b/source/ar/scp2/source/ooo.po
index ea2aae1c893..83ed008c060 100644
--- a/source/ar/scp2/source/ooo.po
+++ b/source/ar/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "فتح المستند"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ar/scp2/source/winexplorerext.po b/source/ar/scp2/source/winexplorerext.po
index cc77d4d3fbf..723960035f2 100644
--- a/source/ar/scp2/source/winexplorerext.po
+++ b/source/ar/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2017-01-17 15:07+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: 1484665649.000000\n"
#: module_winexplorerext.ulf
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "لتمكين ميكروسوفت ويندوز إكسبلورر من عرض معلومات حول مستندات %PRODUCTNAME، مثل معاينة المصغرات."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index f44c32de0ce..4a77e7f2d35 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2609,6 +2609,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3078,164 +3083,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4656,160 +4846,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "أظهر الأشكال"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index 1282691bc3d..fcd88e0b4db 100644
--- a/source/ar/sfx2/messages.po
+++ b/source/ar/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " سنة: %1 شهر: %2 يوم: %3 ساعة: %4 دقيقة: %5 ثانية: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "أزل الخاصية"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"لا تتوافق القيمة المُدخلة مع النوع المحدد.\n"
"ستُخزّن القيمة كنص."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "النمط موجود بالفعل. أأستبدله؟"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~صفّر"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "هذا الاسم مستخدم حاليًا."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "هذا النمط غير موجود."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"لا يمكن استخدام هذا النمط نمطا أساسيا،\n"
"لأنه سيتسبب بمرجع تكراري."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"الاسم موجود بالفعل كنمط مبدئي.\n"
"رجاء اختر اسما آخر."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,93 +976,93 @@ msgstr ""
"إن حذفت هذه الأنماط، سيرجع النص إلى النمط الأب.\n"
"أتريد حذف هذه الأنماط؟\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "الأنماط المستخدمة: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "الملاح"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "تأكيد غير صحيح لكلمة السر"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "أرسل"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "الخط"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "إدراج تعليق الإصدار"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(لم يعيّن اسم)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "قائمة الأنماط"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "هيكلي"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "وضع تنسيق التعبئة"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "نمط جديد من التحديد"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "حدّث النمط"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "أمتأكد من إلغاء التسجيل؟ ستفقد كل الخطوات المسجلة حتى الآن."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "إلغاء التسجيل"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "يهيّأ الآن المكونات للمرة الأولى."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1076,7 +1071,7 @@ msgstr ""
"لا توجد طابعة مبدئية.\n"
"الرجاء اختيار طابعة و المحاولة من جديد."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1085,17 +1080,17 @@ msgstr ""
"تعذر تشغيل الطابعة.\n"
"الرجاء مراجعة إعدادات الطابعة."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "الطابعة مشغولة"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (للقراءة فقط)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1106,7 +1101,7 @@ msgstr ""
"فهل تريد حفظ الإعدادات الجديدة في\n"
"المستند النشط؟"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1117,7 +1112,7 @@ msgstr ""
"هل ترغب في حفظ الإعدادات الجديدة \n"
"في المستند النشط ؟"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1128,7 +1123,7 @@ msgstr ""
"فهل تريد حفظ الإعدادات الجديدة في\n"
"المستند النشط؟"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1137,7 +1132,7 @@ msgstr ""
"لا يمكن إغلاق المستند بسبب \n"
"وجود مهمة طباعة قيد التنفيذ. "
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,7 +1140,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1153,17 +1148,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "لا يمكن تحرير المستند، ربما بسبب حقوق الوصول المفقودة. هل تريد تحرير نسخة من المستند؟"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1171,351 +1166,361 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (مستند تم إصلاحه)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "لم يُفحص هذا المستند على الخادوم."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "هذا المستند مفتوح للقراءة فقط."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "فُتح ملف PDF هذا بوضع القراءة فقط لإتاحة توقيع الملف الموجود."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "تصنيف هذا المستند هو %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "يجب تصنيف هذا المستند قبل لصق محتوى الحافظة."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "‫لهذا المستند تصنيفا أقل مستوى من الحافظة."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "التحكم في التصدير:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "اجلب"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "حرّر المستند"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "وقّع المستند"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "لهذا المستند توقيع غير صالح."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "كان التوقيع صالحا، ولكن المستند عُدّل"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "التوقيع يبدو جيدا إلا أنه تعذر التحقق من الشهادة."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "التوقيع يبدو جيدا إلا أن المستند موقّع جزئيا فقط."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "هذا المستند موقّع رقميا والتوقيع صالح."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "اعرض التواقيع"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "إرساء"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "ألغِ الإرساء"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "خيارات أكثر"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "أغلق الشريط الجانبي المرصوف"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "إعدادات الشريط الجانبي"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "التخصيص"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "استعد المبدئيات"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "أغلق الشريط الجانبي"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "أليزارين"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "خلية نحل"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "منحنى أزرق"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "خرائط أولية"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "أزرق فاتح"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "الحمض النووي"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "تركيز"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "إمبريس"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "إلهام"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "أضواء"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "أخضر مورق"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "أزرق ليلي"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "قلم رصاص"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "بيانو"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "الغروب"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "عتيق"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "سيرة ذاتية"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "المبدئي"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "عصري"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "بطاقة أعمال فيها شعار"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "أزل"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "امسح الكل"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1883,32 +1888,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "تعليق الإصدار:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "الاسم"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "النوع"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "القيمة"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "النوع"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "نعم"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "لا"
@@ -1918,17 +1908,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "أضف _خاصيّة"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "الاسم"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "النوع"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "القيمة"
@@ -2058,17 +2048,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ال_موقع:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ال_نوع:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "غيّر _كلمة السر"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "القالب:"
@@ -2078,27 +2068,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "خصائص ”%1“"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "عامّ "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "الوصف"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "خصائص مخصّصة"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "خصائص CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "الأمان"
@@ -2312,6 +2302,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ar/shell/messages.po b/source/ar/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ar/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ar/starmath/messages.po b/source/ar/starmath/messages.po
index 8bfff20f0d7..24017a93efc 100644
--- a/source/ar/starmath/messages.po
+++ b/source/ar/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1667,261 +1667,286 @@ msgid "Examples"
msgstr "أمثلة"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "قياسي"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "مائل"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "عريض"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "أسود"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "أزرق"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "أخضر"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "أحمر"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "سماوي"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "أرجواني"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "رمادي"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "ليموني"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "كستنائي"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "أزرق ليلي"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "زيتوني"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "بنفسجي"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "فضي"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "أزرق مخضر"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "أصفر"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "إخفاء"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "الحجم"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "الخط"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "يسار"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "توسيط"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "يمين"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "تعليقات"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "المعادلات"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "يحفظ المستند..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "معادلات %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "خطأ : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "حرف غير متوقع"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "متوقع '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "متوقع '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "متوقع '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "متوقع ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "متوقع '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Color required"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' expected"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "‏%PRODUCTNAME‏ %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "المحتويات"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ال~عنوان"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ن~ص المعادلة"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "الح~دود"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "الحجم"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "الحجم الأ~صلي"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ملاءمة ~حجم الصفحة"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "ال~مقياس"
@@ -1986,6 +2011,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "العناصر"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ar/svtools/messages.po b/source/ar/svtools/messages.po
index 162fc73642d..cb501ec642b 100644
--- a/source/ar/svtools/messages.po
+++ b/source/ar/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1522 +16,1524 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195198.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "تراجع عن: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "أ~عِد: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~كرّر: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "نص غير منسق"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "نص غير منسق (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "صورة نقطية (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "نص غني التنسيق (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "نص غني التنسيق (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "نسق رسم %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "معلومات الحالة من رابط Svx الداخلي"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "علامة Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "نسق خادوم Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "تنسيق كائن Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "كائن بريمج"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "كائن مُلحق"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "كائن StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "كائن StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "كائن StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "كائن StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "كائن StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "كائن StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "كائن StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "كائن StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "كائن StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "كائن StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "كائن StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "كائن StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "كائن StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "كائن StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "كائن StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "كائن StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "كائن StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "كائن StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "كائن StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "كائن StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "كائن StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "كائن StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "كائن StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "كائن StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "لغة رقْم النص الفائق (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "لغة رقْم النص الفائق مجردة (HTML بسيط)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "كائن ميكروسوفت وورد"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "كائن StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "كائن مستند Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "معلومات مستند Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "مستند Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "كائن StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "كائن رسومي"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "كائن أوبن‌أوفيس.أورج رايتر 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "كائن أوبن‌أوفيس.أورج رايتر/وِب 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "كائن أوبن‌أوفيس.أورج رايتر/ماستر 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "كائن أوبن‌أوفيس.أورج درو 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "كائن أوبن‌أوفيس.أورج إمبريس 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "كائن أوبن‌أوفيس.أورج كالك 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "كائن أوبن‌أوفيس.أورج رسم بياني 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "كائن أوبن‌أوفيس.أورج ماث 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "ملف ويندوز أعلى"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "كائن مصدر البيانات"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "جدول مصدر البيانات"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "استعلام SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "حواري أوبن‌أوفيس.أورج 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "ارتباط"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "تنسيق HTML بدون تعليقات"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "تعذر إدراج الكائن %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "تعذر إدراج كائن من الملف %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "كائنات إضافية"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "مصدر مجهول"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "الاسم"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "الحجم"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "تاريخ التعديل"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "النوع"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "بايتات"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "كيلوبايت"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "ميغابايت"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "غيغابايت"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "صف: %1، عمود:%2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr "، نوع: %1، عنوان URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "المجلد"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ملف"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "حقل فارغ"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "هجائي عددي"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "عادي"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "مجموعة أحرف"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "القاموس"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "يصدم"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "متطرف"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "يونيكود"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "دفتر الهاتف"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "نظام الصوت (حرفي رقمى أولاً)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "نظام الصوت (آخر حرف رقمي)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "هجائي عددي"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "القاموس"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "متطرف"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "يصدم"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "نظام الصوت (حرفي صوتي أولاً، تم تقسيمها لمجموعات حسب المقاطع اللفظية)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "نظام الصوت (حرفي صوتي أولاً، تم تقسيمها لمجموعات حسب الأحرف الساكنة)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "نظام الصوت (حرفي صوتي أخيرًا، تم تقسيمها لمجموعات حسب المقاطع اللفظية)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "نظام الصوت (حرفي صوتي أخيرًا، تم تقسيمها لمجموعات حسب الأحرف الساكنة)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "اليوم"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "بلا"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "فاتح"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "فاتح مائل"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "عادي"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "مائل"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "عريض"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "عريض مائل"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "أسود"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "أسود مائل"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "الكتاب"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "مكثف"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "شبه غامق"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "سيُستخدم الخط نفسه عند الطباعة وعند العرض على الشاشة."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "هذا خط الطابعة. قد يختلف المظهر على الشاشة بعض الشيء."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "سيُحاكى نمط هذا الخط أو سيُستخدم أقرب نمط مطابق له."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "هذا الخط غير مثبّت. سيُستخدم أقرب خط متوفّر."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "تصفّح…"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "تحريك الى البداية"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "تحريك إلى اليسار"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "تحريك إلى اليمين"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "تحريك إلى النهاية"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "أضف"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "مسطرة أفقية"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "مسطرة رأسية"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "قيمة البدء 1 بت"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "توزيع ألوان 1 بت"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "تدرجات رمادي 4 بت"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "لون 4 بايت"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "تدرجات رمادي 8 بت"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "لون 8 بايت"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "ألوان حقيقية 24 بت"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "تحتاج الصورة إلى حوالي %1 ك.بايت من الذاكرة."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "تحتاج الصورة إلى حوالي %1 ك.بايت من الذاكرة، حجم الملف هو %2 ك.بايت."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "حجم الملف هو %1 ك.بايت."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "شبح"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "فرز"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "جاهز"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "موقوفة"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "الحذف المنتظر"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "مشغول"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "التمهيد"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "بالانتظار"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Warming up"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "معالجة"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "طباعة"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "غير متصل"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "خطأ"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "خادوم مجهول"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paper jam"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "نفذ الورق"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "التغذية اليدوية"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "مشكلة في الورق"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "الإدخال/الإخراج نشط"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "درج الإخراج ممتلئ"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "انخفاض في مستوى الحبر"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "لا يوجد حبر"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "حذف صفحة"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "تدخل المستخدم مطلوب"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "ذاكرة غير كافية"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "الغطاء مفتوح"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "وضع توفير الطاقة"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "الطابعة المبدئيّة"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d مستندات"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "إ~نهاء"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "ال~تالي >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ال~سابق"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "الخطوات"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<بلا>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "الشركة"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "القسم"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "الاسم الأول"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "اسم الأخير"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "الشارع"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "الدولة"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "الرمز البريدي"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "المدينة"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "المسمى الوظيفي"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "الموضع"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "نموذج العناوين"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "الحروف البادئة"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "إطراء ختامي"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "الهاتف: منزل"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "الهاتف: عمل"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "عنوان URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ملاحظة"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "User 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "User 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "User 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "User 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "المُعرّف"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "الولاية"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "الهاتف: مكتب"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "جهاز النداء"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "المحمول"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "الهاتف: آخر"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "التقويم"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "دعوة"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "يتطلّب %PRODUCTNAME إحدى بيئات جافا التّشغيليّة (JRE) لأداء هذه المهمّة. فضلًا ثبّت واحدة وأعد تشغيل %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "يحتاج %PRODUCTNAME بيئة جافا تشغيلية %BITNESS بت (JRE) لتنفيذ هذه المهمة. رجاءً ثبّت بيئة JRE وأعِد تشغيل %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ضبط %PRODUCTNAME تغيّر. من \"%PRODUCTNAME - التّفضيلات - %PRODUCTNAME - متقدّم\"، اختر بيئة جافا التّشغيليّة التي تريد أن يستخدمها %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ضبط %PRODUCTNAME تغيّر. من \"أدوات - خيارات - %PRODUCTNAME - متقدّم\"، اختر بيئة جافا التّشغيليّة التي تريد أن يستخدمها %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "يتطلّب %PRODUCTNAME إحدى بيئات جافا التّشغيليّة (JRE) لتنفيذ هذه المهمّة. في بيئة JRE المحدّدة مشكلة. فضلًا اختر إصدارة أخرى أو ثبّت بيئة JRE جديدة واخترها من \"%PRODUCTNAME - التّفضيلات - %PRODUCTNAME - متقدّم\"."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "يتطلّب %PRODUCTNAME إحدى بيئات جافا التّشغيليّة (JRE) لتنفيذ هذه المهمّة. في بيئة JRE المحدّدة مشكلة. فضلًا اختر إصدارة أخرى أو ثبّت بيئة JRE جديدة واخترها من \"أدوات - خيارات - %PRODUCTNAME - متقدّم\". "
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE مطلوب"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "تحديد JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE معيب"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "النص البرمجي"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "علّم الملف"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "الرسومات"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ملف التهيئة"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "التطبيق"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "جدول قاعدة بيانات"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "ملف النظام"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "مستند ميكروسوفت وورد"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "ملف مساعدة"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "مستند HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ملف أرشيف"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ملف سجل"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "قاعدة بيانات StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "مستند StarWriter 4.0 / 5.0 رئيسي"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "صورة StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ملف نصي"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "ارتباط"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "قالب StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "مستند ميكروسوفت إكسل"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "قالب ميكروسوفت إكسل"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ملف تصحيح"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ملف"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "المجلد"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "مستند نصي"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "جدول مُمتد"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "عرض تقديمي"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "الرسم"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "مستند HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "مستند شامل"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "الصيغة"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "قاعدة بيانات"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "قالب جدول أوبن‌أوفيس.أورج 1.0 مُمتد"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "قالب رسمة أوپن‌أُفِس.أورغ 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "قالب عرض أوپن‌أُفِس.أورغ 1.0 تقديميّ"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "قالب مستند أوپن‌أُفِس.أورغ 1.0 نصّيّ"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "محرك أقراص محلي"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "محرك الأقراص"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "محرك الأقراص المدمجة"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "اتصال شبكي"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "مستند ميكروسوفت باوربوينت"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "قالب ميكروسوفت باوربوينت"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "عرض ميكروسوفت باوربوينت"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "صيغة أوبن‌أوفيس.أورج 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "رسم أوبن‌أوفيس.أورج 1.0 بياني"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "رسمة أوبن‌أوفيس.أورج 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "جدول أوبن‌أوفيس.أورج 1.0 مُمتد"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "عرض أوبن‌أوفيس.أورج 1.0 تقديمي"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "مستند أوبن‌أوفيس.أورج 1.0 نصي"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "مستند أوبن‌أوفيس.أورج 1.0 رئيسي"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "مستند MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "قاعدة بيانات OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "رسم OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "صيغة OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "مستند OpenDocument رئيسي"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "عرض OpenDocument تقديمي"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "جدول OpenDocument مُمتد"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "نص OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "قالب جدول OpenDocument مُمتد"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "قالب رسم OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "قالب عرض OpenDocument تقديمي"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "قالب نص OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "امتداد %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 41fe9442ff7..1a75bf62226 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7975,6 +7975,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12359,90 +12364,95 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "محرّر الخطوط الكفافية"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "طبّق"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "مساحة العمل"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
#, fuzzy
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "اختر"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "مستطيل"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "علامة حذف"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "مضلّع"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
#, fuzzy
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "تحرير النقاط"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "انقل النقاط"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "أدرج نقاط"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "احذف النقاط"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "خط كفافي تلقائي"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "تراجع "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "الأحمر"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "الماصة"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12769,121 +12779,115 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "تذييل"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "محرر مخطط الصورة"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "طبّق"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "افتح..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "احفظ..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "أغلق"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
#, fuzzy
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "اختر"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "مستطيل"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "علامة حذف"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "مضلّع"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "مضلع حر الشكل"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
#, fuzzy
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "تحرير النقاط"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "انقل النقاط"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "أدرج نقاط"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "احذف النقاط"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "تراجع "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "الأحمر"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "نشط"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "ماكرو..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "خ_صائص..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "العنوان:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "الإطار:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "النص:"
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 969597118ec..64dc298c5b9 100644
--- a/source/ar/sw/messages.po
+++ b/source/ar/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-12-11 06:54+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3143,9 +3143,9 @@ msgid "Change object title of $1"
msgstr "تغيير عنوان كائن $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "تغيير وصف كائن $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12142,147 +12142,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12292,152 +12292,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13534,8 +13534,8 @@ msgstr "وسع المسافة بين الكلمات في السطور التي
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "احمِ النموذج"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16890,47 +16890,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "جدول محتويات، أو ~فهرس، أو ببلوجرافيا..."
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "معاينة"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "معاينة"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "النوع"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "المدخلات"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "الأنماط"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "الأعمدة"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "الخلفية"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "معاينة"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_مستوى"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17173,319 +17173,319 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "حرّر..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "ال_عنوان:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "النوع:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "جدول المحتويات"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "فهرس الجداول"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "مستخدم-معرف"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "جدول الكائنات"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "بيبلوجرافيا ١"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "محمي ضد التغييرات اليدوية"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "النوع والعنوان"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "_لـ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "كل ال~مستند"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "الفصل"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "أنشئ فهرسًا أو جدول محتويات"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "المخطط التفصيلي"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
#, fuzzy
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "_جداول"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "إطارات الن_صوص"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "الرسومات"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "كائنات OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "الأنماط الشرطيّة"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "الأ_نماط"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "_عيّن الطُرز"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "واصفة"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "اسم الكائن"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "فئة"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "عرض"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "مراجع"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "الفئة و الرقم"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "نص الواصفة"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "الإنشاء من"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "الأ_قواس:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[بدون]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
#, fuzzy
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "_حسّاس للحالة"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_ملف"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "خيارات"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "اللغة:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "نوع المفتاح:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "فرز"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_مستوى"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "نمط الفقرة"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "ال_مبدئيّ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "ت_حرير"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index aa2f64ef198..12828c85b83 100644
--- a/source/as/cui/messages.po
+++ b/source/as/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1653,107 +1653,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "কোনো সীমা সংহতি নকৰিব"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "কেৱল বাহিৰা সীমা সংহতি কৰক"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "বাহিৰা সীমা আৰু আনুভুমিক শাৰীসমূহ সংহতি কৰক"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "বাহিৰা সীমা আৰু সকলো অভ্যন্তৰীক শাৰীসমূহ সংহতি কৰক"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "অভ্যন্তৰীক শাৰীসমূহ সলনি নকৰাকে বাহিৰা সীমা সংহতি কৰক"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "কেৱল কৰ্ণ শাৰীসমূহ সংহতি কৰক"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "চাৰিটা সীমাকে সংহতি কৰক"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "কেৱল বাও আৰু সোঁ সীমাবোৰ সংহতি কৰক"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "কেৱল উপৰ আৰু তল সীমাবোৰ সংহতি কৰক"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "কেৱল বাও সীমা সংহতি কৰক"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "উপৰ আৰু তল সীমাবোৰ, আৰু সকলো অভ্যন্তৰীক শাৰীসমূহ সংহতি কৰক"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "বাও আৰু সোঁ সীমাবোৰ, আৰু সকলো অভ্যন্তৰীক শাৰীসমূহ সংহতি কৰক"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "ছাঁ নাই"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "তলৰ সোঁফালে ছায়া পেলাওক"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "উপৰ সোঁফালে ছায়া পেলাওক"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "তলৰ বাওফালে ছায়া পেলাওক"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "উপৰ বাওফালে ছায়া পেলাওক"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1796,7 +1791,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1916,7 +1911,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2156,7 +2151,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2411,12 +2406,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2486,7 +2481,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2566,7 +2561,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2807,7 +2802,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3430,66 +3425,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME ৰ বিষয়ে"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "কৃতিত্ব (_d)"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ৱেবছাইট (_W)"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "নিৰ্মাণ ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME শব্দ প্ৰক্ৰিয়াকৰণ, স্প্ৰেডশ্বীটসমূহ, পৰিৱেশন আৰু অধিকৰ বাবে এটা আধুনিক, সহজতে-ব্যৱহাৰকৰিব পৰা, মুক্ত উৎস উৎপাদন চুইট।"
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice OpenOffice.org ৰ ওপৰত ভিত্তিয় আছিল"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME LibreOffice ৰ পৰা আহৰণ কৰা হৈছে যি OpenOffice.org ৰ ওপৰত ভিত্তিয় আছিল।"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "এই উন্মোচন %OOOVENDOR দ্বাৰা প্ৰদান কৰা হৈছিল।"
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3608,17 +3608,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "প্ৰতিস্থাপন কৰক (_R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "প্ৰতিস্থাপন কৰক (_c)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "সৈতে (_W):"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "কেৱল টেক্সট (_T)"
@@ -4488,6 +4488,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "নূন্যতম শব্দ দৈৰ্ঘ্য"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5649,31 +5809,31 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "বৈশিষ্ট্যবোৰ"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
#, fuzzy
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "URL (_U)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ফ্ৰেইম (_r)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "নাম (_N)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
#, fuzzy
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "বৈকল্পিক লিখনী (_t)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9411,84 +9571,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ডাইলগসমূহ ব্যৱহাৰ কৰক (_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ডাইলগসমূহ খোলক/সঞ্চয় কৰক"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ডাইলগসমূহ ব্যৱহাৰ কৰক (_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ডাইলগসমূহ প্ৰিন্ট কৰক"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "সংহতিসমূহ \"দস্তাবেজ সলনি কৰা হৈছে\" অৱস্থা প্ৰিন্ট কৰা হৈ আছে (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "দস্তাবেজ অৱস্থা"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "বছৰসমূহ মাজত থকাকে অনুবাদ কৰক (_I) "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "আৰু "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "বছৰ (দুটা ডিজিট)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME -ক চিস্টেম আৰম্ভ হোৱাৰ সময়ত লোড কৰক"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray Quickstarter সামৰ্থবান কৰক"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -11465,25 +11625,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "নিজস্ব থীম"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox থীমসমূহ"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -12146,102 +12291,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "সুৰক্ষা বিকল্পসমূহ"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13307,27 +13356,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/as/extensions/messages.po b/source/as/extensions/messages.po
index 74a47269088..58e1cf62626 100644
--- a/source/as/extensions/messages.po
+++ b/source/as/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3239,191 +3239,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "টেবুলৰ বাবে স্তম্ভৰ খচৰা %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "চুটি নাম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "লেখক(বোৰ)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "প্ৰকাশক"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "অধ্যায়"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "সম্পাদক"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "ধৰণ (_T)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "বছৰ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "শিৰোনাম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "ঠিকনা"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN (~I)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "পৃষ্ঠা(বোৰ) (~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "সংস্কৰণ (~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "কিতাপৰ শিৰোনাম (~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "ভলিউম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "প্ৰকাশনৰ প্ৰকাৰ (~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "প্ৰতিষ্ঠান (~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "অনুষ্ঠান (~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "বিশ্ববিদ্যালয়"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "সংবাদৰ ধৰণ (~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "মাহ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "জার্নেল"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "সংখ্যা"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "শৃংখলাবোৰ (~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "টীকাকৰণ (~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "টিপ্পনী"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত ফিল্ড 1 (~1)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত ফিল্ড 2 (~2)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত ফিল্ড 3 (~3)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত ফিল্ড 4 (~4)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "ব্যৱহাৰকৰ্তাৰ দ্বাৰা সংজ্ঞা নিৰূপিত ফিল্ড 5 (~5)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3606,30 +3606,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "নতুন তথ্যৰ ধৰণৰ বাবে এটা নাম দিয়ক:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "ফিল্ডবোৰ সংযোগ কৰক"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "পৰামৰ্শ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Sub forms ব্যৱহাৰ কৰা হয় বৰ্ত্মানৰ ৰেকৰ্ডৰ বিস্তৃত তথ্য দেখুৱাবলৈ মাস্টাৰ ফৰ্মৰ । ইয়াৰ কাৰণে, আপুনি নিৰ্ধাৰণ কৰিব পাৰে sub form ৰ কোনবোৰ স্তম্ভ master form ৰ সৈতে মিলে ।"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "লেবেল"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "লেবেল"
diff --git a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
index 7ce67d6a549..929bd45ecbf 100644
--- a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/as/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -23721,6 +23721,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26063,6 +26072,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26081,6 +26099,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index 42a4561f2e3..a577c24e56b 100644
--- a/source/as/sc/messages.po
+++ b/source/as/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15634,6 +15634,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(exclusive access)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16208,12 +16213,12 @@ msgstr "চৰ্তসূচক ফৰমেটিং"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17504,84 +17509,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "তথ্য বিন্যাস"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "বন্ধ কৰক (_C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "নতুন ৰেকৰ্ড"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "নতুন (_N)"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "মচি দিয়ক (_D)"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "পুনৰুদ্ধাৰ কৰক (_R)"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "পূৰ্বৱৰ্তী ৰেকৰ্ড (_P)"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "পৰৱৰ্তী ৰেকৰ্ড (_x)"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "বন্ধ কৰক (_C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-#, fuzzy
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "ইয়াত স্থানীয় ফাইল চিস্টেম অথবা ইন্টাৰনেটত উৎস দস্তাবেজৰ URL সুমুৱাওক।"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ব্ৰাউছ কৰক (_B)..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ডাটাবেইচৰ বিস্তাৰসমূহ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19370,34 +19332,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "চিহ্নিত স্থানলৈ ফলাফল"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "তাৰিখ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "স্তম্ভসমূহ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "শাৰীসমূহ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "চিহ্নিত বস্তু দ্বাৰা দলবদ্ধ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "অন্তৰাল"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "প্ৰাচলসমূহ"
@@ -19545,167 +19512,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22361,17 +22330,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24342,119 +24321,124 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "উইন্ডো (~W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "জালৰ ৰেখাবোৰ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "ৰং (_C)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
#, fuzzy
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "দেখুৱাওক (_S)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "লুকুৱাওক"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "পৃষ্ঠা বিৰতি"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
#, fuzzy
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "সহায়শাৰীসমূহ স্থানান্তৰ কৰোতে (_W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "ছার্টবোৰ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "অঁকা বস্তুবোৰ (_D)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
#, fuzzy
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "দেখুৱাওক (_S)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "লুকুৱাওক"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
#, fuzzy
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "দেখুৱাওক (_S)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "লুকুৱাওক"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
#, fuzzy
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "দেখুৱাওক (_S)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "লুকুৱাওক"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
#, fuzzy
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "বস্তুবোৰ (_O)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/as/scp2/source/ooo.po b/source/as/scp2/source/ooo.po
index 3eb0399bdce..dc1e64fb630 100644
--- a/source/as/scp2/source/ooo.po
+++ b/source/as/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -35,6 +35,14 @@ msgstr "দস্তাবেজ খোলক"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/as/scp2/source/winexplorerext.po b/source/as/scp2/source/winexplorerext.po
index 199a5698808..ba2c4e5c74e 100644
--- a/source/as/scp2/source/winexplorerext.po
+++ b/source/as/scp2/source/winexplorerext.po
@@ -2,18 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-10-12 16:07+0000\n"
-"Last-Translator: ngoswami <ngoswami@redhat.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:22+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: as\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: 1350058020.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369347754.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "থাম্বনেইল পূৰ্বদৃশ্যবোৰৰ দৰে মাইক্ৰছফট উইণ্ডজ এক্সপ্ল'ৰাৰটোৱে %PRODUCTNAME ডকুমেন্টবোৰৰ বিষয়ে তথ্য দেখুৱাবলৈ সক্ষম কৰি তোলে."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index 43af5d004d6..0615e83fbec 100644
--- a/source/as/sd/messages.po
+++ b/source/as/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2627,6 +2627,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3093,164 +3098,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "নাম HTML ৰূপাঙ্কণ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4723,160 +4913,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "কাঁড় আকৃতিসমূহ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index 43df626c3fb..c8602444bb4 100644
--- a/source/as/sfx2/messages.po
+++ b/source/as/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -915,11 +915,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "বৈশিষ্ট্যবোৰ ছেট কৰক"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -929,28 +924,28 @@ msgstr ""
"দিয়া মান নিৰ্ধাৰিত ধৰণৰ লগত নিমিলে ।\n"
"মান টেকস্ট হিচাপে ৰখা হ'ব ।"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "এই ফাইলটো ইতিমধ্যে আছে. পুনৰ লিখিবলৈ বিচাৰেনেকি?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "পুনৰ স্থাপন কৰক (~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "এই নামটো ইতিমধ্যে ব্যৱহাৰ হৈছে."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "এই শৈলীটোৰ অস্তিত্ব নাই."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -960,7 +955,7 @@ msgstr ""
"এই শৈলীটো এটা আধাৰ শৈলী হিচাপে ব্যৱহাৰ কৰিব পৰা নাযাব,\n"
"কাৰণ এইটো আকৌ আগৰ প্ৰসংগ হিচাপে ওলাব."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -969,7 +964,7 @@ msgstr ""
"অবিকল্পিত শৈলী হিচাপে নামটো ইতিমধ্যে বৰ্তি আছে.\n"
"অনুগ্ৰহ কৰি অন্য নাম নিৰ্বাচন কৰক."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -977,95 +972,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "ব্যৱহৃত শৈলীবোৰ: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "নেভিগেটৰ"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "দোষযুক্ত পাছৱর্ডৰ সন্মতিকৰণ"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "পথাওক"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "আখৰ"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "সংস্কৰণ মন্তব্য দৰ্শন কৰক"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "শৈলী তালিকা"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "ওপৰৰ পৰা তললৈকে ক্ৰমানুসাৰে"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ফাইল ফৰমেট প্রকাৰ"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "নিৰ্বাচনৰ পৰা নতুন শৈলী"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "শৈলীসমূহ আপডেইট কৰক (‌~U)"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "আপুনি সঁচাকৈয়ে ৰেকৰ্ডিংটো বাতিল কৰিবলৈ বিচাৰেনেকি? এই মুহূৰ্তলৈকে ৰেকৰ্ড কৰা যিকোনো ষ্টেপ হেৰাই যাব."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ৰেকর্ডিং বাতিল কৰক"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "প্ৰথম ব্যৱহাৰৰ কাৰণে নমুনাবোৰ ইনিশ্বিয়েলাইজ কৰা হৈছে."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1074,7 +1069,7 @@ msgstr ""
"কোনো অবিকল্পিত প্ৰিন্টাৰ পোৱা নগ'ল।\n"
"অনুগ্ৰহ কৰি এটা প্ৰিন্টাৰ নিৰ্বাচন কৰক আৰু পুনৰ চেষ্টা কৰক।"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1083,17 +1078,17 @@ msgstr ""
"প্ৰিন্টাৰ আৰম্ভ কৰিব পৰা নগ'ল।\n"
"অনুগ্ৰহ কৰি আপোনাৰ প্ৰিন্টাৰৰ সংৰূপ পৰীক্ষা কৰক।"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "প্ৰিন্টাৰ ব্যস্ত হৈ আছে"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (কেৱল পঢ়িবৰ বাবে)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"সক্ৰিয় দস্তাবেজটোত \n"
"নতুন ছেটিংছবোৰ ছেভ কৰিব লাগিবনেকি?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"সক্ৰিয় দস্তাবেজটোত \n"
"নতুন ছেটিংছবোৰ ছেভ কৰিব লাগিবনেকি?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1126,7 +1121,7 @@ msgstr ""
"সক্ৰিয় দস্তাবেজটোত \n"
"নতুন ছেটিংছবোৰ ছেভ কৰিব লাগিবনেকি?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1136,7 +1131,7 @@ msgstr ""
"এটা ছপা কাৰ্য চলাই থকা হৈছে কাৰণে \n"
" দস্তাবেজটো বন্ধ কৰিব নোৱাৰি."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,7 +1139,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1152,18 +1147,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "প্ৰবেশৰ অধিকাৰ হেৰুৱাৰ বাবে সম্ভৱতঃ এই দস্তাবেজটো সম্পাদনা কৰিব নোৱাৰি. আপুনি দস্তাবেজটোৰ এটা প্ৰতিলিপি সম্পাদনা কৰিবলৈ বিচাৰেনেকি?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1171,357 +1166,367 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (দস্তাবেজ মেৰামতি কৰা হ'ল)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "দস্তাবেজক চাৰ্ভাৰত চেক আউট কৰা হোৱা নাই"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "সংবাদ নিয়ন্ত্ৰণসমূহ"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "চেক-আউট"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "দস্তাবেজ সম্পাদনা কৰক"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "দস্তাবেজ স্বাক্ষৰ কৰক..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ডক"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "আনডক"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "অধিক বিকল্প"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "কাষবাৰ ডেক বন্ধ কৰক"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "স্বনিৰ্বাচন"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "অবিকল্পিত পুনৰুদ্ধাৰ কৰক"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "আতৰাওক"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1897,32 +1902,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "সংস্কৰণ মন্তব্য"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "নাম"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "প্ৰকাৰ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "মূল্য"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "প্ৰকাৰ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "হয়"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "নহয়"
@@ -1932,17 +1922,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "নাম"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "প্ৰকাৰ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "মূল্য"
@@ -2077,17 +2067,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "অবস্থান (_L):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ধৰণ (_T):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "পাছৱাৰ্ড পৰিবৰ্তন কৰক (_P)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "নমুনা:"
@@ -2098,27 +2088,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "চিহ্নিত বস্তুৰ বৈশিষ্ট্যসমূহ "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "সাধাৰণ "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "বিৱৰণ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "বৈশিষ্ট্যবোৰ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "সুৰক্ষা"
@@ -2346,6 +2336,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/as/shell/messages.po b/source/as/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/as/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/as/starmath/messages.po b/source/as/starmath/messages.po
index ca8c5879304..4df42806147 100644
--- a/source/as/starmath/messages.po
+++ b/source/as/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:43+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1655,273 +1655,298 @@ msgid "Examples"
msgstr "উদাহৰণসমূহ"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "প্ৰামাণিক"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ইটালীক"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ডাঠ"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "কলা"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "নীলা"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "সেউজীয়া"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "ৰঙা"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "চিয়ান"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "মেজেন্টা"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "মটিয়া"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "নেমু"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "কৃষ্ণৰক্তবৰ্ণ"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ইষৎনীলা"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "জলফাই"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "জামুকলীয়া"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ৰূপ"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "টিল"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "হালধীয়া"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "লুকুৱাওক"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "আকাৰ"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "আখৰ"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "বাওঁফাল"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "কেন্দ্ৰ"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "সোঁফাল"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "কমান্ডসমূহ"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "সূত্রসমূহ"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "দস্তাবেজ সংৰক্ষণ কৰা হৈছে..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION সূত্ৰ"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "অপ্ৰত্যাশিত আখৰ"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "আৱশ্যকীয় ৰং"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "সমলসমূহ"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "শীৰ্ষক"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "সূত্র লিখনী"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "সীমাৰেখাবোৰ"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "আকাৰ"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "প্ৰকৃত আকাৰ"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "পৃষ্ঠাত খাপ খুৱাওক"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1993,6 +2018,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "উপাদান"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/as/svtools/messages.po b/source/as/svtools/messages.po
index 254b2880abf..132ad0ab0a2 100644
--- a/source/as/svtools/messages.po
+++ b/source/as/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1530 +15,1532 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195206.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "বাতিল কৰক: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "পুনৰ কৰক (~d): "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "পুনৰাবৃত্তি (~R): "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "ফৰমেট নকৰা টেক্সট"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx ইন্টাৰনেট সংযোগৰ পৰা স্থিতিৰ তথ্য"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "নেটস্কেপ পৃষ্ঠাসংকেত"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "ষ্টাৰ ছাৰ্ভাৰ ফৰমেট"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "ষ্টাৰ বস্তু ফৰমেট"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "এপলেট বস্তু"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "প্লাগ-ইন বস্তু"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "ষ্টাৰৰাইটাৰ 3.0 বস্তু"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "ষ্টাৰৰাইটাৰ 4.0 বস্তু"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "ষ্টাৰৰাইটাৰ 5.0 বস্তু"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "ষ্টাৰৰাইটাৰ/ৱেব 4.0 বস্তু"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "ষ্টাৰৰাইটাৰ/ৱেব 5.0 বস্তু"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "ষ্টাৰৰাইটাৰ/মাষ্টাৰ 4.0 বস্তু"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "ষ্টাৰৰাইটাৰ/মাষ্টাৰ 5.0 বস্তু"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "ষ্টাৰড্ৰ বস্তু"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 বস্তু"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 বস্তু"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "ষ্টাৰড্ৰ 5.0 বস্তু"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "ষ্টাৰকেলক বস্তু"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 বস্তু"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "ষ্টাৰকেলক 5.0 বস্তু"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "ষ্টাৰছাৰ্ট বস্তু"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "ষ্টাৰছাৰ্ট 4.0 বস্তু"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "ষ্টাৰইমেজ বস্তু"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 বস্তু"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 বস্তু"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "ষ্টাৰমেথ বস্তু"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 বস্তু"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 বস্তু"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "ষ্টাৰঅবজেক্ট পেইন্ট বস্তু"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "ছিল্ক"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "মাইক্ৰছফট ৱৰ্ড বস্তু"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "ষ্টাৰফ্ৰেমছেট বস্তু"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "অফিচ ডকুমেন্ট বস্তু"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "টিপ্পনী ডকুমেন্ট তথ্য"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx ডকুমেন্ট"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "গ্রাফিক বস্তু"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer অবজেক্ট"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web অবজেক্ট"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master অবজেক্ট"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw অবজেক্ট"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress অবজেক্ট"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc অবজেক্ট"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart অবজেক্ট"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math অবজেক্ট"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "উইণ্ডজ মেটাফাইল"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ডাটা উত্সৰ বস্তু"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ডাটা উত্সৰ টেবুল"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL প্ৰশ্ন"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ডাইলগ"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "সংযোগ"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML মন্তব্যবোৰৰ অবিহনে ফৰমেট"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% বস্তু ভৰাব পৰা নগ'ল."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% ফাইলৰ পৰা বস্তু ভৰাব পৰা নগ'ল."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "অতিৰিক্ত বস্তুবোৰ"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "অজ্ঞাত উত্স"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "নাম"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "আকাৰ"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "ৰূপান্তৰিত তাৰিখ"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "প্ৰকাৰ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "বাইটছ"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "শাৰী: %1, স্তম্ভ: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", প্ৰকাৰ: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ফল্ডাৰ"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ফাইল"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "খালী ফিল্ড"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমাৰিক"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "সাধাৰণ"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "আখৰৰ সমষ্টি"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "পিনয়িন"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "ষ্ট্ৰোক"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "বিস্তৃত"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ইউনিক'ড"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "জ্যুয়িন"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ফোন বুক"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ধ্বনিবৈজ্ঞানিক (প্রথম আলফানিউমাৰিক)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ধ্বনিবৈজ্ঞানিক (অন্তিম আলফানিউমাৰিক)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমাৰিক"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "পিনয়িন"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "বিস্তৃত"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "ষ্ট্ৰোক"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "জ্যুয়িন"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ধ্বনিবৈজ্ঞানিক (প্রথম আলফানিউমাৰিক, শব্দাংশবোৰৰ দ্বাৰা গোট কৰা হ'ল)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ধ্বনিবৈজ্ঞানিক (প্রথম আলফানিউমাৰিক, ব্যঞ্জনবৰ্ণবোৰৰ দ্বাৰা গোট কৰা হ'ল)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ধ্বনিবৈজ্ঞানিক (অন্তিম আলফানিউমাৰিক, শব্দাংশবোৰৰ দ্বাৰা গোট কৰা হ'ল)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ধ্বনিবৈজ্ঞানিক (অন্তিম আলফানিউমাৰিক, ব্যঞ্জনবৰ্ণবোৰৰ দ্বাৰা গোট কৰা হ'ল)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "আজি"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "কোনো নহয়"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "পাতল"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "পাতল ইটালিক"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "নিয়মিত"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ইটালিক"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "বল্ড"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "বল্ড ইটালীক"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ক'লা"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "ক'লা ইটালীক"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "কিতাপ"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "সংক্ষিপ্ত"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "অৰ্ধ ডাঠ"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "আপোনাৰ মুদ্ৰণ যন্ত্ৰ আৰু পৰ্দা দুয়োটাতে একে আখৰ ব্যৱহাৰ কৰা হ'ব."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "এইটো এটা মুদ্ৰণ যন্ত্ৰৰ আখৰ. পৰ্দাৰ ছবি বেলেগ হ'ব পাৰে."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "আখৰ শৈলীটো অনুকৰণ কৰা হ'ব বা নিকটতম অনুৰূপ শৈলীটো ব্যৱহৃত হ'ব."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "আখৰটো ইনষ্টল কৰা হোৱা নাই. নিকটতম উপলব্ধ আখৰটো ব্যৱহৃত হ'ব."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ব্রাউজ..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ঘৰলে স্থানান্তৰ কৰক"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "বাওঁফালে নিয়ক"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "সোঁফালে নিয়ক"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "শেষলে স্থানান্তৰ কৰক"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "যোগ কৰক"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "আনুভূমিক ৰুলাৰ"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "উল্লম্ব ৰুলাৰ"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "১ বিট ধাপ"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "১ বিট ডিথাৰ্ড"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "৪ বিট ধোঁৱা বৰন"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "৪ বিট ৰং"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "৪ বিট ধোৱা বৰন"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "৪ বিট ৰং"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "২৪ বিট সঁচা ৰং"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ছবিটোৰ %1 KB মেমৰিৰ প্ৰয়োজন।"
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ছবিটোৰ %1 KB মেমৰিৰ প্ৰয়োজন, ফাইল আকাৰ %2 KB।"
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ফাইল আকাৰ %1 KB।"
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "মূল্য"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "বৰ্গীকৰণ কৰক"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "প্ৰস্তুত"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "থমকি ৰ'ল"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "আঁতৰকৰণ অপেক্ষাৰত"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "ব্যস্ত"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ইনিশ্বিয়েলাইজিং"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "অপেক্ষাৰত"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "গৰম কৰা হৈছে"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "কাৰ্য চলি আছে"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "প্ৰিন্ট হৈ আছে"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "অফলাইন"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ভুল"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "অজ্ঞাত ছাৰ্ভাৰ"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "কাগজৰ ঠাহ"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "কাগজ যথেষ্ট নাই"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "মেনুৱেল ফীড"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "কাগজৰ সমস্যা"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O সক্রিয়"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "আউটপুট বিন ভর্তি"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "টোনাৰ কম হৈছে"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "কোনো টোনাৰ নাই"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "পৃষ্ঠা ডিলিট কৰক"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ব্যৱহাৰকৰ্তাৰ হস্তক্ষেপৰ প্ৰয়োজন"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "পৰ্যাপ্ত স্মৃতি নাই"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "আচ্ছাদন আঁতৰাওক"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "ঘাত ছেভ কৰাৰ প্ৰকাৰ"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "অবিকল্পিত প্ৰিন্টাৰ"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d ডকুমেন্টবোৰ"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "সমাপ্ত (~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "পৰৱর্তী (~N)>"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< পিছলৈ (~k)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "পদক্ষেপবোৰ"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "সংস্থা"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "বিভাগ"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "প্রথম নাম"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "অন্তিম নাম"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "পথ"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "দেশ"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ZIP ক'ড"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "চহৰ"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "শিৰোনাম"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "স্থান"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ঠিকনা ফর্ম"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "স্বাক্ষৰবোৰ"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "পূৰক বন্ধ"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "টেলিফোন: ঘৰ"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "টেলিফোন: কাম"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "টিপ্পনী"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ব্যৱহাৰকৰ্তা 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ব্যৱহাৰকৰ্তা 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ব্যৱহাৰকৰ্তা 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ব্যৱহাৰকৰ্তা 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ৰাজ্য"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "টেলিফোন: কাৰ্যালয়"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "পেজৰ"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "টেলিফোন (ম'বাইল)"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "টেলিফোন: অন্যান্য"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "কেলেণ্ডাৰ"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "নিমন্ত্রণ"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ক এটা Java runtime environment (JRE) ৰ প্ৰয়োজন এই কামৰ কাৰণে। এটা JRE ইনস্টল কৰক আৰু %PRODUCTNAME পুনাৰম্ভ কৰক।"
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME সংৰূপ সলনি হৈছে। %PRODUCTNAME - পছন্দসমূহ - %PRODUCTNAME - উন্নতৰ অন্তৰ্গত, আপুনি %PRODUCTNAME দ্বাৰা ব্যৱহাৰ কৰিব বিচৰা Java ৰানটাইম পৰিৱেশ বাছক।"
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME সংৰূপটো সলনি কৰা হৈছে। টুলবোৰ - বিকল্পবোৰ - %PRODUCTNAME - উন্নতৰ অন্তৰ্গত, %PRODUCTNAME ৰ দ্বাৰা ব্যৱহৃত আপুনি পাবলৈ বিচৰা Java ৰানটাইম পৰিৱেশটো বাছক।"
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "এই কাৰ্য্যটো সম্পন্ন কৰিবলৈ %PRODUCTNAME ক এটা Java ৰানটাইম পৰিৱেশ (JRE) ৰ প্ৰয়েজন। নিৰ্বাচিত JRE টো ত্ৰুটিপূৰ্ণ। অনুগ্ৰহ কৰি অন্য সংস্কৰণ বাছক অথবা এটা নতুন JRE ইনস্টল কৰক আৰু ইয়াক %PRODUCTNAME - পছন্দসমূহ - %PRODUCTNAME - উন্নতৰ অন্তৰ্গত বাছক।"
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "এই কাৰ্য্যটো সম্পন্ন কৰিবলৈ %PRODUCTNAME ক এটা Java ৰানটাইম পৰিৱেশ (JRE) ৰ প্ৰয়োজন। নিৰ্বাচিত JRE টো ত্ৰুটিপূৰ্ণ। অনুগ্ৰহ কৰি অন্য সংস্কৰণ বাছক বা এটা নতুন JRE ইনস্টল কৰক আৰু ইয়াক টুলবোৰ - বিকল্পবোৰ - %PRODUCTNAME - উন্নতৰ অন্তৰ্গত বাছক।"
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ৰ প্ৰয়োজন আছিল"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE বাছক"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ত্ৰুটিপূৰ্ণ"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "উৎস ক'ড"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "পত্ৰচিহ্ন ফাইল"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "গ্রাফিক্স"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "সংৰূপ ফাইল"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "এপ্লিকেন"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ডাটাবেইচৰ টেবুল"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "চিস্টেম ফাইল"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS-Word দস্তাবেজ"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "সহায় ফাইল"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML দস্তাবেজ"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "আর্কাইভ ফাইল"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "লগ ফাইল"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ডাটাবেইচ"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 মাষ্টাৰ দস্তাবেজ"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice ছবি"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "লিখনী ফাইল"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "সংযোগ"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 টেমপ্লেইট"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel দস্তাবেজ"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel টেমপ্লেইট"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "চাম ফাইল"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ফাইল"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ফল্ডাৰ"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "লিখনী দস্তাবেজ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "স্প্ৰেডশ্বীট্"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "পৰিৱেশন"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "অঙ্কণ"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML দস্তাবেজ"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "মাষ্টাৰ দস্তাবেজ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "সূত্র"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ডাটাবেইচ"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 স্প্ৰেডশ্বিট টেমপ্লেইট"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 অঁকা টেমপ্লেইট"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 উপস্থাপন টেমপ্লেইট"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 লিখনী দস্তাবেজ টেমপ্লেইট"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "স্থানীয় ড্রাইভ"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ডিস্ক ড্ৰাইভ"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ড্রাইভ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "নেটৱাৰ্ক সংযোগ"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint দস্তাবেজ"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint টেমপ্লেইট"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint দৰ্শন"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 সূত্ৰ"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 অঁকা"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 স্প্ৰেডশ্বিট"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 উপস্থাপন"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 লিখনী দস্তাবেজ"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 মূখ্য দস্তাবেজ"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML দস্তাবেজ"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument দস্তাবেজ"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument অঙ্কণ"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument সূত্র"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument মাষ্টাৰ দস্তাবেজ"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument পৰিৱেশন"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument স্প্ৰেডশ্বীট"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument লিখনী"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument স্প্ৰেডশ্বীট টেমপ্লেইট"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument অঙ্কণ টেমপ্লেইট"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument পৰিৱেশন টেমপ্লেইট"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument লিখনী টেমপ্লেইট"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME সম্প্ৰসাৰন"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index 28ebb6c0e77..4256d7c7c6d 100644
--- a/source/as/svx/messages.po
+++ b/source/as/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8017,6 +8017,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12565,88 +12570,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "ৰূপৰেখা সম্পাদক"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "প্ৰয়োগ কৰক"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "কাৰ্যৰ ব্যৱধান"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "বাছক"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "আয়তক্ষেত্ৰ"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "উপবৃত্ত"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "বহুভুজ"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "বিন্দুসমূহৰ স্থান পৰিৱর্তন কৰক"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "বিন্দুসমূহৰ স্থান পৰিৱর্তন কৰক"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "বিন্দুসমূহ সুমুৱাওক"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "বিন্দুসমূহ মচক"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "স্বয়ংক্রিয় ৰূপৰেখা"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "বাতিল কৰক "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "ৰঙা"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "পিপেট"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12975,122 +12985,116 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "ফুটাৰ"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ছবিমেপ সম্পাদক"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "প্ৰয়োগ কৰক"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "খোলক..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "সংৰক্ষণ কৰক..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "বন্ধ কৰক"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "বাছক"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "আয়তক্ষেত্ৰ"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "উপবৃত্ত"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "বহুভুজ"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "মুক্ত ফর্ম বহুভুজ"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "বিন্দুসমূহৰ স্থান পৰিৱর্তন কৰক"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "বিন্দুসমূহৰ স্থান পৰিৱর্তন কৰক"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "বিন্দুসমূহ সুমুৱাওক"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "বিন্দুসমূহ মচক"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "বাতিল কৰক "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "ৰঙা"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "সক্ৰিয়"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "মেক্র'..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "বৈশিষ্ট্যবোৰ: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "ঠিকনা:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ফ্ৰেম"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index 2f5db230fd2..c8ba0baeb89 100644
--- a/source/as/sw/messages.po
+++ b/source/as/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3185,9 +3185,9 @@ msgid "Change object title of $1"
msgstr "$1 -ৰ অবজেক্ট শীৰ্ষক সলনি কৰক"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 -ৰ অবজেক্ট বিৱৰণ সলনি কৰক"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12600,147 +12600,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12750,152 +12750,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13996,7 +13996,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17480,50 +17480,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "পূৰ্বদৃশ্য"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "পূৰ্বদৃশ্য"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
#, fuzzy
msgctxt "tocdialog|index"
msgid "Type"
msgstr "ধৰণ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "প্ৰৱিষ্টিবোৰ (~E)"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "শৈলীসমূহ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "পূৰ্বদৃশ্য"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "স্তৰ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17767,325 +17767,325 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "সম্পাদন কৰক..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "শীৰ্ষক (_T):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "ধৰণ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "টেবুলৰ বিষয়বোৰ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "ব্যৱহাকাৰী বিৱৰীত"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "গ্রন্থ-সূচী 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ফৰ্ম"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "সম্পূর্ণ দস্তাবেজ (~E)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "অধ্যায়"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "ৰূপৰেখা"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
#, fuzzy
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "টেবুল (_T)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "সংযোগকৃত টেক্সট ফ্রেমবোৰ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "গ্ৰাফিক্স"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE বস্তুবোৰ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "চৰ্তসাপেক্ষ শৈলীবোৰ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "শৈলীসমূহ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "কেপশ্বন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "বস্তুৰ নাম"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "বিভাগ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "প্রদর্শন কৰক"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "প্ৰসংগবোৰ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "শ্রেণী আৰু সংখ্যা"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "কেপশ্বন টেক্সট"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "বন্ধনীসমূহ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[None]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
#, fuzzy
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "ফলা সংবেদ্য (_C)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ফাইল"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "বিকল্পসমূহ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ভাষা"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "চাবিৰ প্ৰকাৰ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "বৰ্গীকৰণ কৰক"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "স্তৰ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(পেৰেগ্ৰাফ শৈলী: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "অবিকল্পিত"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "সম্পাদন কৰক (_E)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index 6ad123e114e..1ee2f279886 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1654,107 +1654,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Ensin berbesos"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Namái berbesu esterior"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Berbesu esterior y llinies horizontales"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Berbesu esterior y toles llinies interiores"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Berbesu esterior ensin modificación de les llinies interiores"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Definir namái llinies verticales"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Los cuatro berbesos"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Namái berbesu drechu ya esquierdu"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Namái berbesu inferior y superior"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Namái berbesu esquierdu"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Definir berbesu inferior y superior y toles llinies interiores"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Definir berbesu esquierdu y drechu y toles llinies interiores"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Ensin solombra"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Proyeutar solombra haza abaxo y a la drecha"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Proyeutar solombra haza arriba y a la drecha"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Proyeutar solombra haza abaxo y a la esquierda"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Proyeutar solombra haza arriba y a la esquierda"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1797,7 +1792,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1917,7 +1912,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2157,7 +2152,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2412,12 +2407,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2487,7 +2482,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2567,7 +2562,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2808,7 +2803,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3431,66 +3426,71 @@ msgid "About %PRODUCTNAME"
msgstr "Tocante a %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Cré_ditos"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Sitiu _web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID de compilación: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
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."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice ta basáu en OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME remanez de LibreOffice que ta basáu en OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Esta versión ta proporcionada por %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3611,17 +3611,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Trocar"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Tro_car"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Por:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Namái _testu"
@@ -4495,6 +4495,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Llonxitú mínima de la pallabra"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5656,30 +5816,30 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Propiedaes"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
#, fuzzy
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Ma_rcu"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nome:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
#, fuzzy
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Testu alternativu"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9423,84 +9583,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ayuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Usar los diálogos de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diálogos p'abrir/guardar"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usar los _diálogos de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Diálogos d'imprentación"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Im_prentar afita l'estáu de \"documentu camudáu\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estáu del documentu"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como años ente "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "y "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Añu (con dos díxitos)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME nel arranque del sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar l'aniciu rápidu nel área de notificación"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Aniciu rápidu de %PRODUCTNAME"
@@ -11456,25 +11616,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tema propiu"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Temes de Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -12124,102 +12269,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opciones de seguridá"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13272,27 +13321,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ast/extensions/messages.po b/source/ast/extensions/messages.po
index a6ceaa4aa4a..0f75e8b7aeb 100644
--- a/source/ast/extensions/messages.po
+++ b/source/ast/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3242,190 +3242,190 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Disposición de les columnes pa la tabla %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Nome curtíu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Autor(es)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Capítulu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Añu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Títulu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Señes"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pá~xina(es)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed~ición"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~Títulu del llibru"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "M~ena de publicación"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi~zación"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit~ución"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Universidá"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Mena d'in~forme"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mes"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Diariu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Númberu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "~Serie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An~otación"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Campu definíu por usuariu ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Campu definíu por usuariu ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Campu definíu por usuariu ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Campu definíu por usuariu ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Campu definíu por usuariu ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3609,31 +3609,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Campos d'enllaz"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suxerir"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Puen usase subformularios p'amosar los detalles sobro'l rexistru activu del formulariu maestru. Pa ello, pue especificar les columnes del subformulariu que concasen coles columnes del formulariu maestru."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Etiqueta"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/ast/helpcontent2/source/auxiliary.po b/source/ast/helpcontent2/source/auxiliary.po
index aaa8188c7f3..6f97282cefb 100644
--- a/source/ast/helpcontent2/source/auxiliary.po
+++ b/source/ast/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Información xeneral"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "Barres de ferramientes"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Dibuxos (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menús"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Barres de ferramientes"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Oxetos, gráficos y mapes de bits"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupos y capes"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Testu en presentaciones y dibuxos"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/sbasic/guide.po b/source/ast/helpcontent2/source/text/sbasic/guide.po
index d1c80041a7c..1bf134806cd 100644
--- a/source/ast/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ast/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Amosar un diálogu usando códigu de programa"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>activar-desactivar módulu/diálogu</bookmark_value><bookmark_value>diálogos;usando códigu del programa p'amosar (exemplu)</bookmark_value><bookmark_value>exemplos;amosando diálogu usando códigu del programa</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/sbasic/python.po b/source/ast/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/ast/helpcontent2/source/text/sbasic/python.po
+++ b/source/ast/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared.po b/source/ast/helpcontent2/source/text/sbasic/shared.po
index 65fecd94712..8076a9dd122 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">Ayuda pa %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared/03.po b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
index 634e7bd053a..53759955cdc 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index d94e1887198..8b17d3753b6 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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -40950,8 +40950,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Alcuentre el ficheru que contién los datos que deseye inxertar.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40982,7 +40982,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41006,8 +41006,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Escueya la tabla o l'área de datos que deseye inxertar.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46294,8 +46294,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Especifica l'área de datos que se deseya consolidar coles árees numberaes nel cuadru <emph>Árees d'afitamientu</emph>. Escueya una área de caxelles d'una fueya y calque <emph>Amestar</emph>. Tamién pue escoyer un nome de caxella predefiníu na llista <emph>Área de datos d'orixe</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/schart/00.po b/source/ast/helpcontent2/source/text/schart/00.po
index 8ff858d37b6..54af72f5cbd 100644
--- a/source/ast/helpcontent2/source/text/schart/00.po
+++ b/source/ast/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 15:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Nel diálogu Tipu de gráfica d'una gráfica de llinies o una gráfica XY qu'amuesa llinies, escueya «Donda» nel desplegable Tipu de llinies, y darréu calque nel botón Propiedaes.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">Nel diálogu Tipu de gráfica d'una gráfica de llinies o una gráfica XY con llinies, escueya «Escalonada» nel desplegable Tipos de llinies, y darréu calque nel botón Propiedaes.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index c42be0d0b13..f608aa61647 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index 78544856567..c69c3646360 100644
--- a/source/ast/helpcontent2/source/text/shared/01.po
+++ b/source/ast/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/ast/helpcontent2/source/text/shared/02.po b/source/ast/helpcontent2/source/text/shared/02.po
index af8f2a44c31..ab43afdcb0d 100644
--- a/source/ast/helpcontent2/source/text/shared/02.po
+++ b/source/ast/helpcontent2/source/text/shared/02.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -3838,7 +3838,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index c099cf9c61d..f18c62e204d 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index 99a26bc7ab7..33f6ad0bfbe 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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/ast/helpcontent2/source/text/simpress/01.po b/source/ast/helpcontent2/source/text/simpress/01.po
index 9cce0bbfe65..d3a205aa93f 100644
--- a/source/ast/helpcontent2/source/text/simpress/01.po
+++ b/source/ast/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 1cb5ee05440..4d9a6d5c0cc 100644
--- a/source/ast/helpcontent2/source/text/swriter/guide.po
+++ b/source/ast/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Na <emph>Barra estándar</emph>, faiga clic nel iconu<emph>Navegador</emph><image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id5211883\">{ASITIAR UNA DESCRIPCIÓN ALTERNATIVA EQUÍ}</alt></image> p'abrir el <emph>Navegador</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index e238ca1bbe5..5bb7491598d 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23718,6 +23718,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26058,6 +26067,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26076,6 +26094,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index 415ca1def47..9619b16b872 100644
--- a/source/ast/sc/messages.po
+++ b/source/ast/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15540,6 +15540,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(accesu esclusivu)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16111,12 +16116,12 @@ msgstr "Fomatu condicional"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17410,84 +17415,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulariu de datos"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Zarrar"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Rexistru nuevu"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nuevu"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Desaniciar"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restaurar"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Rexistru _anterior"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Rexistru _siguiente"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Zarrar"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Fluxos de datos en direuto"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-#, fuzzy
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Escriba equí el URL del documentu fonte nel sistema de ficheros llocal o n'Internet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Restolar..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Rangos de la base de datos"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-#, fuzzy
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Fluxu d'orixe"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19256,34 +19218,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultaos a"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Columnes"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Fileres"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Agrupaos por"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervalu"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parámetros"
@@ -19433,167 +19400,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22234,17 +22203,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Resultaos de la gueta"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24180,109 +24159,114 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Símb_olos d'esquema"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Ventana"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Llinies de cuadrícula:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Color:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Amosar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Amosar nes caxelles de color"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Tapecer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Saltos de _páxina"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Llinies d'a_yuda al mover"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
#, fuzzy
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Ayudes visuales"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
#, fuzzy
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "O_xetos/Imaxe:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "G_ráfiques:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Oxetos de _dibuxu:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Amosar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Tapecer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Amosar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Tapecer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Amosar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Tapecer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Oxetos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_incronizar les fueyes"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Ampliación"
diff --git a/source/ast/scp2/source/ooo.po b/source/ast/scp2/source/ooo.po
index 78d47c15c9a..e1247902838 100644
--- a/source/ast/scp2/source/ooo.po
+++ b/source/ast/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Abrir documentu"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ast/scp2/source/winexplorerext.po b/source/ast/scp2/source/winexplorerext.po
index 9275c54d2f6..722edeb88ad 100644
--- a/source/ast/scp2/source/winexplorerext.po
+++ b/source/ast/scp2/source/winexplorerext.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-11-18 16:02+0000\n"
-"Last-Translator: Xuacu <xuacusk8@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:29+0000\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: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1353254524.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369348144.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permite que'l Esplorador de Microsoft Windows amuese información relativa a documentos de %PRODUCTNAME, por exemplu vistes previes de miniatures."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index aba9da176da..dc9d82fa0f6 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2635,6 +2635,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3101,164 +3106,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nomar diseñu HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4721,160 +4911,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Formes de fleches"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index 05a74c048c3..e6233bd4001 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -914,11 +914,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Quitar propiedaes"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -928,27 +923,27 @@ msgstr ""
"El valor ingresáu nun concasa cola triba especificada.\n"
"El valor atroxaráse como testu."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "L'estilu yá esiste. ¿Sustituilu?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Resetear"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Esti nome yá s'usa pa una plantía."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Esti estilu nun esiste."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -958,7 +953,7 @@ msgstr ""
"Esti estilu nun pue usase como estilu base,\n"
"porque produciría una referencia recursiva."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -967,7 +962,7 @@ msgstr ""
"El nome yá esiste como estilu predetermináu.\n"
"Escueyi otru nome, por favor."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -975,95 +970,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Estilos n'usu: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Restolador"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Confirmación incorreuta de la contraseña"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Unviar"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Fonte"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Ver comentariu de la versión"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Llista d'estilos"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Xerárquicu"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Mou Rellenu Formatu"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nuevu estilu dende escoyeta"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "~Anovar Estilos"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "¿Daveres quier encaboxar la grabación? Tolos pasos grabaos fasta esti momentu van perdese."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Encaboxar grabación"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Les plantíes tán anicializándose pal primer usu."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1072,7 +1067,7 @@ msgstr ""
"Nun s'atopó denguna impresora predefinida.\n"
"Escueya una impresora y torne a intentalo."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1081,17 +1076,17 @@ msgstr ""
"Nun se pue aniciar la imprentadora.\n"
"Por favor verifique la configuración de la so imprentadora."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Impresora ocupada"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (sólo llectura)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1102,7 +1097,7 @@ msgstr ""
"¿Quier guardar los axustes nuevos\n"
"nel documentu activu?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1113,7 +1108,7 @@ msgstr ""
"¿Quier guardar los axustes nuevos\n"
"nel documentu activu?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1124,7 +1119,7 @@ msgstr ""
"¿Quier guardar los axustes nuevos\n"
"nel documentu activu?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1134,7 +1129,7 @@ msgstr ""
"El documentu nun se pue pesllar agora\n"
"darréu qu'entá se ta imprentando."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1142,7 +1137,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1150,18 +1145,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Esti documentu nun se pue editar, dablemente porque nun tienes drechos d'accesu. ¿Quies editar una copia del documentu?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1169,356 +1164,366 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (documentu reparáu)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "El documentu nun ta baxáu del sirvidor"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Controles d'informe"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Baxada"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editar documentu"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Firmar el documentu..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Anclar"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Desanclar"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Más opciones"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zarrar el panel llateral"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalización"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restaurar los predeterminaos"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Desaniciar"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1894,32 +1899,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Comentariu sobre la versión"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nome"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Triba"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valor"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Triba"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Sí"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Non"
@@ -1929,17 +1919,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nome"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Triba"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valor"
@@ -2074,17 +2064,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Llugar:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipu:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Camudar la _contraseña"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Plantía:"
@@ -2094,27 +2084,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Propiedaes de «%1»"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Xeneral "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descripcion"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Propiedaes Personalizaes"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Propiedaes CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Seguridá"
@@ -2343,6 +2333,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ast/shell/messages.po b/source/ast/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ast/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ast/starmath/messages.po b/source/ast/starmath/messages.po
index 12250795381..5668995a983 100644
--- a/source/ast/starmath/messages.po
+++ b/source/ast/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1654,268 +1654,293 @@ msgid "Examples"
msgstr "Exemplos"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estándar"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negrina"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "prieto"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "azul"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "bermeyo"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cian"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Buxu"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "llima"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marrón"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "azulmarín|marín"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliva"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "púrpura"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "xade"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "mariello"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "tapecer"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamañu"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "tipografía"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "izquierda"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centru"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "drecha"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comandos"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Grabando'l documentu..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Fórmula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caráuter non esperáu"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "S'esperaba '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "S'esperaba '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "S'esperaba '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "S'esperaba ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "S'esperaba '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Necesítase un color"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Esperábase 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Conteníu"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Títulu"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Testu de la fórmula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Bordes"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamañu"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamañu orixinal"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Axustar a la páxina"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1983,6 +2008,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "elementu"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ast/svtools/messages.po b/source/ast/svtools/messages.po
index 229082e80ef..2777dcae12d 100644
--- a/source/ast/svtools/messages.po
+++ b/source/ast/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1531 +16,1533 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desfacer: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Re~facer: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repitir: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Testu ensin formatu"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Información del estáu de Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcador de Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formatu de sirvidor Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star, formatu d'oxetu"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Oxetu de miniaplicación"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Oxetu de complementu"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Oxetu StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Oxetu StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Oxetu StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Oxetu StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Oxetu StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Oxetu StarWriter/Global 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Oxetu StarWriter/Global 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Oxetu StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Oxetu StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Oxetu StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Oxetu StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Oxetu StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Oxetu de StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Oxetu StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Oxetu StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Oxetu StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Oxetu StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Oxetu StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Oxetu StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Oxetu StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Oxetu StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Oxetu StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Oxetu StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Oxetu StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Oxetu Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Oxetu StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Oxetu de documentu d'Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Información de documentu Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documentu sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Oxetu StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Oxetu gráficu"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Oxetu de Writer d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Oxetu de Writer/Web d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Oxetu de Writer/Maestru d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Oxetu de Draw d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Oxetu d'Impress d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Oxetu de Calc d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Oxetu de Chart d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Oxetu de Math d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metaficheru de Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Oxetu fontes de datos"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabla de fontes de datos"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diálogu d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Enllaz"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formatu HTML ensin comentarios"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "L'oxetu % nun se pudo inxertar."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "L'oxetu del ficheru % nun se pudo inxertar."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Otros oxetos"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Fonte desconocía"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nome"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Tamañu"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Data de modificación"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Triba de conteníu"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Filera: %1, columna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Triba: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Carpeta"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Ficheru"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Campu ermu"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumbéricu"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Xuegu de caráuteres"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionariu"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trazu"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Llistín telefónicu"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonéticu (alfanumbéricu primero)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonéticu (alfanumbéricu per últimu)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumbéricu"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionariu"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trazu"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonéticu (alfanumbéricu primero, agrupáu por sílabes)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonéticu (alfanumbéricu primero, agrupáu por consonantes)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonéticu (alfanumbéricu per últimu, agrupáu por sílabes)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonéticu (alfanumbéricu per últimu, agrupáu por consonantes)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Güei"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Dengún"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Claru"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Cursiva light"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Predetermináu"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiva"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Negrina"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Negrina cursiva"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Prieta"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Cursiva prieta"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Llibru"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensáu"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "semigruesu"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Va usase la mesma fonte na imprentadora y na pantalla."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Fonte d'imprentadora. La imaxe en pantalla podría ser distinta."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Va imitase esti estilu de fonte o usaráse'l más afayadizu."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Esta fonte nun ta instalada. Va usase la fonte esistente más afayadiza."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Esplorar..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mover a aniciu"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mover pala izquierda"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mover pala derecha"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mover al fin"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Amestar"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regla hori_zontal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regla vertical"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "umbral de 1bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "difusión de 1 bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "escala de buxu de 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "color de 4 bits"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de buxu de 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "color de 8 bits"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "color real de 24 bits"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "La imaxe necesita aproximadamente %1 KB de memoria."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "La imaxe necesita aproximadamente %1 Kb de memoria, el tamañu del ficheru ye de %2 Kb."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "El tamañu del ficheru ye %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Costu"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Ordenar"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preparáu"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Posáu"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Desaniciu pendiente"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupáu"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Anicializar"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "N'espera"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Arranque"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Procesar"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Imprentando"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Desconeutáu"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fallu"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Sirvidor desconocíu"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Bloquéu de papel"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Falta de papel"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentación manual"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema de papel"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O activos"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "La papelera de salida ta enllena"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tóner baxu"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Nun hai tóner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Desaniciar páxina"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Intervención necesaria del usuariu"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memoria escosada"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Abrir cubierta"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mou d'aforru enerxéticu"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Imprentadora predeterminada"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documentos"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Finar"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Siguiente >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< ~Regresar"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Pasos"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<dengún>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamentu"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nome"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Nome"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Cai"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Códigu postal"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciudá"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Títulu"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posición"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tratamientu"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciales"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tratamientu"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Teléfonu priváu"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Teléfonu trabayu"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuariu 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuariu 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuariu 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuariu 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provincia"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Teléfonu trabayu"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Radioteléfonu"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Móvil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Teléfonu: Otru"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendariu"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invitar"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME requier un entornu d'execución de Java (JRE) pa facer esta xera. Instala un JRE y reanicia %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Camudó la configuración de %PRODUCTNAME. En %PRODUCTNAME - Preferencies - %PRODUCTNAME - Avanzao, seleicione l'entornu d'execución de Java que quiera qu'use %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Camudó la configuración de %PRODUCTNAME. En Ferramientes - Opciones - %PRODUCTNAME - Avanzao, seleicione l'entornu d'execución de Java que quiera qu'use %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME requier un entornu d'execución de Java (JRE) pa facer esta xera. El JRE seleicionáu ye defeutuosu. Seleicione otra versión o instale un nuevu JRE y seleicionelu en %PRODUCTNAME - Preferencies - %PRODUCTNAME - Avanzao."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME requier un entornu d'execución de Java (JRE) pa facer esta xera. L'entornu d'execución de Java seleicionáu ye defeutuosu. Seleicione otra versión o instale otru JRE y seleiciónelu en Ferramientes - Opciones - %PRODUCTNAME - Avanzao."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE requeríu"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Escoyer JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "El JRE ye defeutuosu"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Códigu fonte"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Ficheru de marcadores"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Gráficos"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Ficheru de configuración"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicación"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabla de base datos"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Ficheros del sistema"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documentu de MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ficheru d'ayuda"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documentu HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Ficheru históricu"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Ficheru de rexistru"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de datos de StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Documentu maestru de StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imaxe de StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Ficheru de testu"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Enllaz"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Plantía de StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documentu de MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel - Plantía"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Ficheru de lotes"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Ficheru"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Carpeta"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documentu de testu"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Fueya de cálculu"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentación"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dibuxu"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documentu HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Documentu maestru"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base datos"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Plantía de fueya de cálculu d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Plantía de dibuxu d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Plantía de presentación d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Plantía de documentu de testu d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unidá llocal"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unidá de discu"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unidá de CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Conexón de rede"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documentu MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Plantía MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Presentación de MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Gráfica d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dibuxu d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Fueya de cálculu d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentación d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documentu de testu d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Documentu maestru d'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documentu MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base datos OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dibuxu OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Documentu maestru d'OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentación d'OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Fueya de cálculu d'OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Testu d'Open Office"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Plantía de fueya de cálculu d'OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Plantía de dibuxu OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Plantía de presentación d'OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Plantía pa testu d'Open Office"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Estensión de %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index 19242e98ff0..923c90e5ac6 100644
--- a/source/ast/svx/messages.po
+++ b/source/ast/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8012,6 +8012,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12553,88 +12558,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor de contornos"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Espaciu de trabayu"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Escoyer"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rectángulu"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polígonu"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mover puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inxertar puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Desaniciar puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoContornu"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Desfacer "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Bermeyu"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Cuentagotes"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12964,123 +12974,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Pie de páxina"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor de mapa d'imáxenes"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Abrir..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Guardar..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Zarrar"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Escoyer"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rectángulu"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polígonu"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Polígonu de forma llibre"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar puntos"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mover puntos"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inxertar puntos"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Desaniciar puntos"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Desfacer "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Bermeyu"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Activu"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Propiedaes: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Señes:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Marcu"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index af1969caf8d..1594bf2277d 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3175,9 +3175,9 @@ msgid "Change object title of $1"
msgstr "Camudar títulu d'oxetu $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Camudar descripción d'oxetu $1"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12464,147 +12464,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12614,152 +12614,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13855,7 +13855,7 @@ msgstr "Espander l'espaciu ente pallabres nes llinies con saltos de llinia manua
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17272,47 +17272,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Vista previa"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Vista previa"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Triba"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entraes"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Estilos"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Columnes"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fondu"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Vista previa"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Nivel"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Triba"
@@ -17557,316 +17557,316 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Editar..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Títulu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Triba:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Índiz del conteníu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Índiz alfabéticu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Índiz de tables"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Definíu pol usuariu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Índiz d'oxetos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografía"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protexíu contra cambios manuales"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
#, fuzzy
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipu y títulu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Formulariu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Documentu enteru"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capítulu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
#, fuzzy
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evaluar fasta'l nivel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Esquema"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Marques d'índi_z"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tables"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Marcos de te_stu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Gráficos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Oxetos OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Usar el nivel del capítulu fonte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Más estilos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Estilos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Asignar estilos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Lleendes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Nomes d'oxetu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categoría"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Visualizar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referencies"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categoría y númberu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Testu de la lleenda"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
#, fuzzy
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Crear dende"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
#, fuzzy
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Crear dende los siguientes oxetos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Paréntesis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Entraes _numbériques"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[nengún]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
#, fuzzy
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatu de les entraes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Combinar entraes idéntiques"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Combinar entraes idéntiques con p o _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Combinar con -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Distinguir mayúscules"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Mayúscules automátiques nes entraes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Claves como entraes separaes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Ficheru de _concordancies"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Ficheru"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opciones"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Llingua"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Triba de clave"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ordenar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Niveles"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Estilo_s de párrafu"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Pre_determináu"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "E_ditar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Atribución"
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index 767d96f86f0..a086d784810 100644
--- a/source/az/cui/messages.po
+++ b/source/az/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1628,107 +1628,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr ""
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1771,7 +1766,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1891,7 +1886,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2131,7 +2126,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2386,12 +2381,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2461,7 +2456,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2541,7 +2536,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2782,7 +2777,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3375,66 +3370,71 @@ msgid "About %PRODUCTNAME"
msgstr ""
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3552,18 +3552,18 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Əvəzlə"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Əvəzlə"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4398,6 +4398,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5526,27 +5686,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Xassələr"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Ad:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9119,83 +9279,83 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Yardım"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME Dialoqları"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME Dialoqları"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "və"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11076,24 +11236,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Və ya qurulu Mövzulardan uzantılar ilə seçin:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -11729,102 +11874,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12848,27 +12897,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/az/extensions/messages.po b/source/az/extensions/messages.po
index f6c949546e7..84b666e8693 100644
--- a/source/az/extensions/messages.po
+++ b/source/az/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3064,164 +3064,164 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Növ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Başlıq"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr ""
@@ -3400,27 +3400,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr ""
diff --git a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
index 298b627979e..825a9376a92 100644
--- a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23521,6 +23521,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25827,6 +25836,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25845,6 +25863,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/az/sc/messages.po b/source/az/sc/messages.po
index 9ac584f482f..1504f88354b 100644
--- a/source/az/sc/messages.po
+++ b/source/az/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15187,6 +15187,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15742,12 +15747,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16972,84 +16977,44 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Qapat"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "~Yeni"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Sil"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Qapat"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18781,32 +18746,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr ""
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21641,17 +21613,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23538,111 +23520,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
#, fuzzy
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Gizlət"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
#, fuzzy
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Gizlət"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
#, fuzzy
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Gizlət"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
#, fuzzy
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Gizlət"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Obyektlər"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr ""
diff --git a/source/az/scp2/source/ooo.po b/source/az/scp2/source/ooo.po
index 8006e27db4a..b626b22b1fa 100644
--- a/source/az/scp2/source/ooo.po
+++ b/source/az/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr ""
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/az/scp2/source/winexplorerext.po b/source/az/scp2/source/winexplorerext.po
index 0e62f9379a1..232ddaa7520 100644
--- a/source/az/scp2/source/winexplorerext.po
+++ b/source/az/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2016-04-02 01:16+0000\n"
"Last-Translator: Emin Mastizada <emin@mastizada.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: 1459559778.000000\n"
#: module_winexplorerext.ulf
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
msgstr ""
diff --git a/source/az/sd/messages.po b/source/az/sd/messages.po
index 42673ff3065..e8e485fb659 100644
--- a/source/az/sd/messages.po
+++ b/source/az/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2589,6 +2589,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3055,164 +3060,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4615,160 +4805,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/az/sfx2/messages.po b/source/az/sfx2/messages.po
index 8c2021c67fd..c6110238663 100644
--- a/source/az/sfx2/messages.po
+++ b/source/az/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -886,52 +886,47 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr ""
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Sıfırla"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -939,116 +934,116 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr ""
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr ""
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr ""
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr ""
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr ""
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr ""
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr ""
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1056,7 +1051,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1064,7 +1059,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1072,14 +1067,14 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1087,7 +1082,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1095,17 +1090,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1113,350 +1108,360 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr ""
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr ""
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "~Sil"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1803,32 +1808,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr ""
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr ""
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Növ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Dәyәr"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Növ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Hə"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Yox"
@@ -1838,17 +1828,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Növ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Dәyәr"
@@ -1988,18 +1978,18 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "M_əkan:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Növ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr ""
@@ -2009,27 +1999,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Açıqlama"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr ""
@@ -2246,6 +2236,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/az/shell/messages.po b/source/az/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/az/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/az/starmath/messages.po b/source/az/starmath/messages.po
index ef2247ad3e6..7e76d3b059e 100644
--- a/source/az/starmath/messages.po
+++ b/source/az/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1669,269 +1669,294 @@ msgid "Examples"
msgstr ""
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr ""
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr ""
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr ""
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr ""
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr ""
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr ""
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
#, fuzzy
msgctxt "STR_TEAL"
msgid "teal"
msgstr "çay"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Gizlət"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr ""
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr ""
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "sol"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr ""
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "sağ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
#, fuzzy
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Şərhlər"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr ""
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
#, fuzzy
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "XƏTA: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
#, fuzzy
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Şərhlər"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Başlıq"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr ""
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ölçü:"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr ""
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
@@ -1998,6 +2023,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr ""
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/az/svtools/messages.po b/source/az/svtools/messages.po
index 98c7e8953ee..4bfbf15932e 100644
--- a/source/az/svtools/messages.po
+++ b/source/az/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1525 +16,1527 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195220.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr ""
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
+msgid "Redo: "
msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr ""
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr ""
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr ""
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr ""
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr ""
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Ölçü:"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr ""
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Növ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ""
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr ""
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr ""
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
#, fuzzy
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Simvollar"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr ""
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
#, fuzzy
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "sağ"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr ""
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr ""
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr ""
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr ""
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr ""
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Əlavə et"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Fasilә"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr ""
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d sənəd"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr ""
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr ""
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr ""
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr ""
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr ""
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr ""
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr ""
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr ""
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Başlıq"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr ""
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr ""
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
#, fuzzy
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "nota"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
#, fuzzy
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Sәhifә"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr ""
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
#, fuzzy
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Quraşdırma Məlumatı"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr ""
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr ""
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr ""
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr ""
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr ""
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr ""
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr ""
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr ""
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr ""
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr ""
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr ""
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr ""
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr ""
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr ""
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr ""
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr ""
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr ""
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr ""
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Uzantısı"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/az/svx/messages.po b/source/az/svx/messages.po
index 12804a426ad..8c6a99c4943 100644
--- a/source/az/svx/messages.po
+++ b/source/az/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7944,6 +7944,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
#, fuzzy
msgctxt "RID_ATTR_NAMES"
@@ -12233,83 +12238,88 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Tətbiq et"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
#, fuzzy
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "düzbucaq"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr ""
@@ -12632,114 +12642,109 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Tətbiq et"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Qapat"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
#, fuzzy
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "düzbucaq"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Fəal"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Xassələr..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr ""
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index 34bf72132c5..b42b937f850 100644
--- a/source/az/sw/messages.po
+++ b/source/az/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3141,7 +3141,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12179,147 +12179,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12329,152 +12329,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13546,7 +13546,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -16890,49 +16890,49 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
#, fuzzy
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Öncəbaxış"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-#, fuzzy
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Öncəbaxış"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Növ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+#, fuzzy
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Öncəbaxış"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17166,307 +17166,307 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Başlıq:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Növ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Cədvəllər"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
#, fuzzy
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE Obyektləri"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Seçimlər"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Seçimlər"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Varsayılan"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Düzəlt"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr ""
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index 40e7c6d5413..857448a3da1 100644
--- a/source/be/cui/messages.po
+++ b/source/be/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Set No Borders"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Set Outer Border Only"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Set Outer Border and Horizontal Lines"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Set Outer Border and All Inner Lines"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Set Outer Border Without Changing Inner Lines"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Set Diagonal Lines Only"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Set All Four Borders"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Set Left and Right Borders Only"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Set Top and Bottom Borders Only"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Set Left Border Only"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Set Top and Bottom Borders, and All Inner Lines"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Set Left and Right Borders, and All Inner Lines"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "No Shadow"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Cast Shadow to Bottom Right"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Cast Shadow to Top Right"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Cast Shadow to Bottom Left"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Cast Shadow to Top Left"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Пра %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Заслугі"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Пляцоўка Сеціва"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Зборка: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Мясцовасць: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Гл. журнал: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME гэта сучасны праграмны комплекс, лёгкі ва ўжыванні, з адкрытымі выточнымі тэкстамі, які здольны апрацоўваць тэкст, разліковыя аркушы, прэзентацыі і іншае."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice быў заснаваны на OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME асноўваецца на LibreOffice, а той асноўваецца на OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Пастаўшчык выпуска - %OOOVENDOR"
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Замяніць"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Замяніць"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "На што:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Толькі тэкст"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Мінімальная даўжыня слова"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Уласцівасці"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Рам_ка:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Назва:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Альтэрнатыўны тэкст:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "Апісанне:"
@@ -9019,80 +9179,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Даведка"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ужываць дыялогі %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Дыялогі Адкрыцця і Запісу"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ужываць дыялогі %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Дыялогі друкавання"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Друкаванне азначае \"дакумент зменены\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Стан дакумента"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Інтэрпрэтаваць як гады паміж "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "і "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Год (дзве лічбы)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Збіраць звесткі пра выкарыстанне і адпраўляць у The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Дапамажыце палепшыць %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Пуск %PRODUCTNAME пры пуску сістэмы"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Значок Хуткапуску ў сістэмным трэі"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Хуткі Пускальнік %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Свая тэма"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Або выберыце з тэм, устаноўленых з прыстаўкамі:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Тэмы Жар-Лісіцы"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Настаўленні бяспекі"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Выберыце тэму Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/be/extensions/messages.po b/source/be/extensions/messages.po
index a4cdce4ff62..bad8542fc56 100644
--- a/source/be/extensions/messages.po
+++ b/source/be/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Выклад калонак для Табліцы “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Кароткая назва"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Аўтар(ы)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Выдавец"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Частка"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Рэдактар"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Тып"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Год"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Загаловак"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Адрас"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Старонка(і)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Выданне"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Назва кнігі"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Том"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Тып публікацыі"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Арганізацы_я"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Установа"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Універсітэт"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Тып справа_здачы"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Месяц"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Часопіс"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Нумар"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Серыя"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Анатацыя"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Заўвага"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Сваё поле _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Сваё поле _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Сваё поле _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Сваё поле _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Сваё поле _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Назвы калонак"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Увядзіце назву новага тыпу даных:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Злучыць палі"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Прапанаваць"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Падформы можна ўжываць дзеля паказу падрабязных звестак пра адкрыты ў майстар-форме запіс. Каб зрабіць гэта, трэба вызначыць, якія калонкі падформы адпавядаюць якім калонкам майстар-формы."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "подпіс"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "подпіс"
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 e07525e1d0a..27c7732d819 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ 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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
@@ -23408,6 +23408,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25706,6 +25715,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25724,6 +25742,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/be/sc/messages.po b/source/be/sc/messages.po
index d03c93faf6c..db8bc33f8dc 100644
--- a/source/be/sc/messages.po
+++ b/source/be/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15652,6 +15652,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16220,12 +16225,12 @@ msgstr "Распарадзіцца ўзгодненым фарматаванне
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17499,85 +17504,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Даныя Форма"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Закрыць"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Новы запіс"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "Дадаць"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Сцерці"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Аднавіць"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Папярэдні запіс"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Наступны запіс"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Закрыць"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-#, fuzzy
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "URL з цаль or Інтэрнет."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Выбраць..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Абсягі баз даных"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Крынічны стумень"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19360,36 +19321,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Вынікі ў:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Дата"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Калонкі"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Радкі"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Групаваць паводле"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Інтэрвал"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Параметры"
@@ -19533,167 +19499,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22262,17 +22230,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Вынікі пошуку"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24243,117 +24221,122 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Сімвалы структуры"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Акно"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Лініі рашоткі:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "Колер:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
#, fuzzy
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Паказваць"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Паказваць на пафарбаваных клетках"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
#, fuzzy
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Не паказваць"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Ра_зрывы старонак"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Лініі-падказкі _пры перамяшчэнні"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Візуальныя дапаможнікі"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
#, fuzzy
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Аб'екты/відарысы"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Дыяграмы"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Рысункі:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
#, fuzzy
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Паказваць"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
#, fuzzy
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Не паказваць"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
#, fuzzy
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Паказваць"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
#, fuzzy
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Не паказваць"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
#, fuzzy
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Паказваць"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
#, fuzzy
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Не паказваць"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Аб'екты"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Сінхранізаваць аркушы"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Маштаб"
diff --git a/source/be/scp2/source/ooo.po b/source/be/scp2/source/ooo.po
index aefc7b1a5e8..2a3a65dd9ec 100644
--- a/source/be/scp2/source/ooo.po
+++ b/source/be/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Адкрыць дакумент"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/be/scp2/source/winexplorerext.po b/source/be/scp2/source/winexplorerext.po
index 5523a7c498b..b67c32d2420 100644
--- a/source/be/scp2/source/winexplorerext.po
+++ b/source/be/scp2/source/winexplorerext.po
@@ -2,17 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: winexplorerext\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 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: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:29+0000\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"
-"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: LibreOffice\n"
+"X-POOTLE-MTIME: 1369348185.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Дазваляе браўзеру (Explorer) ў Microsoft Windows паказваць інфармацыю пра дакументы %PRODUCTNAME, напрыклад, перадпаказы-драбніцы."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/be/sd/messages.po b/source/be/sd/messages.po
index f122ab38948..3431c3215ed 100644
--- a/source/be/sd/messages.po
+++ b/source/be/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2595,6 +2595,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3050,164 +3055,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Назва дызайну HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4595,160 +4785,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Паказваць абрысы*"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/be/sfx2/messages.po b/source/be/sfx2/messages.po
index 8a08fc5d0d7..2f5031e90d6 100644
--- a/source/be/sfx2/messages.po
+++ b/source/be/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -915,11 +915,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Г: %1 М: %2 Дз: %3 г: %4 м: %5 с: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Сцерці ўласцівасць"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -929,27 +924,27 @@ msgstr ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Стыль ужо існуе. Ці замяніць яго?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Да пачатковага"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Гэта назва ўжо занятая."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Гэты стыль не існуе."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -958,7 +953,7 @@ msgstr ""
"Гэты стыль нельга прызначыць базавым стылем,\n"
"таму што гэта ўтварае рэкурсіўную спасылку (само на сябе)."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -967,7 +962,7 @@ msgstr ""
"Стыль з такою назвай ужо існуе як прадвызначаны.\n"
"Выберыце іншую назву."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -975,92 +970,92 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Выкарыстаныя стылі: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Навігатар"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Некарэктнае пацверджанне пароля"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Адаслаць"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Шрыфт"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Уставіць каментар з версіяй"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Спіс стыляў"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Іерархія"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Рэжым фарматнай заліўкі"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Новы стыль з пазначанага"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Абнавіць стыль"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Сапраўды адмовіцца ад занатоўвання? Усё, што было занатавана дагэтуль, будзе страчана."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Адмовіцца ад запісу"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Ініцыялізуюцца шаблоны, дзеля першага выкарыстання."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1069,7 +1064,7 @@ msgstr ""
"Няма прадвызначанага прынтара\n"
"Прызначце такі прынтар і паспрабуйце нанова."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1078,17 +1073,17 @@ msgstr ""
"Не ўдалося пачаць працу з прынтарам.\n"
"Праверце настаўленні прынтара."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Прынтар заняты"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (read-only)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1099,7 +1094,7 @@ msgstr ""
"Ці хочаце запісаць новыя настаўленні ў\n"
"актыўны дакумент?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1110,7 +1105,7 @@ msgstr ""
"Ці хочаце запісаць новыя настаўленні ў\n"
"актыўны дакумент?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1121,7 +1116,7 @@ msgstr ""
"Ці хочаце запісаць новыя настаўленні \n"
"ў актыўны дакумент?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1130,7 +1125,7 @@ msgstr ""
"Нельга закрыць дакумент, таму што\n"
"зараз ён друкуецца."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1138,7 +1133,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,17 +1141,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Немагчыма правіць гэты дакумент, магчыма з-за недастатковых правоў доступу. Ці будзеце працаваць з копіяй дакумента?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1164,350 +1159,360 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (адрамантаваны дакумент)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Не ўдалося выняць* дакумент з сервера"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Дакумент адкрыты ў рэжыме толькі-чытанага."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Нацыянальная бяспека:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Экспартныя абмежаванні:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Выняць"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Правіць дакумент"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Падпісаць дакумент"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Паказаць подпісы"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Закрыць панэль"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Прымацаваць*"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Адмацаваць*"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Дадатковыя настаўленні"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Закрыць бакоўку"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Настаўленні бакоўкі"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Уладкаванне"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Аднавіць прадвызначэнні"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Закрыць бакавую панэль"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Сіняя крывая"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Яркі сіні"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Фокус"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Заход сонца"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Рэтра"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Сцерці"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Ачысціць усё"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1853,32 +1858,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Каментар з версіяй:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Назва"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Тып"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Значэнне"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Тып"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Так"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Не"
@@ -1888,17 +1878,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Дадаць уласцівасць"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Назва"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Тып"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Значэнне"
@@ -2028,17 +2018,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Месца:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Тып:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Змяніць пароль"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Шаблон:"
@@ -2048,27 +2038,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Уласцівасці “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Агульнае "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Апісанне"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Дадатковыя ўласцівасці"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Уласцівасці CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Бяспека"
@@ -2283,6 +2273,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/be/shell/messages.po b/source/be/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/be/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/be/starmath/messages.po b/source/be/starmath/messages.po
index f89a445edc6..ab4d3307d5e 100644
--- a/source/be/starmath/messages.po
+++ b/source/be/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1655,261 +1655,286 @@ msgid "Examples"
msgstr "Прыклады"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Стандартна"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Курсіў"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Цёмны"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "чорны"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "сіні"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "зялёны"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "чырвоны"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "блакітны"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "пурпуровы"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "шэры"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "лаймавы"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "бардовы"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "цёмна-сіні"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "аліўкавы"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "пурпурны"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "срэбны"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "бірузовы"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "жоўты"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "схаваць"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "памер"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "шрыфт"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "злева"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "у цэнтры"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "справа"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Каманды"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Формула"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Запісваем дакумент..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Формула %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ПАМЫЛКА : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Нечаканы знак"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Нечаканы токен"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "чакалася '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "чакалася '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "чакалася '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "чакалася ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Чакаўся '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Патрабуецца колер"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Чакалася 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Змест"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Загаловак"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Тэкст формулы"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Межы"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Памер"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Пачатковы памер"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Дапасоўваць да аркуша"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Маштаб"
@@ -1974,6 +1999,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Элементы"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/be/svtools/messages.po b/source/be/svtools/messages.po
index ee22b350943..89263e25902 100644
--- a/source/be/svtools/messages.po
+++ b/source/be/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195233.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Адкаціць: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Re~do: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Паўтарыць: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Нефарматаваны тэкст"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Статус паводле ўнутранай спасылкі Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Закладка Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Фармат сервера Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Фармат аб'екту Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Аплет (аб'ект)"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Плугін (аб'ект)"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Аб'ект StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Аб'ект StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Аб'ект StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Аб'ект StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Аб'ект StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Аб'ект StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Аб'ект StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Аб'ект StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Аб'ект StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Аб'ект StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Аб'ект StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Аб'ект StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Аб'ект StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Аб'ект StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Аб'ект StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Аб'ект StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Аб'ект StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Аб'ект StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Аб'ект StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Аб'ект StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Аб'ект StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Аб'ект StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Аб'ект StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Аб'ект StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Аб'ект Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Аб'ект StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Дакумент Office (аб'ект)"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Звесткі пра дакумент Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Дакумент Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Аб'ект StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Графічны аб'ект"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Аб'ект OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Аб'ект OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Аб'ект OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Аб'ект OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Аб'ект OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Аб'ект OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Аб'ект OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Аб'ект OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Метафайл Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Аб'ект крыніцы даных"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Табліца крыніцы даных"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Зварот SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Дыялог OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Сувязь"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Фармат HTML без каментароў"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Не ўдалося ўставіць аб'ект % ."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Не ўдалося ўставіць аб'ект з файлу % ."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Аб'екты ў далейшым"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Невядомая крыніца"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Назва"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Памер"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Дата змянення"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Тып"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Байты"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "КБ"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "МБ"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ГБ"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Радок: %1, калонка: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Тып: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Folder"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Файл"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Пустое поле"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Літарна-лічбавы"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Звычайны"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Знаказбор"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Слоўнік"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Пін'ін"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Рыса"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Радыкальны"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Унікод"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Жуй'ін"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Тэлефонная кніга"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Фанетычны (літары і лічбы ў пачатку)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Фанетычны (літары і лічбы ў канцы)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Літарна-лічбавы"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Слоўнік"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Пін'ін"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Радыкальны"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Рыса"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Жуй'ін"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Фанетычны (літары і лічбы ў пачатку, у групах паводле складоў)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Фанетычны (літары і лічбы ў пачатку, у групах паводле зычных)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Фанетычны (літары і лічбы ў канцы, у групах паводле складоў)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Фанетычны (літары і лічбы ў канцы, у групах паводле зычных)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Сёння"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Няма"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Светлы"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Светлы курсіў"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Звычайны"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Курсіў"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Цёмны"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Цёмны курсіў"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Чорны"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Вельмі цёмны курсіў"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Кніга"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Цёмны нахільны"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Шчыльны"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Шчыльны цёмны"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Шчыльны цёмны курсіў"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Шчыльны цёмны нахільны"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Шчыльны курсіў"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Шчыльны нахільны"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Звышсветлы"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Звышсветлы курсіў"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Нахілены"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Паўцёмны"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Паўцёмны курсіў"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Аднолькавы шрыфт будзе ўжыты і на экране і на прынтары."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Шрыфт дзеля прынтара. На экране можа выглядаць іначай."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Стыль шрыфта будзе імітавацца адным з блізкіх і прысутных стыляў."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Гэты шрыфт не ўстаноўлены. Будзе ўжыты адзін з блізкіх і прысутных шрыфтаў."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Выбраць..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Move To Home"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Move Left"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Move Right"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Move To End"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Дадаць"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Гарызантальная лінейка"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Вертыкальная лінейка"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-бітавы, \"цераз парог\""
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-бітавы, \"з расціраннем\""
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-бітавы шэры"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-бітавы каляровы"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-бітавы шэры"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-бітавы каляровы"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-бітавы, \"сапраўдны колер\""
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Відарысу трэба каля %1 КБ памяці."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Графіка патрабуе каля %1 КБ памяці, памер файла %2 КБ."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Памер файла гэта %1 КБ."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "вузел"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "порт"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Іншы CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Напагатове"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Прыпынена"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Чакае выдалення"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Занята"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Ініцыялізуецца"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Чакаецца"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Разаграваецца"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Апрацоўваецца"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Друкаванне"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Недасягальна"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Памылка"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Невядомы сервер"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Папера зацялася"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Не хапае паперы"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Падаецца з рукі"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Праблема з паперай"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "У(вод)/ВЫ(вад) актыўны"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Перапоўнены кантэйнер гатовых адбіткаў"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Мала тонеру"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Няма тонеру"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Сцерці старонку"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Патрабуецца ўмяшанне карыстальніка"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Недастатковы аб'ём памяці"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Адкрыты корпус"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Рэжым энергазберагання"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Прадвызначаны прынтар"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d дакументаў"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Скончыць"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Далей >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Назад"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Крокі"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<няма>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Кампанія"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Аддзел"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Імя"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Прозвішча"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Вуліца"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Краіна"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Паштовы індэкс"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Горад"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Загаловак"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Пазіцыя"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Форма звароту"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Ініцыялы"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Прывітанне"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Тэл. (дом)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Тэл. (прац.)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Заўвага"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Дадаткова 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Дадаткова 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Дадаткова 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Дадаткова 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Адм.адзінка"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Тэл. (офіс)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Пейджэр"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Мабільны"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Тэл. (іншы):"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Каляндар"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Запрасіць"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Каб зрабіць гэта, %PRODUCTNAME патрабуе асяроддзя выканання Явы (JRE). Устанавіце JRE і пусціце %PRODUCTNAME нанова."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Патрабуецца асяроддзе выканання Явы (JRE)"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Выбар JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE не працуе як належыць"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Выточны тэкст"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Закладкавы файл"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Графіка"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Файл настаўленняў"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Праграма"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Табліца базы даных"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Сістэмны файл"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Дакумент MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Даведкавы файл"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Дакумент HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Архіўны файл"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Файл журналу"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Database"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Майстар-дакумент StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Image"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Тэкставы файл"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Спасылка"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Шаблон StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Дакумент MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Шаблон MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Камандны файл"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Файл"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Каталог"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Тэкставы дакумент"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Разліковы аркуш"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Прэзентацыя"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Рысунак"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Дакумент HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Майстар-дакумент"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Формула"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "База даных"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Шаблон разліковага аркуша OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Шаблон рысунка OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Шаблон прэзентацыі OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Шаблон тэкставага дакумента OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Тутэйшы дыск"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Дыскета"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Дыскавод CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Сеткавае далучэнне"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Дакумент MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Шаблон MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Шоу MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Формула OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Дыяграма OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Рысунак OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Разліковы аркуш OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Прэзентацыя OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Тэкставы дакумент OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Майстар-дакумент OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Дакумент MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "База даных OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Рысунак OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Формула OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Майстар-дакумент OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Прэзентацыя OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Разліковы аркуш OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Тэкст OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Шаблон разліковага аркушу OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Шаблон рысунку OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Шаблон прэзентацыі OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Шаблон тэксту OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Прыстаўка %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Праверка правапісу Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Пераносы Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/be/svx/messages.po b/source/be/svx/messages.po
index 2995da31a7b..0a77715b288 100644
--- a/source/be/svx/messages.po
+++ b/source/be/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7938,6 +7938,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12201,82 +12206,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Укажыце вертыкальны зрух ад цэнтру у працэнтах для градыентнага ценю. 50% - гэта цэнтр вертыкалі."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Рэдактар контуру"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Ужыць"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Майстэрня"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Выбраць"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Прамавугольнік"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Эліпс"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Многавугольнік"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Правіць пункты"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Перамясціць пункты"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Уставіць пункты"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Сцерці пункты"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Аўтаконтур"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Адкаціць "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Паўтарыць"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Піпетка"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Адхіленне колеру"
@@ -12590,113 +12600,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Калантытул ніжні"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ImageMap Editor"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Ужыць"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Адкрыць..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Запісаць..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Закрыць"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Выбраць"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Прамавугольнік"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Эліпс"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Многавугольнік"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Рысаваны многавугольнік"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Правіць пункты"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Перамясціць пункты"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Уставіць пункты"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Сцерці пункты"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Адкаціць "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Паўтарыць"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Актыўны"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Макрас..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Уласцівасці..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Адрас:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Рамка:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Тэкст:"
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index c008f3f8572..3d8f9c5e278 100644
--- a/source/be/sw/messages.po
+++ b/source/be/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3124,9 +3124,9 @@ msgid "Change object title of $1"
msgstr "Змяніць назву аб'екта $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Змяніць апісанне аб'екта $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12013,147 +12013,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12163,152 +12163,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13375,8 +13375,8 @@ msgstr "Разганяць міжслоўныя прагалы ў радках
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Засцерагаць форму"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16654,47 +16654,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Змест, паказальнік, ці бібліяграфія"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Перадпаказ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Перадпаказ"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Тып"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Элементы"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Стылі"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Калонкі"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Фон"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Перадпаказ"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Узровень"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "Тып"
@@ -16924,302 +16924,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Правіць..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Загаловак:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Тып:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Змест"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Алфавітны паказальнік"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Спіс табліц"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Вызначана-карыстальнікам"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Спіс аб'ектаў"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Бібліяграфія"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Засцерагаецца ад адвольных змен"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Тып і загаловак"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Для:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Дакумент цалкам"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Частка"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Колькасць узроўняў:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Стварыць паказальнік ці змест"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Структура"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Пазнакі паказальніка"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Табліцы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Тэкставыя рамкі"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Графіка"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Аб'екты OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Ужываць узровень як у выточнай частцы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Дадатковыя стылі"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Стылі"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Прызначыць стылі..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Подпісы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Назвы аб'ектаў"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Катэгорыя:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Паказваць:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Спасылкі"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Катэгорыя і нумар"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Тэкст подпісу"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Стварыць з"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Стварыць з наступных аб'ектаў"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Дужкі:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Нумараваць складнікі"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[няма]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Фарматаванне складнікаў"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Аднолькавыя складнікі разам"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Аднолькавыя складнікі разам цераз \"с.\" ці \"сс.\""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Аднолькавыя складнікі разам цераз -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Улічваць рэгістр"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Аўта-пачынанне складнікаў з вялікіх літар"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Ключы як асобныя складнікі"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Файл канкардан_са"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Ф_айл"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Настаўленні"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Мова:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Тып ключа:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Парадкаваць"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Узроўні"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Ст_ылі абзацаў"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Прад_вызначана"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Правіць"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Раўнаванне"
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index 367b428b461..1bbb408762d 100644
--- a/source/bg/cui/messages.po
+++ b/source/bg/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-04-30 12:01+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-30 11:44+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1556625666.000000\n"
+"X-POOTLE-MTIME: 1559216671.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Моля, въведете валиден адрес на тема или текст за търсене."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "В момента Mozila Themes API е недостъпен."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Премахване на кантовете"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Поставяне кантове само отвън"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Поставяне външни кантове и хоризонтални линии"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Поставяне външни кантове и всички вътрешни линии"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Поставяне външни кантове без промяна на вътрешните линии"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Задаване само на диагонални линии"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Поставяне и на четирите канта"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Поставяне само на ляв и десен кант"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Поставяне само на горен и долен кант"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Поставяне само на ляв кант"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Задаване на горен и долен кант и всички вътрешни линии"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Задаване на ляв и десен кант и всички вътрешни линии"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Без сянка"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Сянка надолу и надясно"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Сянка нагоре и надясно"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Сянка надолу и наляво"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Сянка нагоре и наляво"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Подписано от: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Всички файлове"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Регистрирани бази от данни"
@@ -1746,247 +1741,248 @@ msgstr "Регистрирани бази от данни"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME може да отваря и записва файлове, съхранявани на отдалечени сървъри по стандарта CMIS."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr ""
+msgstr "Командата „Инструменти > Автокорекция > Настройки на автокорекция… > Замяна“ предлага списък с често използвани замествания. Прегледайте го и добавете свои собствени правила за замяна."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can handle styles conditionally: paragraph styles that have different properties depending on the context."
-msgstr ""
+msgstr "Writer може да прилага стиловете условно: свойствата на абзацните стилове могат да се менят според контекста."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/05130100.html
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With File > Versions you can store multiple versions of the document in the same file. You can also open, delete, and compare previous versions."
-msgstr ""
+msgstr "С командата „Файл > Версии“ можете да съхранявате няколко версии на документа в един и същ файл. Можете също да отваряте, изтривате и сравнявате предишни версии."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/01190000.html
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
-msgstr ""
+msgstr "Можете да създадете индекс на илюстрациите не само от надписи, но и от имена на обекти."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/05190000.html
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To temporarily starts with a fresh user profile or to restore a non-working %PRODUCTNAME instance start Help > Restart in Safe Mode."
-msgstr ""
+msgstr "За да стартирате временно с чист потребителски профил или да възстановите неработещо копие на %PRODUCTNAME, изберете „Помощ > Рестартиране в безопасен режим“."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
-msgstr ""
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
+msgstr "Можете да смените основните шрифтове за предварително дефинирания шаблон или текущия документ с „Инструменти > Настройки > %PRODUCTNAME Writer > Основни шрифтове“."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr ""
+msgstr "Задайте текстовете, които използвате често, като автотекстове. Впоследствие ще можете да ги вмъквате по име, с клавишна комбинация или бутон от лентата с инструменти в произволен документ на Writer."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/autotext.html
#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools > Options > %PRODUCTNAME Writer > AutoCaption."
-msgstr ""
+msgstr "%PRODUCTNAME може автоматично да добавя номериран надпис, когато вмъкнете обект. Вижте „Инструменти > Настройки > %PRODUCTNAME Writer > Автонадпис“."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01041100.html
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr ""
+msgstr "С командата „Инструменти > Сортиране“ можете да сортирате абзаци или таблични редове в азбучен ред или като числа."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sections in %PRODUCTNAME Writer to protect part of a text, show/hide text, reuse parts from other documents, use different column layout."
-msgstr ""
+msgstr "В %PRODUCTNAME Writer можете да използвате раздели, за да защитавате част от текст, да скривате/показвате текст, да използвате части от други документи и да задавате различно оформление на колоните."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/04020100.html
#: cui/inc/tipoftheday.hrc:56
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet > Fill Cells > Random Number to generate a random series based on various distributions."
-msgstr ""
+msgstr "С командата „Лист > Запълване на клетки > Случайно число“ можете да създавате случайни поредици, базирани на различни статистически разпределения."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/02140700.html
#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Conditional Formatting > Manage in Calc to find out which cells have been defined with conditional formatting."
-msgstr ""
+msgstr "С командата „Форматиране > Условно форматиране > Управление“ в Calc можете да откриете за кои клетки е зададено условно форматиране."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/05120000.html
#: cui/inc/tipoftheday.hrc:58
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
-msgstr ""
+msgstr "Освен съдържания, %PRODUCTNAME може да създава азбучни указатели и индекси на илюстрациите, таблиците, обектите и библиографските позовавания, както и потребителски индекси."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/indices_toc.html
#: cui/inc/tipoftheday.hrc:59
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
-msgstr ""
+msgstr "Ако в %PRODUCTNAME Calc искате да сортирате поредица от рода на A1, A2, A3, A11, A15 не в азбучен ред, а по числата, включете естественото сортиране в раздела „Настройки“."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/12030200.html
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools > Options > OpenCL."
-msgstr ""
+msgstr "С командата „Инструменти > Настройки > OpenCL“ можете да разрешите масивно паралелно изчисляване на клетките с формули."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/opencl.html
#: cui/inc/tipoftheday.hrc:61
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
-msgstr ""
+msgstr "%PRODUCTNAME поддържа четири нива на безопасност на макросите (от ниско до много високо) и надеждни източници."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:63
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
-msgstr ""
+msgstr "Искате ли да знаете кои са валидните параметри на командния ред? Стартирайте soffice с аргумент --help, -h или -?."
#. local help missing
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr ""
+msgstr "Искате да управлявате представянето на хипервръзки в електронна таблица? Вмъквайте ги с функцията HYPERLINK."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Can not get what you want with VLOOKUP? With INDEX and MATCH you can do everything!"
-msgstr ""
+msgstr "Ако не можете да извлечете необходимите данни с VLOOKUP, вероятно ще успеете с INDEX и MATCH."
#. local help missing
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Можете да подписвате съществуващи PDF файлове и да проверявате вече нанесени подписи."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
-msgstr ""
+msgstr "Writer включва LibreLogo: проста среда за програмиране с костенуркова векторна графика, подобна на Logo, предназначена за настолна издателска дейност и графичен дизайн."
#. local help missing
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr ""
+msgstr "Можете да защитавате клетки с „Форматиране > Клетки > Защита“. За да предотвратите вмъкване, изтриване, преименуване и местене/копиране на листове, използвайте „Инструменти > Защитаване на лист“."
#. local help missing
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr ""
+msgstr "Искате да прибавите x месеца към дата? Използвайте =EDATE(дата;месеци)."
#. local help missing
#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependants (Shift+F5) (or use Tools > Detective). For each hit you go one more step in the chain."
-msgstr ""
+msgstr "Можете да проследявате клетките, използвани в дадена формула (Shift+F9), както и зависещите от нея (Shift+F5) (също с командата „Инструменти > Детектив“). С всяко натискане преминавате към следващата стъпка по веригата."
#. local help missing
#: cui/inc/tipoftheday.hrc:71
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a serie? Select the cell range and Sheet > Fill Cells > Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Искате да попълните поредица? Изберете диапазона от клетки, после „Лист > Запълване на клетки > Запълване с поредица“ и изберете между „Линейна“, „Растеж“, „Дата“ и „Автозапълване“."
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
-msgstr ""
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
+msgstr "С %PRODUCTNAME можете да използвате акаунта си в Google Mail, за да разпратите циркулярно писмо. Попълнете „Инструменти > Настройки > %PRODUCTNAME Writer > Циркулярни писма по е-поща“."
#. local help missing
#: cui/inc/tipoftheday.hrc:73
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Data > Validity allows you to create drop-down lists where the user selects a value instead of typing."
-msgstr ""
+msgstr "С командата „Данни > Валидност“ можете да създавате падащи списъци, от които потребителят да избира, вместо да въвежда."
#. local help missing
#: cui/inc/tipoftheday.hrc:74
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use View > Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background."
-msgstr ""
+msgstr "С командата „Изглед > Осветяване на стойностите“ можете да оцветите съдържанието на клетките: текст/черно, формули/зелено, числа/синьо, защитени клетки/сив фон."
#. local help missing
#: cui/inc/tipoftheday.hrc:75
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
-msgstr ""
+msgstr "Непознат код за грешка в Calc – Err:, последвано от число? Обяснението е на тази страница:"
#. local help missing
#: cui/inc/tipoftheday.hrc:76
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit > Find & Replace > Other options > Attributes > Font weight."
-msgstr ""
+msgstr "Искате да намерите получерните думи в документ на Writer? Редактиране > Търсене и замяна > Други настройки > Атрибути > Тегло на шрифт."
#. local help missing
#: cui/inc/tipoftheday.hrc:77
+#, fuzzy
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit > Find & Replace: Search = [<|>], Replace = blank and check ‘Regular expressions’ under Other options."
-msgstr ""
+msgstr "Искате да отстраните всички двойки <> наведнъж, но оградените текстове да останат? Редактиране > Търсене и замяна: Търсене = [<|>], Замяна = празно, отметнете „Регулярни изрази“ в областта „Други настройки“."
#. local help missing
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > Detective > Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
-msgstr ""
+msgstr "Командата „Инструменти > Детектив > Отбелязване на невалидните данни“ осветява всички клетки в листа, които съдържат стойности извън ограниченията за валидност."
#. local help missing
#: cui/inc/tipoftheday.hrc:79
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to allow changes to parts of a read-only document in Writer? Insert frames or sections that can authorize changes."
-msgstr ""
+msgstr "Искате да разрешите промени в части от документ само за четене в Writer? Вмъкнете рамки или раздели, в които промените са разрешени."
#. local help missing
#: cui/inc/tipoftheday.hrc:80
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writing a book? %PRODUCTNAME master document lets you manage large documents as a container for individual %PRODUCTNAME Writer files."
-msgstr ""
+msgstr "Пишете книга? %PRODUCTNAME ви позволява да боравите с обемисти документи чрез главен документ, който служи като контейнер за отделните файлове на %PRODUCTNAME Writer."
#. local help missing
#: cui/inc/tipoftheday.hrc:81
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
-msgstr ""
+msgstr "В Calc можете да използвате TRIMMEAN(), за да пресметнете средната стойност на съвкупност от данни, изключвайки най-високите и най-ниските стойности."
#. local help missing
#: cui/inc/tipoftheday.hrc:82
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
-msgstr ""
+msgstr "С Calc можете да изчислявате вноски по заем, например PMT(2%/12;36;2500) за месечна лихва 2%/12, 36 месеца и размер на заема 2500."
#. local help missing
#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
-msgstr ""
+msgstr "Можете да управлявате дистанционно презентацията си в Impres чрез телефон с Android или iPhone."
#. local help missing
#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
-msgstr ""
+msgstr "Конзолата за водещия е много полезна възможност при работа с %PRODUCTNAME Impress. Изпробвали ли сте я?"
#. local help missing
#: cui/inc/tipoftheday.hrc:85
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
-msgstr ""
+msgstr "Елементите на азбучния указател могат да се маркират автоматично с помощта на файл за съгласуване."
#. local help missing
#: cui/inc/tipoftheday.hrc:86
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
-msgstr ""
+msgstr "Рамките могат да се свързват, така че текстът да тече от една към друга като в програма за настолна издателска дейност."
#. local help missing
#: cui/inc/tipoftheday.hrc:88
@@ -2141,7 +2137,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2392,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2467,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2547,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2788,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3372,71 @@ msgid "About %PRODUCTNAME"
msgstr "Относно %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "_Сътрудници"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Уебсайт"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Локал: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Език на ПИ: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Вижте дневника: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME е съвременен, лесен за употреба софтуерен пакет с отворен код за текстообработка, електронни таблици, презентации и още."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "© 2000–2019 сътрудниците на LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice е базиран на OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME е производен на LibreOffice, който е базиран на OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Това издание е доставено от %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3551,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Замяна"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Замяна"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_С:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "С_амо текст"
@@ -4380,6 +4381,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Минимална дължина на думата"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5651,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Свойства"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Рамка:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Име:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Алтернативен т_екст:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Описание:"
@@ -9019,80 +9180,80 @@ msgstr "Предупреждение за неинсталирана офлай
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Помощ"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Диалогови прозорци на %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Диалогови прозорци за отваряне/записване"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "_Диалогови прозорци на %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Диалогови прозорци за печат"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Печатането установява състояние „променен документ“"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Състояние на документа"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Интерпретиране като години между "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "и "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Двуцифрени години"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Събиране и изпращане на данни за употребата към TDF"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Помогнете за подобряване на %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Зареждане на %PRODUCTNAME при стартиране на системата"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Икона за бързо стартиране"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -10965,25 +11126,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Предварително инсталирана тема"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Собствена тема"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Зареждане на тема за Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Или изберете от темите, инсталирани чрез разширения:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Теми на Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11756,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Настройки за сигурност"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Избор на тема от Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Търсен текст или адрес"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Категория:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Абстрактни"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Каузи"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Мода"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Кино и телевизия"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Празници"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Музика"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Природа"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Други"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Пейзажи"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Сезонни"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Плътни цветове"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Спорт"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Уебсайтове"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Отличени"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12762,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/bg/extensions/messages.po b/source/bg/extensions/messages.po
index 6ec5043d867..1a12784dbac 100644
--- a/source/bg/extensions/messages.po
+++ b/source/bg/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-11 14:27+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: 1554992873.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Подредба на колоните за таблицата „%1“"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Кратко име"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Автор(и)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Издател"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Глава"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Редактор"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Тип"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Година"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Заглавие"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Адрес"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Страници"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Издание"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Заглавие на книгата"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Том"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Тип на публикацията"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Организация"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Учреждение"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Университет"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Тип на доклада"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Месец"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Списание"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Брой"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Поредица"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Анотация"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Бележка"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Потребителско поле _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Потребителско поле _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Потребителско поле _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Потребителско поле _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Потребителско поле _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Имена на колоните"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Въведете име за новия тип данни:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Свързване на полета"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Предложение"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Чрез подформуляри могат да се показват подробни данни, свързани с текущия запис в главния формуляр. За тази цел можете да зададете съответствие между колоните в подформуляра и тези в главния формуляр."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "етикет"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "етикет"
diff --git a/source/bg/filter/source/config/fragments/filters.po b/source/bg/filter/source/config/fragments/filters.po
index bf01d4c3bf1..ad014f7070b 100644
--- a/source/bg/filter/source/config/fragments/filters.po
+++ b/source/bg/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:17+0100\n"
-"PO-Revision-Date: 2019-01-17 07:08+0000\n"
+"PO-Revision-Date: 2019-05-28 16:21+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: 1547708903.000000\n"
+"X-POOTLE-MTIME: 1559060504.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 4.0 Template"
-msgstr "Microsoft Excel 4.0 - шаблон"
+msgstr "Microsoft Excel 4.0 – шаблон"
#: MS_Excel_5_0_95.xcu
msgctxt ""
@@ -365,7 +365,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 5.0 Template"
-msgstr "Microsoft Excel 5.0 - шаблон"
+msgstr "Microsoft Excel 5.0 – шаблон"
#: MS_Excel_95.xcu
msgctxt ""
@@ -383,7 +383,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 95 Template"
-msgstr "Microsoft Excel 95 - шаблон"
+msgstr "Microsoft Excel 95 – шаблон"
#: MS_Excel_97.xcu
msgctxt ""
@@ -509,7 +509,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Word 95 Template"
-msgstr "Microsoft Word 95 - шаблон"
+msgstr "Microsoft Word 95 – шаблон"
#: MS_Word_97.xcu
msgctxt ""
@@ -536,7 +536,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Works Document"
-msgstr "Microsoft Word - документ"
+msgstr "Microsoft Works – документ"
#: MS_Works_Calc.xcu
msgctxt ""
@@ -545,7 +545,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Works Document"
-msgstr "Microsoft Word - документ"
+msgstr "Microsoft Works – документ"
#: MS_Write.xcu
msgctxt ""
@@ -680,7 +680,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Flat XML ODF Drawing"
-msgstr "ODF - рисунка (плосък XML)"
+msgstr "ODF – рисунка (плосък XML)"
#: ODP_FlatXML.xcu
msgctxt ""
@@ -689,7 +689,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Flat XML ODF Presentation"
-msgstr "ODF - презентация (плосък XML)"
+msgstr "ODF – презентация (плосък XML)"
#: ODS_FlatXML.xcu
msgctxt ""
@@ -698,7 +698,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Flat XML ODF Spreadsheet"
-msgstr "ODF - електронна таблица (плосък XML)"
+msgstr "ODF – електронна таблица (плосък XML)"
#: ODT_FlatXML.xcu
msgctxt ""
@@ -725,7 +725,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Text Template"
-msgstr "Office Open XML - шаблон за текст"
+msgstr "Office Open XML – шаблон за текст"
#: PBM___Portable_Bitmap.xcu
msgctxt ""
@@ -995,7 +995,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Spreadsheet"
-msgstr "OpenOffice.org 1.0 - електронна таблица"
+msgstr "OpenOffice.org 1.0 – електронна таблица"
#: StarOffice_XML__Chart_.xcu
msgctxt ""
@@ -1013,7 +1013,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr "OpenOffice.org 1.0 - рисунка"
+msgstr "OpenOffice.org 1.0 – рисунка"
#: StarOffice_XML__Impress_.xcu
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr "OpenOffice.org 1.0 - презентация"
+msgstr "OpenOffice.org 1.0 – презентация"
#: StarOffice_XML__Math_.xcu
msgctxt ""
@@ -1031,7 +1031,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr "OpenOffice.org 1.0 - формула"
+msgstr "OpenOffice.org 1.0 – формула"
#: StarOffice_XML__Writer_.xcu
msgctxt ""
@@ -1130,7 +1130,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Unified Office Format presentation"
-msgstr "Unified Office Format - презентация"
+msgstr "Unified Office Format – презентация"
#: UOF_spreadsheet.xcu
msgctxt ""
@@ -1139,7 +1139,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Unified Office Format spreadsheet"
-msgstr "Unified Office Format - електронна таблица"
+msgstr "Unified Office Format – електронна таблица"
#: UOF_text.xcu
msgctxt ""
@@ -1193,7 +1193,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "WordPerfect Document"
-msgstr "WordPerfect - документ"
+msgstr "WordPerfect – документ"
#: WordPerfectGraphics.xcu
msgctxt ""
@@ -1247,7 +1247,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Spreadsheet"
-msgstr "ODF - електронна таблица"
+msgstr "ODF – електронна таблица"
#: calc8_template.xcu
msgctxt ""
@@ -1256,7 +1256,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Spreadsheet Template"
-msgstr "ODF - шаблон за електронна таблица"
+msgstr "ODF – шаблон за електронна таблица"
#: calc_Gnumeric.xcu
msgctxt ""
@@ -1319,7 +1319,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Spreadsheet"
-msgstr "Office Open XML - електронна таблица"
+msgstr "Office Open XML – електронна таблица"
#: calc_OOXML_Template.xcu
msgctxt ""
@@ -1328,7 +1328,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Spreadsheet Template"
-msgstr "OpenOffice.org 1.0 - шаблон за електронна таблица"
+msgstr "Office Open XML – шаблон за електронна таблица"
#: calc_StarOffice_XML_Calc_Template.xcu
msgctxt ""
@@ -1337,7 +1337,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
-msgstr "OpenOffice.org 1.0 - шаблон за електронна таблица"
+msgstr "OpenOffice.org 1.0 – шаблон за електронна таблица"
#: calc_jpg_Export.xcu
msgctxt ""
@@ -1400,7 +1400,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Drawing"
-msgstr "ODF - рисунка"
+msgstr "ODF – рисунка"
#: draw8_template.xcu
msgctxt ""
@@ -1409,7 +1409,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Drawing Template"
-msgstr "ODF - шаблон за рисунка"
+msgstr "ODF – шаблон за рисунка"
#: draw_PCD_Photo_CD_Base.xcu
msgctxt ""
@@ -1445,7 +1445,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Drawing Template"
-msgstr "OpenOffice.org 1.0 - шаблон за рисунка"
+msgstr "OpenOffice.org 1.0 – шаблон за рисунка"
#: draw_bmp_Export.xcu
msgctxt ""
@@ -1562,7 +1562,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Presentation"
-msgstr "ODF - презентация"
+msgstr "ODF – презентация"
#: impress8_draw.xcu
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Drawing (Impress)"
-msgstr "ODF - рисунка (Impress)"
+msgstr "ODF – рисунка (Impress)"
#: impress8_template.xcu
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Presentation Template"
-msgstr "ODF - шаблон за презентация"
+msgstr "ODF – шаблон за презентация"
#: impress_MS_PowerPoint_2007_XML.xcu
msgctxt ""
@@ -1625,7 +1625,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Presentation"
-msgstr "Office Open XML - презентация"
+msgstr "Office Open XML – презентация"
#: impress_OOXML_AutoPlay.xcu
msgctxt ""
@@ -1634,7 +1634,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr "Office Open XML - презентация с автоизпълнение"
+msgstr "Office Open XML – презентация с автоизпълнение"
#: impress_OOXML_Template.xcu
msgctxt ""
@@ -1643,7 +1643,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Presentation Template"
-msgstr "Office Open XML - шаблон за презентация"
+msgstr "Office Open XML – шаблон за презентация"
#: impress_StarOffice_XML_Draw.xcu
msgctxt ""
@@ -1652,7 +1652,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Drawing (Impress)"
-msgstr "OpenOffice.org 1.0 - рисунка (Impress)"
+msgstr "OpenOffice.org 1.0 – рисунка (Impress)"
#: impress_StarOffice_XML_Impress_Template.xcu
msgctxt ""
@@ -1661,7 +1661,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Presentation Template"
-msgstr "OpenOffice.org 1.0 - шаблон за презентация"
+msgstr "OpenOffice.org 1.0 – шаблон за презентация"
#: impress_bmp_Export.xcu
msgctxt ""
@@ -1778,7 +1778,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Formula"
-msgstr "ODF - формула"
+msgstr "ODF – формула"
#: math_pdf_Export.xcu
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Text Document Template"
-msgstr "ODF - шаблон за текстов документ"
+msgstr "ODF – шаблон за текстов документ"
#: writer_MIZI_Hwp_97.xcu
msgctxt ""
@@ -1832,7 +1832,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Text Document Template"
-msgstr "OpenOffice.org 1.0 - шаблон за текстов документ"
+msgstr "OpenOffice.org 1.0 – шаблон за текстов документ"
#: writer_globaldocument_StarOffice_XML_Writer.xcu
msgctxt ""
@@ -1850,7 +1850,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 Master Document"
-msgstr "OpenOffice.org 1.0 - главен документ"
+msgstr "OpenOffice.org 1.0 – главен документ"
#: writer_globaldocument_pdf_Export.xcu
msgctxt ""
@@ -1931,7 +1931,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenOffice.org 1.0 HTML Template"
-msgstr "OpenOffice.org 1.0 - шаблон за HTML"
+msgstr "OpenOffice.org 1.0 – шаблон за HTML"
#: writer_web_jpg_Export.xcu
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Master Document"
-msgstr "ODF - главен документ"
+msgstr "ODF – главен документ"
#: writerglobal8_HTML.xcu
msgctxt ""
@@ -1985,7 +1985,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "ODF Master Document Template"
-msgstr "ODF - шаблон за главен документ"
+msgstr "ODF – шаблон за главен документ"
#: writerglobal8_writer.xcu
msgctxt ""
diff --git a/source/bg/filter/source/config/fragments/types.po b/source/bg/filter/source/config/fragments/types.po
index 795b8f8ffd4..e0c07f6bf56 100644
--- a/source/bg/filter/source/config/fragments/types.po
+++ b/source/bg/filter/source/config/fragments/types.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: 2018-06-04 15:43+0200\n"
-"PO-Revision-Date: 2018-06-05 12:17+0000\n"
+"PO-Revision-Date: 2019-05-28 16:21+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: 1528201037.000000\n"
+"X-POOTLE-MTIME: 1559060512.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Calc 8 Template"
-msgstr "Calc 8 - шаблон"
+msgstr "Calc 8 – шаблон"
#: calc_ADO_rowset_XML.xcu
msgctxt ""
@@ -167,7 +167,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr "OpenDocument - електронна таблица (плосък XML)"
+msgstr "OpenDocument – електронна таблица (плосък XML)"
#: calc_OOXML.xcu
msgctxt ""
@@ -176,7 +176,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Spreadsheet"
-msgstr "Office Open XML - електронна таблица"
+msgstr "Office Open XML – електронна таблица"
#: calc_OOXML_Template.xcu
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Spreadsheet Template"
-msgstr "Office Open XML - шаблон за електронна таблица"
+msgstr "Office Open XML – шаблон за електронна таблица"
#: chart8.xcu
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Draw 8 Template"
-msgstr "Draw 8 - шаблон"
+msgstr "Draw 8 – шаблон"
#: draw_ODG_FlatXML.xcu
msgctxt ""
@@ -221,7 +221,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr "OpenDocument - рисунка (плосък XML)"
+msgstr "OpenDocument – рисунка (плосък XML)"
#: impress8.xcu
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Impress 8 Template"
-msgstr "Impress 8 - шаблон"
+msgstr "Impress 8 – шаблон"
#: impress_ODP_FlatXML.xcu
msgctxt ""
@@ -248,7 +248,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr "OpenDocument - презентация (плосък XML)"
+msgstr "OpenDocument – презентация (плосък XML)"
#: impress_OOXML_Presentation_AutoPlay.xcu
msgctxt ""
@@ -257,7 +257,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr "Office Open XML - презентация с автоизпълнение"
+msgstr "Office Open XML – презентация с автоизпълнение"
#: math8.xcu
msgctxt ""
@@ -284,7 +284,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Writer 8 Template"
-msgstr "Writer 8 - шаблон"
+msgstr "Writer 8 – шаблон"
#: writer_MS_Word_2003_XML.xcu
msgctxt ""
@@ -338,7 +338,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Writer 8 Master Document"
-msgstr "Writer 8 - главен документ"
+msgstr "Writer 8 – главен документ"
#: writerglobal8_template.xcu
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Writer 8 Master Document Template"
-msgstr "Writer 8 - шаблон за главен документ"
+msgstr "Writer 8 – шаблон за главен документ"
#: writerweb8_writer_template.xcu
msgctxt ""
@@ -356,4 +356,4 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Writer/Web 8 Template"
-msgstr "Writer/Web 8 - шаблон"
+msgstr "Writer/Web 8 – шаблон"
diff --git a/source/bg/helpcontent2/source/auxiliary.po b/source/bg/helpcontent2/source/auxiliary.po
index d8b2939f277..a4dc0f47482 100644
--- a/source/bg/helpcontent2/source/auxiliary.po
+++ b/source/bg/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-12 11:04+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: 1555067041.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Обща информация"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Презентации и рисунки (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Ленти с инструменти"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Рисунки (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Менюта"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Ленти с инструменти"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Обекти, графики и растерни изображения"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Групи и слоеве"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Текст в презентации и рисунки"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/sbasic/guide.po b/source/bg/helpcontent2/source/text/sbasic/guide.po
index 5b6c19dacb8..a665b1a9f83 100644
--- a/source/bg/helpcontent2/source/text/sbasic/guide.po
+++ b/source/bg/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-30 09:40+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: 1556617246.000000\n"
#: access2base.xhp
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Сравнение между Access2Base и VBA в Microsoft Access"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Отваряне на диалогов прозорец с програмен код"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>модул/диалогов прозорец, превключване</bookmark_value><bookmark_value>диалогови прозорци;показване чрез програмен код (пример)</bookmark_value><bookmark_value>примери; показване на диалогов прозорец чрез програмен код</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/sbasic/python.po b/source/bg/helpcontent2/source/text/sbasic/python.po
index bc829c090c5..9a9f7d3bca8 100644
--- a/source/bg/helpcontent2/source/text/sbasic/python.po
+++ b/source/bg/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-30 09:41+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-26 08:16+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1556617267.000000\n"
+"X-POOTLE-MTIME: 1558858580.000000\n"
#: main0000.xhp
msgctxt ""
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: отваряне на диалогов прозорец"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,8 +93,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
-msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Отваряне на диалогов прозорец в Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -158,14 +158,14 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Monitoring Document Events"
-msgstr ""
+msgstr "Python : Наблюдение на събития в документите"
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -174,7 +174,7 @@ msgctxt ""
"N0527\n"
"help.text"
msgid "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Monitoring Document Events</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Наблюдение на събития в документите</link></variable>"
#: python_document_events.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"N0528\n"
"help.text"
msgid "Next to <link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigning macros to events\">assigning macros to events</link>, one can monitor events raised by %PRODUCTNAME documents. Application Programming Interface (API) broadcasters are responsible for calling event scripts. Unlike listeners that require to define all supported methods, even if unused, document monitors require only two methods next to hooked event scripts."
-msgstr ""
+msgstr "Освен да <link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigning macros to events\">приписвате макроси на събития</link>, може също така да наблюдавате събитията, породени от документи на %PRODUCTNAME. Скриптовете за събития се извикват от разпространители (broadcasters) в приложния програмен интерфейс (API). За разлика от слушателите (listeners), които изискват дефиниране на всички поддържани методи, наблюдателите на документи (document monitors) изискват само два метода плюс закачените скриптове за събития."
#: python_document_events.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"N0529\n"
"help.text"
msgid "Listening to Document Events"
-msgstr ""
+msgstr "Чакане на събития в документ"
#: python_document_events.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"N0530\n"
"help.text"
msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <literal>Open Document</literal> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools – Customise...</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
-msgstr ""
+msgstr "Наблюдението е илюстрирано тук с обектноориентирано програмиране за езиците Basic и Python. За започване и прекъсване на наблюдението на събития в документ е достатъчно да се присвои скриптът <literal>OnLoad</literal> на събитието <literal>Отваряне на документ</literal>. Приписването на скриптове става с командата <menuitem>Инструменти - Персонализиране...</menuitem>,в раздела <menuitem>Събития</menuitem>."
#: python_document_events.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"N0531\n"
"help.text"
msgid "Intercepting events helps setting scripts pre- and post-conditions such as loading and unloading libraries or track script processing in the background. <literal>Access2Base Trace</literal> module usage is illustrating that second context."
-msgstr ""
+msgstr "Прехващането на събития позволява задаване на пред- и следусловия като зареждане и освобождаване на библиотеки или следене на обработката на скриптове във фонов режим. Последното е илюстрирано в модула <literal>Access2Base Trace</literal>."
#: python_document_events.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"N0532\n"
"help.text"
msgid "With Python"
-msgstr ""
+msgstr "С Python"
#: python_document_events.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"N0533\n"
"help.text"
msgid "Events monitoring starts from object instantiation and ultimately stops when Python releases the object. Raised events are reported using <literal>Access2Base</literal> console."
-msgstr ""
+msgstr "Наблюдението на събития започва от създаването на обект и приключва, когато Python освободи обекта. Възникналите събития се докладват чрез конзолата на <literal>Access2Base</literal>."
#: python_document_events.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"N0534\n"
"help.text"
msgid "<literal>OnLoad</literal> and <literal>OnUnload</literal> events can be used to respectively set and unset Python programs path. They are described as <literal>Open document</literal> and <literal>Document closed</literal>."
-msgstr ""
+msgstr "Събитията <literal>OnLoad</literal> и <literal>OnUnload</literal> могат да се използват съответно за задаване и изчистване на пътя за програми на Python. Описанията им са съответно <literal>Отваряне на документ</literal> и <literal>Документът е затворен</literal>."
#: python_document_events.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"N0543\n"
"help.text"
msgid "class UiDocument(unohelper.Base, AdapterPattern):"
-msgstr ""
+msgstr "class UiDocument(unohelper.Base, AdapterPattern):"
#: python_document_events.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"N0544\n"
"help.text"
msgid "\"\"\" Monitor document events \"\"\""
-msgstr ""
+msgstr "\"\"\" Наблюдение на събития в документ \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"N0546\n"
"help.text"
msgid "adapted from 'Python script to monitor OnSave event' at"
-msgstr ""
+msgstr "адаптирано от „Скрипт на Python за наблюдение на събитието OnSave“ на"
#: python_document_events.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"N0550\n"
"help.text"
msgid "\"\"\" Document events monitor \"\"\""
-msgstr ""
+msgstr "\"\"\" Наблюдател на събития в документ \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"N0551\n"
"help.text"
msgid "''' report using Access2Base.Trace console OR"
-msgstr ""
+msgstr "''' докладване чрез конзолата на Access2Base.Trace ИЛИ"
#: python_document_events.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"N0552\n"
"help.text"
msgid "report in 1st sheet, 1st column for Calc docs '''"
-msgstr ""
+msgstr "в лист 1, колона 1 за документи на Calc '''"
#: python_document_events.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"N0558\n"
"help.text"
msgid "#self.row = 0 # uncomment for Calc documents only"
-msgstr ""
+msgstr "#self.row = 0 # извадете от коментар само за документи на Calc"
#: python_document_events.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"N0560\n"
"help.text"
msgid "self.listen() # Start monitoring doc. events"
-msgstr ""
+msgstr "self.listen() # Започване наблюдение на събития в док."
#: python_document_events.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"N0569\n"
"help.text"
msgid "\"\"\" Output doc. events on 1st column of a Calc spreadsheet \"\"\""
-msgstr ""
+msgstr "\"\"\" Извеждане събитията в колона 1 на ел. таблица в Calc \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"N0575\n"
"help.text"
msgid "def listen(self, *args): # OnLoad/OnNew at the earliest"
-msgstr ""
+msgstr "def listen(self, *args): # OnLoad/OnNew възможно най-рано"
#: python_document_events.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"N0576\n"
"help.text"
msgid "\"\"\" Start doc. events monitoring \"\"\""
-msgstr ""
+msgstr "\"\"\" Започване наблюдението на събития \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"N0578\n"
"help.text"
msgid "Console.log(\"INFO\", \"Document events are being logged\", True)"
-msgstr ""
+msgstr "Console.log(\"ИНФОРМАЦИЯ\", \"Събитията в документа се регистрират\", True)"
#: python_document_events.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"N0580\n"
"help.text"
msgid "def sleep(self, *args): # OnUnload at the latest (optional)"
-msgstr ""
+msgstr "def sleep(self, *args): # OnUnload най-късно (незадължително)"
#: python_document_events.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"N0581\n"
"help.text"
msgid "\"\"\" Stop doc. events monitoring \"\"\""
-msgstr ""
+msgstr "\"\"\" Спиране наблюдението на събития \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"N0583\n"
"help.text"
msgid "Console.log(\"INFO\", \"Document events have been logged\", True)"
-msgstr ""
+msgstr "Console.log(\"ИНФОРМАЦИЯ\", \"Регистрирането на събития приключи\", True)"
#: python_document_events.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"N0587\n"
"help.text"
msgid "\"\"\" Intercepts all doc. events \"\"\""
-msgstr ""
+msgstr "\"\"\" Прехваща всички събития в док. \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"N0588\n"
"help.text"
msgid "#self.setCell(event.Source, event.EventName) # only for Calc docs"
-msgstr ""
+msgstr "#self.setCell(event.Source, event.EventName) # само в док. на Calc"
#: python_document_events.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"N0595\n"
"help.text"
msgid "\"\"\" Release all activities \"\"\""
-msgstr ""
+msgstr "\"\"\" Освобождаване на всичко \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"N0601\n"
"help.text"
msgid "def OnLoad(*args): # 'Open Document' event"
-msgstr ""
+msgstr "def OnLoad(*args): # Събитие „Отваряне на документ“"
#: python_document_events.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"N0604\n"
"help.text"
msgid "def OnUnload(*args): # 'Document has been closed' event"
-msgstr ""
+msgstr "def OnUnload(*args): # Събитие „Документът е затворен“"
#: python_document_events.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"N0605\n"
"help.text"
msgid "pass # (optional) performed when disposed"
-msgstr ""
+msgstr "pass # (незадължително) изпълнявано при освобождаване"
#: python_document_events.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"N0613\n"
"help.text"
msgid "(Back/Fore)ground console to report/log program execution."
-msgstr ""
+msgstr "Конзола на заден/преден план за докладване/регистриране изпълнението на програмата."
#: python_document_events.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"N0617\n"
"help.text"
msgid "\"\"\" Print free item list to console \"\"\""
-msgstr ""
+msgstr "\"\"\" Отпечатване на списък от елементи в конзолата \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"N0622\n"
"help.text"
msgid "\"\"\" Append log message to console, optional user prompt \"\"\""
-msgstr ""
+msgstr "\"\"\" Доб. съобщение в конзолата, възм. подкана към потребителя \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"N0627\n"
"help.text"
msgid "\"\"\" Set log messages lower limit \"\"\""
-msgstr ""
+msgstr "\"\"\" Зад. долна граница на съобщенията\"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"N0632\n"
"help.text"
msgid "\"\"\" Display console content/dialog \"\"\""
-msgstr ""
+msgstr "\"\"\" Показване съдържание в конзолата/диалог \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"N0647\n"
"help.text"
msgid "Mind the misspelled <literal>documentEventOccured</literal> method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)."
-msgstr ""
+msgstr "Имайте предвид правописната грешка в името на метода <literal>documentEventOccured</literal>, наследена от програмния интерфейс (API) на %PRODUCTNAME."
#: python_document_events.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"N0648\n"
"help.text"
msgid "<literal>Start application</literal> and <literal>Close application</literal> events can respectively be used to set and to unset Python path for user scripts or %PRODUCTNAME scripts. In a similar fashion, document based Python libraries or modules can be loaded and released using <literal>Open document</literal> and <literal>Document closed</literal> events. Refer to <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Importing Python Modules</link> for more information."
-msgstr ""
+msgstr "Събитията <literal>Стартиране на приложение</literal> и <literal>Затваряне на приложение</literal> могат да се използват съответно за задаване и изчистване на пътя на Python за потребителски скриптове или скриптове на %PRODUCTNAME. По подобен начин базираните на документи библиотеки или модули на Python могат да се зареждат и освобождават чрез събитията <literal>Отваряне на документ</literal> и <literal>Документът е затворен</literal>. За повече информация вижте <link href=\"text/sbasic/python/python_import.xhp\" name=\"Importing Python Modules\">Импортиране на модули на Python</link>."
#: python_document_events.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"N0649\n"
"help.text"
msgid "With %PRODUCTNAME Basic"
-msgstr ""
+msgstr "С %PRODUCTNAME Basic"
#: python_document_events.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"N0650\n"
"help.text"
msgid "The <literal>Onload</literal> script is assigned to <literal>Open document</literal> event using <menuitem>Tools – Customise...</menuitem> menu <menuitem>Events</menuitem> tab. Events monitoring starts from the moment a <literal>ConsoleLogger</literal> object is instantiated and ultimately stops when Basic engine releases it. <literal>OnLoad</literal> event loads necessary Basic libraries, while caught events are reported using <literal>Access2Base.Trace</literal> module."
-msgstr ""
+msgstr "Скриптът <literal>Onload</literal> се приписва на събитието <literal>Отваряне на документ</literal> с командата <menuitem>Инструменти - Персонализиране</menuitem>, раздел <menuitem>Събития</menuitem>. Наблюдението на събития започва от момента, когато се създаде обект от клас <literal>ConsoleLogger</literal> и приключва, когато средата на Basic освободи обекта. Събитието <literal>OnLoad</literal> зарежда необходимите библиотеки на Basic, а уловените събития се докладват чрез модула <literal>Access2Base.Trace</literal>."
#: python_document_events.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"N0651\n"
"help.text"
msgid "REM controller.Events module"
-msgstr ""
+msgstr "REM Модул controller.Events"
#: python_document_events.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"N0653\n"
"help.text"
msgid "Private _obj As Object ' controller.ConsoleLogger instance"
-msgstr ""
+msgstr "Private _obj As Object ' Екземпляр на controller.ConsoleLogger"
#: python_document_events.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"N0655\n"
"help.text"
msgid "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Open Document <<"
-msgstr ""
+msgstr "Sub OnLoad(evt As com.sun.star.document.DocumentEvent) ' >> Отваряне на документ <<"
#: python_document_events.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"N0659\n"
"help.text"
msgid "REM controller.ConsoleLogger class module"
-msgstr ""
+msgstr "REM Модул на класа controller.ConsoleLogger"
#: python_document_events.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"N0664\n"
"help.text"
msgid "' ADAPTER design pattern object to be instantiated in « Open Document » event"
-msgstr ""
+msgstr "' АДАПТЕР – обект, който се създава при събитието „Отваряне на документ“"
#: python_document_events.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"N0668\n"
"help.text"
msgid "' CONSTRUCTOR/DESTRUCTOR"
-msgstr ""
+msgstr "' КОНСТРУКТОР/ДЕСТРУКТОР"
#: python_document_events.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"N0674\n"
"help.text"
msgid "' MEMBERS"
-msgstr ""
+msgstr "' ЧЛЕНОВЕ"
#: python_document_events.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"N0679\n"
"help.text"
msgid "''' System-dependent filename '''"
-msgstr ""
+msgstr "''' Зависимо от системата име на файл '''"
#: python_document_events.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"N0686\n"
"help.text"
msgid "' METHODS"
-msgstr ""
+msgstr "' МЕТОДИ"
#: python_document_events.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"N0688\n"
"help.text"
msgid "''' Monitor document events '''"
-msgstr ""
+msgstr "''' Наблюдение на събития в документ '''"
#: python_document_events.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"N0701\n"
"help.text"
msgid "''' Initialize document events logging '''"
-msgstr ""
+msgstr "''' Инициализиране регистрирането на събития '''"
#: python_document_events.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"N0706\n"
"help.text"
msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events are being logged\", _"
-msgstr ""
+msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Събитията в документа се регистрират\", _"
#: python_document_events.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"N0714\n"
"help.text"
msgid "''' Terminate document events logging '''"
-msgstr ""
+msgstr "''' Прекратяване регистрирането на събития '''"
#: python_document_events.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"N0717\n"
"help.text"
msgid "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Document events have been logged\", _"
-msgstr ""
+msgstr "IIf(IsMissing(evt),\"\",evt.EventName & \"-\") & \"Регистрирането на събития приключи\", _"
#: python_document_events.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"N0723\n"
"help.text"
msgid "' Your code for handled events goes here"
-msgstr ""
+msgstr "' Тук ще бъде вашият код за обработка на събития"
#: python_document_events.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"N0724\n"
"help.text"
msgid "Mind the misspelled <literal>_documentEventOccured</literal> method that inherits a typo from %PRODUCTNAME Application Programming Interface (API)."
-msgstr ""
+msgstr "Имайте предвид правописната грешка в името на метода <literal>_documentEventOccured</literal>, наследена от програмния интерфейс (API) на %PRODUCTNAME."
#: python_document_events.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"N0725\n"
"help.text"
msgid "Discovering Documents Events"
-msgstr ""
+msgstr "Откриване на събития в документ"
#: python_document_events.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"N0726\n"
"help.text"
msgid "The broadcaster API object provides the list of events it is responsible for:"
-msgstr ""
+msgstr "Обектът разпространител от API предоставя списък на събитията, които поддържа:"
#: python_document_events.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"N0727\n"
"help.text"
msgid "With Python"
-msgstr ""
+msgstr "С Python"
#: python_document_events.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"N0734\n"
"help.text"
msgid "\"\"\" Display document events \"\"\""
-msgstr ""
+msgstr "\"\"\" Показване на събитията, свързани с документ \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"N0736\n"
"help.text"
msgid "adapted from DisplayAvailableEvents() by A. Pitonyak"
-msgstr ""
+msgstr "адаптирано от DisplayAvailableEvents() от A. Pitonyak"
#: python_document_events.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"N0747\n"
"help.text"
msgid "The <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer\">Alternative Python Script Organizer (APSO)</link> extension is used to render events information on screen."
-msgstr ""
+msgstr "Разширението <link href=\"https://extensions.libreoffice.org/extensions/apso-alternative-script-organizer-for-python\" name=\"Alternative Python Script Organizer\">Alternative Python Script Organizer (APSO)</link> се използва за показване на информацията за събитията на екрана."
#: python_document_events.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"N0748\n"
"help.text"
msgid "With %PRODUCTNAME Basic"
-msgstr ""
+msgstr "С %PRODUCTNAME Basic"
#: python_document_events.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"N0750\n"
"help.text"
msgid "''' Display document events '''"
-msgstr ""
+msgstr "''' Показване на събитията, свързани с документ '''"
#: python_examples.xhp
msgctxt ""
@@ -1046,14 +1046,14 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python Listeners : Creating Event Listeners"
-msgstr ""
+msgstr "Обекти слушатели на Python : Създаване на слушатели за събития"
#: python_listener.xhp
msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1062,7 +1062,7 @@ msgctxt ""
"N0386\n"
"help.text"
msgid "<variable id=\"pythonlistener\"><link href=\"text/sbasic/python/python_listener.xhp\" name=\"python listeners\">Creating Event Listeners</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonlistener\"><link href=\"text/sbasic/python/python_listener.xhp\" name=\"python listeners\">Създаване на слушатели за събития</link></variable>"
#: python_listener.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"N0387\n"
"help.text"
msgid "Events raised by dialogs, documents, forms or graphical controls can be linked to macros, which is referred to as event-driven programming. The most common method to relate events to macros are the <literal>Events</literal> tab in <menuitem>Tools – Customize</menuitem> menu and the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Create dialog\">Dialog Editor</link> Control properties pane from <menuitem>Tools - Macros – Organise Dialogs...</menuitem> menu."
-msgstr ""
+msgstr "Събитията, изпращани от диалози, документи, формуляри или графични контроли, могат да бъдат свързвани с макроси – това се нарича програмиране, базирано на събития. Най-разпространеният метод за обвързване на събитие с макрос са разделът <literal>Събития</literal> в менюто <menuitem>Инструменти - Персонализиране</menuitem> и панелът „Свойства на контрола“ в <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Create dialog\">редактора на диалогови прозорци</link> от менюто <menuitem>Инструменти - Макроси - Управление на диалогови прозорци...</menuitem>."
#: python_listener.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"N0388\n"
"help.text"
msgid "Graphical artifacts, keyboard inputs, mouse moves and other man/machine interactions can be controlled using UNO listeners that watch for the user’s behaviour. Listeners are dynamic program code alternatives to macro assignments. One may create as many UNO listeners as events to watch for. A single listener can also handle multiple user interface controls."
-msgstr ""
+msgstr "Графичните елементи, входът от клавиатурата, движенията на мишката и други взаимодействия човек – машина могат да се управляват чрез слушатели на UNO, които наблюдават действията на потребителя. Слушателите представляват алтернатива с динамичен програмен код на присвояването на макроси. Можете да създадете толкова слушатели на UNO, колкото събития са достъпни за наблюдение. Един слушател може да обработва няколко контроли от потребителския интерфейс."
#: python_listener.xhp
msgctxt ""
@@ -1086,7 +1086,7 @@ msgctxt ""
"N0389\n"
"help.text"
msgid "Creating an event listener"
-msgstr ""
+msgstr "Създаване на слушател на събития"
#: python_listener.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"N0390\n"
"help.text"
msgid "Listeners get attached to controls held in dialogs, as well as to document or form events. Listeners are also used when creating runtime dialogs or when adding controls to a dialog on the fly."
-msgstr ""
+msgstr "Слушателите се прикрепват към контролите в диалогови прозорци, както и към събития от документи или формуляри. Слушатели се използват и при създаване на диалози или добавяне на контроли към диалогов прозорец по време на изпълнение."
#: python_listener.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"N0391\n"
"help.text"
msgid "This example creates a listener for <literal>Button1</literal> control of <literal>Dialog1</literal> dialog in <literal>Standard</literal> library."
-msgstr ""
+msgstr "Този пример създава слушател за контролата <literal>Button1</literal> в диалога <literal>Dialog1</literal> от библиотеката <literal>Standard</literal>."
#: python_listener.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"N0392\n"
"help.text"
msgid "With Python"
-msgstr ""
+msgstr "С Python"
#: python_listener.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"N0405\n"
"help.text"
msgid "_MY_LABEL = 'Python listens..'"
-msgstr ""
+msgstr "_MY_LABEL = 'Python слуша...'"
#: python_listener.xhp
msgctxt ""
@@ -1126,7 +1126,7 @@ msgctxt ""
"N0417\n"
"help.text"
msgid "MsgBox(\"The user acknowledged the dialog.\")"
-msgstr ""
+msgstr "MsgBox(\"Потребителят потвърди диалога.\")"
#: python_listener.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"N0419\n"
"help.text"
msgid "MsgBox(\"The user canceled the dialog.\")"
-msgstr ""
+msgstr "MsgBox(\"Потребителят отказа диалога.\")"
#: python_listener.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"N0424\n"
"help.text"
msgid "\"\"\" Create a Dialog from its location \"\"\""
-msgstr ""
+msgstr "\"\"\" Създаване на диалог от местоположението му \"\"\""
#: python_listener.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"N0437\n"
"help.text"
msgid "\"\"\" Listen to & count button clicks \"\"\""
-msgstr ""
+msgstr "\"\"\" Наблюдаване и броене щракванията на бутони \"\"\""
#: python_listener.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"N0448\n"
"help.text"
msgid "def disposing(self, evt: EventObject): # mandatory routine"
-msgstr ""
+msgstr "def disposing(self, evt: EventObject): # задължителна подпрограма"
#: python_listener.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"N0457\n"
"help.text"
msgid "<emph>msgbox.py</emph> in <emph>{installation}/program/</emph> directory has some examples of button listeners."
-msgstr ""
+msgstr "<emph>msgbox.py</emph> в директорията <emph>{инсталация}/program/</emph> съдържа примери за слушатели на бутони."
#: python_listener.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"N0458\n"
"help.text"
msgid "With %PRODUCTNAME Basic"
-msgstr ""
+msgstr "С %PRODUCTNAME Basic"
#: python_listener.xhp
msgctxt ""
@@ -1182,7 +1182,7 @@ msgctxt ""
"N0459d\n"
"help.text"
msgid "Const MY_LABEL = \"Basic listens..\""
-msgstr ""
+msgstr "Const MY_LABEL = \"Basic слуша...\""
#: python_listener.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"N0478\n"
"help.text"
msgid "Case rc.OK : MsgBox \"The user acknowledged the dialog.\",, \"Basic\""
-msgstr ""
+msgstr "Case rc.OK : MsgBox \"Потребителят потвърди диалога.\",, \"Basic\""
#: python_listener.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"N0479\n"
"help.text"
msgid "Case rc.CANCEL : MsgBox \"The user canceled the dialog.\",, \"Basic\""
-msgstr ""
+msgstr "Case rc.CANCEL : MsgBox \"Потребителят отказа диалога.\",, \"Basic\""
#: python_listener.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"N0486\n"
"help.text"
msgid "''' Listen to & count button clicks '''"
-msgstr ""
+msgstr "''' Наблюдаване и броене щракванията на бутони '''"
#: python_listener.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"N0496\n"
"help.text"
msgid "' your code goes here"
-msgstr ""
+msgstr "' място за вашия код"
#: python_listener.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"N0498\n"
"help.text"
msgid "Other Event Listeners"
-msgstr ""
+msgstr "Други слушатели на събития"
#: python_listener.xhp
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"N0499\n"
"help.text"
msgid "Listeners are usually coded along with <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"dialog opening\">dialog opening</link>. Numerous listener approaches are possible such as event handlers for dialogs or event monitors for documents or forms."
-msgstr ""
+msgstr "Слушателите обикновено се програмират заедно с <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"dialog opening\">отварянето на диалога</link>. Възможни са множество подходи, например обработчици на събития за диалози или наблюдатели на събития за документи или формуляри."
#: python_listener.xhp
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"N0505\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function\">CreateUnoListener Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function\">Функция CreateUnoListener</link>"
#: python_listener.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"N0506\n"
"help.text"
msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">Events mapping to objects</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">Съпоставяне на събития и обекти</link>"
#: python_listener.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"N0509\n"
"help.text"
msgid "See also <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Document events</link>, <link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Form events</link>."
-msgstr ""
+msgstr "Вижте също <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Събития в документи</link>,<link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Събития във формуляри</link>."
#: python_locations.xhp
msgctxt ""
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value><bookmark_value>Platform;isMacOsX</bookmark_value><bookmark_value>Platform;isWindows</bookmark_value><bookmark_value>Platform;ComputerName</bookmark_value><bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr "<bookmark_value>Platform;isLinux</bookmark_value><bookmark_value>Platform;isMacOsX</bookmark_value><bookmark_value>Platform;isWindows</bookmark_value><bookmark_value>Platform;ComputerName</bookmark_value><bookmark_value>Platform;OSName</bookmark_value><bookmark_value>API;ConfigurationAccess</bookmark_value><bookmark_value>Tools;GetRegistryContent</bookmark_value>"
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "В %PRODUCTNAME Basic липсва вградено разпознаване на Mac OS X, а свойството ComputerName е налично само за Windows. Тези ограничения могат да се преодолеят с обръщения от Basic към Python."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr "Свойството ComputerName е налично само за Windows. Обръщенията от Basic към макроси на Python помагат за преодоляване ограниченията на %PRODUCTNAME Basic."
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr "Използване на класов модул на Basic:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr "В %PRODUCTNAME Basic липсва вградено разпознаване на MacOS X. Идентифицирането на платформата е възможно чрез интерфейса за приложно програмиране (API) на %PRODUCTNAME."
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr "' Връщане името на платформата като \"MAC\", \"UNIX\", \"WIN\""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr "' Изведено от функцията \"Tools.UCB.ShowHelperDialog\""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
@@ -1862,7 +1886,7 @@ msgctxt ""
"N0284\n"
"help.text"
msgid "See <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Opening a Dialog\">Opening a Dialog</link>"
-msgstr ""
+msgstr "Вижте <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Opening a Dialog\">Отваряне на диалогов прозорец</link>"
#: python_programming.xhp
msgctxt ""
@@ -1990,7 +2014,7 @@ msgctxt ""
"N0433\n"
"help.text"
msgid "<bookmark_value>Python;InputBox</bookmark_value> <bookmark_value>Python;MsgBox</bookmark_value> <bookmark_value>Python;Print</bookmark_value> <bookmark_value>API;MasterScriptProvider</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;InputBox</bookmark_value><bookmark_value>Python;MsgBox</bookmark_value><bookmark_value>Python;Print</bookmark_value><bookmark_value>API;MasterScriptProvider</bookmark_value><bookmark_value>API;XScript</bookmark_value>"
#: python_screen.xhp
msgctxt ""
@@ -2126,7 +2150,7 @@ msgctxt ""
"N0339\n"
"help.text"
msgid "<bookmark_value>Session;ComputerName</bookmark_value> <bookmark_value>Session;SharedScripts</bookmark_value> <bookmark_value>Session;SharedPythonScripts</bookmark_value> <bookmark_value>Session;UserProfile</bookmark_value> <bookmark_value>Session;UserScripts</bookmark_value> <bookmark_value>Session;UserPythonScripts</bookmark_value> <bookmark_value>API;PathSubstitution</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Session;ComputerName</bookmark_value><bookmark_value>Session;SharedScripts</bookmark_value><bookmark_value>Session;SharedPythonScripts</bookmark_value><bookmark_value>Session;UserProfile</bookmark_value><bookmark_value>Session;UserScripts</bookmark_value><bookmark_value>Session;UserPythonScripts</bookmark_value><bookmark_value>API;PathSubstitution</bookmark_value>"
#: python_session.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared.po b/source/bg/helpcontent2/source/text/sbasic/shared.po
index 1831971348b..e404dde50e2 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-04-30 09:40+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-14 08:13+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1556617224.000000\n"
+"X-POOTLE-MTIME: 1557821625.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -26158,7 +26158,7 @@ msgctxt ""
"par_id941552915528262\n"
"help.text"
msgid "When VBA support is enabled, %PRODUCTNAME Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, %PRODUCTNAME Basic functions may accept arguments and return values different of their VBA counterparts."
-msgstr ""
+msgstr "Когато е включена поддръжката за VBA, аргументите и резултатите на функциите на %PRODUCTNAME Basic са същите като на съответствията им от VBA. Когато поддръжката е изключена, функциите на %PRODUCTNAME Basic може да приемат аргументи и да връщат стойности, различни от тези на съответните функции във VBA."
#: 03103350.xhp
msgctxt ""
@@ -28022,7 +28022,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "<emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value."
-msgstr ""
+msgstr "<emph>Expression:</emph> числов израз, представящ валиден 8-битов код ASCII (0-255) или 16-битова стойност от Уникод."
#: 03120102.xhp
msgctxt ""
@@ -28030,7 +28030,7 @@ msgctxt ""
"par_id991552913928635\n"
"help.text"
msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expression</emph> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
-msgstr ""
+msgstr "Когато е включен режимът за съвместимост с VBA (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), числовият израз <emph>Expression</emph> може да представя само валидна 8-битовa стойност от ASCII (0-255)."
#: 03120102.xhp
msgctxt ""
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Помощ за $[officename] Basic\">Помощ за %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/sbasic/shared/03.po b/source/bg/helpcontent2/source/text/sbasic/shared/03.po
index f2b17985f30..868af31394d 100644
--- a/source/bg/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bg/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-19 00:34+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: 1547858047.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Функции и процедури за управление на мо
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 476ca68401e..18b1eb3b4ee 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-30 12:02+0000\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
+"PO-Revision-Date: 2019-05-29 11:18+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LibreOffice на български\n"
"Language: bg\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1556625778.000000\n"
+"X-POOTLE-MTIME: 1559128732.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1327,7 +1327,7 @@ msgctxt ""
"hd_id3149210\n"
"help.text"
msgid "Growth"
-msgstr "Нарастване"
+msgstr "Растеж"
#: 02140600.xhp
msgctxt ""
@@ -40950,8 +40950,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Намерете файла с данните, които желаете да вмъкнете.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Отваря диалог за файл, в който да посочите файла с данните за вмъкване.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -40982,8 +40982,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Въведете URL или името на файла с данните, които желаете да вмъкнете, после натиснете Enter.</ahelp> Чак тогава ще бъде изпратена заявка до мрежата или файловата система."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Въведете URL или името на файла с данните, които искате да вмъкнете, и натиснете Enter.</ahelp> Също така, можете да щракнете върху бутона <emph>Преглед</emph>, за да изберете името на файла в диалогов прозорец. Чак след това ще бъде изпратена заявка с този URL към мрежата или файловата система."
#: 04090000.xhp
msgctxt ""
@@ -41006,8 +41006,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Изберете таблицата или областта с данни, която искате да вмъкнете.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Изберете таблицата или диапазона с данни, който искате да вмъкнете.</ahelp> Ако избраният документ на Calc или Excel не съдържа наименуван диапазон, не могат да се вмъкват данни от него и бутонът <emph>OK</emph> ще остане неактивен."
#: 04090000.xhp
msgctxt ""
@@ -46271,7 +46271,7 @@ msgctxt ""
"hd_id3147127\n"
"help.text"
msgid "Consolidation ranges"
-msgstr "Области за консолидиране"
+msgstr "Диапазони за консолидиране"
#: 12070000.xhp
msgctxt ""
@@ -46294,8 +46294,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Задава областта от клетки, която да бъде консолидирана с всяка от областите, изброени в полето <emph>Области за консолидиране</emph>. Изберете област от клетки в лист и щракнете върху <emph>Добавяне</emph>. Можете също да изберете име на предварително дефинирана област от списъка <emph>Област с изходни данни</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Задава диапазона от клетки, който да бъде консолидиран с диапазоните, изброени в полето <emph>Диапазони за консолидиране</emph>. Изберете диапазон от клетки в лист и щракнете върху <emph>Добавяне</emph>. Можете също да изберете име на предварително дефиниран диапазон от списъка <emph>Диапазон с изходни данни</emph>.</ahelp>"
#: 12070000.xhp
msgctxt ""
@@ -46327,7 +46327,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/add\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/add\">Добавя областта от клетки, зададена в полето <emph>Област с изходни данни</emph> в полето <emph>Области за консолидиране</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/add\">Добавя диапазона от клетки, зададен в полето <emph>Диапазон с изходни данни</emph>, в полето <emph>Диапазони за консолидиране</emph>.</ahelp>"
#: 12070000.xhp
msgctxt ""
@@ -51559,7 +51559,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CONCAT function"
-msgstr ""
+msgstr "Функция CONCAT"
#: func_concat.xhp
msgctxt ""
@@ -51567,7 +51567,7 @@ msgctxt ""
"bm_id741556228031712\n"
"help.text"
msgid "<bookmark_value>CONCAT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>CONCAT, функция</bookmark_value>"
#: func_concat.xhp
msgctxt ""
@@ -51575,7 +51575,7 @@ msgctxt ""
"hd_id471556226436779\n"
"help.text"
msgid "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51583,7 +51583,7 @@ msgctxt ""
"par_id891556226436781\n"
"help.text"
msgid "<variable id=\"concatfunction\"><ahelp hid=\".\">Concatenates one or more strings</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunction\"><ahelp hid=\".\">Конкатенира (слепва) един или няколко низа.</ahelp></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51591,7 +51591,7 @@ msgctxt ""
"par_id701556226865876\n"
"help.text"
msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M."
-msgstr ""
+msgstr "CONCAT е подобрен вариант на CONCATENATE, тъй като приема за аргументи и диапазони, например B2:E5, K:K или K:M."
#: func_concat.xhp
msgctxt ""
@@ -51599,7 +51599,7 @@ msgctxt ""
"par_id461556226873963\n"
"help.text"
msgid "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate."
-msgstr ""
+msgstr "При използване на диапазони клетките се обхождат за конкатениране ред по ред (от горе надолу)."
#: func_concat.xhp
msgctxt ""
@@ -51607,7 +51607,7 @@ msgctxt ""
"par_id911556226813411\n"
"help.text"
msgid "CONCAT( string1[, string2][, …] )"
-msgstr ""
+msgstr "CONCAT(низ1[, низ2][, …])"
#: func_concat.xhp
msgctxt ""
@@ -51615,7 +51615,7 @@ msgctxt ""
"par_id581556227044166\n"
"help.text"
msgid "<emph>string1[, string2][, …]</emph> are strings or references to cells or ranges that contains strings to concatenate."
-msgstr ""
+msgstr "<emph>низ1[, низ2][, …]</emph> са низове или обръщения към клетки или диапазони, съдържащи низове за конкатениране."
#: func_concat.xhp
msgctxt ""
@@ -51623,7 +51623,7 @@ msgctxt ""
"par_id531556227248228\n"
"help.text"
msgid "<input>=CONCAT(\"Hello \", A1:C3)</input> concatenates the string \"Hello\" with all strings in range <literal>A1:C3</literal>."
-msgstr ""
+msgstr "<input>=CONCAT(\"Здравейте \", A1:C3)</input> конкатенира низа \"Здравейте\" с всички низове в диапазона <literal>A1:C3</literal>."
#: func_concat.xhp
msgctxt ""
@@ -51631,7 +51631,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
#: func_countifs.xhp
msgctxt ""
@@ -53575,7 +53575,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "IFS function"
-msgstr ""
+msgstr "Функция IFS"
#: func_ifs.xhp
msgctxt ""
@@ -53583,7 +53583,7 @@ msgctxt ""
"bm_id901556242230198\n"
"help.text"
msgid "<bookmark_value>IFS function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>IFS, функция</bookmark_value>"
#: func_ifs.xhp
msgctxt ""
@@ -53591,7 +53591,7 @@ msgctxt ""
"hd_id271556234923654\n"
"help.text"
msgid "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -53599,7 +53599,7 @@ msgctxt ""
"par_id171556234923655\n"
"help.text"
msgid "<variable id=\"variable name\"><ahelp hid=\".\">IFS is a multiple IF-function.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"variable name\"><ahelp hid=\".\">IFS е множествена функция IF.</ahelp></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -53607,7 +53607,7 @@ msgctxt ""
"par_id271556235333493\n"
"help.text"
msgid "IFS( expression1, result1[, expression2, result2][, …] )"
-msgstr ""
+msgstr "IFS(израз1, резултат1[, израз2, резултат2][, …])"
#: func_ifs.xhp
msgctxt ""
@@ -53615,7 +53615,7 @@ msgctxt ""
"par_id31556235655212\n"
"help.text"
msgid "<emph>expression1, expression2, ...</emph> are any boolean values or expressions that can be TRUE or FALSE"
-msgstr ""
+msgstr "<emph>израз1, израз2, ...</emph> са произволни булеви стойности или изрази със стойност TRUE или FALSE."
#: func_ifs.xhp
msgctxt ""
@@ -53623,7 +53623,7 @@ msgctxt ""
"par_id441556235649549\n"
"help.text"
msgid "<emph>result1, result2, ... </emph> are the values that are returned if the logical test is TRUE"
-msgstr ""
+msgstr "<emph>резултат1, резултат2, ...</emph> са стойностите, които се връщат, ако логическата проверка даде TRUE."
#: func_ifs.xhp
msgctxt ""
@@ -53631,7 +53631,7 @@ msgctxt ""
"par_id641556235704257\n"
"help.text"
msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as"
-msgstr ""
+msgstr "IFS(израз1, резултат1, израз2, резултат2, израз3, резултат3) се изпълнява като"
#: func_ifs.xhp
msgctxt ""
@@ -53639,7 +53639,7 @@ msgctxt ""
"par_id551556235712759\n"
"help.text"
msgid "IF expression1 is TRUE"
-msgstr ""
+msgstr "АКО израз1 е ИСТИНА"
#: func_ifs.xhp
msgctxt ""
@@ -53647,7 +53647,7 @@ msgctxt ""
"par_id1001556235718948\n"
"help.text"
msgid "THEN result1"
-msgstr ""
+msgstr "ТОГАВА резултат1"
#: func_ifs.xhp
msgctxt ""
@@ -53655,7 +53655,7 @@ msgctxt ""
"par_id571556235725969\n"
"help.text"
msgid "ELSE IF expression2 is TRUE"
-msgstr ""
+msgstr "ИНАЧЕ АКО израз2 е ИСТИНА"
#: func_ifs.xhp
msgctxt ""
@@ -53663,7 +53663,7 @@ msgctxt ""
"par_id581556235731982\n"
"help.text"
msgid "THEN result2"
-msgstr ""
+msgstr "ТОГАВА резултат2"
#: func_ifs.xhp
msgctxt ""
@@ -53671,7 +53671,7 @@ msgctxt ""
"par_id961556235738258\n"
"help.text"
msgid "ELSE IF expression3 is TRUE"
-msgstr ""
+msgstr "ИНАЧЕ АКО израз3 е ИСТИНА"
#: func_ifs.xhp
msgctxt ""
@@ -53679,7 +53679,7 @@ msgctxt ""
"par_id951556235743954\n"
"help.text"
msgid "THEN result3"
-msgstr ""
+msgstr "ТОГАВА резултат3"
#: func_ifs.xhp
msgctxt ""
@@ -53687,7 +53687,7 @@ msgctxt ""
"par_id671556235758504\n"
"help.text"
msgid "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result."
-msgstr ""
+msgstr "За да получите резултат в случай че никой израз не даде резултат TRUE, добавете последен израз, който винаги е TRUE, например TRUE или 1=1, следван от подразбирания резултат."
#: func_ifs.xhp
msgctxt ""
@@ -53695,7 +53695,7 @@ msgctxt ""
"par_id541556235771022\n"
"help.text"
msgid "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned."
-msgstr ""
+msgstr "Ако липсва резултат на израз или никой израз няма стойност TRUE, се връща грешка #N/A."
#: func_ifs.xhp
msgctxt ""
@@ -53703,7 +53703,7 @@ msgctxt ""
"par_id181556235788473\n"
"help.text"
msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned."
-msgstr ""
+msgstr "Ако израз има стойност, различна от TRUE и FALSE, се връща грешка #VALUE."
#: func_ifs.xhp
msgctxt ""
@@ -53711,7 +53711,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
#: func_imcos.xhp
msgctxt ""
@@ -55991,7 +55991,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "SWITCH function"
-msgstr ""
+msgstr "Функция SWITCH"
#: func_switch.xhp
msgctxt ""
@@ -55999,7 +55999,7 @@ msgctxt ""
"bm_id571556244875552\n"
"help.text"
msgid "<bookmark_value>SWITCH function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>SWITCH, функция</bookmark_value>"
#: func_switch.xhp
msgctxt ""
@@ -56007,7 +56007,7 @@ msgctxt ""
"hd_id21556242313791\n"
"help.text"
msgid "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\" name=\"switch\">SWITCH</link></variable>"
-msgstr ""
+msgstr "<variable id=\"switchfunct\"><link href=\"text/scalc/01/func_switch.xhp\" name=\"switch\">SWITCH</link></variable>"
#: func_switch.xhp
msgctxt ""
@@ -56015,7 +56015,7 @@ msgctxt ""
"par_id361556242313793\n"
"help.text"
msgid "<variable id=\"functionswitch\"><ahelp hid=\".\">SWITCH compares <emph>expression</emph> with <emph>value1</emph> to <emph>valuen</emph> and returns the result belonging to the first value that equals expression. If there is no match and default_value is given, that will be returned.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"functionswitch\"><ahelp hid=\".\">SWITCH сравнява <emph>израз</emph> със стойностите от <emph>стойност1</emph> до <emph>стойностn</emph> и връща резултата, съответстващ на първата равна на израза стойност. Ако няма съвпадение и е даден подразбиран резултат, ще бъде върнат той.</ahelp></variable>"
#: func_switch.xhp
msgctxt ""
@@ -56023,7 +56023,7 @@ msgctxt ""
"par_id521556242803283\n"
"help.text"
msgid "SWITCH( expression, value1, result1[, value2, result2][, … ][, default_result] )"
-msgstr ""
+msgstr "SWITCH(израз, стойност1, резултат1[, стойност2, резултат2][, …][, подразбиран_резултат])"
#: func_switch.xhp
msgctxt ""
@@ -56031,7 +56031,7 @@ msgctxt ""
"par_id341556242996378\n"
"help.text"
msgid "<emph>expression</emph> is a text, numeric, logical or date input or reference to a cell."
-msgstr ""
+msgstr "<emph>израз</emph> е текстов, числов, логически или времеви израз или обръщение към клетка."
#: func_switch.xhp
msgctxt ""
@@ -56039,7 +56039,7 @@ msgctxt ""
"par_id321556243790332\n"
"help.text"
msgid "<emph>value1, value2, ...</emph> is any value or reference to a cell. Each value must have a result given."
-msgstr ""
+msgstr "<emph>стойност1, стойност2, ...</emph> са стойности или обръщения към клетка. За всяка стойност трябва да е даден резултат."
#: func_switch.xhp
msgctxt ""
@@ -56047,7 +56047,7 @@ msgctxt ""
"par_id171556243796068\n"
"help.text"
msgid "<emph>result1, result2, ...</emph> is any value or reference to a cell."
-msgstr ""
+msgstr "<emph>резултат1, резултат2, ...</emph> са стойности или обръщения към клетка."
#: func_switch.xhp
msgctxt ""
@@ -56055,7 +56055,7 @@ msgctxt ""
"par_id331556245422283\n"
"help.text"
msgid "<emph>default_result</emph>: any value or reference to a cell that is returned when there is no match."
-msgstr ""
+msgstr "<emph>подразбиран_резултат</emph> е стойност или обръщение към клетка, което се връща, ако няма съвпадение."
#: func_switch.xhp
msgctxt ""
@@ -56063,7 +56063,7 @@ msgctxt ""
"par_id871556243022881\n"
"help.text"
msgid "If no <emph>value</emph> equals <emph>expression</emph> and no default result is given, a #N/A error is returned."
-msgstr ""
+msgstr "Ако никоя <emph>стойност</emph> не е равна на <emph>израз</emph> и не е даден подразбиран резултат, се връща грешка #N/A."
#: func_switch.xhp
msgctxt ""
@@ -56071,7 +56071,7 @@ msgctxt ""
"par_id851556243961783\n"
"help.text"
msgid "<input>=SWITCH(MONTH(A3),1,\"January\",2,\"February\",3,\"March\",\"No match\")</input> returns \"January\" when A3=1, February when A3=2 , etc..."
-msgstr ""
+msgstr "<input>=SWITCH(MONTH(A3),1,\"януари\",2,\"февруари\",3,\"март\",\"няма съответствие\")</input> връща \"януари\", когато A3=1, \"февруари\", когато A3=2 и т.н."
#: func_switch.xhp
msgctxt ""
@@ -56079,7 +56079,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
#: func_textjoin.xhp
msgctxt ""
@@ -56087,7 +56087,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "TEXTJOIN function"
-msgstr ""
+msgstr "Функция TEXTJOIN"
#: func_textjoin.xhp
msgctxt ""
@@ -56095,7 +56095,7 @@ msgctxt ""
"bm_id581556228060864\n"
"help.text"
msgid "<bookmark_value>TEXTJOIN function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>TEXTJOIN, функция</bookmark_value>"
#: func_textjoin.xhp
msgctxt ""
@@ -56103,7 +56103,7 @@ msgctxt ""
"hd_id551556227727946\n"
"help.text"
msgid "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\" name=\"textjoinfunction\">TEXTJOIN</link></variable>"
-msgstr ""
+msgstr "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\" name=\"textjoinfunction\">TEXTJOIN</link></variable>"
#: func_textjoin.xhp
msgctxt ""
@@ -56111,7 +56111,7 @@ msgctxt ""
"par_id121556227727948\n"
"help.text"
msgid "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Concatenates one or more strings, and uses delimiters between them.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Конкатенира един или няколко низа с разделители помежду им.</ahelp></variable>"
#: func_textjoin.xhp
msgctxt ""
@@ -56119,7 +56119,7 @@ msgctxt ""
"par_id541556228253979\n"
"help.text"
msgid "TEXTJOIN( delimiter, skip_empty, string1[, string2][, …] )"
-msgstr ""
+msgstr "TEXTJOIN(разделител, пропускане_празни, низ1[, низ2][, …])"
#: func_textjoin.xhp
msgctxt ""
@@ -56127,7 +56127,7 @@ msgctxt ""
"par_id741556228390897\n"
"help.text"
msgid "<emph>delimiter</emph> is a text string and can be a range."
-msgstr ""
+msgstr "<emph>разделител</emph> е текстов низ, може да бъде и диапазон."
#: func_textjoin.xhp
msgctxt ""
@@ -56135,7 +56135,7 @@ msgctxt ""
"par_id621556228397269\n"
"help.text"
msgid "<emph>skip_empty</emph> is a logical (TRUE or FALSE, 1 or 0) argument. When TRUE, empty strings will be ignored."
-msgstr ""
+msgstr "<emph>пропускане_празни</emph> е логически аргумент (TRUE или FALSE, 1 или 0). Когато е TRUE, празните низове се игнорират."
#: func_textjoin.xhp
msgctxt ""
@@ -56143,7 +56143,7 @@ msgctxt ""
"par_id631556228516997\n"
"help.text"
msgid "<emph>string1[, string2][, …]</emph> are strings or references to cells or ranges that contains text to join."
-msgstr ""
+msgstr "<emph>низ1[, низ2][, …]</emph> са низове или обръщения към клетки или диапазони, съдържащи низове за обединяване."
#: func_textjoin.xhp
msgctxt ""
@@ -56151,7 +56151,7 @@ msgctxt ""
"par_id1001556228523394\n"
"help.text"
msgid "Ranges are traversed row by row (from top to bottom)."
-msgstr ""
+msgstr "Диапазоните се обхождат ред по ред (от горе надолу)."
#: func_textjoin.xhp
msgctxt ""
@@ -56159,7 +56159,7 @@ msgctxt ""
"par_id81556228530082\n"
"help.text"
msgid "If <emph>delimiter</emph> is a range, the range need not be of the same size as the number of strings to be joined."
-msgstr ""
+msgstr "Ако <emph>разделител</emph> е диапазон, той не е необходимо да бъде със същия размер като броя на обединяваните низове."
#: func_textjoin.xhp
msgctxt ""
@@ -56167,7 +56167,7 @@ msgctxt ""
"par_id831556228543099\n"
"help.text"
msgid "If there are more delimiters than strings to be joined, not all delimiters will be used."
-msgstr ""
+msgstr "Ако разделителите са повече от низовете за обединяване, няма да се използват всички разделители."
#: func_textjoin.xhp
msgctxt ""
@@ -56175,7 +56175,7 @@ msgctxt ""
"par_id321556228557611\n"
"help.text"
msgid "If there are less delimiters than strings to be joined, the delimiters will be used again from the start."
-msgstr ""
+msgstr "Ако разделителите са по-малко от низовете за обединяване, ще бъдат използвани отново отначало."
#: func_textjoin.xhp
msgctxt ""
@@ -56183,7 +56183,7 @@ msgctxt ""
"par_id441556229012536\n"
"help.text"
msgid "<input>=TEXTJOIN(\" \",TRUE, \"Here\", \"comes\", \"the\", \"sun\")</input> returns \"Here comes the sun\" with space character as delimiter and empty strings are ignored."
-msgstr ""
+msgstr "<input>=TEXTJOIN(\" \", TRUE, \"Слънцето\", \"изгрява\", \"от\", \"изток\")</input> връща \"Слънцето изгрява от изток\" със знак за интервал като разделител, като празните низове се игнорират."
#: func_textjoin.xhp
msgctxt ""
@@ -56191,7 +56191,7 @@ msgctxt ""
"par_id441556239012536\n"
"help.text"
msgid "if A1:B2 contains \"Here\", \"comes\", \"the\", \"sun\" respectively, <input>=TEXTJOIN(\"-\",TRUE,A1:B2)</input> returns \"Here-comes-the-sun\" with dash character as delimiter and empty strings are ignored."
-msgstr ""
+msgstr "Ако A1:B2 съдържа съответно \"Слънцето\", \"изгрява\", \"от\" и \"изток\", <input>=TEXTJOIN(\"-\",TRUE,A1:B2)</input> връща \"Слънцето-изгрява-от-изток\" с разделител дефис, като празните низове се игнорират."
#: func_textjoin.xhp
msgctxt ""
@@ -56199,7 +56199,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
#: func_time.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/scalc/guide.po b/source/bg/helpcontent2/source/text/scalc/guide.po
index f32de15a788..febbf3652bb 100644
--- a/source/bg/helpcontent2/source/text/scalc/guide.po
+++ b/source/bg/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-04-15 09:24+0000\n"
+"PO-Revision-Date: 2019-05-26 08:22+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: 1555320241.000000\n"
+"X-POOTLE-MTIME: 1558858943.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -2927,7 +2927,7 @@ msgctxt ""
"par_id3155529\n"
"help.text"
msgid "Click <emph>Add</emph> to insert the selected range in the <emph>Consolidation areas</emph> field."
-msgstr "Натиснете <emph>Добавяне</emph>, за да вмъкнете избраната област в полето <emph>Области за консолидиране</emph>."
+msgstr "Натиснете <emph>Добавяне</emph>, за да вмъкнете избрания диапазон в полето <emph>Диапазони за консолидиране</emph>."
#: consolidate.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/schart/00.po b/source/bg/helpcontent2/source/text/schart/00.po
index bd00e6f8951..a78b946d991 100644
--- a/source/bg/helpcontent2/source/text/schart/00.po
+++ b/source/bg/helpcontent2/source/text/schart/00.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-13 19:30+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-26 08:03+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: 1547407819.000000\n"
+"X-POOTLE-MTIME: 1558857834.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">В диалоговия прозорец Тип на диаграма за линейна диаграма или точкова диаграма с линии изберете Гладки от списъка Вид линии, после щракнете върху бутона Свойства.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr "<variable id=\"smlp\">В диалоговия прозорец „Тип на диаграма“ за линейна диаграма или точкова диаграма с линии изберете „Гладки“ от списъка „Вид линии“, после щракнете върху бутона „Свойства“.</variable>"
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">В диалоговия прозорец Тип на диаграма за линейна диаграма или точкова диаграма с линии изберете Стъпаловидни от списъка Вид линии, после щракнете върху бутона Свойства.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr "<variable id=\"stlp\">В диалоговия прозорец „Тип на диаграма“ за линейна диаграма или точкова диаграма с линии изберете „Стъпаловидни“ от списъка „Вид линии“, после щракнете върху бутона „Свойства“.</variable>"
diff --git a/source/bg/helpcontent2/source/text/sdraw.po b/source/bg/helpcontent2/source/text/sdraw.po
index ce4db9cfbd4..a3299041520 100644
--- a/source/bg/helpcontent2/source/text/sdraw.po
+++ b/source/bg/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-13 08:45+0000\n"
+"PO-Revision-Date: 2019-05-27 15:47+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: 1557737134.000000\n"
+"X-POOTLE-MTIME: 1558972026.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"hd_id3148699\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
#: main_tools.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"hd_id3153415\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Настройки на автокорекция</link>"
#: main_tools.xhp
msgctxt ""
@@ -1022,4 +1022,4 @@ msgctxt ""
"hd_id3150044\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Персонализиране</link>"
diff --git a/source/bg/helpcontent2/source/text/sdraw/00.po b/source/bg/helpcontent2/source/text/sdraw/00.po
index 690be25db06..ccbe1f7a1de 100644
--- a/source/bg/helpcontent2/source/text/sdraw/00.po
+++ b/source/bg/helpcontent2/source/text/sdraw/00.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 16:24+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-26 11:54+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494347040.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558871697.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Menu"
-msgstr ""
+msgstr "Меню „Страница“"
#: page_menu.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Изберете <emph>Страница - Свойства</emph>.</variable>"
#: page_menu.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Изберете <emph>Страница - Свойства</emph> и отворете раздела <emph>Страница</emph>.</variable>"
#: page_menu.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Изберете <emph>Страница - Свойства</emph> и отворете раздела <emph>Фон</emph>.</variable>"
#: page_menu.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Page - Master Page</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Изберете <emph>Страница - Страница образец</emph>.</variable>"
#: page_menu.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <emph>Page - New Page</emph>"
-msgstr ""
+msgstr "Изберете <emph>Страница - Нова страница</emph>."
#: page_menu.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id1001556823044677\n"
"help.text"
msgid "On the <emph>Insert</emph> bar, click"
-msgstr ""
+msgstr "В лентата <emph>Вмъкване</emph> щракнете върху"
#: page_menu.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id351556823072396\n"
"help.text"
msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Икона</alt></image>"
#: page_menu.xhp
msgctxt ""
@@ -102,4 +102,4 @@ msgctxt ""
"par_id831556823072396\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Нова страница"
diff --git a/source/bg/helpcontent2/source/text/sdraw/01.po b/source/bg/helpcontent2/source/text/sdraw/01.po
index f33d196166f..c8a6898d987 100644
--- a/source/bg/helpcontent2/source/text/sdraw/01.po
+++ b/source/bg/helpcontent2/source/text/sdraw/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 16:24+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-26 11:55+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494347040.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558871705.000000\n"
#: new_page.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Нова страница"
#: new_page.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3150202\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">Нова страница</link>"
#: new_page.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3152988\n"
"help.text"
msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
-msgstr ""
+msgstr "<variable id=\"seitetext\">Вмъква празна страница след избраната.</variable>"
#: page_properties.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Страница"
#: page_properties.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"hd_id231556821873595\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Страница"
#: page_properties.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id571556821811542\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Задава ориентацията на страницата, белите полета по края й, фона и други настройки на оформлението.</ahelp></variable>"
#: page_properties.xhp
msgctxt ""
@@ -70,4 +70,4 @@ msgctxt ""
"par_id691556822054550\n"
"help.text"
msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "За да промените фона на всички страници в активния файл, изберете фон, щракнете върху <emph>OK</emph> и после – върху <emph>Да</emph> в диалоговия прозорец <emph>Настройки на страница</emph>."
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index 2cae452d289..e74251a76ec 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-16 13:30+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-29 07:25+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1555421422.000000\n"
+"X-POOTLE-MTIME: 1559114712.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_idN1076D\n"
"help.text"
msgid "ODF Text Template"
-msgstr "ODF - шаблон за текст"
+msgstr "ODF – шаблон за текст"
#: 00000021.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_idN10778\n"
"help.text"
msgid "ODF Master Document"
-msgstr "ODF - главен документ"
+msgstr "ODF – главен документ"
#: 00000021.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_idN10799\n"
"help.text"
msgid "ODF Spreadsheet"
-msgstr "ODF - електронна таблица"
+msgstr "ODF – електронна таблица"
#: 00000021.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_idN107A4\n"
"help.text"
msgid "ODF Spreadsheet Template"
-msgstr "ODF - шаблон за електронна таблица"
+msgstr "ODF – шаблон за електронна таблица"
#: 00000021.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_idN107AF\n"
"help.text"
msgid "ODF Drawing"
-msgstr "ODF - рисунка"
+msgstr "ODF – рисунка"
#: 00000021.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_idN107BA\n"
"help.text"
msgid "ODF Drawing Template"
-msgstr "ODF - шаблон за рисунка"
+msgstr "ODF – шаблон за рисунка"
#: 00000021.xhp
msgctxt ""
@@ -3518,7 +3518,7 @@ msgctxt ""
"par_idN107C5\n"
"help.text"
msgid "ODF Presentation"
-msgstr "ODF - презентация"
+msgstr "ODF – презентация"
#: 00000021.xhp
msgctxt ""
@@ -3534,7 +3534,7 @@ msgctxt ""
"par_idN107D0\n"
"help.text"
msgid "ODF Presentation Template"
-msgstr "ODF - шаблон за презентация"
+msgstr "ODF – шаблон за презентация"
#: 00000021.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_idN107DB\n"
"help.text"
msgid "ODF Formula"
-msgstr "ODF - формула"
+msgstr "ODF – формула"
#: 00000021.xhp
msgctxt ""
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Изберете <switchinline select=\"sys\">
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Инструменти - Настройки</emph></defaultinline></switchinline><emph> - $[officename] - Персонализация</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
@@ -11966,7 +11958,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Menu"
-msgstr ""
+msgstr "Меню „Редактиране“"
#: edit_menu.xhp
msgctxt ""
@@ -11974,7 +11966,7 @@ msgctxt ""
"hd_id3147273\n"
"help.text"
msgid "Edit Menu"
-msgstr ""
+msgstr "Меню „Редактиране“"
#: edit_menu.xhp
msgctxt ""
@@ -11982,7 +11974,7 @@ msgctxt ""
"par_id3085157\n"
"help.text"
msgid "Choose <emph>Edit - Undo</emph>."
-msgstr ""
+msgstr "Изберете <emph>Редактиране - Отмяна</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -11990,7 +11982,7 @@ msgctxt ""
"par_id3145160\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
#: edit_menu.xhp
msgctxt ""
@@ -11998,7 +11990,7 @@ msgctxt ""
"par_id3154094\n"
"help.text"
msgid "On the <emph>Standard</emph> bar or <emph>Table Data</emph> bar, click"
-msgstr ""
+msgstr "В лентата <emph>Стандартни</emph> или <emph>Данни от таблица</emph> щракнете върху"
#: edit_menu.xhp
msgctxt ""
@@ -12006,7 +11998,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Икона</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12014,7 +12006,7 @@ msgctxt ""
"par_id3148563\n"
"help.text"
msgid "Undo"
-msgstr ""
+msgstr "Отмяна"
#: edit_menu.xhp
msgctxt ""
@@ -12022,7 +12014,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "Choose <emph>Edit - Redo</emph>."
-msgstr ""
+msgstr "Изберете <emph>Редактиране - Възстановяване</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12030,7 +12022,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "В лентата <emph>Стандартни</emph> щракнете върху"
#: edit_menu.xhp
msgctxt ""
@@ -12038,7 +12030,7 @@ msgctxt ""
"par_id3154938\n"
"help.text"
msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Икона</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12046,7 +12038,7 @@ msgctxt ""
"par_id3151211\n"
"help.text"
msgid "Redo"
-msgstr ""
+msgstr "Възстановяване"
#: edit_menu.xhp
msgctxt ""
@@ -12054,7 +12046,7 @@ msgctxt ""
"par_id3154365\n"
"help.text"
msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"letzter\">Изберете <emph>Редактиране - Повтаряне</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12062,7 +12054,7 @@ msgctxt ""
"par_id3149765\n"
"help.text"
msgid "Choose <emph>Edit - Cut</emph>."
-msgstr ""
+msgstr "Изберете <emph>Редактиране - Изрязване</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12070,7 +12062,7 @@ msgctxt ""
"par_id3144762\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
#: edit_menu.xhp
msgctxt ""
@@ -12078,7 +12070,7 @@ msgctxt ""
"par_id3148744\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "В лентата <emph>Стандартни</emph> щракнете върху"
#: edit_menu.xhp
msgctxt ""
@@ -12086,7 +12078,7 @@ msgctxt ""
"par_id3145173\n"
"help.text"
msgid "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Икона</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12094,7 +12086,7 @@ msgctxt ""
"par_id3154153\n"
"help.text"
msgid "Cut"
-msgstr ""
+msgstr "Изрязване"
#: edit_menu.xhp
msgctxt ""
@@ -12102,7 +12094,7 @@ msgctxt ""
"par_id3150742\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>."
-msgstr ""
+msgstr "Изберете <emph>Редактиране - Копиране</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12110,7 +12102,7 @@ msgctxt ""
"par_id3148923\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
#: edit_menu.xhp
msgctxt ""
@@ -12118,7 +12110,7 @@ msgctxt ""
"par_id3159254\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "В лентата <emph>Стандартни</emph> щракнете върху"
#: edit_menu.xhp
msgctxt ""
@@ -12126,7 +12118,7 @@ msgctxt ""
"par_id3154985\n"
"help.text"
msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Икона</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12134,7 +12126,7 @@ msgctxt ""
"par_id3150685\n"
"help.text"
msgid "Copy"
-msgstr ""
+msgstr "Копиране"
#: edit_menu.xhp
msgctxt ""
@@ -12142,7 +12134,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>."
-msgstr ""
+msgstr "Изберете <emph>Редактиране - Поставяне</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12150,7 +12142,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
#: edit_menu.xhp
msgctxt ""
@@ -12158,7 +12150,7 @@ msgctxt ""
"par_id3159083\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "В лентата <emph>Стандартни</emph> щракнете върху"
#: edit_menu.xhp
msgctxt ""
@@ -12166,7 +12158,7 @@ msgctxt ""
"par_id3156106\n"
"help.text"
msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Икона</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12174,7 +12166,7 @@ msgctxt ""
"par_id3154471\n"
"help.text"
msgid "Paste"
-msgstr ""
+msgstr "Поставяне"
#: edit_menu.xhp
msgctxt ""
@@ -12182,7 +12174,7 @@ msgctxt ""
"par_id3152791\n"
"help.text"
msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"inhalte\">Изберете <emph>Редактиране - Специално поставяне</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12190,7 +12182,7 @@ msgctxt ""
"par_id3148555\n"
"help.text"
msgid "Choose <emph>Edit - Select All</emph>."
-msgstr ""
+msgstr "Изберете <emph>Редактиране - Избор - всичко</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12198,7 +12190,7 @@ msgctxt ""
"par_id3152417\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
#: edit_menu.xhp
msgctxt ""
@@ -12206,7 +12198,7 @@ msgctxt ""
"par_id3145748\n"
"help.text"
msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Икона</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12214,7 +12206,7 @@ msgctxt ""
"par_id3153139\n"
"help.text"
msgid "Select All"
-msgstr ""
+msgstr "Избор - всичко"
#: edit_menu.xhp
msgctxt ""
@@ -12222,7 +12214,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Track Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"aenderungen\">Изберете <emph>Редактиране - Следене на промените</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12230,7 +12222,7 @@ msgctxt ""
"par_id3153336\n"
"help.text"
msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Track Changes - Record</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"aufzeichnen\">Изберете <emph>Редактиране - Следене на промените - Регистриране</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12238,7 +12230,7 @@ msgctxt ""
"par_id3150594\n"
"help.text"
msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Track Changes - Show</emph>.</caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Track Changes - Show</emph>.</caseinline></switchinline></variable>"
-msgstr ""
+msgstr "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Изберете <emph>Редактиране - Следене на промените - Показване</emph>.</caseinline><caseinline select=\"CALC\">Изберете <emph>Редактиране - Следене на промените - Показване</emph>.</caseinline></switchinline></variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12246,7 +12238,7 @@ msgctxt ""
"par_id3153845\n"
"help.text"
msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Track Changes - Manage</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rotlinie\">Изберете <emph>Редактиране - Следене на промените - Управление</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12254,7 +12246,7 @@ msgctxt ""
"par_id3148587\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab."
-msgstr ""
+msgstr "Изберете раздела <emph>Редактиране - Следене на промените - Управление - Списък</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12262,7 +12254,7 @@ msgctxt ""
"par_id3150396\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>. The <emph>AutoCorrect</emph> dialog appears.<br/>Click the <emph>Edit Changes</emph> button and navigate to the <emph>List</emph> tab."
-msgstr ""
+msgstr "Изберете <emph>Инструменти - Автокорекция - Прилагане и редактиране на промените</emph>. Ще се покаже диалоговият прозорец <emph>Автокорекция</emph>.<br/>Щракнете върху бутона <emph>Редактиране на промените</emph> и отворете раздела <emph>Списък</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12270,7 +12262,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Track Changes - Manage - Filter</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"rotliniefilter\">Изберете раздела <emph>Редактиране - Следене на промените - Управление - Филтър</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12278,7 +12270,7 @@ msgctxt ""
"par_id3151281\n"
"help.text"
msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Track Changes - Merge Document</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"einfuegen\">Изберете <emph>Редактиране - Следене на промените - Сливане с документ</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12286,7 +12278,7 @@ msgctxt ""
"par_id3153224\n"
"help.text"
msgid "<variable id=\"dvergl\">Choose <emph>Edit - Track Changes - Compare Document</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"dvergl\">Изберете <emph>Редактиране - Следене на промените - Сравняване с документ</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12294,7 +12286,7 @@ msgctxt ""
"par_id3148773\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Comment</emph>."
-msgstr ""
+msgstr "Изберете <emph>Редактиране - Следене на промените - Коментар</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12302,7 +12294,7 @@ msgctxt ""
"par_id3149488\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab.<br/>Click an entry in the list and open the context menu.<br/>Choose <emph>Edit Comment</emph>."
-msgstr ""
+msgstr "Изберете раздела <emph>Редактиране - Следене на промените - Управление - Списък</emph>.<br/>Щракнете върху елемент от списъка и отворете контекстното меню.<br/>Изберете <emph>Редактиране на коментар</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12310,7 +12302,7 @@ msgctxt ""
"par_id31562971\n"
"help.text"
msgid "Choose <emph>Edit - Find</emph>."
-msgstr ""
+msgstr "Изберете <emph>Редактиране - Търсене</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12318,7 +12310,7 @@ msgctxt ""
"par_id31545031\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F"
#: edit_menu.xhp
msgctxt ""
@@ -12326,7 +12318,7 @@ msgctxt ""
"par_id3156297\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph>."
-msgstr ""
+msgstr "Изберете <emph>Редактиране - Търсене и замяна</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12334,7 +12326,7 @@ msgctxt ""
"par_id3154503\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
#: edit_menu.xhp
msgctxt ""
@@ -12342,7 +12334,7 @@ msgctxt ""
"par_id3155083\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "В лентата <emph>Стандартни</emph> щракнете върху"
#: edit_menu.xhp
msgctxt ""
@@ -12350,7 +12342,7 @@ msgctxt ""
"par_id3150020\n"
"help.text"
msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Икона</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12358,7 +12350,7 @@ msgctxt ""
"par_id3144748\n"
"help.text"
msgid "Find & Replace"
-msgstr ""
+msgstr "Търсене и замяна"
#: edit_menu.xhp
msgctxt ""
@@ -12366,7 +12358,7 @@ msgctxt ""
"par_id3156357\n"
"help.text"
msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchenattribute\">Изберете <emph>Редактиране - Търсене и замяна - Атрибути</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12374,7 +12366,7 @@ msgctxt ""
"par_id3153840\n"
"help.text"
msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchenformat\">Изберете бутона <emph>Редактиране - Търсене и замяна - Формат</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12382,7 +12374,7 @@ msgctxt ""
"par_id3146971\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box, then click the <emph>Similarities</emph> button."
-msgstr ""
+msgstr "Отметнете полето <emph>Редактиране - Търсене и замяна - Търсене по подобие</emph> и щракнете върху бутона <emph>Подобие по</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12390,7 +12382,7 @@ msgctxt ""
"par_id3153709\n"
"help.text"
msgid "On the <emph>Table Data</emph> bar, click <emph>Find</emph> icon, then <emph>Similarity search</emph> check box,<br/>then click the <emph>Similarities</emph> button (database table view)."
-msgstr ""
+msgstr "В лентата <emph>Данни от таблица</emph> щракнете върху иконата <emph>Търсене</emph>, после отметнете полето <emph>Търсене по подобие</emph><br/>и натиснете бутона <emph>Подобие по</emph> (изглед на таблица в база от данни)."
#: edit_menu.xhp
msgctxt ""
@@ -12398,7 +12390,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "On the <emph>Form Design</emph> bar, click <emph>Record Search</emph> icon, then <emph>Similarity search</emph> check box,<br/>then click the <emph>Similarities</emph> button (form view)."
-msgstr ""
+msgstr "В лентата <emph>Проектиране на формуляр</emph> щракнете върху иконата <emph>Търсене на запис</emph>, после отметнете полето <emph>Търсене по подобие</emph><br/>и натиснете бутона <emph>Подобие по</emph> (изглед на формуляр)."
#: edit_menu.xhp
msgctxt ""
@@ -12406,7 +12398,7 @@ msgctxt ""
"par_id3152960\n"
"help.text"
msgid "Choose <emph>View - Navigator</emph>."
-msgstr ""
+msgstr "Изберете <emph>Изглед - Навигатор</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12414,7 +12406,7 @@ msgctxt ""
"par_id3163824\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "В лентата <emph>Стандартни</emph> щракнете върху"
#: edit_menu.xhp
msgctxt ""
@@ -12422,7 +12414,7 @@ msgctxt ""
"par_id3159183\n"
"help.text"
msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Икона</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12430,7 +12422,7 @@ msgctxt ""
"par_id3147359\n"
"help.text"
msgid "Navigator On/Off"
-msgstr ""
+msgstr "Навигатор - вкл./изкл."
#: edit_menu.xhp
msgctxt ""
@@ -12438,7 +12430,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"litdat\">Изберете <emph>Инструменти - Библиографска база от данни</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12446,7 +12438,7 @@ msgctxt ""
"par_id3149281\n"
"help.text"
msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"link\">Изберете <emph>Редактиране - Връзки</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12454,7 +12446,7 @@ msgctxt ""
"par_id3159339\n"
"help.text"
msgid "<variable id=\"linkae\">Choose <emph>Edit - Links to External Files - Modify...</emph> (DDE links only).</variable>"
-msgstr ""
+msgstr "<variable id=\"linkae\">Изберете <emph>Редактиране - Връзки към външни файлове - Промяна...</emph> (само за DDE връзки).</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12462,7 +12454,7 @@ msgctxt ""
"par_id3148927\n"
"help.text"
msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>."
-msgstr ""
+msgstr "Изберете рамка, после изберете <emph>Редактиране - Обект - Свойства</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12470,7 +12462,7 @@ msgctxt ""
"par_id3156315\n"
"help.text"
msgid "Open context menu of selected frame, choose <emph>Properties</emph>."
-msgstr ""
+msgstr "Отворете контекстното меню на избраната рамка, изберете <emph>Свойства</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12478,7 +12470,7 @@ msgctxt ""
"par_id3156091\n"
"help.text"
msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw.</variable>"
-msgstr ""
+msgstr "<variable id=\"imagemap\">Изберете <emph>Редактиране - ImageMap</emph> в Writer и Calc или <emph>Инструменти - ImageMap</emph> в Impress и Draw.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12486,7 +12478,7 @@ msgctxt ""
"par_id3155936\n"
"help.text"
msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw,<br/>then select a section of the ImageMap and click <emph>Properties - Description</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"imapeigbea\">Изберете <emph>Редактиране - ImageMap</emph> в Writer и Calc или <emph>Инструменти - ImageMap</emph> в Impress и Draw,<br/>после изберете част от чувствителното изображение и щракнете върху <emph>Свойства - Описание</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12494,7 +12486,7 @@ msgctxt ""
"par_id3149259\n"
"help.text"
msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit1\">Изберете <emph>Редактиране - Обект</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12502,7 +12494,7 @@ msgctxt ""
"par_id3154966\n"
"help.text"
msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit2\">Изберете <emph>Редактиране - Обект - Редактиране</emph>, също и в контекстното меню на избран обект.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12510,7 +12502,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit3\">Изберете <emph>Редактиране - Обект - Отваряне</emph>.</variable>"
#: icon_alt.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 39d2a0cb3b5..c6725eadfba 100644
--- a/source/bg/helpcontent2/source/text/shared/01.po
+++ b/source/bg/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-16 19:33+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\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-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1555443237.000000\n"
@@ -6252,6 +6252,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/bg/helpcontent2/source/text/shared/02.po b/source/bg/helpcontent2/source/text/shared/02.po
index 91b2d27d4a3..5a5ed476672 100644
--- a/source/bg/helpcontent2/source/text/shared/02.po
+++ b/source/bg/helpcontent2/source/text/shared/02.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-05-10 08:57+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-26 11:58+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: 1557478621.000000\n"
+"X-POOTLE-MTIME: 1558871931.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -3838,8 +3838,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Указва дали текстът, избран в контролата, остава избран, когато фокусът я напусне.</ahelp> Ако за <emph>Скриване на избора</emph> зададете „Не“, избраният текст остава избран и когато фокусът вече не е върху контролата, която го съдържа."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Указва дали текстът, избран в контролата, остава избран, когато фокусът я напусне.</ahelp> Ако за <emph>Скриване на селекцията</emph> зададете „Не“, избраният текст остава избран и когато фокусът вече не е върху контролата, която го съдържа."
#: 01170101.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index 02714d07590..784ea01fc0c 100644
--- a/source/bg/helpcontent2/source/text/shared/guide.po
+++ b/source/bg/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-22 15:43+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-28 10:14+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1555947808.000000\n"
+"X-POOTLE-MTIME: 1559038446.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3095,15 +3095,7 @@ msgctxt ""
"par_writer0\n"
"help.text"
msgid "AbiWord Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
+msgstr "Документ на AbiWord"
#: convertfilters.xhp
msgctxt ""
@@ -3111,15 +3103,7 @@ msgctxt ""
"par_writer3\n"
"help.text"
msgid "Apple Pages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
+msgstr "Apple Pages"
#: convertfilters.xhp
msgctxt ""
@@ -3127,15 +3111,7 @@ msgctxt ""
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
+msgstr "BroadBand eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3143,15 +3119,7 @@ msgctxt ""
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Документ на ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -3159,15 +3127,7 @@ msgctxt ""
"par_writer12\n"
"help.text"
msgid "EPUB Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
+msgstr "EPUB документ"
#: convertfilters.xhp
msgctxt ""
@@ -3175,15 +3135,7 @@ msgctxt ""
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
+msgstr "FictionBook 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -3191,15 +3143,7 @@ msgctxt ""
"par_writer18\n"
"help.text"
msgid "HTML Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
+msgstr "Документ на HTML"
#: convertfilters.xhp
msgctxt ""
@@ -3207,15 +3151,7 @@ msgctxt ""
"par_writer21\n"
"help.text"
msgid "HTML Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
+msgstr "Документ на HTML"
#: convertfilters.xhp
msgctxt ""
@@ -3223,15 +3159,7 @@ msgctxt ""
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
+msgstr "Hangul WP 97"
#: convertfilters.xhp
msgctxt ""
@@ -3239,7 +3167,7 @@ msgctxt ""
"par_writer27\n"
"help.text"
msgid "Help content"
-msgstr ""
+msgstr "Съдържание за помощ"
#: convertfilters.xhp
msgctxt ""
@@ -3247,7 +3175,7 @@ msgctxt ""
"par_writer28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -3255,7 +3183,7 @@ msgctxt ""
"par_writer30\n"
"help.text"
msgid "Legacy Mac Text Document"
-msgstr ""
+msgstr "Стар текстов документ на Mac"
#: convertfilters.xhp
msgctxt ""
@@ -3263,7 +3191,7 @@ msgctxt ""
"par_writer31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -3271,7 +3199,7 @@ msgctxt ""
"par_writer33\n"
"help.text"
msgid "Legacy StarOffice Text Document"
-msgstr ""
+msgstr "Стар текстов документ на StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -3279,7 +3207,7 @@ msgctxt ""
"par_writer34\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -3287,15 +3215,7 @@ msgctxt ""
"par_writer36\n"
"help.text"
msgid "LotusWordPro Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
+msgstr "Документ на LotusWordPro"
#: convertfilters.xhp
msgctxt ""
@@ -3303,15 +3223,7 @@ msgctxt ""
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 95 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -3319,15 +3231,7 @@ msgctxt ""
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
+msgstr "Документ на MacWrite"
#: convertfilters.xhp
msgctxt ""
@@ -3335,7 +3239,7 @@ msgctxt ""
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
-msgstr ""
+msgstr "Mariner Write Mac Classic в.1.6-3.5"
#: convertfilters.xhp
msgctxt ""
@@ -3343,15 +3247,7 @@ msgctxt ""
"par_writer48\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -3359,15 +3255,7 @@ msgctxt ""
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -3375,15 +3263,7 @@ msgctxt ""
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -3391,15 +3271,7 @@ msgctxt ""
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft WinWord 1/2/5"
#: convertfilters.xhp
msgctxt ""
@@ -3407,15 +3279,7 @@ msgctxt ""
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3423,15 +3287,7 @@ msgctxt ""
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 95"
#: convertfilters.xhp
msgctxt ""
@@ -3439,7 +3295,7 @@ msgctxt ""
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
-msgstr ""
+msgstr "Microsoft Word за DOS"
#: convertfilters.xhp
msgctxt ""
@@ -3447,7 +3303,7 @@ msgctxt ""
"par_writer67\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -3455,15 +3311,7 @@ msgctxt ""
"par_writer69\n"
"help.text"
msgid "Microsoft Word for Mac (v1 - v5)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word за Mac (в.1-5)"
#: convertfilters.xhp
msgctxt ""
@@ -3471,15 +3319,7 @@ msgctxt ""
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works – документ"
#: convertfilters.xhp
msgctxt ""
@@ -3487,15 +3327,7 @@ msgctxt ""
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Документ на Microsoft Works за Mac (в. 1 – 4)"
#: convertfilters.xhp
msgctxt ""
@@ -3503,15 +3335,7 @@ msgctxt ""
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
+msgstr "Microsoft Write"
#: convertfilters.xhp
msgctxt ""
@@ -3519,15 +3343,7 @@ msgctxt ""
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
+msgstr "Office Open XML - текстов документ"
#: convertfilters.xhp
msgctxt ""
@@ -3535,15 +3351,7 @@ msgctxt ""
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
+msgstr "Office Open XML – шаблон за текст"
#: convertfilters.xhp
msgctxt ""
@@ -3551,15 +3359,7 @@ msgctxt ""
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
+msgstr "OpenDocument - текст (плосък XML)"
#: convertfilters.xhp
msgctxt ""
@@ -3567,15 +3367,7 @@ msgctxt ""
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0 - текстов документ"
#: convertfilters.xhp
msgctxt ""
@@ -3583,15 +3375,7 @@ msgctxt ""
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0 - текстов документ"
#: convertfilters.xhp
msgctxt ""
@@ -3599,15 +3383,7 @@ msgctxt ""
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0 - текстов документ"
#: convertfilters.xhp
msgctxt ""
@@ -3615,15 +3391,7 @@ msgctxt ""
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – преносим документен формат"
#: convertfilters.xhp
msgctxt ""
@@ -3631,15 +3399,7 @@ msgctxt ""
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - преносим документен формат"
#: convertfilters.xhp
msgctxt ""
@@ -3647,15 +3407,7 @@ msgctxt ""
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - преносим документен формат"
#: convertfilters.xhp
msgctxt ""
@@ -3663,15 +3415,7 @@ msgctxt ""
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
+msgstr "Текстов документ на Palm"
#: convertfilters.xhp
msgctxt ""
@@ -3679,15 +3423,7 @@ msgctxt ""
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
+msgstr "PalmDoc eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3695,15 +3431,7 @@ msgctxt ""
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
+msgstr "Plucker eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3711,15 +3439,7 @@ msgctxt ""
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
@@ -3727,15 +3447,7 @@ msgctxt ""
"par_writer120\n"
"help.text"
msgid "T602 Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
+msgstr "Документ на T602"
#: convertfilters.xhp
msgctxt ""
@@ -3743,7 +3455,7 @@ msgctxt ""
"par_writer123\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Текст"
#: convertfilters.xhp
msgctxt ""
@@ -3751,7 +3463,7 @@ msgctxt ""
"par_writer124\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3759,7 +3471,7 @@ msgctxt ""
"par_writer126\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Текст"
#: convertfilters.xhp
msgctxt ""
@@ -3767,7 +3479,7 @@ msgctxt ""
"par_writer127\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3775,7 +3487,7 @@ msgctxt ""
"par_writer129\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Текст"
#: convertfilters.xhp
msgctxt ""
@@ -3783,7 +3495,7 @@ msgctxt ""
"par_writer130\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3791,15 +3503,7 @@ msgctxt ""
"par_writer132\n"
"help.text"
msgid "Word 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007 – 2019"
#: convertfilters.xhp
msgctxt ""
@@ -3807,15 +3511,7 @@ msgctxt ""
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007 – 2019, шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -3823,15 +3519,7 @@ msgctxt ""
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007 – 2019, VBA"
#: convertfilters.xhp
msgctxt ""
@@ -3839,15 +3527,7 @@ msgctxt ""
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 97 – 2000, шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -3855,15 +3535,7 @@ msgctxt ""
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 97 – 2003"
#: convertfilters.xhp
msgctxt ""
@@ -3871,15 +3543,7 @@ msgctxt ""
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
+msgstr "WordPerfect – документ"
#: convertfilters.xhp
msgctxt ""
@@ -3887,7 +3551,7 @@ msgctxt ""
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
-msgstr ""
+msgstr "Документ на WriteNow"
#: convertfilters.xhp
msgctxt ""
@@ -3895,15 +3559,7 @@ msgctxt ""
"par_writer153\n"
"help.text"
msgid "Writer 6.0 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
+msgstr "Writer 6.0 – главен документ"
#: convertfilters.xhp
msgctxt ""
@@ -3911,15 +3567,7 @@ msgctxt ""
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
+msgstr "Writer 6.0 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -3927,15 +3575,7 @@ msgctxt ""
"par_writer159\n"
"help.text"
msgid "Writer 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
+msgstr "Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3943,15 +3583,7 @@ msgctxt ""
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
+msgstr "Writer 8 – главен документ"
#: convertfilters.xhp
msgctxt ""
@@ -3959,15 +3591,7 @@ msgctxt ""
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
+msgstr "Writer 8 – шаблон за главен документ"
#: convertfilters.xhp
msgctxt ""
@@ -3975,15 +3599,7 @@ msgctxt ""
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
+msgstr "Writer 8 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -3991,7 +3607,7 @@ msgctxt ""
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
-msgstr ""
+msgstr "Writer – дъмп на оформление"
#: convertfilters.xhp
msgctxt ""
@@ -3999,7 +3615,7 @@ msgctxt ""
"par_writer172\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4007,15 +3623,7 @@ msgctxt ""
"par_writer174\n"
"help.text"
msgid "Writer/Web 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
+msgstr "Writer/Web 6.0 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4023,15 +3631,7 @@ msgctxt ""
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
+msgstr "Writer/Web 8 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4055,15 +3655,7 @@ msgctxt ""
"par_calc0\n"
"help.text"
msgid "Apple Numbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
+msgstr "Apple Numbers"
#: convertfilters.xhp
msgctxt ""
@@ -4071,15 +3663,7 @@ msgctxt ""
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
+msgstr "Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4087,15 +3671,7 @@ msgctxt ""
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
+msgstr "Calc 6.0 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4103,15 +3679,7 @@ msgctxt ""
"par_calc9\n"
"help.text"
msgid "Calc 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
+msgstr "Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -4119,15 +3687,7 @@ msgctxt ""
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
+msgstr "Calc 8 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4135,15 +3695,7 @@ msgctxt ""
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Документ на ClarisResolve"
#: convertfilters.xhp
msgctxt ""
@@ -4151,15 +3703,7 @@ msgctxt ""
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Документ на ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -4167,7 +3711,7 @@ msgctxt ""
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
-msgstr ""
+msgstr "Формат за обмен на данни"
#: convertfilters.xhp
msgctxt ""
@@ -4175,7 +3719,7 @@ msgctxt ""
"par_calc22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4183,15 +3727,7 @@ msgctxt ""
"par_calc24\n"
"help.text"
msgid "Excel 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Excel 2007 – 2019"
#: convertfilters.xhp
msgctxt ""
@@ -4199,15 +3735,7 @@ msgctxt ""
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Excel 2007 – 2019 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4215,15 +3743,7 @@ msgctxt ""
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Excel 97 – 2000 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4231,15 +3751,7 @@ msgctxt ""
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Excel 97 – 2003"
#: convertfilters.xhp
msgctxt ""
@@ -4247,15 +3759,7 @@ msgctxt ""
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
+msgstr "Електронна таблица на Gnumeric"
#: convertfilters.xhp
msgctxt ""
@@ -4263,7 +3767,7 @@ msgctxt ""
"par_calc39\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "Документ на HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4271,7 +3775,7 @@ msgctxt ""
"par_calc40\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4279,7 +3783,7 @@ msgctxt ""
"par_calc42\n"
"help.text"
msgid "HTML Table"
-msgstr ""
+msgstr "Таблица на HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4287,7 +3791,7 @@ msgctxt ""
"par_calc43\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4295,7 +3799,7 @@ msgctxt ""
"par_calc45\n"
"help.text"
msgid "Legacy Mac Database"
-msgstr ""
+msgstr "Стара база от данни на Mac"
#: convertfilters.xhp
msgctxt ""
@@ -4303,7 +3807,7 @@ msgctxt ""
"par_calc46\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4311,7 +3815,7 @@ msgctxt ""
"par_calc48\n"
"help.text"
msgid "Legacy Mac Spreadsheet"
-msgstr ""
+msgstr "Стара електронна таблица на Mac"
#: convertfilters.xhp
msgctxt ""
@@ -4319,7 +3823,7 @@ msgctxt ""
"par_calc49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4327,7 +3831,7 @@ msgctxt ""
"par_calc51\n"
"help.text"
msgid "Legacy StarOffice Spreadsheet"
-msgstr ""
+msgstr "Стара електронна таблица на StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -4335,7 +3839,7 @@ msgctxt ""
"par_calc52\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4343,15 +3847,7 @@ msgctxt ""
"par_calc54\n"
"help.text"
msgid "Lotus"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
+msgstr "Lotus"
#: convertfilters.xhp
msgctxt ""
@@ -4359,7 +3855,7 @@ msgctxt ""
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
-msgstr ""
+msgstr "Lotus Wk1 – Wk3"
#: convertfilters.xhp
msgctxt ""
@@ -4367,7 +3863,7 @@ msgctxt ""
"par_calc58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4375,15 +3871,7 @@ msgctxt ""
"par_calc60\n"
"help.text"
msgid "MS Excel 4.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4391,15 +3879,7 @@ msgctxt ""
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4407,15 +3887,7 @@ msgctxt ""
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4423,7 +3895,7 @@ msgctxt ""
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr ""
+msgstr "Microsoft Excel 2007 – двоичен"
#: convertfilters.xhp
msgctxt ""
@@ -4431,7 +3903,7 @@ msgctxt ""
"par_calc70\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4439,15 +3911,7 @@ msgctxt ""
"par_calc72\n"
"help.text"
msgid "Microsoft Excel 2007-2016 VBA XML"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
+msgstr "Microsoft Excel 2007 – 2016 VBA XML"
#: convertfilters.xhp
msgctxt ""
@@ -4455,15 +3919,7 @@ msgctxt ""
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -4471,15 +3927,7 @@ msgctxt ""
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -4487,15 +3935,7 @@ msgctxt ""
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -4503,7 +3943,7 @@ msgctxt ""
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: convertfilters.xhp
msgctxt ""
@@ -4511,7 +3951,7 @@ msgctxt ""
"par_calc85\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4519,7 +3959,7 @@ msgctxt ""
"par_calc87\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Microsoft Works – документ"
#: convertfilters.xhp
msgctxt ""
@@ -4527,7 +3967,7 @@ msgctxt ""
"par_calc88\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4535,15 +3975,7 @@ msgctxt ""
"par_calc90\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Документ на Microsoft Works за Mac (в. 1 – 4)"
#: convertfilters.xhp
msgctxt ""
@@ -4551,15 +3983,7 @@ msgctxt ""
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Office Open XML – електронна таблица"
#: convertfilters.xhp
msgctxt ""
@@ -4567,15 +3991,7 @@ msgctxt ""
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Office Open XML – шаблон за електронна таблица"
#: convertfilters.xhp
msgctxt ""
@@ -4583,15 +3999,7 @@ msgctxt ""
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
+msgstr "OpenDocument – електронна таблица (плосък XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4599,15 +4007,7 @@ msgctxt ""
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – преносим документен формат"
#: convertfilters.xhp
msgctxt ""
@@ -4615,7 +4015,7 @@ msgctxt ""
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
-msgstr ""
+msgstr "Quattro Pro 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4623,7 +4023,7 @@ msgctxt ""
"par_calc106\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4631,7 +4031,7 @@ msgctxt ""
"par_calc108\n"
"help.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "Документ на QuattroPro"
#: convertfilters.xhp
msgctxt ""
@@ -4639,7 +4039,7 @@ msgctxt ""
"par_calc109\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4647,15 +4047,7 @@ msgctxt ""
"par_calc111\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
@@ -4663,7 +4055,7 @@ msgctxt ""
"par_calc114\n"
"help.text"
msgid "SYLK"
-msgstr ""
+msgstr "SYLK"
#: convertfilters.xhp
msgctxt ""
@@ -4671,7 +4063,7 @@ msgctxt ""
"par_calc115\n"
"help.text"
msgid "text/spreadsheet"
-msgstr ""
+msgstr "text/spreadsheet"
#: convertfilters.xhp
msgctxt ""
@@ -4679,7 +4071,7 @@ msgctxt ""
"par_calc117\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Текст"
#: convertfilters.xhp
msgctxt ""
@@ -4687,7 +4079,7 @@ msgctxt ""
"par_calc118\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -4695,7 +4087,7 @@ msgctxt ""
"par_calc120\n"
"help.text"
msgid "dBASE"
-msgstr ""
+msgstr "dBASE"
#: convertfilters.xhp
msgctxt ""
@@ -4703,7 +4095,7 @@ msgctxt ""
"par_calc121\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4727,15 +4119,7 @@ msgctxt ""
"par_impress0\n"
"help.text"
msgid "Apple Keynote"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
+msgstr "Apple Keynote"
#: convertfilters.xhp
msgctxt ""
@@ -4743,15 +4127,7 @@ msgctxt ""
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Презентация на ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -4759,15 +4135,7 @@ msgctxt ""
"par_impress6\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4775,15 +4143,7 @@ msgctxt ""
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
+msgstr "Impress 6.0 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4791,15 +4151,7 @@ msgctxt ""
"par_impress12\n"
"help.text"
msgid "Impress 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
+msgstr "Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4807,15 +4159,7 @@ msgctxt ""
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
+msgstr "Impress 8 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -4823,7 +4167,7 @@ msgctxt ""
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
-msgstr ""
+msgstr "Стара презентация на Mac"
#: convertfilters.xhp
msgctxt ""
@@ -4831,7 +4175,7 @@ msgctxt ""
"par_impress19\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4839,7 +4183,7 @@ msgctxt ""
"par_impress21\n"
"help.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Стара презентация на StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -4847,7 +4191,7 @@ msgctxt ""
"par_impress22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4855,7 +4199,7 @@ msgctxt ""
"par_impress24\n"
"help.text"
msgid "Microsoft PowerPoint 1-4"
-msgstr ""
+msgstr "Microsoft PowerPoint 1 – 4"
#: convertfilters.xhp
msgctxt ""
@@ -4863,7 +4207,7 @@ msgctxt ""
"par_impress25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -4871,15 +4215,7 @@ msgctxt ""
"par_impress27\n"
"help.text"
msgid "Office Open XML Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "Office Open XML – презентация"
#: convertfilters.xhp
msgctxt ""
@@ -4887,15 +4223,7 @@ msgctxt ""
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "Office Open XML – презентация с автоизпълнение"
#: convertfilters.xhp
msgctxt ""
@@ -4903,15 +4231,7 @@ msgctxt ""
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "Office Open XML – шаблон за презентация"
#: convertfilters.xhp
msgctxt ""
@@ -4919,15 +4239,7 @@ msgctxt ""
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
+msgstr "OpenDocument – презентация (плосък XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4935,15 +4247,7 @@ msgctxt ""
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "OpenOffice.org 1.0 – рисунка"
#: convertfilters.xhp
msgctxt ""
@@ -4951,15 +4255,7 @@ msgctxt ""
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
+msgstr "OpenOffice.org 1.0 – презентация"
#: convertfilters.xhp
msgctxt ""
@@ -4967,15 +4263,7 @@ msgctxt ""
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – преносим документен формат"
#: convertfilters.xhp
msgctxt ""
@@ -4983,15 +4271,7 @@ msgctxt ""
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "PowerPoint 2007 – 2019"
#: convertfilters.xhp
msgctxt ""
@@ -4999,15 +4279,7 @@ msgctxt ""
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "PowerPoint 2007 – 2019"
#: convertfilters.xhp
msgctxt ""
@@ -5015,15 +4287,7 @@ msgctxt ""
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "PowerPoint 2007 – 2019, шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -5031,15 +4295,7 @@ msgctxt ""
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
+msgstr "PowerPoint 2007 – 2019, VBA"
#: convertfilters.xhp
msgctxt ""
@@ -5047,15 +4303,7 @@ msgctxt ""
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97 – 2000, шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -5063,15 +4311,7 @@ msgctxt ""
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97 – 2003"
#: convertfilters.xhp
msgctxt ""
@@ -5079,15 +4319,7 @@ msgctxt ""
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97 – 2003"
#: convertfilters.xhp
msgctxt ""
@@ -5111,15 +4343,7 @@ msgctxt ""
"par_draw0\n"
"help.text"
msgid "Adobe PageMaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
+msgstr "Adobe PageMaker"
#: convertfilters.xhp
msgctxt ""
@@ -5127,15 +4351,7 @@ msgctxt ""
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
+msgstr "Adobe/Macromedia Freehand"
#: convertfilters.xhp
msgctxt ""
@@ -5143,15 +4359,7 @@ msgctxt ""
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Документ на ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -5159,15 +4367,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "Corel Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
+msgstr "Corel Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5175,15 +4375,7 @@ msgctxt ""
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
+msgstr "Corel Presentation Exchange"
#: convertfilters.xhp
msgctxt ""
@@ -5191,15 +4383,7 @@ msgctxt ""
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
+msgstr "Draw 6.0 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -5207,15 +4391,7 @@ msgctxt ""
"par_draw18\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -5223,15 +4399,7 @@ msgctxt ""
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
+msgstr "Draw 8 – шаблон"
#: convertfilters.xhp
msgctxt ""
@@ -5239,7 +4407,7 @@ msgctxt ""
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
-msgstr ""
+msgstr "Старо пикселно изображение на Mac"
#: convertfilters.xhp
msgctxt ""
@@ -5247,7 +4415,7 @@ msgctxt ""
"par_draw25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -5255,7 +4423,7 @@ msgctxt ""
"par_draw27\n"
"help.text"
msgid "Legacy Mac Drawing"
-msgstr ""
+msgstr "Стара рисунка на Mac"
#: convertfilters.xhp
msgctxt ""
@@ -5263,7 +4431,7 @@ msgctxt ""
"par_draw28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -5271,7 +4439,7 @@ msgctxt ""
"par_draw30\n"
"help.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Стара рисунка на StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -5279,7 +4447,7 @@ msgctxt ""
"par_draw31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -5287,15 +4455,7 @@ msgctxt ""
"par_draw33\n"
"help.text"
msgid "Microsoft Publisher 2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
+msgstr "Microsoft Publisher 2003"
#: convertfilters.xhp
msgctxt ""
@@ -5303,15 +4463,7 @@ msgctxt ""
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
+msgstr "Microsoft Visio"
#: convertfilters.xhp
msgctxt ""
@@ -5319,15 +4471,7 @@ msgctxt ""
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
+msgstr "OpenDocument – рисунка (плосък XML)"
#: convertfilters.xhp
msgctxt ""
@@ -5335,15 +4479,7 @@ msgctxt ""
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "OpenOffice.org 1.0 – рисунка"
#: convertfilters.xhp
msgctxt ""
@@ -5351,15 +4487,7 @@ msgctxt ""
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – преносим документен формат"
#: convertfilters.xhp
msgctxt ""
@@ -5367,7 +4495,7 @@ msgctxt ""
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
-msgstr ""
+msgstr "QuarkXPress"
#: convertfilters.xhp
msgctxt ""
@@ -5375,7 +4503,7 @@ msgctxt ""
"par_draw49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -5383,15 +4511,7 @@ msgctxt ""
"par_draw51\n"
"help.text"
msgid "WordPerfect Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
+msgstr "WordPerfect – графика"
#: convertfilters.xhp
msgctxt ""
@@ -5399,7 +4519,7 @@ msgctxt ""
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5407,7 +4527,7 @@ msgctxt ""
"par_draw55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -5431,15 +4551,7 @@ msgctxt ""
"par_math0\n"
"help.text"
msgid "Math 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
+msgstr "Math 8"
#: convertfilters.xhp
msgctxt ""
@@ -5447,15 +4559,7 @@ msgctxt ""
"par_math3\n"
"help.text"
msgid "MathML 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
+msgstr "MathML 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -5463,7 +4567,7 @@ msgctxt ""
"par_math6\n"
"help.text"
msgid "MathType3.x"
-msgstr ""
+msgstr "MathType3.x"
#: convertfilters.xhp
msgctxt ""
@@ -5471,7 +4575,7 @@ msgctxt ""
"par_math7\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -5479,15 +4583,7 @@ msgctxt ""
"par_math9\n"
"help.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
+msgstr "OpenOffice.org 1.0 – формула"
#: convertfilters.xhp
msgctxt ""
@@ -5495,15 +4591,7 @@ msgctxt ""
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – преносим документен формат"
#: convertfilters.xhp
msgctxt ""
@@ -5527,15 +4615,7 @@ msgctxt ""
"par_base0\n"
"help.text"
msgid "OpenDocument Database"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
+msgstr "OpenDocument – база от данни"
#: convertfilters.xhp
msgctxt ""
@@ -5559,15 +4639,7 @@ msgctxt ""
"par_graphicfilter0\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP – растерно изображение на Windows"
#: convertfilters.xhp
msgctxt ""
@@ -5575,15 +4647,7 @@ msgctxt ""
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP – растерно изображение на Windows"
#: convertfilters.xhp
msgctxt ""
@@ -5591,15 +4655,7 @@ msgctxt ""
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
+msgstr "CGM – метафайл за компютърна графика"
#: convertfilters.xhp
msgctxt ""
@@ -5607,15 +4663,7 @@ msgctxt ""
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
+msgstr "DXF – формат за обмен на AutoCAD"
#: convertfilters.xhp
msgctxt ""
@@ -5623,15 +4671,7 @@ msgctxt ""
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF – разширен метафайл"
#: convertfilters.xhp
msgctxt ""
@@ -5639,15 +4679,7 @@ msgctxt ""
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF – разширен метафайл"
#: convertfilters.xhp
msgctxt ""
@@ -5655,15 +4687,7 @@ msgctxt ""
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS – капсулиран PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5671,15 +4695,7 @@ msgctxt ""
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS – капсулиран PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5687,15 +4703,7 @@ msgctxt ""
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF – формат за обмен на графика"
#: convertfilters.xhp
msgctxt ""
@@ -5703,15 +4711,7 @@ msgctxt ""
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF – формат за обмен на графика"
#: convertfilters.xhp
msgctxt ""
@@ -5719,7 +4719,7 @@ msgctxt ""
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5727,7 +4727,7 @@ msgctxt ""
"par_graphicfilter31\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -5735,7 +4735,7 @@ msgctxt ""
"par_graphicfilter33\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5743,7 +4743,7 @@ msgctxt ""
"par_graphicfilter34\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -5751,15 +4751,7 @@ msgctxt ""
"par_graphicfilter36\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG – формат на Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5767,15 +4759,7 @@ msgctxt ""
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG – формат на Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5783,15 +4767,7 @@ msgctxt ""
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG – формат на Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5799,15 +4775,7 @@ msgctxt ""
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET – метафайл на OS/2"
#: convertfilters.xhp
msgctxt ""
@@ -5815,15 +4783,7 @@ msgctxt ""
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET – метафайл на OS/2"
#: convertfilters.xhp
msgctxt ""
@@ -5831,15 +4791,7 @@ msgctxt ""
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
+msgstr "MOV – файлов формат на QuickTime"
#: convertfilters.xhp
msgctxt ""
@@ -5847,7 +4799,7 @@ msgctxt ""
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5855,7 +4807,7 @@ msgctxt ""
"par_graphicfilter55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -5863,7 +4815,7 @@ msgctxt ""
"par_graphicfilter57\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5871,7 +4823,7 @@ msgctxt ""
"par_graphicfilter58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Няма"
#: convertfilters.xhp
msgctxt ""
@@ -5879,15 +4831,7 @@ msgctxt ""
"par_graphicfilter60\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM – преносимо растерно изображение"
#: convertfilters.xhp
msgctxt ""
@@ -5895,15 +4839,7 @@ msgctxt ""
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM – преносимо растерно изображение"
#: convertfilters.xhp
msgctxt ""
@@ -5911,15 +4847,7 @@ msgctxt ""
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD – Photo CD Base"
#: convertfilters.xhp
msgctxt ""
@@ -5927,15 +4855,7 @@ msgctxt ""
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD – Photo CD Base16"
#: convertfilters.xhp
msgctxt ""
@@ -5943,15 +4863,7 @@ msgctxt ""
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD – Photo CD Base4"
#: convertfilters.xhp
msgctxt ""
@@ -5959,15 +4871,7 @@ msgctxt ""
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT – Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -5975,15 +4879,7 @@ msgctxt ""
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT – Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -5991,15 +4887,7 @@ msgctxt ""
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
+msgstr "PCX – Zsoft Paintbrush"
#: convertfilters.xhp
msgctxt ""
@@ -6007,15 +4895,7 @@ msgctxt ""
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM – преносимо изображение в нива на сивото"
#: convertfilters.xhp
msgctxt ""
@@ -6023,15 +4903,7 @@ msgctxt ""
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM – преносимо изображение в нива на сивото"
#: convertfilters.xhp
msgctxt ""
@@ -6039,15 +4911,7 @@ msgctxt ""
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG – преносима мрежова графика"
#: convertfilters.xhp
msgctxt ""
@@ -6055,15 +4919,7 @@ msgctxt ""
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG – преносима мрежова графика"
#: convertfilters.xhp
msgctxt ""
@@ -6071,15 +4927,7 @@ msgctxt ""
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG – преносима мрежова графика"
#: convertfilters.xhp
msgctxt ""
@@ -6087,15 +4935,7 @@ msgctxt ""
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG – преносима мрежова графика"
#: convertfilters.xhp
msgctxt ""
@@ -6103,15 +4943,7 @@ msgctxt ""
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM – преносимо пикселно изображение"
#: convertfilters.xhp
msgctxt ""
@@ -6119,15 +4951,7 @@ msgctxt ""
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM – преносимо пикселно изображение"
#: convertfilters.xhp
msgctxt ""
@@ -6135,15 +4959,7 @@ msgctxt ""
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
+msgstr "PSD – Adobe Photoshop"
#: convertfilters.xhp
msgctxt ""
@@ -6151,15 +4967,7 @@ msgctxt ""
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS – растерно изображение на Sun"
#: convertfilters.xhp
msgctxt ""
@@ -6167,15 +4975,7 @@ msgctxt ""
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS – растерно изображение на Sun"
#: convertfilters.xhp
msgctxt ""
@@ -6183,15 +4983,7 @@ msgctxt ""
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG – мащабируема векторна графика"
#: convertfilters.xhp
msgctxt ""
@@ -6199,15 +4991,7 @@ msgctxt ""
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG – мащабируема векторна графика"
#: convertfilters.xhp
msgctxt ""
@@ -6215,15 +4999,7 @@ msgctxt ""
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG – мащабируема векторна графика"
#: convertfilters.xhp
msgctxt ""
@@ -6231,15 +5007,7 @@ msgctxt ""
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG – мащабируема векторна графика"
#: convertfilters.xhp
msgctxt ""
@@ -6247,15 +5015,7 @@ msgctxt ""
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG – мащабируема векторна графика (Draw)"
#: convertfilters.xhp
msgctxt ""
@@ -6263,15 +5023,7 @@ msgctxt ""
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG – мащабируема векторна графика (Draw)"
#: convertfilters.xhp
msgctxt ""
@@ -6279,15 +5031,7 @@ msgctxt ""
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
+msgstr "SVM – метафайл на StarView"
#: convertfilters.xhp
msgctxt ""
@@ -6295,15 +5039,7 @@ msgctxt ""
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
+msgstr "SVM – метафайл на StarView"
#: convertfilters.xhp
msgctxt ""
@@ -6311,15 +5047,7 @@ msgctxt ""
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
+msgstr "TGA – Truevision Targa"
#: convertfilters.xhp
msgctxt ""
@@ -6327,15 +5055,7 @@ msgctxt ""
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
+msgstr "TIFF – файлов формат за изображения с маркери"
#: convertfilters.xhp
msgctxt ""
@@ -6343,15 +5063,7 @@ msgctxt ""
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
+msgstr "TIFF – файлов формат за изображения с маркери"
#: convertfilters.xhp
msgctxt ""
@@ -6359,15 +5071,7 @@ msgctxt ""
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
+msgstr "WMF – метафайл на Windows"
#: convertfilters.xhp
msgctxt ""
@@ -6375,15 +5079,7 @@ msgctxt ""
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
+msgstr "WMF – метафайл на Windows"
#: convertfilters.xhp
msgctxt ""
@@ -6391,15 +5087,7 @@ msgctxt ""
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
+msgstr "XBM – растерно изображение на X"
#: convertfilters.xhp
msgctxt ""
@@ -6407,15 +5095,7 @@ msgctxt ""
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
+msgstr "XPM – пикселно изображение на X"
#: convertfilters.xhp
msgctxt ""
@@ -6423,15 +5103,7 @@ msgctxt ""
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
+msgstr "XPM – пикселно изображение на X"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -12871,7 +11543,7 @@ msgctxt ""
"par_idN1068A\n"
"help.text"
msgid "With the image selected, choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw. You see the <link href=\"text/shared/01/02220000.xhp\">ImageMap Editor</link>, which displays the image at the background."
-msgstr ""
+msgstr "Докато изображението е избрано, изберете <emph>Редактиране - ImageMap</emph> в Writer и Calc или <emph>Инструменти - ImageMap</emph> в Impress и Draw. Ще видите <link href=\"text/shared/01/02220000.xhp\">редактора за ImageMap</link>, който показва изображението като фон."
#: imagemap.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index 9e6e529a754..f0b4795e67b 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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-11 15:47+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\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-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1554997658.000000\n"
@@ -14785,182 +14785,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "За повече информация относно OpenCL посетете <link href=\"https://www.khronos.org/opencl/\">сайта на стандарта</link>."
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Персонализация"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>теми;настройки за</bookmark_value><bookmark_value>настройки;теми</bookmark_value><bookmark_value>персонализация;теми на Mozilla Firefox</bookmark_value><bookmark_value>персони;персонализация</bookmark_value><bookmark_value>персонализация;персони</bookmark_value><bookmark_value>Mozilla Firefox, теми на;персонализация</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Персонализация</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Можете да персонализирате своето копие на %PRODUCTNAME с темите, налични за Mozilla Firefox. Лентата с менюта и лентите с инструменти, закачени в горния и долния край на прозореца, ще показват като фон избраната тема."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Темите за Mozilla Firefox се намират в уебсайта на Mozilla на следния адрес: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Всички съвместими с Firefox теми ще работят в %PRODUCTNAME. Не всяка тема обаче ще изглежда добре – ако изображението е твърде пъстро, може да влоши четливостта на иконите и менютата."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Теми на Firefox:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Налице са следните възможности:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Обикновен външен вид, без тема"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Фонът на лентите с инструменти наследява настройките за фон на прозорците от работния плот.</ahelp> Такава е подразбираната настройка на %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Предварително инсталирана тема"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Изберете тази възможност, за да използвате някоя от предварително инсталираните теми.</ahelp> Освен подразбираните варианти, системният ви администратор може да е добавил тема по избор при инсталирането на %PRODUCTNAME. Тя ще се покаже заедно с тях."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Собствена тема"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Изберете тази възможност, за да отворите диалога „Избор на тема от Firefox“ с още теми.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Избор на тема от Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Чрез този диалогов прозорец можете да инсталирате определена тема или да прегледате наличните от сайта на Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Търсене"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Въведете текст, който да бъде търсен сред темите от сайта за добавки на Mozilla или поставете адрес на тема, за да я изтеглите директно.</ahelp> За да получите адреса, посетете уебстраницата на темата с браузъра си и копирайте URL, показан в лентата за адрес. После го поставете в полето за търсене в диалоговия прозорец. Щракнете върху <item type=\"menuitem\">Търсене</item> или натиснете <item type=\"keycode\">Enter</item>, за да я изтеглите и инсталирате в %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Разглеждане на темите по категория"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Показва девет произволно избрани теми според категориите, изписани на бутоните.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Щракнете върху един от петте бутона, за да видите в областта за изображения по-долу девет случайно избрани теми, съответстващи на категорията от бутона."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "За да изберете някоя от показаните теми, щракнете върху изображението ѝ и натиснете <item type=\"menuitem\">OK</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/bg/helpcontent2/source/text/simpress.po b/source/bg/helpcontent2/source/text/simpress.po
index d08346a698e..88cf520ca3a 100644
--- a/source/bg/helpcontent2/source/text/simpress.po
+++ b/source/bg/helpcontent2/source/text/simpress.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-15 15:59+0000\n"
+"PO-Revision-Date: 2019-05-27 15:47+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555343992.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558972034.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Редактиране"
#: main_edit.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Редактиране</link>"
#: main_edit.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Менюто съдържа команди за редактиране съдържанието на текущия документ.</ahelp>"
#: main_edit.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"hd_id3154649\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Възли</link>"
#: main_edit.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id3154766\n"
"help.text"
msgid "Switches the <emph>Edit Points</emph> mode on and off."
-msgstr ""
+msgstr "Включва и изключва режима <emph>Редактиране по възли</emph>."
#: main_edit.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"hd_id3145116\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Точки за съединяване</link>"
#: main_edit.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id3147403\n"
"help.text"
msgid "Switches the <emph>Edit Glue Points</emph> mode on and off."
-msgstr ""
+msgstr "Включва и изключва режима <emph>Редактиране на точки за съединяване</emph>."
#: main_edit.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"hd_id3150396\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Полета</link>"
#: main_edit.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"hd_id3149355\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Връзки</link>"
#: main_edit.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"hd_id0914201502131542\n"
"help.text"
msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Обект</link>"
#: main_format.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Форматиране"
#: main_format.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Форматиране</link>"
#: main_format.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">С командите от това меню можете да форматирате оформлението и съдържанието на документа.</ahelp>"
#: main_format.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"hd_id3147401\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Знак</link>"
#: main_format.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"hd_id3149941\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Абзац</link>"
#: main_format.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"hd_id3147299\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Водачи и номерация</link>"
#: main_format.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"hd_id3149499\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Позиция и размер</link>"
#: main_format.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"hd_id3154510\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Линия</link>"
#: main_format.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"hd_id3149021\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Област</link>"
#: main_format.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"hd_id3155961\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Текст</link>"
#: main_format.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"hd_id3156286\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Дизайн на кадър</link>"
#: main_format.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"hd_id3163827\n"
"help.text"
msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Оформление на кадър</link>"
#: main_slide.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Кадър"
#: main_slide.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"hd_id0908201507475698\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Кадър</link>"
#: main_slide.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_id0908201507482661\n"
"help.text"
msgid "This menu provides slide management and navigation commands."
-msgstr ""
+msgstr "Това меню съдържа команди за управление на кадрите и навигация."
#: main_slide.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">Нов кадър</link>"
#: main_slide.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"hd_id551556824896520\n"
"help.text"
msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Свойства</link>"
#: main_tools.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "Инструменти"
#: main_tools.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"hd_id3154017\n"
"help.text"
msgid "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Инструменти</link>"
#: main_tools.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Съдържа средства за проверка на правописа, галерия от обекти, които можете да добавяте към документите, и команди за конфигуриране на менютата и задаване настройките на програмата.</ahelp>"
#: main_tools.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"hd_id3145590\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
#: main_tools.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id3153248\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Настройки на автокорекция</link>"
#: main_tools.xhp
msgctxt ""
@@ -1606,4 +1606,4 @@ msgctxt ""
"hd_id3149130\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Персонализиране</link>"
diff --git a/source/bg/helpcontent2/source/text/simpress/00.po b/source/bg/helpcontent2/source/text/simpress/00.po
index 462d704dadb..3123f2117c2 100644
--- a/source/bg/helpcontent2/source/text/simpress/00.po
+++ b/source/bg/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-15 08:37+0000\n"
+"PO-Revision-Date: 2019-05-13 13:24+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555317446.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557753857.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <emph>Slide - New Slide</emph>"
-msgstr ""
+msgstr "Изберете <emph>Кадър - Нов кадър</emph>."
#: slide_menu.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3685251\n"
"help.text"
msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Икона</alt></image>"
#: slide_menu.xhp
msgctxt ""
@@ -1310,4 +1310,4 @@ msgctxt ""
"par_id7354512\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Нов кадър"
diff --git a/source/bg/helpcontent2/source/text/simpress/01.po b/source/bg/helpcontent2/source/text/simpress/01.po
index 13a108c4a88..1e8aa19d7b2 100644
--- a/source/bg/helpcontent2/source/text/simpress/01.po
+++ b/source/bg/helpcontent2/source/text/simpress/01.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-15 08:51+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-26 08:00+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555318266.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558857650.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Кадър</link>"
#: 03070000.xhp
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Нов кадър"
#: new_slide.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"bm_id3159155\n"
"help.text"
msgid "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>вмъкване; кадри</bookmark_value><bookmark_value>кадри; вмъкване</bookmark_value>"
#: new_slide.xhp
msgctxt ""
@@ -8174,15 +8174,15 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">Нов кадър</link>"
#: new_slide.xhp
msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
-msgstr ""
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
+msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Вмъква кадър след текущо избрания.</ahelp></variable>"
#: remoteconnections.xhp
msgctxt ""
@@ -8326,7 +8326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Кадър"
#: slide_properties.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"hd_id3149379\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Кадър"
#: slide_properties.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Sets slide orientation, slide margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Задава ориентацията на кадъра, белите полета по края му, фона и други настройки на оформлението.</ahelp></variable>"
#: slide_properties.xhp
msgctxt ""
@@ -8350,7 +8350,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "To change the background of all of the slides in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "За да промените фона на всички кадри в активния файл, изберете фон, щракнете върху <emph>OK</emph> и после – върху <emph>Да</emph> в диалоговия прозорец <emph>Настройки на страница</emph>."
#: slidesorter.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/simpress/02.po b/source/bg/helpcontent2/source/text/simpress/02.po
index 862029e7ff2..b5a509d563c 100644
--- a/source/bg/helpcontent2/source/text/simpress/02.po
+++ b/source/bg/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-15 16:00+0000\n"
+"PO-Revision-Date: 2019-05-13 13:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555344002.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557754620.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"hd_id3149028\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Кадър</link>"
#: 10110000.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter/01.po b/source/bg/helpcontent2/source/text/swriter/01.po
index 51ef1aa79f9..557f4e97e74 100644
--- a/source/bg/helpcontent2/source/text/swriter/01.po
+++ b/source/bg/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-16 09:42+0000\n"
+"PO-Revision-Date: 2019-05-22 11:11+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1555407767.000000\n"
+"X-POOTLE-MTIME: 1558523508.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -15535,7 +15535,7 @@ msgctxt ""
"par_idN10A8E\n"
"help.text"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Съблюдаване границите на текста"
#: 05060100.xhp
msgctxt ""
@@ -15551,7 +15551,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Keep inside text boundaries</emph> option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)."
-msgstr ""
+msgstr "По подразбиране полето <emph>Съблюдаване границите на текста</emph> се отмята при отваряне на документ, създаден с версия на Writer преди OpenOffice.org 2.0. Когато създавате документ или отваряте документ във формата на Microsoft Word (*.doc), полето не се отмята."
#: 05060100.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter/guide.po b/source/bg/helpcontent2/source/text/swriter/guide.po
index ec11aebfe54..dd3362b652b 100644
--- a/source/bg/helpcontent2/source/text/swriter/guide.po
+++ b/source/bg/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-30 12:09+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: 1556626175.000000\n"
#: anchor_object.xhp
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "В лентата <emph>Стандартни</emph> щракнете върху иконата <emph>Навигатор</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Икона</alt></image>, за да отворите прозореца <emph>Навигатор</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "В прозореца <emph>Навигатор</emph> щракнете върху иконата <emph>Изглед на съдържанието</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Икона</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Щракнете върху заглавие в списъка на прозореца <emph>Навигатор</emph>, след което щракнете върху иконата <emph>Повишаване на глава</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Икона</alt></image> или <emph>Понижаване на глава</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Икона</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Щракнете върху иконата <emph>Повишаване на ниво</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Икона</alt></image> или <emph>Понижаване на ниво</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Икона</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Щракнете върху иконата <emph>Показани нива на заглавия</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Икона</alt></image>, след което изберете брой от списъка."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
index 7b5fe4d458c..0471bea46b5 100644
--- a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bg/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-30 10:05+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-29 07:24+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1556618759.000000\n"
+"X-POOTLE-MTIME: 1559114692.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -347,7 +347,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Record"
-msgstr "~Следене"
+msgstr "~Запис"
#: BibliographyCommands.xcu
msgctxt ""
@@ -7007,7 +7007,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Record"
-msgstr "~Следене"
+msgstr "~Запис"
#: DbuCommands.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Стилове за таблици"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Още полета"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Генериране на диаграмата наново"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "С раздели"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Лента с групи"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -26197,7 +26224,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Record"
-msgstr "~Следене"
+msgstr "~Регистриране"
#: WriterCommands.xcu
msgctxt ""
@@ -28726,7 +28753,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Word"
-msgstr "Маркиране на дума"
+msgstr "Избиране на дума"
#: WriterCommands.xcu
msgctxt ""
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Избиране на изречение"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/bg/sc/messages.po b/source/bg/sc/messages.po
index 00f14760089..5f883eb991a 100644
--- a/source/bg/sc/messages.po
+++ b/source/bg/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-10 08:06+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-26 09:08+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1557475618.000000\n"
+"X-POOTLE-MTIME: 1558861714.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(изключителен достъп)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "В избрания документ не са налице наименувани диапазони."
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,13 +15775,13 @@ msgstr "Управление на условно форматиране"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Диапазон"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
-msgstr ""
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Първо условие"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16381,7 +16386,7 @@ msgstr "_Функция:"
#: sc/uiconfig/scalc/ui/consolidatedialog.ui:117
msgctxt "consolidatedialog|label2"
msgid "_Consolidation ranges:"
-msgstr "_Области за консолидиране:"
+msgstr "Диапазони за консолидиране:"
#: sc/uiconfig/scalc/ui/consolidatedialog.ui:133
msgctxt "consolidatedialog|func"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Формуляр за данни"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Затваряне"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Нов запис"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Нов"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Изтриване"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Възстановяване"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Предходен запис"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "_Следващ запис"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Затваряне"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Потоци от данни на живо"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Тук въведете URL на изходния документ в локалната файлова система или в Интернет."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Преглед..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Диапазон за база от данни:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Доставчик на данни:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Низ за търсене:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Поток източник"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Резултати в:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Свиване на входния диапазон до действителните данни"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Данни"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Колони"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Редове"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Групиране по"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Интервал:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Параметри"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Помощ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "Файл"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Задайте кантовете на избраните клетки."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Увеличаване на отстъпа"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Намаляване на отстъпа"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Начало"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "Начало"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Поле"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вмъкване"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вмъкване"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "Оформление"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Подравняване на обект"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Оформление"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "Статистика"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Данни"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "Данни"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Преглед"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Преглед"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Изглед"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "Изглед"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисуване"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисуване"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "Обект"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "Обект"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Мултимедия"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Печат"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Печат"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Формуляр"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Инструменти"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Резултати от търсенето"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "Показване на този диалог"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "Разрешете диалога отново в „Инструменти > Настройки > Calc > Изглед“."
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Лист"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Клетка"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Съдържание"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Озна_чения на плана"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "Резюме на търсенето"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Прозорец"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Линии на мрежата:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Цвят:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Показване"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Показване в оцветени клетки"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Скриване"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Разделители на страници"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "П_омощни линии при местене"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Помощни елементи"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Обекти/изображения:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Диаграми:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Графични обекти:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Показване"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Скриване"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Показване"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Скриване"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Показване"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Скриване"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Обекти"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "С_инхронизиране на листовете"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Мащаб"
diff --git a/source/bg/scp2/source/calc.po b/source/bg/scp2/source/calc.po
index 3a552f679de..bfe3ef7e4e8 100644
--- a/source/bg/scp2/source/calc.po
+++ b/source/bg/scp2/source/calc.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: 2017-04-12 14:13+0200\n"
-"PO-Revision-Date: 2017-05-07 08:45+0000\n"
+"PO-Revision-Date: 2019-05-28 15:56+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: 1494146755.000000\n"
+"X-POOTLE-MTIME: 1559058963.000000\n"
#: folderitem_calc.ulf
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"STR_REG_VAL_OO_CALC\n"
"LngText.text"
msgid "OpenDocument Spreadsheet"
-msgstr "OpenDocument - електронна таблица"
+msgstr "OpenDocument – електронна таблица"
#: registryitem_calc.ulf
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"STR_REG_VAL_OO_CALC_TEMPLATE\n"
"LngText.text"
msgid "OpenDocument Spreadsheet Template"
-msgstr "OpenDocument - шаблон за електронна таблица"
+msgstr "OpenDocument – шаблон за електронна таблица"
#: registryitem_calc.ulf
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"STR_REG_VAL_UNIFORM_OFFICE_FORMAT_SPREADSHEET\n"
"LngText.text"
msgid "Uniform Office Format Spreadsheet"
-msgstr "Uniform Office Format - електронна таблица"
+msgstr "Uniform Office Format – електронна таблица"
#: registryitem_calc.ulf
msgctxt ""
@@ -190,4 +190,4 @@ msgctxt ""
"STR_REG_VAL_QUATTROPRO_SPREADSHEET\n"
"LngText.text"
msgid "Lotus Quattro Pro Spreadsheet"
-msgstr "Lotus Quattro Pro - електронна таблица"
+msgstr "Lotus Quattro Pro – електронна таблица"
diff --git a/source/bg/scp2/source/draw.po b/source/bg/scp2/source/draw.po
index 4f4079c7091..85c4011d30d 100644
--- a/source/bg/scp2/source/draw.po
+++ b/source/bg/scp2/source/draw.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2013-11-29 13:59+0000\n"
-"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2019-05-28 14:49+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385733578.0\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559054995.000000\n"
#: folderitem_draw.ulf
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"STR_REG_VAL_SO60_DRAWING\n"
"LngText.text"
msgid "%SXWFORMATNAME %SXWFORMATVERSION Drawing"
-msgstr "%SXWFORMATNAME %SXWFORMATVERSION - рисунка"
+msgstr "%SXWFORMATNAME %SXWFORMATVERSION – рисунка"
#: registryitem_draw.ulf
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"STR_REG_VAL_SO60_DRAW_TEMPLATE\n"
"LngText.text"
msgid "%SXWFORMATNAME %SXWFORMATVERSION Drawing Template"
-msgstr "%SXWFORMATNAME %SXWFORMATVERSION - шаблон за рисунка"
+msgstr "%SXWFORMATNAME %SXWFORMATVERSION – шаблон за рисунка"
#: registryitem_draw.ulf
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"STR_REG_VAL_OO_DRAW\n"
"LngText.text"
msgid "OpenDocument Drawing"
-msgstr "OpenDocument - рисунка"
+msgstr "OpenDocument – рисунка"
#: registryitem_draw.ulf
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_REG_VAL_OO_DRAW_TEMPLATE\n"
"LngText.text"
msgid "OpenDocument Drawing Template"
-msgstr "OpenDocument - шаблон за рисунка"
+msgstr "OpenDocument – шаблон за рисунка"
#: registryitem_draw.ulf
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"STR_REG_VAL_MS_VISIO_DOCUMENT\n"
"LngText.text"
msgid "Microsoft Visio 2000/XP/2003 Document"
-msgstr "Microsoft Visio 2000/XP/2003 - документ"
+msgstr "Microsoft Visio 2000/XP/2003 – документ"
#: registryitem_draw.ulf
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"STR_REG_VAL_MS_VISIO_TEMPLATE\n"
"LngText.text"
msgid "Microsoft Visio 2000/XP/2003 Template"
-msgstr "Microsoft Visio 2000/XP/2003 - шаблон"
+msgstr "Microsoft Visio 2000/XP/2003 – шаблон"
#: registryitem_draw.ulf
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"STR_REG_VAL_MS_PUBLISHER_DOCUMENT\n"
"LngText.text"
msgid "Microsoft Publisher Document"
-msgstr "Microsoft Publisher - документ"
+msgstr "Microsoft Publisher – документ"
#: registryitem_draw.ulf
msgctxt ""
diff --git a/source/bg/scp2/source/impress.po b/source/bg/scp2/source/impress.po
index 4b62a655cbd..def786c97d7 100644
--- a/source/bg/scp2/source/impress.po
+++ b/source/bg/scp2/source/impress.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2015-04-22 23:41+0200\n"
-"PO-Revision-Date: 2015-01-28 14:34+0000\n"
-"Last-Translator: Mihail <m.balabanov@gmail.com>\n"
+"PO-Revision-Date: 2019-05-28 16:22+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"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: 1422455657.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559060538.000000\n"
#: folderitem_impress.ulf
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"STR_REG_VAL_OO_PRESENT\n"
"LngText.text"
msgid "OpenDocument Presentation"
-msgstr "OpenDocument - презентация"
+msgstr "OpenDocument – презентация"
#: registryitem_impress.ulf
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"STR_REG_VAL_OO_PRESENT_TEMPLATE\n"
"LngText.text"
msgid "OpenDocument Presentation Template"
-msgstr "OpenDocument - шаблон за презентация"
+msgstr "OpenDocument – шаблон за презентация"
#: registryitem_impress.ulf
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"STR_REG_VAL_MS_POWERPOINT_PRESENTATION_OLD\n"
"LngText.text"
msgid "Microsoft PowerPoint 97-2003 Presentation"
-msgstr "Microsoft PowerPoint 97-2003 - презентация"
+msgstr "Microsoft PowerPoint 97 – 2003 – презентация"
#: registryitem_impress.ulf
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"STR_REG_VAL_MS_POWERPOINT_PRESENTATION\n"
"LngText.text"
msgid "Microsoft PowerPoint Presentation"
-msgstr "Microsoft PowerPoint - презентация"
+msgstr "Microsoft PowerPoint – презентация"
#: registryitem_impress.ulf
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"STR_REG_VAL_MS_POWERPOINT_TEMPLATE_OLD\n"
"LngText.text"
msgid "Microsoft PowerPoint 97-2003 Template"
-msgstr "Microsoft PowerPoint 97-2003 - шаблон"
+msgstr "Microsoft PowerPoint 97 – 2003 – шаблон"
#: registryitem_impress.ulf
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"STR_REG_VAL_MS_POWERPOINT_TEMPLATE\n"
"LngText.text"
msgid "Microsoft PowerPoint Template"
-msgstr "Microsoft PowerPoint - шаблон"
+msgstr "Microsoft PowerPoint – шаблон"
#: registryitem_impress.ulf
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"STR_REG_VAL_UNIFORM_OFFICE_FORMAT_PRESENTATION\n"
"LngText.text"
msgid "Uniform Office Format Presentation"
-msgstr "Uniform Office Format - презентация"
+msgstr "Uniform Office Format – презентация"
#: registryitem_impress.ulf
msgctxt ""
diff --git a/source/bg/scp2/source/math.po b/source/bg/scp2/source/math.po
index c87391ee8e3..d45e72f4c27 100644
--- a/source/bg/scp2/source/math.po
+++ b/source/bg/scp2/source/math.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-11-18 16:13+0000\n"
-"Last-Translator: Hristo <h.hristov@icobgr.info>\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: 2019-05-28 16:01+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"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: 1353255192.0\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559059264.000000\n"
#: folderitem_math.ulf
msgctxt ""
@@ -94,4 +94,4 @@ msgctxt ""
"STR_REG_VAL_OO_FORMULA\n"
"LngText.text"
msgid "OpenDocument Formula"
-msgstr "OpenDocument - формула"
+msgstr "OpenDocument – формула"
diff --git a/source/bg/scp2/source/ooo.po b/source/bg/scp2/source/ooo.po
index ae02e2f29c2..8adea34dbdf 100644
--- a/source/bg/scp2/source/ooo.po
+++ b/source/bg/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-09 12:31+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-26 09:09+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: 1554813112.000000\n"
+"X-POOTLE-MTIME: 1558861792.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Отваряне на документ"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (безопасен режим)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/bg/scp2/source/winexplorerext.po b/source/bg/scp2/source/winexplorerext.po
index 1665d44c93b..5159a5074e2 100644
--- a/source/bg/scp2/source/winexplorerext.po
+++ b/source/bg/scp2/source/winexplorerext.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-11-18 16:13+0000\n"
-"Last-Translator: Hristo <h.hristov@icobgr.info>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:35+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1353255196.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369348507.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Позволява на Microsoft Windows Explorer да показва информация за документи на %PRODUCTNAME, като например миниатюри (изисква администраторски права)."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/bg/scp2/source/writer.po b/source/bg/scp2/source/writer.po
index 90480a6c69f..aae06434ced 100644
--- a/source/bg/scp2/source/writer.po
+++ b/source/bg/scp2/source/writer.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
-"PO-Revision-Date: 2013-11-29 14:10+0000\n"
-"Last-Translator: mbalabanov <m.balabanov@gmail.com>\n"
+"POT-Creation-Date: 2015-04-22 23:41+0200\n"
+"PO-Revision-Date: 2019-05-28 10:17+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.5.0\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385734204.0\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559038661.000000\n"
#: folderitem_writer.ulf
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"STR_REG_VAL_OO_WRITER_TEMPLATE\n"
"LngText.text"
msgid "OpenDocument Text Template"
-msgstr "OpenDocument - шаблон за текст"
+msgstr "OpenDocument – шаблон за текст"
#: registryitem_writer.ulf
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"STR_REG_VAL_OO_MASTERDOC\n"
"LngText.text"
msgid "OpenDocument Master Document"
-msgstr "OpenDocument - главен документ"
+msgstr "OpenDocument – главен документ"
#: registryitem_writer.ulf
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"STR_REG_VAL_MS_WORD_DOCUMENT_OLD\n"
"LngText.text"
msgid "Microsoft Word 97-2003 Document"
-msgstr "Microsoft Word 97-2003 - документ"
+msgstr "Microsoft Word 97 – 2003 – документ"
#: registryitem_writer.ulf
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"STR_REG_VAL_MS_WORD_DOCUMENT\n"
"LngText.text"
msgid "Microsoft Word Document"
-msgstr "Microsoft Word - документ"
+msgstr "Microsoft Word – документ"
#: registryitem_writer.ulf
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"STR_REG_VAL_MS_WORD_TEMPLATE_OLD\n"
"LngText.text"
msgid "Microsoft Word 97-2003 Template"
-msgstr "Microsoft Word 97-2003 - шаблон"
+msgstr "Microsoft Word 97 – 2003 – шаблон"
#: registryitem_writer.ulf
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"STR_REG_VAL_MS_WORD_TEMPLATE\n"
"LngText.text"
msgid "Microsoft Word Template"
-msgstr "Microsoft Word - шаблон"
+msgstr "Microsoft Word – шаблон"
#: registryitem_writer.ulf
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"STR_REG_VAL_WORDPRO_DOCUMENT\n"
"LngText.text"
msgid "Lotus Word Pro Document"
-msgstr "Lotus Word Pro - документ"
+msgstr "Lotus Word Pro – документ"
#: registryitem_writer.ulf
msgctxt ""
diff --git a/source/bg/sd/messages.po b/source/bg/sd/messages.po
index ca23a944c94..fc10daf433e 100644
--- a/source/bg/sd/messages.po
+++ b/source/bg/sd/messages.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-21 19:33+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 16:22+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1555875236.000000\n"
+"X-POOTLE-MTIME: 1559060541.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -2170,7 +2170,7 @@ msgstr "PresentationPageNumberShape"
#: sd/inc/strings.hrc:401
msgctxt "SID_SD_A11Y_D_PRESENTATION"
msgid "%PRODUCTNAME Presentation"
-msgstr "%PRODUCTNAME - презентация"
+msgstr "%PRODUCTNAME – презентация"
#: sd/inc/strings.hrc:402
msgctxt "SID_SD_A11Y_P_TITLE_N_STYLE"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Щракнете за отваряне на хипервръзката: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Наименуване на дизайна за HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "Файл"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Помощ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "Файл"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Начало"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Начало"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Поле"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вмъкване"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вмъкване"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "Страница"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "Страница"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Преглед"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Преглед"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Изглед"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "Изглед"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "Текст"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "Текст"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Таблица"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "Таблица"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Преобразуване"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисуване"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисуване"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Обект"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Обект"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Мултимедия"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Формуляр"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Инструменти"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Показване на фигури"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "Файл"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Помощ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "Файл"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Начало"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Начало"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Поле"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вмъкване"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вмъкване"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "Кадър"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "Кадър"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Прожекция"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Прожекция"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Преглед"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Преглед"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Изглед"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "Изглед"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Таблица"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Таблица"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Преобразуване"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисуване"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисуване"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Обект"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Обект"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Мултимедия"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Формуляр"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Инструменти"
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index 614c090c176..ebd5784fdc1 100644
--- a/source/bg/sfx2/messages.po
+++ b/source/bg/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-09 15:54+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-26 09:14+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1554825265.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558862056.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Г: %1 М: %2 Д: %3 Ч: %4 М: %5 С: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Премахване на свойство"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Въведената стойност не е от зададения тип.\n"
"Стойността ще бъде запазена като текст."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Стилът вече съществува. Да бъде ли презаписан?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Нулиране"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Това име вече се използва."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Този стил не съществува."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Този стил не може да се използва като основен,\n"
"тъй като ще се получи циклично обръщение."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Името вече съществува като подразбиран стил.\n"
"Моля, изберете друго име."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Ако ги изтриете, текстът ще се върне към родителския стил.\n"
"Искате ли да бъдат изтрити?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Използвани стилове: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Навигатор"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Грешно потвърждение на паролата"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Изпращане"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Шрифт"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Показване на мостри"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Преглеждане на коментара за версията"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(не е зададено име)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Списък на стиловете"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Йерархично"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Режим на запълване"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Нов стил от избраното"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Действия със стилове"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Обновяване на стил"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Наистина ли желаете спиране на записа? Записаните до момента стъпки ще бъдат загубени."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Спиране на записа"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Шаблоните се инициализират за първоначална употреба."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Не е намерен подразбиран принтер.\n"
"Моля, изберете принтер и опитайте отново."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Стартирането на принтера е невъзможно.\n"
"Моля, проверете настройките му."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Принтерът е зает"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (само за четене)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Желаете ли новите настройки да се запишат\n"
"в активния документ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Желаете новите настройки да се запишат\n"
"в активния документ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Желаете ли новите настройки да се запишат\n"
"в активния документ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Документът не може да бъде затворен,\n"
"тъй като се изпълнява задание за печат."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Моля, проверете настройките на %PRODUCTNAME или на програмата за е-поща."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Кодът на грешката е $1."
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Грешка при изпращане на поща"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Документът не може да бъде редактиран, вероятно поради липсващи права за достъп. Желаете ли да редактирате негово копие?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Можете също да опитате да игнорирате заключването и да отворите файла за редактиране."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Отваряне на копие"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "Отваряне"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (поправен документ)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Документът не е резервиран за промяна в сървъра."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Помогнете ни да подобрим %PRODUCTNAME!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Включване в разработката"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Даренията ви подкрепят нашата общност по целия свят."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Даряване"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "За първи път стартирате версия %PRODUCTVERSION на %PRODUCTNAME. Искате ли да се запознаете с новостите?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Бележки към версията"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Документът е отворен в режим само за четене."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Този PDF е отворен в режим само за четене, за да се позволи подписването му."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Етикетът за класифициране на този документ е %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Преди поставяне от клипборда документът трябва да бъде класифициран."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Нивото на класификация на документа е по-ниско, отколкото на клипборда."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Ниво"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Национална сигурност:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Ограничения за износ:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Извличане"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Редактиране"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Подписване на документ"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Подписът на документа е невалиден."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Подписът е бил валиден, но документът е променен."
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Подписът е наред, но валидността на сертификата не може да бъде проверена."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Подписът е наред, но документът е подписан само частично."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Проверката за валидност на сертификата бе неуспешна и документът е подписан само частично."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Документът е подписан с валиден електронен подпис."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Показване на подписите"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Затваряне на панела"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Закачване"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Откачване"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Още настройки"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Затваряне на страничната лента"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Настройки на страничната лента"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Персонализиране"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Връщане на подразбираните"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Затваряне на страничната лента"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Ализарин"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Кошер"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Синя крива"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Чертеж"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Ярко синьо"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Стилно червено"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Фокус"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Горска птица"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Вдъхновение"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Светлини"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Сочно зелено"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Метрополис"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Тъмно синьо"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Природна илюстрация"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Молив"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Пиано"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Портфолио"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Прогрес"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Залез"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Старомоден"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Семпъл"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Автобиография"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "По подразбиране"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Съвременен"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Съвременно бизнес писмо, безсерифен шрифт"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Съвременно бизнес писмо, серифен шрифт"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Визитка с лого"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Премахване"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Изчистване на всичко"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Дължина на паролата"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Въведената от вас парола причинява проблеми със съвместимостта. Моля, въведете парола, по-къса от 52 байта или по-дълга от 55 байта."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Коментар за версията:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Име"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Тип"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Стойност"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Тип"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Да"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Не"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Добавяне на свойство"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Име"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Тип"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Стойност"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Местоположение:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Тип:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_Смяна на паролата"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Шаблон:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Свойства на „%1“"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Общи "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Описание"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Потребителски свойства"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Свойства за CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Сигурност"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Продуктът е създаден от %OOOVENDOR на базата на OpenOffice.org, © 2000–2011 Oracle и/или партньорите ѝ. %OOOVENDOR благодари на всички членове на общността, за подробности вижте http://www.libreoffice.org/ ."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/bg/shell/messages.po b/source/bg/shell/messages.po
new file mode 100644
index 00000000000..ae4c63af113
--- /dev/null
+++ b/source/bg/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-26 09:15+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: bg\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"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: 1558862141.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Отваряне на документ"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Отваряте документа\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Да го разглеждате ли искате, или да го редактирате?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Разглеждане"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Редактиране"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Отказ"
diff --git a/source/bg/starmath/messages.po b/source/bg/starmath/messages.po
index 7e3ddc23801..5c43d28f242 100644
--- a/source/bg/starmath/messages.po
+++ b/source/bg/starmath/messages.po
@@ -3,9 +3,9 @@ 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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2018-05-08 13:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-28 16:01+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525785968.000000\n"
+"X-POOTLE-MTIME: 1559059268.000000\n"
#: starmath/inc/smmod.hrc:16
msgctxt "RID_UI_SYMBOLSET_NAMES"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Примери"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Стандартен"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Курсив"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Получер"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "черно"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "синьо"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "зелено"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "червено"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "циан"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "магента"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "сиво"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "лайм"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "кестеняво"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "тъмносино"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "маслиново"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "пурпурно"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "сребърно"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "синьозелено"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "жълто"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "скриване"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "размер"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "шрифт"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "отляво"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "центриране"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "отдясно"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Команди"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Формула"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Запазва се документ..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
-msgstr "%PRODUCTNAME %PRODUCTVERSION - формула"
+msgstr "%PRODUCTNAME %PRODUCTVERSION – формула"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ГРЕШКА: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Неочакван знак"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Неочакван символ"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Очаква се \"{\""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Очаква се \"}\""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Очаква се \"(\""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Очаква се \")\""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Несъответстващи си ляв и десен символ"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Очаква се „fixed“, „sans“ или „serif“"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Неочакван символ след „size“"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Не е разрешено двойно подравняване"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Не са разрешени двойни долни или горни индекси"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Очаква се \"#\""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Очаква се цвят"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Очаква се \"RIGHT\""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Съдържание"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Заглавие"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Текст на формула"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Кантове"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Размер"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Оригинален размер"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Побиране в страницата"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Мащабиране"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Елементи"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/bg/svtools/messages.po b/source/bg/svtools/messages.po
index 4d88472ae95..5589b634353 100644
--- a/source/bg/svtools/messages.po
+++ b/source/bg/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-11 11:50+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 16:22+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554983450.000000\n"
+"X-POOTLE-MTIME: 1559060555.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Отмяна: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Възстановяване: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Повтаряне: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Неформатиран текст"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Неформатиран текст (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Растерно изображение (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Метафайл на Graphics Device Interface (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Форматиран текст (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Форматиран текст (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Рисунка на %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Изображение/анимация на StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Информация за състоянието от вътрешна връзка на Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Връзка на %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Показалец на Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Сървърен формат на Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Обектен формат на Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Обект - аплет"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Обект - приставка"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Обект - StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Обект - StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Обект - StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Обект - StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Обект - StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Обект - StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Обект - StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Обект - StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Обект - StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Обект - StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Обект - StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Обект - StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Обект - StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Обект - StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Обект - StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Обект - StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Обект - StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Обект - StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Обект - StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Обект - StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Обект - StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Обект - StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Обект - StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Обект - StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (опростен HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE връзка)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Обект - Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Обект - StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Обект - офис документ"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Информация за документ на Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Документ Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Обект - StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Графичен обект"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 - обект на Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 - обект на Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 - обект на Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 - обект на Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 - обект на Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 - обект на Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 - обект на Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 - обект на Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Метафайл на Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Обект - източник на данни"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Таблица - източник на данни"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Заявка на SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 - диалогов прозорец"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Връзка"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Формат HTML без коментари"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Не бе възможно вмъкването на обект %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Не бе възможно вмъкването на обект от файла %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Още обекти"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Непознат източник"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Име"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Размер"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Дата на промяна"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Тип"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Байта"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "кБ"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "МБ"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ГБ"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ред: %1, Колона: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Тип: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Папка"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Файл"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Празно поле"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Букви и цифри"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Обикновен"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Знаков набор"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Речник"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Пинйън"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Щрихи"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Радикали"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Уникод"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Жуйън"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Телефонен указател"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Фонетично (букви и цифри в началото)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Фонетично (букви и цифри в края)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Букви и цифри"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Речник"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Пинйън"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Радикали"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Щрихи"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Жуйън"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Фонетично (букви и цифри в началото, групиране по срички)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Фонетично (букви и цифри в началото, групиране по съгласни)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Фонетично (букви и цифри в края, групиране по срички)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Фонетично (букви и цифри в края, групиране по съгласни)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Днес"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Няма"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Светъл"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Светъл курсив"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Обикновен"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Курсив"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Получер"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Получер курсив"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Чер"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Чер курсив"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Книгов"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Получер наклонен"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Сбит"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Сбит получер"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Сбит получер курсив"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Сбит получер наклонен"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Сбит курсив"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Сбит наклонен"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Много светъл"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Много светъл курсив"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Наклонен"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Плътен"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Плътен курсив"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Един и същ шрифт ще бъде използван за принтера и за екрана."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Това е шрифт за принтер. На екрана може да изглежда различно."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Това начертание ще бъде симулирано или ще се използва най-близкото подобно начертание."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Този шрифт не е инсталиран. Ще бъде използван най-близкият наличен шрифт."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Преглед..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Преместване в началото"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Преместване наляво"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Преместване надясно"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Преместване в края"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Добавяне"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Хоризонтална скала"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Вертикална скала"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 бит, с праг"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 бит, с дифузия"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 бита, степени на сивото"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-битов цвят"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 бита, степени на сивото"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-битов цвят"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 бита (пълноцветно изображение)"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Изображението заема около %1 КБ памет."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Изображението заема около %1 КБ памет, а размерът на файла е %2 КБ."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Размерът на файла е %1 КБ."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "хост"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "порт"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Друга CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Готово"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Пауза"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Предстоящо изтриване"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Зает"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Инициализиране"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Изчакване"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Загряване"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Обработка"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Печатане"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Офлайн"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Грешка"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Непознат сървър"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Засядане на хартията"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Няма хартия"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Ръчно подаване"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Проблем с хартията"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Активен В/И"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Изходната касета е пълна"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Тонерът свършва"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Няма тонер"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Изтриване на страница"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Нужна е намеса на потребителя"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Недостатъчно памет"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Капакът е отворен"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Енергоспестяващ режим"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Подразбиран принтер"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d документ(а)"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Готово"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Напред >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Назад"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Стъпки"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<няма>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Компания"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Отдел"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Собствено име"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Фамилно име"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Улица"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Държава"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Пощенски код"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Град"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Звание"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Длъжност"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Обръщение"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Инициали"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Завършек на писмо"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Домашен телефон"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Служебен телефон"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Факс"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Е-поща"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Бележка"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Потребителско 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Потребителско 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Потребителско 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Потребителско 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Щат/област"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Служ. телефон"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Пейджър"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Мобилен телефон"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Друг телефон"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Календар"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Покана"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ на $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME изисква среда за изпълнение на Java (Java Runtime Environment - JRE), за да изпълни тази задача. Моля, инсталирайте JRE и рестартирайте %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME изисква %BITNESS-битова среда за изпълнение на Java (Java Runtime Environment - JRE), за да изпълни тази задача. Моля, инсталирайте JRE и рестартирайте %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "За изпълняване на тази задача в macOS 10.10 или по-нова версия, %PRODUCTNAME изисква Java Development Kit на Oracle. Моля, инсталирайте го и рестартирайте %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Конфигурацията на %PRODUCTNAME е променена. От %PRODUCTNAME - Preferences - %PRODUCTNAME - Разширени изберете средата за изпълнение на Java, която желаете %PRODUCTNAME да използва."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Конфигурацията на %PRODUCTNAME е променена. От Инструменти - Настройки - %PRODUCTNAME - Разширени изберете средата за изпълнение на Java, която желаете %PRODUCTNAME да използва."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME изисква среда за изпълнение на Java (Java Runtime Environment - JRE), за да изпълни задачата. Избраната JRE е дефектна. Моля, изберете друга версия или инсталирайте нова JRE и я изберете от %PRODUCTNAME - Preferences - %PRODUCTNAME - Разширени."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME изисква среда за изпълнение на Java (Java Runtime Environment - JRE), за да изпълни задачата. Избраната JRE е дефектна. Моля, изберете друга версия или инсталирайте нова JRE и я изберете от Инструменти - Настройки - %PRODUCTNAME - Разширени."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Изисква се JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Избор на JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE е дефектна"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Изходен код"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Файл с показалци"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Графика"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Конфигурационен файл"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Приложение"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Таблица от БД"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Системен файл"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Документ на MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Файл на помощта"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Документ на HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Архивен файл"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Файл дневник"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "База от данни на StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Главен документ на StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Изображение на StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Текстов файл"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Връзка"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Шаблон на StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Документ на MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Шаблон на MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Файл за пакетна обработка"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Файл"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Папка"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Текстов документ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Електронна таблица"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Презентация"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Рисунка"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Документ на HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Главен документ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Формула"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "База от данни"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
-msgstr "OpenOffice.org 1.0 - шаблон за електронна таблица"
+msgstr "OpenOffice.org 1.0 – шаблон за електронна таблица"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
-msgstr "OpenOffice.org 1.0 - шаблон за рисунка"
+msgstr "OpenOffice.org 1.0 – шаблон за рисунка"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
-msgstr "OpenOffice.org 1.0 - шаблон за презентация"
+msgstr "OpenOffice.org 1.0 – шаблон за презентация"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
-msgstr "OpenOffice.org 1.0 - шаблон за текстов документ"
+msgstr "OpenOffice.org 1.0 – шаблон за текстов документ"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Локално устройство"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Дисково устройство"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM устройство"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Мрежова връзка"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Документ на MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Шаблон на MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Прожекция на MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
-msgstr "OpenOffice.org 1.0 - формула"
+msgstr "OpenOffice.org 1.0 – формула"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 - диаграма"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr "OpenOffice.org 1.0 - рисунка"
+msgstr "OpenOffice.org 1.0 – рисунка"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
-msgstr "OpenOffice.org 1.0 - електронна таблица"
+msgstr "OpenOffice.org 1.0 – електронна таблица"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr "OpenOffice.org 1.0 - презентация"
+msgstr "OpenOffice.org 1.0 – презентация"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 - текстов документ"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
-msgstr "OpenOffice.org 1.0 - главен документ"
+msgstr "OpenOffice.org 1.0 – главен документ"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Документ на MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument - база от данни"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
-msgstr "OpenDocument - рисунка"
+msgstr "OpenDocument – рисунка"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
-msgstr "OpenDocument - формула"
+msgstr "OpenDocument – формула"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
-msgstr "OpenDocument - главен документ"
+msgstr "OpenDocument – главен документ"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
-msgstr "OpenDocument - презентация"
+msgstr "OpenDocument – презентация"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
-msgstr "OpenDocument - електронна таблица"
+msgstr "OpenDocument – електронна таблица"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument - текст"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
-msgstr "OpenDocument - шаблон за електронна таблица"
+msgstr "OpenDocument – шаблон за електронна таблица"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
-msgstr "OpenDocument - шаблон за рисунка"
+msgstr "OpenDocument – шаблон за рисунка"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
-msgstr "OpenDocument - шаблон за презентация"
+msgstr "OpenDocument – шаблон за презентация"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
-msgstr "OpenDocument - шаблон за текст"
+msgstr "OpenDocument – шаблон за текст"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Разширение на %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Правописна проверка с Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Сричкопренасяне с Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Синонимен речник MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Списък с игнорирани думи"
@@ -4127,7 +4129,7 @@ msgstr "Илокански"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Английски (Замбия)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/bg/svx/messages.po b/source/bg/svx/messages.po
index 452c8e97222..a38fdebd03e 100644
--- a/source/bg/svx/messages.po
+++ b/source/bg/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-10 08:07+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-26 09:18+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1557475628.000000\n"
+"X-POOTLE-MTIME: 1558862286.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7918,6 +7918,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "От ляво надясно (вертикално)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "От долу нагоре, от ляво надясно (вертикално)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10510,7 +10515,7 @@ msgstr "Номер на част:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Текст на част:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11333,42 +11338,42 @@ msgstr "Светлинен източник 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Цвят на светлина 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Цвят на светлина 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Цвят на светлина 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Цвят на светлина 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Цвят на светлина 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Цвят на светлина 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Цвят на светлина 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Цвят на светлина 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12185,82 +12190,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Задайте вертикалното отместване за градиента на прозрачността в проценти спрямо центъра. 50% е центърът по вертикала."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Редактор на контури"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Прилагане"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Работна област"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Избор"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Правоъгълник"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Елипса"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Многоъгълник"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Редактиране по възли"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Местене на възли"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Вмъкване на възли"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Изтриване на възли"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Автоконтур"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Отмяна "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Възстановяване"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Пипета"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Цветови толеранс"
@@ -12571,112 +12581,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Долен колонтитул"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Редактор за ImageMap"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Прилагане"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Отваряне..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Записване..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Затваряне"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Избор"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Правоъгълник"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Елипса"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Многоъгълник"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Рисуван многоъгълник"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Редактиране по възли"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Местене на възли"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Вмъкване на възли"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Изтриване на възли"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Отмяна "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Възстановяване"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Активна"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Макрос..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Свойства..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Адрес:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Рамка:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Текст:"
@@ -13470,6 +13475,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"В момента %PRODUCTNAME се изпълнява в безопасен режим, който временно забранява потребителската ви конфигурация и разширения.\n"
+"\n"
+"За да върнете %PRODUCTNAME в работещо състояние, може да направите една или няколко от следните промени."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index d24c89df513..c618efe7833 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-21 22:05+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-26 11:53+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: LibreOffice\n"
-"X-POOTLE-MTIME: 1555884337.000000\n"
+"X-POOTLE-MTIME: 1558871626.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,7 +3118,7 @@ msgid "Change object title of $1"
msgstr "Промяна на заглавието на обекта $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Промяна на описанието на обекта $1"
@@ -7679,7 +7679,7 @@ msgstr "Знак"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "Стандартни"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -9898,7 +9898,7 @@ msgstr "_Обръщане на четните страници"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Съблюдаване границите на текста"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|label11"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Помощ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "Файл"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Начало"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Начало"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вмъкване"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вмъкване"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Оформление"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Оформление"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Препратки"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Препратки"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Преглед"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Преглед"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Изглед"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "Изглед"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Таблица"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Таблица"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисуване"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисуване"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Обект"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Обект"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Мултимедия"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Мултимедия"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Печат"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Печат"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Формуляр"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Формуляр"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Инструменти"
@@ -12160,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "Файл"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "Файл"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "Начало"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "Начало"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Вмъкване"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "Вмъкване"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Обтичане"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Оформление"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Оформление"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Препратки"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Препратки"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Преглед"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Преглед"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "Изглед"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "Изглед"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Таблица"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "Таблица"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Изображение"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Изображение"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Рисуване"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "Рисуване"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Обект"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "Обект"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "Мултимедия"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "Мултимедия"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Печат"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "Печат"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Формуляр"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Формуляр"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Инструменти"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Инструменти"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12449,7 +12449,7 @@ msgstr "Обект"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "Рамка"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12659,7 +12659,7 @@ msgstr "Мултимедия"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "Обект"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13372,8 +13372,8 @@ msgstr "Променливи интервали в ръчно завършени
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Защита на формуляр"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Съдържание, указател или библиография"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Мостра"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Мостра"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Тип"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Елементи"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Стилове"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Колони"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Фон"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Мостра"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Ниво"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "Тип"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Редактиране..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Заглавие:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Тип:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Съдържание"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Азбучен указател"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Таблица на фигурите"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Указател на таблиците"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Потребителски"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Таблица на обектите"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Библиография"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Защита срещу ръчни промени"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Тип и заглавие"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "За:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Целия документ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Глава"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Изчисляване до ниво:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Създаване на указател или съдържание"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "План"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Маркери за указателя"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Таблици"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Текстови рамки"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Графики"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE обекти"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Ниво от главата източник"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Допълнителни стилове"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Стилове"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Присвояване на стилове..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Надписи"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Имена на обекти"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Категория:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Показване:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Препратки"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Категория и номер"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Текст на надписа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Създаване от"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Създаване от следните обекти"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Скоби:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Номериране на елементите"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[няма]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Форматиране на елементите"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Комбиниране на еднаквите елементи"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Комбиниране на еднаквите елементи с p/pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Комбиниране с -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Зачитане на регистъра"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Автоматични главни букви в елементите"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Ключове като отделни елементи"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Файл за съгласуване"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Файл"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Настройки"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Език:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Тип на ключа:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Сортиране"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Нива"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Абзацни стилове"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "По подразбиране"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Редактиране"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Приписване"
diff --git a/source/bg/sysui/desktop/share.po b/source/bg/sysui/desktop/share.po
index 52813812cc9..735a7173df3 100644
--- a/source/bg/sysui/desktop/share.po
+++ b/source/bg/sysui/desktop/share.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2016-05-07 21:35+0200\n"
-"PO-Revision-Date: 2016-05-18 12:04+0000\n"
+"PO-Revision-Date: 2019-05-28 16:22+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1463573065.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559060578.000000\n"
#: documents.ulf
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"text-template\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Text Document Template"
-msgstr "OpenOffice.org 1.0 - шаблон за текстов документ"
+msgstr "OpenOffice.org 1.0 – шаблон за текстов документ"
#: documents.ulf
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"master-document\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Master Document"
-msgstr "OpenOffice.org 1.0 - главен документ"
+msgstr "OpenOffice.org 1.0 – главен документ"
#: documents.ulf
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"formula\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr "OpenOffice.org 1.0 - формула"
+msgstr "OpenOffice.org 1.0 – формула"
#: documents.ulf
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"presentation\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr "OpenOffice.org 1.0 - презентация"
+msgstr "OpenOffice.org 1.0 – презентация"
#: documents.ulf
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"presentation-template\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Presentation Template"
-msgstr "OpenOffice.org 1.0 - шаблон за презентация"
+msgstr "OpenOffice.org 1.0 – шаблон за презентация"
#: documents.ulf
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"drawing\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr "OpenOffice.org 1.0 - рисунка"
+msgstr "OpenOffice.org 1.0 – рисунка"
#: documents.ulf
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"drawing-template\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Drawing Template"
-msgstr "OpenOffice.org 1.0 - шаблон за рисунка"
+msgstr "OpenOffice.org 1.0 – шаблон за рисунка"
#: documents.ulf
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"spreadsheet\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Spreadsheet"
-msgstr "OpenOffice.org 1.0 - електронна таблица"
+msgstr "OpenOffice.org 1.0 – електронна таблица"
#: documents.ulf
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"spreadsheet-template\n"
"LngText.text"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
-msgstr "OpenOffice.org 1.0 - шаблон за електронна таблица"
+msgstr "OpenOffice.org 1.0 – шаблон за електронна таблица"
#: documents.ulf
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"oasis-text-template\n"
"LngText.text"
msgid "OpenDocument Text Template"
-msgstr "OpenDocument - шаблон за текст"
+msgstr "OpenDocument – шаблон за текст"
#: documents.ulf
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"oasis-master-document\n"
"LngText.text"
msgid "OpenDocument Master Document"
-msgstr "OpenDocument - главен документ"
+msgstr "OpenDocument – главен документ"
#: documents.ulf
msgctxt ""
@@ -134,7 +134,7 @@ msgctxt ""
"oasis-master-document-template\n"
"LngText.text"
msgid "OpenDocument Master Document Template"
-msgstr "OpenDocument - шаблон за главен документ"
+msgstr "OpenDocument – шаблон за главен документ"
#: documents.ulf
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"oasis-formula\n"
"LngText.text"
msgid "OpenDocument Formula"
-msgstr "OpenDocument - формула"
+msgstr "OpenDocument – формула"
#: documents.ulf
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"oasis-presentation\n"
"LngText.text"
msgid "OpenDocument Presentation"
-msgstr "OpenDocument - презентация"
+msgstr "OpenDocument – презентация"
#: documents.ulf
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"oasis-presentation-flat-xml\n"
"LngText.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr "OpenDocument - презентация (плосък XML)"
+msgstr "OpenDocument – презентация (плосък XML)"
#: documents.ulf
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"oasis-presentation-template\n"
"LngText.text"
msgid "OpenDocument Presentation Template"
-msgstr "OpenDocument - шаблон за презентация"
+msgstr "OpenDocument – шаблон за презентация"
#: documents.ulf
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"oasis-drawing\n"
"LngText.text"
msgid "OpenDocument Drawing"
-msgstr "OpenDocument - рисунка"
+msgstr "OpenDocument – рисунка"
#: documents.ulf
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"oasis-drawing-flat-xml\n"
"LngText.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr "OpenDocument - рисунка (плосък XML)"
+msgstr "OpenDocument – рисунка (плосък XML)"
#: documents.ulf
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"oasis-drawing-template\n"
"LngText.text"
msgid "OpenDocument Drawing Template"
-msgstr "OpenDocument - шаблон за рисунка"
+msgstr "OpenDocument – шаблон за рисунка"
#: documents.ulf
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"oasis-spreadsheet\n"
"LngText.text"
msgid "OpenDocument Spreadsheet"
-msgstr "OpenDocument - електронна таблица"
+msgstr "OpenDocument – електронна таблица"
#: documents.ulf
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"oasis-spreadsheet-flat-xml\n"
"LngText.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr "OpenDocument - електронна таблица (плосък XML)"
+msgstr "OpenDocument – електронна таблица (плосък XML)"
#: documents.ulf
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"oasis-spreadsheet-template\n"
"LngText.text"
msgid "OpenDocument Spreadsheet Template"
-msgstr "OpenDocument - шаблон за електронна таблица"
+msgstr "OpenDocument – шаблон за електронна таблица"
#: documents.ulf
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"ms-powerpoint-presentation\n"
"LngText.text"
msgid "Microsoft PowerPoint Presentation"
-msgstr "Microsoft PowerPoint - презентация"
+msgstr "Microsoft PowerPoint – презентация"
#: documents.ulf
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"ms-word-document\n"
"LngText.text"
msgid "Microsoft Word Document"
-msgstr "Microsoft Word - документ"
+msgstr "Microsoft Word – документ"
#: documents.ulf
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"ms-word-document2\n"
"LngText.text"
msgid "Microsoft Word Document"
-msgstr "Microsoft Word - документ"
+msgstr "Microsoft Word – документ"
#: documents.ulf
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"ms-excel-template-12\n"
"LngText.text"
msgid "Microsoft Excel Worksheet Template"
-msgstr "Microsoft Excel - шаблон за лист"
+msgstr "Microsoft Excel – шаблон за лист"
#: documents.ulf
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"ms-powerpoint-presentation-12\n"
"LngText.text"
msgid "Microsoft PowerPoint Presentation"
-msgstr "Microsoft PowerPoint - презентация"
+msgstr "Microsoft PowerPoint – презентация"
#: documents.ulf
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"ms-powerpoint-template-12\n"
"LngText.text"
msgid "Microsoft PowerPoint Presentation Template"
-msgstr "Microsoft PowerPoint - шаблон за презентация"
+msgstr "Microsoft PowerPoint – шаблон за презентация"
#: documents.ulf
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"ms-word-document-12\n"
"LngText.text"
msgid "Microsoft Word Document"
-msgstr "Microsoft Word - документ"
+msgstr "Microsoft Word – документ"
#: documents.ulf
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"ms-word-template-12\n"
"LngText.text"
msgid "Microsoft Word Document Template"
-msgstr "Microsoft Word - шаблон за документ"
+msgstr "Microsoft Word – шаблон за документ"
#: documents.ulf
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"openxmlformats-officedocument-presentationml-presentation\n"
"LngText.text"
msgid "Microsoft PowerPoint Presentation"
-msgstr "Microsoft PowerPoint - презентация"
+msgstr "Microsoft PowerPoint – презентация"
#: documents.ulf
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"openxmlformats-officedocument-presentationml-template\n"
"LngText.text"
msgid "Microsoft PowerPoint Presentation Template"
-msgstr "Microsoft PowerPoint - шаблон за презентация"
+msgstr "Microsoft PowerPoint – шаблон за презентация"
#: documents.ulf
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"openxmlformats-officedocument-spreadsheetml-template\n"
"LngText.text"
msgid "Microsoft Excel Worksheet Template"
-msgstr "Microsoft Excel - шаблон за лист"
+msgstr "Microsoft Excel – шаблон за лист"
#: documents.ulf
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"openxmlformats-officedocument-wordprocessingml-document\n"
"LngText.text"
msgid "Microsoft Word Document"
-msgstr "Microsoft Word - документ"
+msgstr "Microsoft Word – документ"
#: documents.ulf
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"openxmlformats-officedocument-wordprocessingml-template\n"
"LngText.text"
msgid "Microsoft Word Document Template"
-msgstr "Microsoft Word - шаблон за документ"
+msgstr "Microsoft Word – шаблон за документ"
#: documents.ulf
msgctxt ""
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index 3eb33446a44..01db6af7dd4 100644
--- a/source/bn-IN/cui/messages.po
+++ b/source/bn-IN/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-16 06:42+0000\n"
"Last-Translator: parnas <parnasghosh@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1642,107 +1642,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "কোন সীমানা নয়"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "শুধুমাত্র বহিঃস্থ সীমানা নির্ধারণ"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "বহিঃস্থ সীমানা ও অনুভূমিক রেখা নির্ধারণ"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "বহিঃস্থ সীমানা ও সব অন্তঃস্থ রেখা নির্ধারণ"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "অন্তঃস্থ রেখা পরিবর্তন না করে বহিঃস্থ সীমানা নির্ধারণ"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "শুধুমাত্র তির্যক রেখা নির্ধারণ"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "চারটি সীমানার প্রতিটি নির্ধারণ"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "শুধুমাত্র বাম ও ডান সীমানা নির্ধারণ"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "শুধুমাত্র শীর্ষ ও নিম্ন সীমানা নির্ধারণ"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "শুধুমাত্র বাম সীমানা নির্ধারণ"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "শীর্ষ ও নিম্ন সীমানা এবং সব অভ্যন্তরীণ রেখা নির্ধারণ"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "বাম ও ডান সীমানা এবং সব অভ্যন্তরীণ রেখা নির্ধারণ"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "কোন ছায়া নয়"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "নিচে ডানে ছায়া ফেলা"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "উপরে ডানে ছায়া ফেলা"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "নিচে বামে ছায়া ফেলা"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "উপরে বামে ছায়া ফেলা"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1785,7 +1780,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1905,7 +1900,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2145,7 +2140,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2400,12 +2395,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2475,7 +2470,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2555,7 +2550,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2796,7 +2791,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3400,66 +3395,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME সম্পর্কে"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "কৃতিত্ব (_d)"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ওয়েবসাইট (_W)"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "বিল্ড অাইডি: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "স্থানীয়: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME একটি আধুনিক ও সহজে ব্যবহারযোগ্য ওপেন-সোর্স প্রডাক্টিভিটি স্যুট যার সাহায্যে ওয়ার্ড প্রসেসর, স্প্রেড-শিট, উপস্থাপনা ইত্যাদি প্রস্তুত করা যাবে।"
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "OpenOffice.org-এর উপরে ভিত্তি করে LibreOffice গঠিত।"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME হল LibreOffice'র একটি অংশ, যা OpenOffice.org -এর উপরে ভিত্তি করে গঠিত।"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "এই প্রকাশনা সরবরাহ করেছে %OOOVENDOR।"
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3576,17 +3576,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "প্রতিস্থাপন (_R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "প্রতিস্থাপন (_c)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "সহকারে (_W):"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "শুধুমাত্র টেক্সট (_T)"
@@ -4413,6 +4413,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "ন্যূনতম শব্দের দৈর্ঘ্য"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5524,27 +5684,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "বৈশিষ্ট্যাবলী"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ফ্রেম (_r):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "নাম (_N):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "বিকল্প পাঠ্য (_t):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "বিবরণ (_D):"
@@ -9063,80 +9223,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়তা"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ডায়ালগ ব্যবহার (_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "খুলুন/সংরক্ষণ ডায়লগ"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ডায়ালগ ব্যবহার (_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "মুদ্রণ ডায়ালগ"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "মুদ্রণ \"নথি পরিবর্তিত\" অবস্থান নির্ধারণ করেছে (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "নথির অবস্থা"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "মধ্যবর্তী বছর দিয়ে হিসাব করুন (_I)"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "এবং"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "বছর (দুই সংখ্যার)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "ব্যবহৃত তথ্য সংগ্রহ করুন এবং ডকুমেন্ট ফাউন্ডেশনে পাঠান"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সিস্টেম আরম্ভ করার সময় %PRODUCTNAME লোড"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray কুইকস্টার্টার সক্রিয়"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME কুইকস্টার্টার"
@@ -11020,25 +11180,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "নিজস্ব থীম"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "বা এক্সটেনশন মারফত ইনস্টল করা থীমগুলি থেকে নির্বাচন করুন:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox থীমগুলি"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11666,102 +11811,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "নিরাপত্তা বিকল্প"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Firefox থীম নির্বাচন করুন"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12770,27 +12819,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/bn-IN/extensions/messages.po b/source/bn-IN/extensions/messages.po
index 7b522c5b201..f88f690415e 100644
--- a/source/bn-IN/extensions/messages.po
+++ b/source/bn-IN/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "%1 টেবিলের জন্য কলামের বহির্বিন্যাস"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "সংক্ষিপ্ত নাম (_S)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "লেখক (_A)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "প্রকাশক (_P)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "অধ্যায় (_C)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "সম্পাদক"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "ধরন (_T)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "বৎসর (_Y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "শিরোনাম (_l)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "ঠিকানা (_d)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "পৃষ্ঠা (_g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "সংস্করণ (_i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "বইয়ের শিরোনাম (_B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "ভলিউম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "প্রকাশনার ধরন (_y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "প্রতিষ্ঠান (_z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "প্রতিষ্ঠান (_u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "বিশ্ববিদ্যালয় (_v)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "রিপোর্টের ধরন (_p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "মাস (_M)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "সাময়িকী (_J)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "সংখ্যা (_e)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "ক্রম (_r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "উদ্ধৃতি (_o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "দ্রষ্টব্য (_N)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "ব্যবহারকারী-নির্ধারিত ক্ষেত্র _১"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "ব্যবহারকারী-নির্ধারিত ক্ষেত্র _২"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "ব্যবহারকারী-নির্ধারিত ক্ষেত্র _৩"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "ব্যবহারকারী-নির্ধারিত ক্ষেত্র _৪"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "ব্যবহারকারী-নির্ধারিত ক্ষেত্র _৫"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "কলামের নামসমূহ"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "নতুন ধরনের ডাটার জন্য একটি নাম টাইপ করুন:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "সংযোগ ক্ষেত্রসমূহ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "পরামর্শ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "মাস্টার ফরমের বর্তমান রেকর্ড সম্পর্কিত বিস্তারিত তথ্য প্রদর্শন করতে সাব ফরম ব্যবহার করা যেতে পারে। এটা করতে চাইলে, সাব ফরমের কোন কলাম মাস্টার ফরমের কোন কলামের সাথে মিলে তা আপনি সুনির্দিষ্টভাবে উল্লেখ করে দিতে পারেন।"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "লেবেল"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "লেবেল"
diff --git a/source/bn-IN/helpcontent2/source/auxiliary.po b/source/bn-IN/helpcontent2/source/auxiliary.po
index b79c236c4c1..6af0d20a127 100644
--- a/source/bn-IN/helpcontent2/source/auxiliary.po
+++ b/source/bn-IN/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "টুলবার"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "মেনু"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "টুলবার"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,17 +699,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/guide.po b/source/bn-IN/helpcontent2/source/text/sbasic/guide.po
index 24d7c08664a..c2de7495de8 100644
--- a/source/bn-IN/helpcontent2/source/text/sbasic/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "প্রোগ্রাম কোডের সাথে একটি ডায়ালগ খোলা হচ্ছে"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/python.po b/source/bn-IN/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/bn-IN/helpcontent2/source/text/sbasic/python.po
+++ b/source/bn-IN/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
index 014024278ca..a2120490451 100644
--- a/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bn-IN/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME বেসিক সহায়তা</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po b/source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po
index 207824fad19..1301a1692d6 100644
--- a/source/bn-IN/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bn-IN/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index fde93315304..b74b400d633 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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">আপনি যে ডাটা অন্তর্ভুক্ত করতে চান সেই ডাটা বিশিষ্ট ফাইল চিহ্নিত করুন।</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">টেবিল বা ডাটা পরিসর নির্বাচন করুন, যা আপনি অন্তর্ভুক্ত করতে চান।</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">ঘর পরিসর উল্লেখ করে যা আপনি <emph>সংহতকরণ পরিসর </emph>বাক্সের সাহায্যে সংহত করতে চান। পাতাতে একটি ঘর পরিসর নির্বাচন করুন, এবং তারপর <emph>সংযুক্ত</emph> ক্লিক করুন। আপনি <emph>উৎস তথ্য পরিসর </emph>তালিকা হতে একটি পূর্বনির্ধারিত ঘরের নামও নির্বাচন করতে পারেন।</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/schart/00.po b/source/bn-IN/helpcontent2/source/text/schart/00.po
index 00e8c258807..774e22c08e6 100644
--- a/source/bn-IN/helpcontent2/source/text/schart/00.po
+++ b/source/bn-IN/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 15:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/00.po b/source/bn-IN/helpcontent2/source/text/shared/00.po
index 9e5b555bc9c..5bf82cb9257 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/00.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index f55f38d9e71..e900c0682eb 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/01.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/02.po b/source/bn-IN/helpcontent2/source/text/shared/02.po
index 19cf4f1c7ca..f724900ceef 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/02.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/shared/guide.po b/source/bn-IN/helpcontent2/source/text/shared/guide.po
index 4ae5475ee12..54c5fa73b5e 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/optionen.po b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
index 263118f7bcd..35a3009dce3 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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/bn-IN/helpcontent2/source/text/simpress/01.po b/source/bn-IN/helpcontent2/source/text/simpress/01.po
index ad106173057..c496c641489 100644
--- a/source/bn-IN/helpcontent2/source/text/simpress/01.po
+++ b/source/bn-IN/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/guide.po b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
index f4f84591ebf..5a66b067e5e 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "<emph>আদর্শ বার</emph> এ, <emph> ন্যাভিগেটর</emph> খুলতে <emph>ন্যাভিগেটর</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\"> আইকনে</alt></image> ক্লিক করুন।"
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
index e1dcf080fee..b42548f3c12 100644
--- a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -23728,6 +23728,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26072,6 +26081,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26090,6 +26108,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/bn-IN/sc/messages.po b/source/bn-IN/sc/messages.po
index 27ad668584b..d4022182f0f 100644
--- a/source/bn-IN/sc/messages.po
+++ b/source/bn-IN/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15670,6 +15670,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(বিশেষ প্রবেশাধিকার)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16226,12 +16231,12 @@ msgstr "শর্তাধীন ফর্ম্যাটিং ব্যবস
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17487,83 +17492,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "ডাটা ফরম"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "বন্ধ (_C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "নতুন রেকর্ড"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "নতুন (_N)"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "মুছে ফেলা (_D)"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "পুনরুদ্ধার করুন (_R)"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "পূর্ববর্তী রেকর্ড (_P)"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "পরবর্তী রেকর্ড (_x)"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "বন্ধ (_C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "লাইভ ডেটা স্ট্রীম"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-#, fuzzy
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "এখানে স্থানীয় ফাইল সিস্টেম বা ইন্টারনেটে সোর্স ডকুমেন্টের URL দিন।"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ব্রাউজ... (_B)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ডাটাবেসের পরিসর"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "সোর্স স্ট্রীম"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19295,32 +19258,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "এর ফলাফল:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "তারিখ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "কলাম"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "সারি"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "দ্বারা গ্রুপ করা"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "বিরতি:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "প্যারামিটার"
@@ -19470,167 +19438,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22190,17 +22160,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "অনুসন্ধানের ফলাফল"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24107,107 +24087,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "অাউটলাইন প্রতীক (_O)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "উইন্ডো"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "গ্রিড রেখা (_G):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "রং (_C):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "প্রদর্শন"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "রঙীন সেলগুলিতে দেখান"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "আড়াল করুন"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "পৃষ্ঠা বিভাজক (_P)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "স্থানান্তর করার সময় হেল্পলাইন (_w)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "ভিজ্যুয়াল সহায়তা"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "অবজেক্ট (_j)/ছবি:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "লেখচিত্র (_r):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "অঙ্কন বস্তুসমূহ (_D):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "প্রদর্শন"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "আড়াল"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "প্রদর্শন"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "আড়াল করুন"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "প্রদর্শন"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "আড়াল করুন"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "অবজেক্ট"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "শীট সমলয় (_y)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "জুম"
diff --git a/source/bn-IN/scp2/source/ooo.po b/source/bn-IN/scp2/source/ooo.po
index 67fc6be963b..5f91d066c95 100644
--- a/source/bn-IN/scp2/source/ooo.po
+++ b/source/bn-IN/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -36,6 +36,14 @@ msgstr "নথি খুলুন"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/bn-IN/scp2/source/winexplorerext.po b/source/bn-IN/scp2/source/winexplorerext.po
index f885e9f217d..483dcbb6bdf 100644
--- a/source/bn-IN/scp2/source/winexplorerext.po
+++ b/source/bn-IN/scp2/source/winexplorerext.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-09-07 15:05+0000\n"
-"Last-Translator: runab <runa.misc@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:36+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\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: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1347030304.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369348619.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "মাইক্রোসফট উইন্ডোজ এক্সপ্লোরারকে %PRODUCTNAME নথি সম্পর্কিত তথ্য, যেমন- থাম্বনেইল প্রাকদর্শন প্রদর্শন সক্রিয় করে।"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/bn-IN/sd/messages.po b/source/bn-IN/sd/messages.po
index 0a343ec9a33..17e3bc87ef5 100644
--- a/source/bn-IN/sd/messages.po
+++ b/source/bn-IN/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2626,6 +2626,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3083,164 +3088,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML নকশার নামকরণ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4694,160 +4884,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "পরিবর্তনগুলি দেখান"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/bn-IN/sfx2/messages.po b/source/bn-IN/sfx2/messages.po
index 58909e57265..8b0ddac7c6d 100644
--- a/source/bn-IN/sfx2/messages.po
+++ b/source/bn-IN/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-11 07:50+0000\n"
"Last-Translator: somu7777 <Soumya.chowdhury7777@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -914,11 +914,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "ব: %1 মা: %2 দি: %3 ঘ: %4 মি: %5 সে: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "বৈশিষ্ট্য অপসারণ করুন"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -927,27 +922,27 @@ msgstr ""
"সন্নিবেশকৃত মান নির্ধারিত ধরনের সাথে মিলে না।\n"
"মানটি পাঠ্য হিসেবে সংরক্ষণ করা হবে।"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "শৈলীটি ইতিমধ্যেই বিদ্যমান। প্রতিস্থাপন করা হবে কি?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "পুনঃনির্ধারণ (~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "এই নামটি ইতোমধ্যে ব্যবহৃত হচ্ছে।"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "এই শৈলীটি বিদ্যমান নয়।"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -956,7 +951,7 @@ msgstr ""
"এই শৈলীটি ভিত্তির শৈলী হিসেবে ব্যবহার করা যায় না,\n"
"কারণ এটি পুনরাবৃত্ত রেফঅরেন্সে প্রভাব ফেলবে।"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -965,7 +960,7 @@ msgstr ""
"নাম ইতোমধ্যে পূর্বনির্ধারিত শৈলী হিসেবে বিদ্যমান।\n"
"অনুগ্রহ করে অন্য নাম পছন্দ করুন।"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -976,92 +971,92 @@ msgstr ""
"অাপনি এই শৈলীগুলি মুছে দিলে, পাঠ্য অভিভাবকীয় শৈলীতে ফিরে যাবে।\n"
"অাপনি কি তাসত্বেও এই শৈলীগুলি মুছে দিতে চান?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "ব্যবহৃত শৈলী:"
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "পরিক্রমক"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "ত্রুটিপূর্ণ পাসওয়ার্ড নিশ্চিতকরণ"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "প্রেরণ"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ফন্ট"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "সংস্করণ মন্তব্য সন্নিবেশ করান"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(কোনো নাম দেওয়া হয়নি)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "শৈলীর তালিকা"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "ক্রমবিভক্ত"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "বিন্যাসের ভরাট মোড"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "নির্বাচন থেকে নতুন শৈলী"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "স্টাইল আপডেট করুন"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "আপনি কি আসলেই রেকর্ড করা বাতিল করতে চান? এ পর্যন্ত রেকর্ডকৃত সব পদক্ষেপ হারিয়ে যাবে।"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "রেকর্ডকরণ বাতিল"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ফর্মাসমূহ প্রথম-বার ব্যবহারের জন্য প্রস্তুত করা হযেছে।"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1070,7 +1065,7 @@ msgstr ""
"কোনো পূর্বনির্ধারিত মুদ্রণযন্ত্র পাওয়া যায়নি।\n"
"অনুগ্রহ করে একটি মুদ্রণযন্ত্র নির্বাচন করুন এবং আবার চেষ্টা করুন।"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1079,17 +1074,17 @@ msgstr ""
"মুদ্রণযন্ত্র চালু করা যাবে না।\n"
"অনুগ্রহ করে আপনার মুদ্রণযন্ত্রের কনফিগারেশন পরীক্ষা করুন।"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "মুদ্রণযন্ত্রটি ব্যস্ত"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (শুধুমাত্র-পাঠযোগ্য)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1099,7 +1094,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি এবং স্থিতিবিন্যাস পরিবর্তন করা হয়েছে।\n"
"আপনি কি নতুন বিন্যাসটি সক্রিয় নথিতে সংরক্ষণ করতে চান?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1109,7 +1104,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি পরিবর্তন করা হয়েছে।\n"
"নতুন বিন্যাস কি সক্রিয় নথিতে সংরক্ষণ করা হবে?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1119,7 +1114,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি এবং স্থিতিবিন্যাস পরিবর্তন করা হয়েছে।\n"
"আপনি কি নতুন বিন্যাসটি সক্রিয় নথিতে সংরক্ষণ করতে চান?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1128,7 +1123,7 @@ msgstr ""
"নথিটি বন্ধ করা যাবে না কারণ\n"
"একটি মুদ্রণ কাজ চলছে।"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1136,7 +1131,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,17 +1139,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "সম্ভবত অনুপস্থিত প্রবেশাধিকারের কারণে, এই নথিটি সম্পাদনা করা যাবে না। আপনি কি নথির একটি অনুলিপি সম্পাদনা করতে চান?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1162,351 +1157,361 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "অনুলিপি খুলুন (~C)"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "খোলা (~O)"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "(সংশোধিত নথি)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "এই ডকুমেন্ট সার্ভারে চেক অাউট করা হয়নি।"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "আমাদের %PRODUCTNAME আরও ভাল করতে সহায়তা করুন!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "জড়িত"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "এই নথি শুধুমাত্র-পাঠযোগ্য মোডে খোলা হয়।"
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "এই নথির শ্রেণীবিভাগ লেবেলটি %1।"
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "ক্লিপবোর্ডটি পেস্ট করার আগে এই নথিটি শ্রেণীবদ্ধ করা আবশ্যক।"
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "ক্লিপবোর্ডের চেয়ে এই নথিতে নিম্ন শ্রেণীকরণ স্তর রয়েছে।"
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "স্তর"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "জাতীয় নিরাপত্তা:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "রপ্তানি নিয়ন্ত্রণ:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "চেক আউট"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "নথির সম্পাদনা"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "নথিতে স্বাক্ষর করুন..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "এই নথিতে একটি অবৈধ স্বাক্ষর আছে।"
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "স্বাক্ষর বৈধ ছিল, কিন্তু নথি সংশোধন করা হয়েছে"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "স্বাক্ষর ঠিক আছে, কিন্তু শংসাপত্র যাচাই করা যায়নি।"
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "স্বাক্ষরটি ঠিক আছে, তবে দস্তাবেজ কেবল আংশিক স্বাক্ষরিত।"
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "এই নথিটি ডিজিটাল স্বাক্ষরিত এবং স্বাক্ষর বৈধ।"
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "স্বাক্ষর দেখান"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "প্যান বন্ধ করুন"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ডক"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "আনডক"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "অারো বিকল্প"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "পার্শ্ববার ডেক বন্ধ করুন"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "সাইডবার সেটিংস"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "স্বনির্ধারণ"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "ডিফল্ট পুনঃস্থাপন করুন"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "সাইডবার বন্ধ করুন"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "মৌচাক"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "নীল কার্ভ"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "ব্লুপ্রিন্ট পরিকল্পনা"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "উজ্জল নীল"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "ক্লাসিক লাল"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ডিএনএ"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "কেন্দ্রবিন্দু"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "ছাপ"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "অনুপ্রেরণা"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "আলো"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "লুস সবুজ"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "মহানগরী"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "মাঝরাতের নিল"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "প্রকৃতি চিত্রণ"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "পেন্সিল"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "পিয়ানো"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "অগ্রগতি"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "সূর্যাস্ত"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "মদ"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "প্রাণবন্ত"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "সিভি"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "জীবনবৃত্তান্ত"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "অাধুনিক"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "আধুনিক ব্যবসা চিঠি সানস-সরিফ"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "আধুনিক ব্যবসা চিঠি serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "লোগো সঙ্গে ব্যবসা কার্ড"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "সরিয়ে ফেলুন"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "সব মুছে ফেলুন"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "পাসওয়ার্ড দৈর্ঘ্য"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1852,32 +1857,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "সংস্করণ মন্তব্য:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "নাম"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "ধরন"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "মান"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "ধরন"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "হ্যাঁ"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "না"
@@ -1887,17 +1877,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "বিশিষ্টতা যোগ করুন (_P)"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "নাম"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "ধরন"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "মান"
@@ -2028,17 +2018,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "অবস্থান (_L):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ধরন (_T):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "পাসওয়ার্ড পরিবর্তন করুন (_P)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ফর্মা:"
@@ -2049,27 +2039,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "এর বৈশিষ্ট্যাবলী"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "সাধারণ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "বিবরণ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "স্বনির্ধারিত বৈশিষ্ট্যাবলী"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS বিশিষ্টতা"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "নিরাপত্তা"
@@ -2283,6 +2273,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/bn-IN/shell/messages.po b/source/bn-IN/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/bn-IN/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/bn-IN/starmath/messages.po b/source/bn-IN/starmath/messages.po
index d27fa7182d4..705f3e07607 100644
--- a/source/bn-IN/starmath/messages.po
+++ b/source/bn-IN/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-11 06:35+0000\n"
"Last-Translator: biraj <brnet00@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "উদাহরণ"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "আদর্শ"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "তির্যক"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "গাঢ়"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "কালো"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "নীল"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "সবুজ"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "লাল"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "আকাশী"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "ম্যাজেন্টা"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ধূসর"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "লাইম"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "মেরুন"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "নেভী"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "জলপাই রং"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "রক্তবর্ণ"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "রূপালী"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "টিল"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "হলুদ"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "আড়াল করুন"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "আকার"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "ফন্ট"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "বাঁদিকে"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "কেন্দ্র"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ডানদিকে"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "কমান্ড"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "সূত্র"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "নথি সংরক্ষণ করা হচ্ছে..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION সূত্র"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "অপ্রত্যাশিত অক্ষর"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "অপ্রত্যাশিত টোকেন"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "বাম এবং ডান চিহ্ন মেলেনি"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', বা 'serif' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "একটি অপ্রত্যাশিত টোকেনের পর 'আকার' আসবে"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "দুটি সারিকরণ করার অনুমতি দেওয়া হয় না"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "দুটি সাব/সুপারস্ক্রিপ্ট অনুমোদিত নয়"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "রঙ প্রয়োজন"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "বিষয়বস্তু"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "শিরোনাম (~T)"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ফর্মূলা টেক্সট (~F)"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "সীমানা (~o)"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "আকার"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "মূল আকার (~r)"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "পৃষ্ঠার সাথে মানানসই করা হবে (~p)"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "আকার পরিবর্তন (_S)"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "উপাদানগুলি"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/bn-IN/svtools/messages.po b/source/bn-IN/svtools/messages.po
index e1a319a087c..f354a6a6beb 100644
--- a/source/bn-IN/svtools/messages.po
+++ b/source/bn-IN/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,803 +16,805 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195261.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "পূর্বাবস্থায় ফিরিয়ে আনা:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "পুনরায় করা: (~d)"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "পুনরাবৃত্তি: (~R)"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "অবিন্যাসিত লেখ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx অভ্যন্তরীণ সংযোগের অবস্থার তথ্য"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "নেটস্কেপ বুকমার্ক"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "স্টার সার্ভার বিন্যাস"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "স্টার অবজেক্ট বিন্যাস"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "অ্যাপলেট অবজেক্ট"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "প্লাগ-ইন অবজেক্ট"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "স্টার রাইটার ৩.০ অবজেক্ট"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "স্টার রাইটার ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "স্টার রাইটার ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "স্টার রাইটার/ওয়েব ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "স্টার রাইটার/ওয়েব ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "স্টার রাইটার/মাস্টার ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "স্টার রাইটার/মাস্টার ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "স্টার ড্র অবজেক্ট"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "স্টার ড্র ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "স্টার-ইমপ্রেস ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "স্টার ড্র ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "স্টার ক্যালক অবজেক্ট"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "স্টার-ক্যালক ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "স্টার-ক্যালক ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "স্টার-চার্ট অবজেক্ট"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "স্টার-চার্ট ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "স্টার-চার্ট ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "স্টার-ইমেজ অবজেক্ট"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "স্টার-ইমেজ ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "স্টার-ইমেজ ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "স্টার ম্যাথ অবজেক্ট"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "স্টার ম্যাথ ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "স্টার ম্যাথ ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "স্টার-অবজেক্ট অঙ্কন অবজেক্ট"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "মাইক্রোসফট ওয়ার্ড অবজেক্ট"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "স্টার-ফ্রেম-সেট অবজেক্ট"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "অফিস নথির অবজেক্ট"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "নোট নথির তথ্য"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx নথি"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "স্টার-চার্ট ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "গ্রাফিক বস্তু"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 রাইটার অবজেক্ট"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 রাইটার/ওয়েব অবজেক্ট"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 রাইটার/মাস্টার অবজেক্ট"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 অঙ্কন অবজেক্ট"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 ইম্প্রেস অবজেক্ট"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 ক্যাল অবজেক্ট"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 চার্ট অবজেক্ট"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 ম্যাথ অবজেক্ট"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "উইন্ডোজ মেটাফাইল"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ডাটা উৎসের অবজেক্ট"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ডাটা উৎসের টেবিল"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL কোয়েরি"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ডায়ালগ"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "লিংক"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "মন্তব্যহীন HTML ফরম্যাট"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% অবজেক্ট সন্নিবেশ করা যাবে না।"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% ফাইলের অবজেক্ট সন্নিবেশ করা যায়নি।"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "পরবর্তী অবজেক্ট"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "অজানা উৎস"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "নাম"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "আকার"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "পরিবর্তিত তারিখ"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "ধরন"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "বাইট"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "কিলোবাইট"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "মেগাবাইট"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "গিগাবাইট"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "সারি: %1, কলাম: %2n"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", ধরন: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ফোল্ডার"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ফাইল"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ফাঁকা ক্ষেত্র"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমেরিক"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "স্বাভাবিক"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "অক্ষর সমষ্টি"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "পিনইন"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "কলমের আঁক"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "মৌলিক"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ইউনিকোড"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "জুইন"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ফোন বুক"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমেরিক"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "পিনইন"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "মৌলিক"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "কলমের আঁক"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "জুইন"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক, সিলাবল ভিত্তিক গ্রুপ)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক , ব্যঞ্জনবর্ণ ভিত্তিক গ্রুপ)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক, সিলাবল ভিত্তিক গ্রুপ)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক, ব্যঞ্জনবর্ণ ভিত্তিক গ্রুপ)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "আজ"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "কোনটি না"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "সামান্য"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "সামান্য তির্যক"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "স্বাভাবিক"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "তির্যক"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "গাঢ়"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "গাঢ় তির্যক"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "কালো"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "কালো তির্যক"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
#, fuzzy
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "বই"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "সংক্ষিপ্ত"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "অর্ধ-গাঢ়"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "মুদ্রণযন্ত্র ও পর্দায় একই ফন্ট ব্যবহৃত হবে।"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "এটি একটি মুদ্রণযন্ত্রের ফন্ট। পর্দার দেখতে ভিন্ন হতে পারে।"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "এই ফন্ট শৈলী সিমিউলেট করা হবে বা কাছাকাছি সমতুল্য শৈলী ব্যবহার করা হবে।"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "এই ফন্টটি ইনস্টল করা হয়নি। কাছাকাছি বিদ্যমান ফন্ট ব্যবহৃত হবে।"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ব্রাউজ..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "প্রধান পাতায় স্থানান্তর"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "বামে সরানো"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ডানে সরানো"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "শেষে স্থানান্তর"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "যোগ করুন"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "অনুভূমিক মানদন্ড"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "উল্লম্ব মানদন্ড"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "১ বিট থ্রেশোল্ড"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "১ বিট ডিথারকৃত"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "৪ বিট গ্রেস্কেল"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "৪ বিট রং"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "৮ বিট গ্রেস্কেল"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "৮ বিট রং"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "২৪ বিট ট্রু রং"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ছবিটির %1 কিবা মেমরির প্রয়োজন।"
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
@@ -820,726 +822,726 @@ msgstr ""
"ছবিটির %1 কিবা মেমরির প্রয়োজন,\n"
"ফাইলের আকার %2 কিবা। "
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ফাইলের আকার %1 কিবা। "
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "মূল্য"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "সাজান"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "প্রস্তুত"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "থামানো"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "অসমাপ্ত অপসারণ"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "ব্যস্ত"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "শুরু হচ্ছে"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "অপেক্ষমাণ"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "প্রস্তুতি নিচ্ছে"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "প্রক্রিয়া চলছে"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "মুদ্রণ করা হচ্ছে"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "অফলাইন"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ত্রুটি "
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "অজানা সার্ভার"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "কাগজ আটকে গেছে"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "যথেষ্ট পরিমাণ কাগজ নেই"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "স্বনির্ধারিত ফিড"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "কাগজ ত্রুটি"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O কার্যকর"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "আউটপুট বিন সম্পূর্ণ"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "কালি কম"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "কোনো কালি নেই"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "পৃষ্ঠা মুছে ফেলা"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ব্যবহারকারীর হস্তক্ষেপ প্রয়োজন"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "অপর্যাপ্ত মেমোরি"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "আবরণ খোলা"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "বিদ্যুৎ সংরক্ষণ মোড"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "পূর্বনির্ধারিত মুদ্রণযন্ত্র"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d নথি"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "শেষ (~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "পরবর্তী (~N) >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< পূর্ববর্তী (~k)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ধাপ"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<কোনটি না>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "কোম্পানি"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "বিভাগ"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "নামের প্রথমাংশ"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "নামের শেষাংশ"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "রাস্তা"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "দেশ"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "জিপ কোড"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "শহর"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "শিরোনাম"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "অবস্থান"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ঠিকানা ফরম"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "আদ্যক্ষর"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "প্রসংসামূলক সমাপ্তি"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "টেলিফোন: বাসা"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "টেলিফোন: কর্মস্থল"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "নোট"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ব্যবহারকারী ১"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ব্যবহারকারী ২"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ব্যবহারকারী ৩"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ব্যবহারকারী ৪"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "রাষ্ট্র"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "টেলিফোন: অফিস"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "পেজার"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "মোবাইল"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "টেলিফোন: অন্যান্য"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "বর্ষপঞ্জী"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "আমন্ত্রণ"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "এই কাজটি সম্পন্ন করতে, %PRODUCTNAME এর Java রানটাইম এনভায়রনমেন্ট (JRE) প্রয়োজন। অনুগ্রহ করে JRE ইনস্টল করুন এবং %PRODUCTNAME পুনরায় চালু করুন।"
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME কনফিগারেশন পরিবর্তিত হয়েছে। %PRODUCTNAME - পছন্দসই - %PRODUCTNAME - উন্নত-এ, %PRODUCTNAME দ্বারা ব্যবহার করাতে চাওয়া Java রানটাইম এনভায়রনমেন্ট নির্বাচন করুন।"
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME কনফিগারেশন পরিবর্তন করা হয়েছে। সরঞ্জাম - বিকল্প - %PRODUCTNAME - উন্নত -এ, %PRODUCTNAME দ্বারা ব্যবহার করাতে চাওয়া Java রানটাইম এনভায়রনমেন্ট নির্বাচন করুন।"
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "এই কাজটি করতে, %PRODUCTNAME -এর একটি Java রানটাইম এনভায়রনমেন্ট (JRE) চাই। নির্বাচিত JRE অচল। দয়া করে অপর একটি সংস্করণ নির্বাচন করুন বা একটি নতুন JRE ইনস্টল করুন এবং তা %PRODUCTNAME - পছন্দসই - %PRODUCTNAME - উন্নত -এ নির্বাচন করুন।"
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "এই কাজটি করতে, %PRODUCTNAME -এর একটি Java রানটাইম এনভায়রনমেন্ট (JRE) চাই। নির্বাচিত JRE অচল। দয়া করে, অপর একটি সংস্করণ নির্বাচন করুন বা একটি নতুন JRE ইনস্টল করুন এবং তা সরঞ্জাম - বিকল্প - %PRODUCTNAME - উন্নত-এ নির্বাচন করুন।"
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE প্রয়োজন"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE নির্বাচন করুন"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ত্রুটিপূর্ণ"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "সোর্স কোড"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "বুকমার্ক ফাইল"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "গ্রাফিক্স"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "কনফিগারেশন ফাইল"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "অ্যাপ্লিকেশন"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ডাটাবেস টেবিল"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "সিস্টেম ফাইল"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "এমএস ওয়ার্ড নথি"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "সহায়তা ফাইল"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML নথি"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "আর্কাইভ ফাইল"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "লগ ফাইল"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ডাটাবেস"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 মাস্টার নথি"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice অঙ্কন"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "লেখা ফাইল"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "লিংক"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 ফর্মা"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "এমএস Excel নথি"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "এমএস Excel ফর্মা"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ব্যাচ ফাইল"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ফাইল"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ফোল্ডার"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "লেখা নথি"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "স্প্রেডশীট"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "উপস্থাপনা"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "অঙ্কন"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML নথি"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "মাস্টার নথি"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "সূত্র"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ডাটাবেস "
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 স্প্রেডশীট টেমপ্লেট"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 অঙ্কন টেমপ্লেট"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 উপস্থাপনা টেমপ্লেট"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 টেক্সট ডকুমেন্ট টেমপ্লেট"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "স্থানীয় ড্রাইভ"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ডিস্ক ড্রাইভ"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ড্রাইভ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "নেটওয়ার্ক সংযোগ"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "এমএস PowerPoint নথি"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "এমএস PowerPoint ফর্মা"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "এমএস PowerPoint প্রদর্শনী"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 সূত্র"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 ছক"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 অঙ্কন"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 স্প্রেডশীট"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 উপস্থাপনা"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 টেক্সট ডকুমেন্ট"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 মাস্টার ডকুমেন্ট"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML নথি"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ওপেন-ডকুমেন্ট ডাটাবেস"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ওপেন-ডকুমেন্ট অঙ্কন"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ওপেন-ডকুমেন্ট সূত্র"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ওপেন-ডকুমেন্ট মাস্টার নথি"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ওপেন-ডকুমেন্ট উপস্থাপনা"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ওপেন-ডকুমেন্ট স্প্রেডশীট"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ওপেন-ডকুমেন্ট লেখা"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ওপেন-ডকুমেন্ট স্প্রেডশীট ফর্মা"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ওপেন-ডকুমেন্ট অঙ্কন ফর্মা"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ওপেন-ডকুমেন্ট উপস্থাপনা ফর্মা"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ওপেন-ডকুমেন্ট লেখা ফর্মা"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME বর্ধিতাংশ"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/bn-IN/svx/messages.po b/source/bn-IN/svx/messages.po
index f1688b3b7d3..1c88b23ce3a 100644
--- a/source/bn-IN/svx/messages.po
+++ b/source/bn-IN/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8007,6 +8007,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12479,84 +12484,89 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "কনট্যুর সম্পাদক"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "প্রয়োগ করুন"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "কর্মপরিসর"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "নির্বাচন করুন"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "আয়তক্ষেত্র"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "উপবৃত্ত"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "বহুভুজ"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "বিন্দু সম্পাদনা"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "বিন্দু সরানো"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "বিন্দু সন্নিবেশ"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "বিন্দু মুছে ফেলুন"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "স্বয়ংক্রিয়-কনট্যুর"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "পূর্বাবস্থা"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "পুনরাবৃত্তি"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "পিপেট"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12891,114 +12901,109 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "পাদচরণ"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ImageMap সম্পাদক"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "প্রয়োগ করুন"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "খুলুন..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "সংরক্ষণ করুন..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "বন্ধ করুন"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "নির্বাচন করুন"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "আয়তক্ষেত্র"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "উপবৃত্ত"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "বহুভুজ"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "মুক্ত-আকৃতির বহুভুজ"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "বিন্দু সম্পাদনা"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "বিন্দু সরানো"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "বিন্দু সন্নিবেশ"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "বিন্দু মুছে ফেলুন"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "পূর্বাবস্থা"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "পুনরাবৃত্তি"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "সক্রিয়"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "ম্যাক্রো..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "বৈশিষ্ট্যাবলী..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "ঠিকানা:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ফ্রেম:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "টেক্সট:"
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index a163bbd3a89..133c07bfd90 100644
--- a/source/bn-IN/sw/messages.po
+++ b/source/bn-IN/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:43+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn_IN\n"
@@ -3161,9 +3161,9 @@ msgid "Change object title of $1"
msgstr " $1 অবজেক্টের শিরোনাম পরিবর্তন"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr " $1 অবজেক্টের বর্ণনা পরিবর্তন"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12578,147 +12578,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12728,152 +12728,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13978,7 +13978,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17456,48 +17456,48 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "প্রাকদর্শন"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "প্রাকদর্শন"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "ধরন"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "এন্ট্রি"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "শৈলী"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "কলাম"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "পটভূমি"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "প্রাকদর্শন"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "স্তর"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17740,325 +17740,325 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "সম্পাদনা..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "শিরোনাম (_T):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "ধরন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "সারণির বিষয়বস্তু"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "ব্যবহারকারী নির্ধারিত"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "তথ্যসূত্র ১"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "জন্য (_o):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "সমগ্র নথি (~E)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "অধ্যায়"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "আউটলাইন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
#, fuzzy
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "টেবিলসমূহ (_T)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "লেখা ফ্রেম"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "গ্রাফিক্স"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE অবজেক্ট"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "শর্তাধীন শৈলী"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "শৈলী"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "ক্যাপশন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "বস্তুর নাম"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "শ্রেণী"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "প্রদর্শন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "রেফারেন্স"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "শ্রেণী এবং নম্বর"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "ক্যাপশন লেখা"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "বন্ধনী"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[কোনটি না]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
#, fuzzy
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "বড় বা ছোট হাতের অক্ষর সংবেদনশীল (_C)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ফাইল (_F):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "অপশন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ভাষা"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "কী-এর ধরন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "সাজানো"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "স্তর"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(অনুচ্ছেদ শৈলী:"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "পূর্বনির্ধারিত"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "সম্পাদনা (_E)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index fe7df94109d..8854eeddba2 100644
--- a/source/bn/cui/messages.po
+++ b/source/bn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1668,107 +1668,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "কোন সীমানা নয়"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "শুধুমাত্র বহিঃস্থ সীমানা নির্ধারণ"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "বহিঃস্থ সীমানা ও অনুভূমিক রেখা নির্ধারণ"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "বহিঃস্থ সীমানা ও সব অন্তঃস্থ রেখা নির্ধারণ"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "অন্তঃস্থ রেখা পরিবর্তন না করে বহিঃস্থ সীমানা নির্ধারণ"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "শুধুমাত্র তির্যক রেখা নির্ধারণ"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "চারটি সীমানার প্রতিটি নির্ধারণ"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "শুধুমাত্র বাম ও ডান সীমানা নির্ধারণ"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "শুধুমাত্র শীর্ষ ও নিম্ন সীমানা নির্ধারণ"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "শুধুমাত্র বাম সীমানা নির্ধারণ"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "শীর্ষ ও নিম্ন সীমানা এবং সব অভ্যন্তরীণ রেখা নির্ধারণ"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "বাম ও ডান সীমানা এবং সব অভ্যন্তরীণ রেখা নির্ধারণ"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "কোন ছায়া নয়"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "নিচে ডানে ছায়া ফেলা"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "উপরে ডানে ছায়া ফেলা"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "নিচে বামে ছায়া ফেলা"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "উপরে বামে ছায়া ফেলা"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1811,7 +1806,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1931,7 +1926,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2171,7 +2166,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2426,12 +2421,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2501,7 +2496,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2581,7 +2576,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2822,7 +2817,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3458,68 +3453,73 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME সম্পর্কে"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "আমার-ওয়েব-সাইট"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3644,19 +3644,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "প্রতিস্থাপন (~R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "প্রতিস্থাপন (~R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "প্রস্থ"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4529,6 +4529,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5721,29 +5881,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "বৈশিষ্ট্য"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ফ্রেম:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "নাম"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9542,86 +9702,86 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "সহায়তা"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr " %PRODUCTNAME ডায়ালগ"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr " %PRODUCTNAME ডায়ালগ"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "নথির নাম\tঅবস্থা"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "এবং"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সিস্টেম শুরুর সময় %PRODUCTNAME লোড করা"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray কুইকস্টার্টার নিষ্ক্রিয় করুন"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11591,24 +11751,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12278,102 +12423,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13450,27 +13499,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/bn/extensions/messages.po b/source/bn/extensions/messages.po
index e7852830abe..3f1cf2f1a0c 100644
--- a/source/bn/extensions/messages.po
+++ b/source/bn/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3242,191 +3242,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "%1 টেবিলের জন্য কলামের বহির্বিন্যাস"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "সংক্ষিপ্ত নাম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "লেখকগণ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Publisher"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "অধ্যায়"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "সম্পাদক"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "ধরন"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "বছর"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "শিরোনাম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Address"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN (~I)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "পৃষ্ঠাসমূহ (~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "সংস্করণ (~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "বইয়ের শিরোনাম (~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "ভলিউম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "প্রকাশনার ধরন (~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "সংগঠন (~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "প্রতিষ্ঠান (~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "বিশ্ববিদ্যালয়"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "প্রতিবেদনের ধরন (~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "মাস"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "সাময়িকী"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "সংখ্যা"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "ধারা (~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "টীকা (~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "নোট"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "ব্যবহারকারী-নির্ধারিত ক্ষেত্র ১ (~1)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "ব্যবহারকারী-নির্ধারিত ক্ষেত্র ২ (~2)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "ব্যবহারকারী-নির্ধারিত ক্ষেত্র ৩ (~3)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "ব্যবহারকারী-নির্ধারিত ক্ষেত্র ৪ (~4)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "ব্যবহারকারী-নির্ধারিত ক্ষেত্র ৫ (~5)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3609,31 +3609,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "সংযোগ ক্ষেত্রসমূহ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "পরামর্শ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "মাস্টার ফরমের বর্তমান রেকর্ড সম্পর্কিত বিস্তারিত তথ্য প্রদর্শন করতে সাব ফরম ব্যবহার করা যেতে পারে। এটা করতে চাইলে, সাব ফরমের কোন কলাম মাস্টার ফরমের কোন কলামের সাথে মিলে তা আপনি সুনির্দিষ্টভাবে উল্লেখ করে দিতে পারেন।"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "লেবেল"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/bn/helpcontent2/source/auxiliary.po b/source/bn/helpcontent2/source/auxiliary.po
index 8dd631ce05c..d4f9b36952d 100644
--- a/source/bn/helpcontent2/source/auxiliary.po
+++ b/source/bn/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "টুলবার"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "মেনু"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "টুলবার"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,17 +699,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/bn/helpcontent2/source/text/sbasic/guide.po b/source/bn/helpcontent2/source/text/sbasic/guide.po
index 18063728b39..e6d7c5716ef 100644
--- a/source/bn/helpcontent2/source/text/sbasic/guide.po
+++ b/source/bn/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "প্রোগ্রাম কোডের সাথে একটি ডায়ালগ খোলা হচ্ছে"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/sbasic/python.po b/source/bn/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/bn/helpcontent2/source/text/sbasic/python.po
+++ b/source/bn/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/bn/helpcontent2/source/text/sbasic/shared.po b/source/bn/helpcontent2/source/text/sbasic/shared.po
index cb54fb497d7..5e4f07f62f5 100644
--- a/source/bn/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bn/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME বেসিক সহায়তা</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/sbasic/shared/03.po b/source/bn/helpcontent2/source/text/sbasic/shared/03.po
index b4bdee4434c..f95b3c674f5 100644
--- a/source/bn/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bn/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index e9f5a0330ab..043712e866c 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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">আপনি যে ডাটা অন্তর্ভুক্ত করতে চান সেই ডাটা বিশিষ্ট ফাইল চিহ্নিত করুন।</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">টেবিল বা ডাটা পরিসর নির্বাচন করুন, যা আপনি অন্তর্ভুক্ত করতে চান।</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">ঘর পরিসর উল্লেখ করে যা আপনি <emph>সংহতকরণ পরিসর </emph>বাক্সের সাহায্যে সংহত করতে চান। পাতাতে একটি ঘর পরিসর নির্বাচন করুন, এবং তারপর <emph>সংযুক্ত</emph> ক্লিক করুন। আপনি <emph>উৎস তথ্য পরিসর </emph>তালিকা হতে একটি পূর্বনির্ধারিত ঘরের নামও নির্বাচন করতে পারেন।</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/schart/00.po b/source/bn/helpcontent2/source/text/schart/00.po
index 468f2954cf1..6cf8e3e184a 100644
--- a/source/bn/helpcontent2/source/text/schart/00.po
+++ b/source/bn/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 15:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/bn/helpcontent2/source/text/shared/00.po b/source/bn/helpcontent2/source/text/shared/00.po
index a31fe01c049..f5bf0351814 100644
--- a/source/bn/helpcontent2/source/text/shared/00.po
+++ b/source/bn/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index b579accb204..63a15d702d4 100644
--- a/source/bn/helpcontent2/source/text/shared/01.po
+++ b/source/bn/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/bn/helpcontent2/source/text/shared/02.po b/source/bn/helpcontent2/source/text/shared/02.po
index 2713c0e1db9..95cc0fca8dd 100644
--- a/source/bn/helpcontent2/source/text/shared/02.po
+++ b/source/bn/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/bn/helpcontent2/source/text/shared/guide.po b/source/bn/helpcontent2/source/text/shared/guide.po
index 1f089c8fff3..e1f5a2234ec 100644
--- a/source/bn/helpcontent2/source/text/shared/guide.po
+++ b/source/bn/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/shared/optionen.po b/source/bn/helpcontent2/source/text/shared/optionen.po
index 4b2236e8cd9..e30bec87215 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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/bn/helpcontent2/source/text/simpress/01.po b/source/bn/helpcontent2/source/text/simpress/01.po
index 269059fba10..16187b38222 100644
--- a/source/bn/helpcontent2/source/text/simpress/01.po
+++ b/source/bn/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/bn/helpcontent2/source/text/swriter/guide.po b/source/bn/helpcontent2/source/text/swriter/guide.po
index 576db25aeae..ef7220f5bc2 100644
--- a/source/bn/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "<emph>আদর্শ বার</emph> এ, <emph> ন্যাভিগেটর</emph> খুলতে <emph>ন্যাভিগেটর</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\"> আইকনে</alt></image> ক্লিক করুন।"
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
index 6c46a06c222..35fb22c59d4 100644
--- a/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23742,6 +23742,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26117,6 +26126,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26135,6 +26153,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/bn/sc/messages.po b/source/bn/sc/messages.po
index 649b2d247ac..331e40d5d85 100644
--- a/source/bn/sc/messages.po
+++ b/source/bn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15696,6 +15696,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
#, fuzzy
msgctxt "subtotalgrppage|liststore1"
@@ -16264,12 +16269,12 @@ msgstr "শর্তাধীন বিন্যাস"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17569,90 +17574,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "বন্ধ করুন (~C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "নতুন রেকর্ড"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "নতুন"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "মুছে ফেলা"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "পুনরুদ্ধার"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "পূর্ববর্তী রেকর্ড"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "পরবর্তী রেকর্ড"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "বন্ধ করুন (~C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ব্রাউজ..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ডাটাবেস পরিসর"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19459,34 +19421,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "ডাটা"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "কলাম"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "সারি"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "ভিত্তিক শ্রেণী:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "অভ্যন্তরীণ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19633,167 +19600,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22439,17 +22408,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24439,111 +24418,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "উইন্ডো (~W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "দেখান"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "আড়াল"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "পৃষ্ঠাবিভাজক"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "লেখচিত্র"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "অঙ্কন বস্তু"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "দেখান"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "আড়াল"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "দেখান"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "আড়াল"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "দেখান"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "আড়াল"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "বস্তু"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/bn/scp2/source/ooo.po b/source/bn/scp2/source/ooo.po
index 63dc972cbf0..50d4aa29d0a 100644
--- a/source/bn/scp2/source/ooo.po
+++ b/source/bn/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36,6 +36,14 @@ msgstr "নথি খুলুন"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/bn/scp2/source/winexplorerext.po b/source/bn/scp2/source/winexplorerext.po
index 5bff369eaae..d7e1d0de0dd 100644
--- a/source/bn/scp2/source/winexplorerext.po
+++ b/source/bn/scp2/source/winexplorerext.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-10-22 23:06+0000\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:36+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\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: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1319324817.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369348616.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "মাইক্রোসফট উইন্ডোজ এক্সপ্লোরারকে %PRODUCTNAME নথি সম্পর্কিত তথ্য, যেমন- থাম্বনেইল প্রাকদর্শন প্রদর্শন সক্রিয় করে।"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/bn/sd/messages.po b/source/bn/sd/messages.po
index 376d72b95a3..0ee357e0a91 100644
--- a/source/bn/sd/messages.po
+++ b/source/bn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2641,6 +2641,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3118,164 +3123,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4767,160 +4957,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/bn/sfx2/messages.po b/source/bn/sfx2/messages.po
index 6d1b34d3d52..3b95a96be74 100644
--- a/source/bn/sfx2/messages.po
+++ b/source/bn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,11 +916,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "ব: %1 মা: %2 দি: %3 ঘ: %4 মি: %5 সে: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "বৈশিষ্ট্য অপসারণ করুন"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -930,28 +925,28 @@ msgstr ""
"সন্নিবেশকৃত মান নির্ধারিত ধরনের সাথে মিলে না।\n"
"মানটি পাঠ্য হিসেবে সংরক্ষণ করা হবে।"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ফাইলটি ইতোমধ্যে বিদ্যমান। উপরিলিখন করতে চান?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "পুনঃনির্ধারণ (~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "এই নামটি ইতোমধ্যে ব্যবহৃত হচ্ছে।"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "এই শৈলীটি বিদ্যমান নয়।"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -961,7 +956,7 @@ msgstr ""
"এই শৈলীটি ভিত্তির শৈলী হিসেবে ব্যবহার করা যায় না,\n"
"কারণ এটি পুনরাবৃত্ত রেফঅরেন্সে প্রভাব ফেলবে।"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"নাম ইতোমধ্যে পূর্বনির্ধারিত শৈলী হিসেবে বিদ্যমান।\n"
"অনুগ্রহ করে অন্য নাম পছন্দ করুন।"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -978,96 +973,96 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "পরিক্রমক"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "ত্রুটিপূর্ণ পাসওয়ার্ড নিশ্চিতকরণ"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "প্রেরণ"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ফন্ট"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "সংস্করণ মন্তব্য সন্নিবেশ করান"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "শৈলীর তালিকা"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "ক্রমবিভক্ত"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ভরাট বিন্যাসের মোড"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "নির্বাচন থেকে নতুন শৈলী"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "শৈলী হালনাগাদ (~U)"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "আপনি কি আসলেই রেকর্ড করা বাতিল করতে চান? এ পর্যন্ত রেকর্ডকৃত সব পদক্ষেপ হারিয়ে যাবে।"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "রেকর্ডকরণ বাতিল"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ফর্মাসমূহ প্রথম-বার ব্যবহারের জন্য প্রস্তুত করা হযেছে।"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1076,7 +1071,7 @@ msgstr ""
"কোনো পূর্বনির্ধারিত মুদ্রণযন্ত্র পাওয়া যায়নি।\n"
"অনুগ্রহ করে একটি মুদ্রণযন্ত্র নির্বাচন করুন এবং আবার চেষ্টা করুন।"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1085,17 +1080,17 @@ msgstr ""
"মুদ্রণযন্ত্র চালু করা যাবে না।\n"
"অনুগ্রহ করে আপনার মুদ্রণযন্ত্রের কনফিগারেশন পরীক্ষা করুন।"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "মুদ্রণযন্ত্রটি ব্যস্ত"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (শুধুমাত্র-পাঠযোগ্য)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি এবং স্থিতিবিন্যাস পরিবর্তন করা হয়েছে।\n"
"আপনি কি নতুন বিন্যাসটি সক্রিয় নথিতে সংরক্ষণ করতে চান?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি পরিবর্তন করা হয়েছে।\n"
"নতুন বিন্যাস কি সক্রিয় নথিতে সংরক্ষণ করা হবে?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1125,7 +1120,7 @@ msgstr ""
"পৃষ্ঠার আকৃতি এবং স্থিতিবিন্যাস পরিবর্তন করা হয়েছে।\n"
"আপনি কি সক্রিয় নথিতে নতুন সেটিং সংরক্ষণ করতে আগ্রহী?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1135,7 +1130,7 @@ msgstr ""
"নথিটি বন্ধ করা যাবে না কারণ\n"
"একটি মুদ্রণ কাজ চলছে।"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1143,7 +1138,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1151,18 +1146,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "সম্ভবত অনুপস্থিত প্রবেশাধিকারের কারণে, এই নথিটি সম্পাদনা করা যাবে না। আপনি কি নথির একটি অনুলিপি সম্পাদনা করতে চান?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1170,353 +1165,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "(সংশোধিত নথি)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "নথির সম্পাদনা"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ফাইল নথি"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ডক"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "আনডক"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "আরও অপশন (~O)"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "স্বনির্ধারিত অ্যানিমেশন"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "অপসারণ করুন"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1894,35 +1899,18 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "সংস্করণ মন্তব্য"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-#, fuzzy
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "নাম"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-#, fuzzy
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "ধরন"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "মান"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
#, fuzzy
msgctxt "cmisline|type"
msgid "Type"
msgstr "ধরন"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "হ্যাঁ"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "না"
@@ -1932,19 +1920,19 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
#, fuzzy
msgctxt "custominfopage|name"
msgid "Name"
msgstr "নাম"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
#, fuzzy
msgctxt "custominfopage|type"
msgid "Type"
msgstr "ধরন"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "মান"
@@ -2085,19 +2073,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "অবস্থান:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ধরন:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "পাসওয়ার্ড পরিবর্তন... (~P)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2108,29 +2096,29 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "সাধারণ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
#, fuzzy
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "বর্ণনা"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2358,6 +2346,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/bn/shell/messages.po b/source/bn/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/bn/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/bn/starmath/messages.po b/source/bn/starmath/messages.po
index 838da094603..69b7318d7a9 100644
--- a/source/bn/starmath/messages.po
+++ b/source/bn/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1674,277 +1674,302 @@ msgid "Examples"
msgstr "উদাহরণ"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "আদর্শ"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "তির্যক"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "গাঢ়"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "কালো"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "নীল"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "সবুজ"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "সায়ান"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "ম্যাজেন্টা"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ধূসর"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "সময়"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "হলুদ"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "আড়াল"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "আকার"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "ফন্ট"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "বাম"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "কেন্দ্র"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ডান"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "কমান্ড"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "সূত্র"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "নথি সংরক্ষণ করা হচ্ছে..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION সূত্র"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "অপ্রত্যাশিত অক্ষর"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "রঙ প্রয়োজন"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' প্রত্যাশিত"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "বিষয়বস্তু"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "শিরোনাম"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ফর্মূলা টেক্সট (~F)"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "সীমানা"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "আকার"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "আদি আকার"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "পৃষ্ঠার সাথে মানানসই করা হবে (~F)"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2017,6 +2042,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "element"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/bn/svtools/messages.po b/source/bn/svtools/messages.po
index 1852eff5a24..a1926481615 100644
--- a/source/bn/svtools/messages.po
+++ b/source/bn/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1538 +16,1540 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195253.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "পূর্বাবস্থায় ফিরিয়ে আনা:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "পুনরায় করা: (~d)"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "পুনরাবৃত্তি: (~R)"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "অবিন্যাসিত লেখ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx অভ্যন্তরীণ সংযোগের অবস্থার তথ্য"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "নেটস্কেপ বুকমার্ক"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "স্টার সার্ভার বিন্যাস"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "স্টার অবজেক্ট বিন্যাস"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "অ্যাপলেট অবজেক্ট"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "প্লাগ-ইন অবজেক্ট"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "স্টার রাইটার ৩.০ অবজেক্ট"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "স্টার রাইটার ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "স্টার রাইটার ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "স্টার রাইটার/ওয়েব ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "স্টার রাইটার/ওয়েব ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "স্টার রাইটার/মাস্টার ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "স্টার রাইটার/মাস্টার ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "স্টার ড্র অবজেক্ট"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "স্টার ড্র ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "স্টার-ইমপ্রেস ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "স্টার ড্র ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "স্টার ক্যালক অবজেক্ট"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "স্টার-ক্যালক ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "স্টার-ক্যালক ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "স্টার-চার্ট অবজেক্ট"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "স্টার-চার্ট ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "স্টার-চার্ট ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "স্টার-ইমেজ অবজেক্ট"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "স্টার-ইমেজ ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "স্টার-ইমেজ ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "স্টার ম্যাথ অবজেক্ট"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "স্টার ম্যাথ ৪.০ অবজেক্ট"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "স্টার ম্যাথ ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "স্টার-অবজেক্ট অঙ্কন অবজেক্ট"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "মাইক্রোসফট ওয়ার্ড অবজেক্ট"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "স্টার-ফ্রেম-সেট অবজেক্ট"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "অফিস নথির অবজেক্ট"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "নোট নথির তথ্য"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx নথি"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "স্টার-চার্ট ৫.০ অবজেক্ট"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "গ্রাফিক বস্তু"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "উইন্ডোজ মেটাফাইল"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ডাটা উৎসের অবজেক্ট"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ডাটা উৎসের টেবিল"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL কোয়েরি"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "লিংক"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "মন্তব্যহীন HTML ফরম্যাট"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% অবজেক্ট সন্নিবেশ করা যাবে না।"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% ফাইলের অবজেক্ট সন্নিবেশ করা যায়নি।"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "পরবর্তী অবজেক্ট"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "অজানা উৎস"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "নাম"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "আকার"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "পরিবর্তিত তারিখ"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "ধরন"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "বাইট"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "কিলোবাইট"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "মেগাবাইট"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "গিগাবাইট"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "সারি: %1, কলাম: %2n"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", ধরন: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ফোল্ডার"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ফাইল"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ফাঁকা ক্ষেত্র"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমেরিক"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "স্বাভাবিক"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "অক্ষর সমষ্টি"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "পিনইন"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "কলমের আঁক"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "মৌলিক"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ইউনিকোড"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "জুইন"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ফোন বুক"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "আলফানিউমেরিক"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "অভিধান"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "পিনইন"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "মৌলিক"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "কলমের আঁক"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "জুইন"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক, সিলাবল ভিত্তিক গ্রুপ)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ফোনেটিক (প্রথমে আলফানিউমেরিক , ব্যঞ্জনবর্ণ ভিত্তিক গ্রুপ)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক, সিলাবল ভিত্তিক গ্রুপ)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ফোনেটিক (শেষে আলফানিউমেরিক, ব্যঞ্জনবর্ণ ভিত্তিক গ্রুপ)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "আজ"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "কোনটি না"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "সামান্য"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "সামান্য তির্যক"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "স্বাভাবিক"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "তির্যক"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "গাঢ়"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "গাঢ় তির্যক"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "কালো"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "কালো তির্যক"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "বই"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "সংক্ষিপ্ত"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "অর্ধ-গাঢ়"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "মুদ্রণযন্ত্র ও পর্দায় একই ফন্ট ব্যবহৃত হবে।"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "এটি একটি মুদ্রণযন্ত্রের ফন্ট। পর্দার দেখতে ভিন্ন হতে পারে।"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "এই ফন্ট শৈলী সিমিউলেট করা হবে বা কাছাকাছি সমতুল্য শৈলী ব্যবহার করা হবে।"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "এই ফন্টটি ইনস্টল করা হয়নি। কাছাকাছি বিদ্যমান ফন্ট ব্যবহৃত হবে।"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ব্রাউজ..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "প্রধান পাতায় স্থানান্তর"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "বামে সরানো"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ডানে সরানো"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "শেষে স্থানান্তর"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "যোগ"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "অনুভূমিক লাল"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "উল্লম্ব মাপকাঠি"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "১ বিট থ্রেশোল্ড"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "১ বিট ডিথারকৃত"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "৪ বিট গ্রেস্কেল"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
#, fuzzy
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "৪ বিট রং"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "৮ বিট গ্রেস্কেল"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
#, fuzzy
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "৮ বিট রং"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "২৪ বিট ট্রু রং"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ফাইলের আকার %1 কিবা। "
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "মূল্য"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "সাজানো"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "বিরতি"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "প্রাথমিকীকরণ করছে..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "অপেক্ষমাণ"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ত্রুটি"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "পৃষ্ঠা মুছে ফেলুন (~e)"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "অপর্যাপ্ত মেমরি।"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "পূর্বনির্ধারিত মুদ্রণযন্ত্র"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "ওয়ার্ড নথি"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "শেষ (~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "পরবর্তী (~N) >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< পূর্ববর্তী (~k)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ধাপ"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<কোনটি না>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "কোম্পানি"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "বিভাগ"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "নামের প্রথমাংশ"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "নামের শেষাংশ"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "রাস্তা"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "দেশ"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "জিপ কোড"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "শহর"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "শিরোনাম"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "অবস্থান"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ঠিকানা ফরম"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "আদ্যক্ষর"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "প্রসংসামূলক সমাপ্তি"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "টেলিফোন: বাসা"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "টেলিফোন: কর্মস্থল"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "নোট"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ব্যবহারকারী ১"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ব্যবহারকারী ২"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ব্যবহারকারী ৩"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ব্যবহারকারী ৪"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "রাষ্ট্র"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "টেলিফোন: অফিস"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "পেজার"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "মোবাইল"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "টেলিফোন: অন্যান্য"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "বর্ষপঞ্জী"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "আমন্ত্রণ"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "এই কাজটি সম্পন্ন করতে, %PRODUCTNAME এর Java রানটাইম এনভায়রনমেন্ট (JRE) প্রয়োজন। অনুগ্রহ করে JRE ইনস্টল করুন এবং %PRODUCTNAME পুনরায় চালু করুন।"
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE প্রয়োজন"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE নির্বাচন করুন"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ত্রুটিপূর্ণ"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "সোর্স কোড"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "বুকমার্ক ফাইল"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "গ্রাফিক্স"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "কনফিগারেশন ফাইল"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "অ্যাপ্লিকেশন"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ডাটাবেস টেবিল"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "সিস্টেম ফাইল"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "এমএস ওয়ার্ড নথি"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "সহায়তা ফাইল"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML নথি"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "আর্কাইভ ফাইল"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "লগ ফাইল"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ডাটাবেস"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 মাস্টার নথি"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice অঙ্কন"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "লেখা ফাইল"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "লিংক"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 ফর্মা"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "এমএস Excel নথি"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "এমএস Excel ফর্মা"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ব্যাচ ফাইল"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ফাইল"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ফোল্ডার"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "লেখা নথি"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "স্প্রেডশীট"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "উপস্থাপনা"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "অঙ্কন"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML নথি"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "মাস্টার নথি"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "সূত্র"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ডাটাবেস "
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "স্থানীয় ড্রাইভ"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ডিস্ক ড্রাইভ"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ড্রাইভ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "নেটওয়ার্ক সংযোগ"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "এমএস PowerPoint নথি"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "এমএস PowerPoint ফর্মা"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "এমএস PowerPoint প্রদর্শনী"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML নথি"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ওপেন-ডকুমেন্ট ডাটাবেস"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ওপেন-ডকুমেন্ট অঙ্কন"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ওপেন-ডকুমেন্ট সূত্র"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ওপেন-ডকুমেন্ট মাস্টার নথি"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ওপেন-ডকুমেন্ট উপস্থাপনা"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ওপেন-ডকুমেন্ট স্প্রেডশীট"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ওপেন-ডকুমেন্ট লেখা"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ওপেন-ডকুমেন্ট স্প্রেডশীট ফর্মা"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ওপেন-ডকুমেন্ট অঙ্কন ফর্মা"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ওপেন-ডকুমেন্ট উপস্থাপনা ফর্মা"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ওপেন-ডকুমেন্ট লেখা ফর্মা"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME বর্ধিতাংশ"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/bn/svx/messages.po b/source/bn/svx/messages.po
index 50fc5d86dff..13442446e9d 100644
--- a/source/bn/svx/messages.po
+++ b/source/bn/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8035,6 +8035,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12596,89 +12601,94 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "কনট্যুর সম্পাদক"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "প্রয়োগ"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "কর্মপরিসর"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "নির্বাচন"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "আয়তক্ষেত্র"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "উপবৃত্ত"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "বহুভুজ"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
#, fuzzy
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "সম্পাদনা পয়েন্ট"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "বিন্দু সরানো"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "বিন্দু সন্নিবেশ"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "বিন্দু মুছে ফেলা"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "স্বয়ংক্রিয়-কনট্যুর"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "পূর্বাবস্থায় ফিরানো"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "লাল"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "পিপেট"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13019,124 +13029,118 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "পাদচরণ"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ImageMap সম্পাদক"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "প্রয়োগ"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "খুলুন..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "সংরক্ষণ..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "বন্ধ"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "নির্বাচন"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "আয়তক্ষেত্র"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "উপবৃত্ত"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "বহুভুজ"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "মুক্ত-আকৃতির বহুভুজ"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
#, fuzzy
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "সম্পাদনা পয়েন্ট"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "বিন্দু সরানো"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "বিন্দু সন্নিবেশ"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "বিন্দু মুছে ফেলা"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "পূর্বাবস্থায় ফিরানো"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "লাল"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "সক্রিয়"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "ম্যাক্রো..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "বৈশিষ্ট্যসমূহ:"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "ঠিকানা:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ফ্রেম"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index 1137bc88288..dc8b40d0fec 100644
--- a/source/bn/sw/messages.po
+++ b/source/bn/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:43+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bn\n"
@@ -3210,9 +3210,9 @@ msgid "Change object title of $1"
msgstr " $1 অবজেক্টের শিরোনাম পরিবর্তন"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr " $1 অবজেক্টের বর্ণনা পরিবর্তন"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12743,147 +12743,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12893,152 +12893,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14157,7 +14157,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17709,50 +17709,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "প্রাকদর্শন"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "প্রাকদর্শন"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "ধরন"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "ভুক্তি (~E)"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "শৈলী"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "কলাম"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "পটভূমি"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "প্রাকদর্শন"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "স্তর"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17998,326 +17998,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "সম্পাদনা..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "শিরোনাম:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "ধরন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "সারণির বিষয়বস্তু"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "ব্যবহারকারী নির্ধারিত"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "তথ্যসূত্র ১"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ফরম"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "সমগ্র নথি (~E)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "অধ্যায়"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "সীমারেখা"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "সারণি"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "লেখা ফ্রেম"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "গ্রাফিক্স"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE অবজেক্ট"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "শর্তাধীন শৈলী"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "শৈলী"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "অপশন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "বস্তুর নাম"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "শ্রেণী"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "প্রদর্শন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "রেফারেন্স"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "শ্রেণী এবং নম্বর"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "ক্যাপশন লেখা"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "বন্ধনী"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[কোনটি না]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ফাইল"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "অপশন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ভাষা"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "কী-এর ধরন"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "সাজানো"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "স্তর"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(অনুচ্ছেদ শৈলী:"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "ডিফল্ট"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "সম্পাদনা"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index 23388c8b3a1..b8192c5e25b 100644
--- a/source/bo/cui/messages.po
+++ b/source/bo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1670,107 +1670,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "གྲིབ་གཟུགས་འཁྲིད་མེད་པ།"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1813,7 +1808,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1933,7 +1928,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2173,7 +2168,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2428,12 +2423,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2503,7 +2498,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2583,7 +2578,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2824,7 +2819,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3447,68 +3442,73 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAMEསྐོར།"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "myWebsite"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3633,19 +3633,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "ཚབ་བརྗེ།(~R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "ཚབ་བརྗེ།(~R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "ཞེང་ཚད།"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4516,6 +4516,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5708,29 +5868,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "གཏོགས་གཤིས།"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "སྒྲོམ་ཡུལ།"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "མིང་།"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9489,86 +9649,86 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "རོགས་རམ།"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAMEབརྡ་སྒྲོམ།"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAMEབརྡ་སྒྲོམ།"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ཡིག་ཚགས་མིང་།\tགནས་སྟངས།"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "བསྡོམས་འབོར།"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "启动时载入%PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "མ་ལག་གི་ལས་འགན་གདམ་ཚང་མགྱོགས་མྱུར་འགུལ་སློང་བྱེད་དུ་མི་འཇུག་པ།"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11535,24 +11695,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12223,102 +12368,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13393,27 +13442,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/bo/extensions/messages.po b/source/bo/extensions/messages.po
index 8acbaf9e0ea..27c86f5e205 100644
--- a/source/bo/extensions/messages.po
+++ b/source/bo/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3234,191 +3234,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "རེའུ་མིག་ %1 ལ་ཇུས་འགོད་སྟར་སྒྲིག་རྒྱུ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "གསལ་བཤད་རྩོམ་ཡིག་སྟབས་བསྡུས།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "རྩོམ་པ་པོ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "འགྲེམ་སྤེལ་མཁན།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "ལེའུ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "དཔེ་སྐྲུན་བྱེད་མཁན།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "ལོ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "ཁ་བྱང་།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "གནས་ཡུལ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "ཤོག་ལྷེ།(~G)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "པར་མ།(~I)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "དེབ་ཀྱི་མིང་།(~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "དེབ་ཆུང་།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "འགྲེམས་སྤེལ་བྱེད་སྟངས།(~Y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "ཚོགས་པའི་རྩ་འཛུགས (~Z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "སྤྱི་པའི་ལས་ཁུངས། (~U)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "མཐོ་རིམ་སློབ་གྲྭ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "གོང་འབུལ་རེའུ་མིག་གི་རིགས་གྲས(~P)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "ཟླ་བ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "དུས་དེབ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "number"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "རྒྱུད་རིམ།(~R)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "གསལ་བཤད་རྩོམ་ཡིག(~O)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "མཆན་འགོད།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "རང་བཟོས་སྟར་གནས། 1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "རང་བཟོས་སྟར་གནས། 2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "རང་བཟོས་སྟར་གནས། 3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "རང་བཟོས་སྟར་གནས། 4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "རང་བཟོས་སྟར་གནས། 5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3601,31 +3601,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "འབྲེལ་མཐུད་བྱས་པའི་ཡིག་དུམ།"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "གྲོས་འཆར།"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "ཡན་ལག་སྒྲོམ་གཟུགས་དེ་མ་གཞིའི་སྒྲོམ་གཟུགས་ཀྱི་མིག་སྔའི་ཟིན་ཐོའི་ཞིབ་ཕྲའི་གཞི་གྲངས་མངོན་སྒྱུར་སྤྱོད་ཆོག་དེའི་ཆེད་ཡན་ལག་སྒྲིམ་གཟུགས་ནང་གི་སྟར་གང་དག་དང་མ་གཞིའི་སྒྲིམ་གཟུགས་ནང་གི་སྟར་གང་དག་དང་ཟླ་སྒྲིག་བྱེད་མིན་གཏན་ཕབ་ཆོག"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ཁ་བྱང་།"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/bo/helpcontent2/source/auxiliary.po b/source/bo/helpcontent2/source/auxiliary.po
index 3b9f071b9a3..27b9319e96d 100644
--- a/source/bo/helpcontent2/source/auxiliary.po
+++ b/source/bo/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "ཡོ་ཆས་ཚང་།"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "ཚལ་ཐོ།"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "ཡོ་ཆས་ཚང་།"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,17 +699,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/bo/helpcontent2/source/text/sbasic/guide.po b/source/bo/helpcontent2/source/text/sbasic/guide.po
index 4f3ca12b8cc..05f9e4e84a5 100644
--- a/source/bo/helpcontent2/source/text/sbasic/guide.po
+++ b/source/bo/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "བྱ་རིམ་ཚབ་ཨང་བརྒྱུད་ནས་གླེང་སྒྲོམ་ཁ་ཕྱེ་བ་"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>སྨོ་ལིང་དང་གླེང་སྒྲོམ་ </bookmark_value><bookmark_value>གླེང་སྒྲོམ་བརྗེ་བསྒྱུར་བྱ་བ། བྱ་རིམ་ཚབ་ཨང་བརྒྱུད་ནས་(དཔེ་གཞི་)</bookmark_value><bookmark_value>དཔེ་གཞིམངོན་པ། བྱ་རིམ་ཚབ་ཨང་བརྒྱུད་</bookmark_value>མངོན་པ་"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/sbasic/python.po b/source/bo/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/bo/helpcontent2/source/text/sbasic/python.po
+++ b/source/bo/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/bo/helpcontent2/source/text/sbasic/shared.po b/source/bo/helpcontent2/source/text/sbasic/shared.po
index 6e71407d083..a2ceafa8726 100644
--- a/source/bo/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bo/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"བེད་སྤྱོད་གནང་བར་དགའ་བསུ་ཞུ་$[officename] ཧུང་རོགས་རམ་\">བེད་སྤྱོད་གནང་བར་དགའ་བསུ་ཞུ་$[officename] ཧུང་རོགས་རམ་</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/sbasic/shared/03.po b/source/bo/helpcontent2/source/text/sbasic/shared/03.po
index 029cfcf7a18..475fc15d9ee 100644
--- a/source/bo/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bo/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/bo/helpcontent2/source/text/scalc/01.po b/source/bo/helpcontent2/source/text/scalc/01.po
index aab30ea4566..c8f1acbda26 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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">བསྒར་འཛུད་བྱ་དགོས་པའི་གཞི་གྲངས་འདུས་པའི་ཡིག་ཆ་ཪྙེད་པ། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">བསྒར་འཛུད་བྱ་དགོས་པའི་རེའུ་མིག་གམ་གཞི་གྲངས་ས་ཁོངས་འདེམས་པ། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\"> <emph>\"ཟླ་སྒྲིལ་རྩིས་རྒྱག་གཞི་གྲངས་ས་ཁོངས།\"</emph>སྒྲོམ་ནང་རེའུ་མིག་དྲ་མིག་ཆེ་བའི་ཁྱབ་ཁོངས་སུ་ཟླ་སྒྲིལ་རྩིས་རྒྱག་བྱ་བའི་དྲ་མིག་ཁྱབ་ཁོངས་གཏན་འཁེལ་བྱ། ལས་ཁྲའི་ནང་དྲ་མིག་ཁྱབ་ཁོངས་འདེམས་པ་དང་ དེ་རྗེས་<emph>\"གསར་སྣོན།\"</emph>ལ་རྐྱང་རྡེབ་བྱ། ཁྱེད་ཀྱིས་<emph>\"ཁུངས་གཞི་གྲངས་ས་ཁོངས།་\"</emph>སྟར་འགོད་ནང་ནས་སྔོན་མཚན་འཇོག་བྱས་པའི་དྲ་མིག་གི་མིང་འདེམས་པར་བྱ། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/schart/00.po b/source/bo/helpcontent2/source/text/schart/00.po
index 3d184395d1b..5e156a97a32 100644
--- a/source/bo/helpcontent2/source/text/schart/00.po
+++ b/source/bo/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 15:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/bo/helpcontent2/source/text/shared/00.po b/source/bo/helpcontent2/source/text/shared/00.po
index 3c1e4337651..ecdb6c72655 100644
--- a/source/bo/helpcontent2/source/text/shared/00.po
+++ b/source/bo/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index a7ed34b81b9..e0e98500dcd 100644
--- a/source/bo/helpcontent2/source/text/shared/01.po
+++ b/source/bo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/bo/helpcontent2/source/text/shared/02.po b/source/bo/helpcontent2/source/text/shared/02.po
index 9ad25765a33..9a9f1e99da1 100644
--- a/source/bo/helpcontent2/source/text/shared/02.po
+++ b/source/bo/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/bo/helpcontent2/source/text/shared/guide.po b/source/bo/helpcontent2/source/text/shared/guide.po
index e04cd31da24..17fd69527d6 100644
--- a/source/bo/helpcontent2/source/text/shared/guide.po
+++ b/source/bo/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/bo/helpcontent2/source/text/shared/optionen.po b/source/bo/helpcontent2/source/text/shared/optionen.po
index 2817df969b5..c16ddf47376 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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/bo/helpcontent2/source/text/simpress/01.po b/source/bo/helpcontent2/source/text/simpress/01.po
index 197567fd8a3..cc7c247a65a 100644
--- a/source/bo/helpcontent2/source/text/simpress/01.po
+++ b/source/bo/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/bo/helpcontent2/source/text/swriter/guide.po b/source/bo/helpcontent2/source/text/swriter/guide.po
index 81df824bc26..2a507fbed42 100644
--- a/source/bo/helpcontent2/source/text/swriter/guide.po
+++ b/source/bo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "<emph>ཚད་གཞིའི་ཚང་</emph> <emph>ལག་རོགས་</emph>རིས་རྟགས་ལ་རྐྱང་རྡེབ་བྱེད་ <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id5211883\" xml-lang=\"bo\">རིས་རྟགས་</alt></image> <emph>ལག་རོགས་</emph>ཁ་ཕྱེ།"
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
index 9192808f238..f3093c57139 100644
--- a/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23736,6 +23736,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26101,6 +26110,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26119,6 +26137,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/bo/sc/messages.po b/source/bo/sc/messages.po
index 551ec71ccaf..7a18b65ec41 100644
--- a/source/bo/sc/messages.po
+++ b/source/bo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15782,6 +15782,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
#, fuzzy
msgctxt "subtotalgrppage|liststore1"
@@ -16358,12 +16363,12 @@ msgstr "ཆ་རྐྱེན་གྱི་རྣམ་གཞག"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17669,90 +17674,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "ཁ་བརྒྱབ།(~C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "ཟིན་ཐོ་གསབ་སྣོན།"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "གསར་བཟོ།(~N)"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "སུབ་པ།"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "སླར་གསོ།"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "འོག་གི་ཟིན་ཐོ་གཅིག"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "འོག་གི་ཟིན་ཐོ་གཅིག"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "ཁ་བརྒྱབ།(~C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ས་གནས་ཁུལ་བཤར་ལྟ།"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "གཞི་གྲངས་མཛོད་ཀྱི་ཁུལ་ཁོངས།"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19559,35 +19521,40 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "གཞི་གྲངས།"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "སྟར།"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "ཕྲེང་།"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "ཚོ་སྒྲིག་གི་གཞི་གྲངས།"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "གྲངས་བགྲངས་བར་ཆོད།"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19735,167 +19702,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22535,17 +22504,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24532,111 +24511,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "སྒེའུ་ཁུང་།(~W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "མངོན་པ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "གབ་པ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "ཤོག་གྲངས་བརྗེ་བ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "རིས་མཚོན།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "རི་མོ་འབྲི་བ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "མངོན་པ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "གབ་པ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "མངོན་པ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "གབ་པ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "མངོན་པ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "གབ་པ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "བྱ་ཡུལ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "མངོན་པའི་སྡུར་ཚད།"
diff --git a/source/bo/scp2/source/ooo.po b/source/bo/scp2/source/ooo.po
index ee8298380e5..d35e05b6855 100644
--- a/source/bo/scp2/source/ooo.po
+++ b/source/bo/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "ཡིག་ཚགས་ཁ་འབྱེད།"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/bo/scp2/source/winexplorerext.po b/source/bo/scp2/source/winexplorerext.po
index 7cef0f2809e..29402f9b093 100644
--- a/source/bo/scp2/source/winexplorerext.po
+++ b/source/bo/scp2/source/winexplorerext.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 19:02+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -12,8 +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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369348974.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows ཡི་ཐོན་ཁུངས་དོ་དམ་ཡོ་ཆས་སྤྱད་དེ་ཀྲུང་པའོ་ཕུའུ་ཧ་Office ཡིག་ཆའི་ཆ་འཕྲིན་མངོན་སྟོན་བྱེད་རྒྱུ། དཔེར་ན་བསྡུས་རིས་ལ་སྔོན་ལྟ་བྱེད་རྒྱུ།"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/bo/sd/messages.po b/source/bo/sd/messages.po
index c1bd15b2e1c..b85b6aaa549 100644
--- a/source/bo/sd/messages.po
+++ b/source/bo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2646,6 +2646,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3134,164 +3139,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4781,160 +4971,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/bo/sfx2/messages.po b/source/bo/sfx2/messages.po
index a5db79d3448..bc92512c7cf 100644
--- a/source/bo/sfx2/messages.po
+++ b/source/bo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -915,11 +915,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "གཏོགས་གཤིས་སུབ་རྒྱུ།"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -929,28 +924,28 @@ msgstr ""
"ནང་འཇུག་བྱས་པའི་ཐང་དེ་དམིགས་འཛུགས་བྱས་པའི་སྣ་རིགས་དང་ཟླ་སྒྲིག་གི་མིན་འདུག \n"
"ཐང་འདི་སྣ་རིགས་སུ་ཉར་འཇོག་བྱེད་སྲིད།"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ཡིག་ཆ་འདི་གནས་འདུག འགེབས་སམ།"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "བསྐྱར་འཛུགས།"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "བཟོ་དབྱིབས་གཅིག་གིས་མིང་དེ་བེད་སྤྱོད་བྱས་ཟིན་པ།"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "བཟོ་དབྱིབས་དེ་མེད་པ།"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -960,7 +955,7 @@ msgstr ""
"བཟོ་ལྟ་འདི་གཞི་རྩའི་བཟོ་ལྟར་སྤྱོད་ཐབས་མིན་འདུག \n"
"དེ་ལྟར་མིན་ན་རིམ་ལོག་སྐུལ་སྤྱོད་ཐོན་བཟོ་ཡོད།"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -969,7 +964,7 @@ msgstr ""
"མིང་དེ་ནི་བཟོ་དབྱིབས་ངོས་ལེན་གྱི་མིང་ཡིན་པས་\n"
"དེ་མིན་གྱི་མིང་ཞིག་བེད་སྤྱོད་གནང་རོགས།"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -977,103 +972,103 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "ཕྱོགས་ཁྲིད།"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "གསང་རྟགས་ནོར་བ་ངོས་འཛིན།"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "གཏོང་སྐྱེལ།"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "ཉར་ཚགས་པར་གཞི།"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "རིམ་པ་སྒྲིག་སྟངས།"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "སྐོང་གཟབ།"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "མ་ཚུལ་གསར་འཛུགས།"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "བཟོ་ལྟ་(~U)གསར་བརྗེས།"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "ཁྱེད་ཀྱིས་ཟིན་ཐོ་སུབ་ངོ་མ་ཡིན་ནམ། སུབ་ན་མིག་སྔའི་ཟིན་ཐོའི་ནང་དོན་ཡོངས་རྫོགས་ཟུབ་ཀྱི་རེད།"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ཟིན་ཐོ་འདོར་བ།"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "འགོ་སྒྲིག་གི་ཐེངས་དང་པོའི་བེད་སྤྱོད་ཀྱི་དཔེ་པང་།"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr "ངོས་བཟུང་གི་པར་འཁོར་མ་ཪྙེད་པ། པར་འཁོར་ཞིག་བདམས་ནས་བསྐྱར་དུ་པར་འདེབས་བྱེད་པ།"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1082,17 +1077,17 @@ msgstr ""
"པར་འཁོར་འགོ་འཛུགས་ཐབས་བྲལ། \n"
"པར་འཁོར་གྱི་བགོ་སྒྲིག་ལ་ཞིབ་བཤེར་བྱེད་རྒྱུ།"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "པར་འཁོར་ལས་བྲེལ་ཆེན་པོ་འདུག"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ལྟ་ཀློག་ཙམ།)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1103,7 +1098,7 @@ msgstr ""
"འགུལ་སྤྱོད་ཡིག་ཚགས་ཁྲོད་\n"
"སྒྲིག་སྦྱོར་གསར་པ་ཉར་ཚགས་བྱེད་མཁན་ཡིན་ནམ།"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1114,7 +1109,7 @@ msgstr ""
"འགུལ་སྤྱོད་ཡིག་ཆའི་ཁྲོད་\n"
"སྒྲིག་བཀོད་གསར་པ་དེ་ཉར་ཚགས་བྱེད་མཁན་ཡིན་ནམ།"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1125,7 +1120,7 @@ msgstr ""
"འགུལ་སྤྱོད་ཡིག་ཚགས་ཁྲོད་\n"
"སྒྲིག་སྦྱོར་གསར་པ་ཉར་ཚགས་བྱེད་མཁན་ཡིན་ནམ།"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1133,7 +1128,7 @@ msgid ""
" print job is being carried out."
msgstr "མིག་སྔར་ཡིག་ཆ་དེ་ཁ་རྒྱག་ཐབས་བྲལ་འདུག རྒྱུ་མཚན་ནི་པར་འདེབས་ཀྱི་ལས་འགན་ཞིག་སྒྲུབ་བཞིན་པའི་སྒང་རེད།"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1141,7 +1136,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1149,18 +1144,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ཡིག་ཚགས་དེ་རྩོམ་སྒྲིག་བྱེད་ཐབས་བྲལ། དེའི་རྒྱུ་རྐྱེན་ནི་འཛུལ་ཞུགས་དབང་ཚད་མེད་པའི་རྐྱེན་གྱིས་རེད། ཡིག་ཚགས་དེའི་འདྲ་དེབ་རྩོམ་སྒྲིག་བྱེད་དམ།"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1168,353 +1163,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (སླར་གསོ་ཟིན་པའི་ཡིག་ཚགས་)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ཡིག་ཚགས་རྩོམ་སྒྲིག"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ཡིག་ཆ་ཉར་ཚགས།"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "འདེམས་གཞི་གང་མང་།(~O)"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "རང་བཟོས་ཀྱི་འགུལ་རིས།..."
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "བསུབ་པ།"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1890,34 +1895,18 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "པར་གཞིའི་མཆན་འགོད།"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "མིང་།"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-#, fuzzy
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "type"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "གྲངས་ཐང་།"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
#, fuzzy
msgctxt "cmisline|type"
msgid "Type"
msgstr "type"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "རེད།"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "མིན།"
@@ -1927,18 +1916,18 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "མིང་།"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
#, fuzzy
msgctxt "custominfopage|type"
msgid "Type"
msgstr "type"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "གྲངས་ཐང་།"
@@ -2080,19 +2069,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ས་གནས།"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "རིགས།:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "གསང་ཨང་བཟོ་བཅོས།(~P)..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2103,28 +2092,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "རྒྱུནགཏན།"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "གསལ་བཤད།"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2350,6 +2339,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/bo/shell/messages.po b/source/bo/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/bo/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/bo/starmath/messages.po b/source/bo/starmath/messages.po
index 9d0d38b7689..3f04a7885ff 100644
--- a/source/bo/starmath/messages.po
+++ b/source/bo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1673,278 +1673,303 @@ msgid "Examples"
msgstr "དཔེ་སྟོན།"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "ཚད་གཞི།"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "གསེག་གཟུགས།"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "སྦོམ་གཟུགས།"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "ཡིག་ནག"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "སྔོན་པོའི་བསྡུར་ཚད།"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "ལྗང་ཁུའི་བསྡུར་ཚད།"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "མུ་མེན་དམར་མདོག"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ཐལ་མདོག"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "དུས་ཚོད།"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "སེར་པོ།"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "གབ་པ།"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "དྲང་རྒྱུད།"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "ཡིག་གཟུགས།"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "གཡོན་ཕྱོགས།"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ནང་།"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "གཡས་ཕྱོགས།"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "བཀའ་བརྡ།"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "སྤྱི་འགྲོས།"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ཡིག་ཚགས་ཉར་ཚགས་བྱེད་བཞིན་པ།"
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION སྤྱི་འགྲོས།"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ནོར་བ།: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "བསམ་ཡུལ་ལས་འདས་པའི་ཡིག་རྟགས།"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{'རེ་འགུག"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' རེ་འགུག"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' རེ་འགུག"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' རེ་འགུག"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' རེ་འགུག"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "དཚོས་གཞི་རེ་འགུག"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT'རེ་འགུག"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ནང་དོན།"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ཁ་བྱང་།"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "སྤྱི་འགྲོས་གསལ་བཤད་ཡི་གེ(~F)"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "མཐའ་སྒྲོམ།"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "ཆེ་ཆུང་།"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "མ་དེབ་ཆེ་ཆུང་།(~R)"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ཤོག་ངོས་ཆེ་ཆུང་ལ་ལེགས་སྒྲིག་གིས་བསྒྱུར་བ།(~F)"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2020,6 +2045,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "གཞི་རྒྱུ།"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/bo/svtools/messages.po b/source/bo/svtools/messages.po
index 5b177fde50d..93f0f853348 100644
--- a/source/bo/svtools/messages.po
+++ b/source/bo/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1537 +16,1539 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195268.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ཕྱིར་འཐེན།(~U)"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "སླར་གསོ།(~E)"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "བསྐྱར་ཟློས།(~R)"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "རྣམ་གཞག་བཟོས་མེད་པའི་ཡིག་དེབ།"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx Internal Linkརྣམ་པའི་འབྲེལ་ཡོད་ཀྱི་ཆ་འཕྲིན།"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscapeགདོང་འཛར།"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star ཞབས་ཞུའི་རྩིས་འཁོར་གྱི་རྣམ་གཞག"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star དམིགས་བྱའི་རྣམ་གཞག"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet དམིགས་བྱ།"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "PlugIn དམིགས་བྱ།"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/གཙོ་འཛིན་ཡིག་ཚགས་ 4.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/གཙོ་འཛིན་ཡིག་ཚགས་ 5.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObjectརིས་འབྲིའི་དམིགས་བྱ།"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word དམིགས་བྱ།"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Officeཡིག་ཚགས་དམིགས་བྱ།"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes ཡིག་ཚགས་ཆ་འཕྲིན།"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx ཡིག་ཚགས།"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "རིས་དབྱིབས་དམིགས་བྱ།"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows རྒྱུའི་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "གཞི་གྲངས་མ་ཁུངས་བྱ་ཡུལ།"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "གཞི་གྲངས་མ་ཁུངས་ལས་ཀའི་རེའུ་མིག"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQLའདྲི་རྩད།"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "རིམ་འདས་སྦྲེལ་མཐུད།"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "མཆན་འགྲེལ་མེད་པའི་མེད་པའི་རྣམ་གཞག"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "དམིགས་བྱ་ %བར་འཇུག་བྱེད་ཐབས་བྲལ།"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ཡིག་ཚགས་ % ནས་དམིགས་བྱ་བར་འཇུག་བྱེད་ཐབས་བྲལ།"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "བྱ་ཡུལ་གཞན་དག"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "ཡོང་ཁུངས་ཁ་གསལ་མེད་པ།"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "མིང་།"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "ཆེ་ཆུང་།"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "བཟོ་བཅོས་བྱས་པའི་དུས་ཚོད།"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "རིགས།"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ཡིག་ཚིགས།"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ཡིག་ཚེག་སྟོང་།"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "ས་ཡའི་ཡིག་ཚིགས།"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ཡིག་ཚེག་ས་ཡ།"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "ཕྲེང་%1 གཞུང་%2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr "རིགས་གྲས་ %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ཡིག་ཚང་།"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ཡིག་ཆ།"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ཡིག་དུམ་སྟོང་པ།"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "གསལ་བྱེད་གྲངས་ཀའི་རྣམ་པ།"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "སྤྱིར་བཏང།"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ཡིག་རྟགས་ཚོགས་སྤྱི།"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "ཚིག་མཛོད།"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "ཕིང་ཡིང་།"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "འབྲི་སྟངས།"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "ཡིག་རིས།"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "གཅིག་གྱུར་ཨང་རྟགས།"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "སྒྲ་འགོད་པ།"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ཁ་པར་དེབ།"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "སྐད་གདངས་ཀྱི(ཨང་གི་སྔོན་དུ་སྒྲིག་པ)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "སྐད་གདངས་ཀྱི(ཡི་གེའི་ཨང་གི་མཇུག་ཏུ་སྒྲིག་པ)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "གསལ་བྱེད་གྲངས་ཀའི་རྣམ་པ།"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "ཚིག་མཛོད།"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "ཕིང་ཡིང་།"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "ཡིག་རིས།"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "འབྲི་སྟངས།"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "སྒྲ་འགོད་པ།"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "སྐད་གདངས་ཀྱི(ཡི་གེ་ཨང་གི་སྔོན་དུ་སྒྲིག་ནས་སྒྲ་གདངས་ནས་བཙུགས་དབྱེ་བ)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "སྐད་གདངས་ཀྱི(ཡི་གེའི་ཨང་གི་སྔོན་དུ་སྒྲིག་ནས་སྒྲ་ཡང་འཇུག་གིས་བཙུགས་དབྱེ་བ)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "སྐད་གདངས་ཀྱི(ཨང་གི་མཇུག་ཏུ་སྒྲིག་པ་དང་སྒྲ་གདངས་ནས་བཙུགས་དབྱེ་བ)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "སྐད་གདངས་ཀྱི(ཨང་གི་མཇུག་ཏུ་སྒྲིག་པ་དང་སྒྲ་ཡང་འཇུག་ནས་བཙུགས་དབྱེ་བ)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "དེ་རིང་།"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "མེད།"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ཕྲ།"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "གསེག་ཐིག་ཕྲ་མོ།"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "ཚད་གཞི།"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "གསེག་གཟུགས།"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "སྦོམ་གཟུགས།"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "སྦོམ་གསེག་གཟུགས།"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ཡིག་ནག"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "ཡིག་ནག་འཁྱོག་པོ།"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "དཔེ་དེབ།"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "སྡུད་སྒྲིལ་ཡིག་གཟུགས།"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "བཪྙན་ཡོལ་མངོན་སྟོན་དང་པར་འདེབས་གཉིས་ཀར་ཡིག་གཟུགས་གཅིག་པ་ཡིན།"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "དེ་ནི་པར་འདེབས་ཡིག་གཟུགས་ཡིན། བཪྙན་བཤེལ་མངོན་འཆར་གྱི་ཡིག་གཟུགས་དེ་"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "ཡིག་གཟུགས་འདི་རིགས་སམ་ཡང་ན་དེ་དང་འདྲ་ཤོས་ཀྱི་ཡིག་གཟུགས་སྐྱེད་གྲུབ་བྱེད་རྒྱུ།"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ཡིག་གཟུགས་དེ་བསྒར་འཇུག་བྱས་མིན་འདུག ད་ལྟ་སྤྱོད་བཞིན་པ་དེ་ནི་ཡིག་གཟུགས་འདྲ་ཤོས་དེ་ཡིན།"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ས་གནས་ཁུལ་བཤར་ལྟ།"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ཕྲེང་འོག་སྤོ།"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "གཡོན་ལ།"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "གཡས་ལ།"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "འོག་ལ་སྤོ།"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ཁ་སྣོན།"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "དབུས་ནས་གོང་འོག་ལ་འགྲེམས་པ།"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "དྲང་འཕྱང་མཚོན་ཁྲེ།"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 གནས་ - ཐོག་མའི་ཐང་།"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1གནས་-འདར་འགུལ།"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 གནས་ཀྱི་སྐྱ་ཚད།"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 གནས་ཀྱི་སྐྱ་ཚད།"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 གནས་དངོས་མའི་ཚོན་ཁྲ།"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "cost"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "རིམ་སྒྲིག"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "མཚམས་འཇོག"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ཐོག་མར་སྒྱུར་བཞིན་པ།..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "སྒུག་བསྡད་པ།"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ནོར་བ།"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ཤོག་ངོས་སུབ་པ།(~E)"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "ནང་གསོག་མ་འདང་བ།"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ངོས་བཟུང་གི་པར་འཁོར།"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Word ཡིག་ཚགས།"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "ལེགས་སྒྲུབ།(~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "གོམ་སྟབས་རྗེས་མ།(~N) >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< གོམ་རིམ་གོང་མ་(~K)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "གོམ་སྟབས།"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<མེད།>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ཀུང་སི།"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "སྡེ་ཚན།"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "མིང་།"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "མིང་རིགས།"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ཁྲོམ་གཞུང་།"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "རྒྱལ་ཁབ།"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "སྦྲག་སྲིད་སྒྲིག་ཨང་།"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "གྲོང་ཁྱེར།"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "གོ་ཐོབ།"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "གོ་གནས།"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "འབོད་ལུགས།"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "སྐུངས་ཡིག"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "ཁམས་བདེའི་སྐད་ཆ།"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "སྒེར་གྱི་ཁ་པར་ཨང་གྲངས།"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "ཀུང་སིའི་ཁ་པར་ཨང་གྲངས།"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "མཆན་འགོད།"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "སྤྱོད་མཁན། 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "སྤྱོད་མཁན། 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "སྤྱོད་མཁན། 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "སྤྱོད་མཁན། 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ཞིང་ཆེན་དང་། ཐད་སྐྱོང་གྲོང་ཁྱེར། རང་སྐྱོང་ལྗོངས།"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "གཞུང་ལས་ཁང་གི་ཁ་པར་ཨང་གྲངས།"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "འབོད་བརྡ་གཏོང་བའི་འཕྲུལ་འཁོར་གྱི་ཨང་གྲངས།"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "ལག་ཐོགས་ཁ་པར་ཨང་གྲངས།"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ཁ་པར་ཨང་གྲངས་གཞན་དག"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ལོ་ཐོ།"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "གདན་ཞུ།"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JREཡོད་དགོས།"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "འདེམས་པ། JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE རྩིས་འགྲོ་མེད།"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "གཞིའི་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ཤོག་འཛར་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "རིས་དབྱིབས།"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ཡིག་ཆ་སྒྲིག་སྦྱོར།"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "ཉེར་སྤྱོད་གོ་རིམ།"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "གཞི་གྲངས་མཛོད་ཀྱི་རེའུ་མིག"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "རྒྱུད་ཁོངས་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Wordཡིག་ཚགས།"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "རོགས་རམ་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTMLཡིག་ཚགས།"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ཡིག་ཚགས་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ཡིག་ཆ་ཟིན་ཐོ་འགོད་པ།"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 དཔེ་པང་།"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 གཙོ་བོའི་ཚོད་འཛིན་ཡིག་ཚགས།"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 དཔེ་པང་།"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ཡིག་དེབ་ཀྱི་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "འབྲེལ་མཐུད།"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 དཔེ་པང་།"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel ཡིག་ཚགས།"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel དཔེ་པང་།"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ཡིག་ཆར་མཆན་འགོད།"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ཡིག་ཆ།"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ཡིག་ཚང་།"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ཡི་གེ་སྒྲིག་གཅོད་ཀྱི་ཡིག་ཚགས།"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ལས་ཀའི་དེབ།"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "སྟོན་་འགྲེམས་ཟིན་བྲིས།"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "རི་མོ་འབྲི་བ།"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTMLཡིག་ཚགས།"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "གཙོ་བོའི་ཚོད་འཛིན་ཡིག་ཚགས།"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "སྤྱི་འགྲོས།"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "གཞི་གྲངས་མཛོད།"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ཆ་ཤས་ཀྱི་འགུལ་སློང་འཕྲུལ་ཆས།"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "མཉེན་སྡེར།"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "འོད་སྡེར་སྒུལ་འདེད་ཡོ་ཆས།"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "དྲ་རྒྱའི་སྦྲེལ་མཐུད།"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Microsoft PowerPoint ཡིག་ཚགས།"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Microsoft PowerPoint དཔེ་པང་།"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Microsoft PowerPoint Show"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML ཡིག་ཚགས།"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "%PRODUCTNAME %PRODUCTVERSIONགྲངས་གཞིའི་ཐོ་མཛོད།"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "%PRODUCTNAME %PRODUCTVERSION རི་མོ་འབྲི་བ།"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION སྤྱི་འགྲོས།"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "%PRODUCTNAME %PRODUCTVERSION གཙོ་བོའི་ཚོད་འཛིན་ཡིག་ཚགས།"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "%PRODUCTNAME %PRODUCTVERSION སྟོན་་འགྲེམས་ཟིན་བྲིས།"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "%PRODUCTNAME %PRODUCTVERSION ལས་ཀའི་དེབ།"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "%PRODUCTNAME %PRODUCTVERSION ཡི་གེ་སྒྲིག་གཅོད་ཀྱི་ཡིག་ཚགས།"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "%PRODUCTNAME %PRODUCTVERSION ཡི་ལས་དེབ་དཔེ་པང་།"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "%PRODUCTNAME %PRODUCTVERSION རིས་འབྲིའི་དཔེ་པང་།"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "%PRODUCTNAME %PRODUCTVERSION འགྲེམས་སྟོན་ཟིན་བྲིས་ཀྱི་དཔེ་པང་།"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "%PRODUCTNAME %PRODUCTVERSION ཡི་གེ་སྒྲིག་གཅོད་ཀྱི་དཔེ་པང་།"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAMEརྒྱ་སྐྱེད།"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/bo/svx/messages.po b/source/bo/svx/messages.po
index b373c0b2aa0..99aed8cd0ba 100644
--- a/source/bo/svx/messages.po
+++ b/source/bo/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8061,6 +8061,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12606,87 +12611,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "ཟླུམ་སྐོར་རྩེ་ཚེག་རྩོམ་སྒྲིག་བྱེད་པ།"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "ཉེར་སྤྱོད།"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "རྩོམ་སྒྲིག་ས་ཁོངས།"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "འདེམས་པ།"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "ལིང་ཚེ།"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ཟླུམ་པོགཟུགས།"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "མཐའ་མང་དབྱིབས།"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "རྩོམ་སྒྲིག་བྱེད་གནས།"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "རྩེ་ཚེག་སྤོ་སྒུལ།"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "རྩེ་ཚེག་གསབ་སྣོན།"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "རྩེ་གཅིག་སུབ་པ།"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "རང་འགུལ་སྤྱི་ཁོག"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "ཕྱིར་འཐེན། "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "དམར་པོ"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13031,124 +13041,118 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "ཤོག་ཞབས།"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "བཪྙན་རིས་རྟེན་འཕྲོའི་རྩོམ་སྒྲིག་ཆས།"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "ཉེར་སྤྱོད།"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "ཁ་ཕྱེ་བ།..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "ཉར་ཚགས།..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "ཁ་བརྒྱབ།"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "འདེམས་པ།"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "ལིང་ཚེ།"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ཟླུམ་པོགཟུགས།"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "མཐའ་མང་དབྱིབས།"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "རང་འགུལ་མཐའ་མང་དབྱིབས་"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "རྩོམ་སྒྲིག་བྱེད་གནས།"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "རྩེ་ཚེག་སྤོ་སྒུལ།"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "རྩེ་ཚེག་གསབ་སྣོན།"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "རྩེ་གཅིག་སུབ་པ།"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "ཕྱིར་འཐེན། "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "དམར་པོ"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "བེད་སྤྱོད་བཞིན་"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "ཧུང།..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "གཏོགས་གཤིས།: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "གནས་ཡུལ།"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "སྒྲོམ་གྱི་ཁ་གཏད།"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/bo/sw/messages.po b/source/bo/sw/messages.po
index d3ced628919..7b836f0ce36 100644
--- a/source/bo/sw/messages.po
+++ b/source/bo/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:43+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bo\n"
@@ -3156,7 +3156,7 @@ msgid "Change object title of $1"
msgstr "%1གི་དམིགས་བྱའི་གོ་རིམ་བཟོ་བཅོས་བརྒྱབ།"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12700,147 +12700,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12850,152 +12850,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14119,7 +14119,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17681,51 +17681,51 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "སྔོན་ལྟ།"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "སྔོན་ལྟ།"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "རིགས།"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "དཀར་ཆག(~E)"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "བཟོ་དབྱིབས།"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
#, fuzzy
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "ཚང་།"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "རྒྱབ་ལྗོངས།"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "སྔོན་ལྟ།"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "རིམ་པ།"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17976,326 +17976,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "རྩོམ་སྒྲིག..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "ཁ་བྱང་།:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "རིགས།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "རེའུ་མིག་ནང་དོན།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "སྤྱོད་པའི་རིགས་1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ཚད་ལྡན་ཡིག་ཆའི་དཀར་ཆག"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "རེའུ་མིག་ཐོ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "ཡིག་ཚགས་ཚང་མ། (~E)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "ལེའུ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "ཡིག་གཟུགས་ཀྱི་སྤྱི་ཁོག"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "རེའུ་མིག"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "ཡིག་དེབ་སྒྲོམ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "པར་རིས།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE བྱ་ཡུལ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "ཆ་རྐྱེན་ཡོད་པའི་བཟོ་དབྱིབས།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "བཟོ་དབྱིབས།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "གདམ་ཚན།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "བྱ་ཡུལ་གྱི་མིང་།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "ཁུལ་ཁོངས།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "གསལ་བ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "འདྲེན་སྤྱོད།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "རིགས་དབྱེ་དང་ཨང་སྒྲིག"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "གདོང་འཛར་ཡི་གེ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "གུག་རྟགས།(~B)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[མེད།]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ཡིག་ཆ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
#, fuzzy
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "གདམ་ཚན།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "སྐད་ཡིག"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "རིམ་སྒྲིག"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "རིམ་པ།"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(དུམ་མཚམས་བཟོ་ལྟ་): "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "ཚད་གཞི།"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "རྩོམ་སྒྲིག"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/br/cui/messages.po b/source/br/cui/messages.po
index 5dd52314568..707f26852bd 100644
--- a/source/br/cui/messages.po
+++ b/source/br/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1646,107 +1646,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Hep ribl"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Despizañ ar riblenn diavaez nemetken"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Despizañ ar riblenn diavaez hag al linennoù a-blaen"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Despizañ ar riblenn diavaez hag an holl linennoù diabarzh"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Despizañ ar riblenn diavaez gant al linennoù diabarzh digemm"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Despizañ al linennoù treuzvegel nemetken"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Despizañ ar peder riblenn"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Despizañ ar riblennoù kleiz ha dehou hepken"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Despizañ ar riblennoù uhelañ hag izelañ hepken"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Despizañ ar riblenn gleiz hepken"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Despizañ ar riblennoù uhelañ hag izelañ hag an holl linennoù diabarzh"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Despizañ ar riblennoù kleiz ha dehou hag an holl linennoù diabarzh"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Hep skeud"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Bannañ ar skeud en traoñ a-zehou"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Bannañ ar skeud e-krec'h a-zehou"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Bannañ ar skeud en traoñ a-gleiz"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Bannañ ar skeud e-krec'h a-gleiz"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1789,7 +1784,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1909,7 +1904,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2149,7 +2144,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2404,12 +2399,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2479,7 +2474,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2559,7 +2554,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2800,7 +2795,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3387,66 +3382,71 @@ msgid "About %PRODUCTNAME"
msgstr "A-zivout %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Perzhia_ded"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Lec'hienn"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID ar savadur : $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Yezh : $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "Un heuliad burevek aes d'ober gantañ, digor e darzhioù, arnevez eo %PRODUCTNAME evit an testennoù, ar renkelloù, ar c'hinnigadennoù ha kalz traoù all c'hoazh."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "Diazezet war OpenOffice.org eo LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "Deveret eo %PRODUCTNAME diouzh LibreOffice a zo diazezet war OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Gant %OOOVENDOR eo pourchaset ar meziant-mañ."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3563,17 +3563,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Amsaviñ"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Am_saviñ"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Gant :"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Testenn hepken"
@@ -4394,6 +4394,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Led ger izek"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5504,27 +5664,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Perzhioù"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Stern :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Anv :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Tes_tenn all :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Deskrivadur :"
@@ -9049,80 +9209,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Skoazell"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Arverañ _boestadoù emziviz %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Boestadoù emziviz Digeriñ/Enrollañ"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Arverañ boesta_doù emziviz %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Boestadoù emziviz Moullañ"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Stad \"Teul daskemmet\" evit an arventennoù _moullañ"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stad an teul"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Jubenniñ da vloazioù etre "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ha "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Bloaz (2 sifr)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Dastum roadennoù a-fet arver ha kas-i da The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Roit skoazell da wellaat %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Kargañ %PRODUCTNAME e-pad m'emañ ar reizhiad o loc'hañ"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Gweredekaat al loc'hañ herrek er maez rebuziñ"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Loc'hañ herrek %PRODUCTNAME"
@@ -11008,25 +11168,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Neuzioù personel"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Pe, diuzañ e-touez an neuzioù bet staliet dre askouezhioù :"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Neuzioù Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11655,102 +11800,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Dibarzhioù diogelroez"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Diuzañ neuz Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12759,27 +12808,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/br/extensions/messages.po b/source/br/extensions/messages.po
index 6be9d29ca71..f601fe34f6c 100644
--- a/source/br/extensions/messages.po
+++ b/source/br/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3177,162 +3177,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Pajennaozañ ar bannoù evit an daolenn %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Diverradur"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Aozour(ion)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Ti Embann"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Chabistr"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Embanner"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Rizh"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Bloaz"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tit_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Cho_mec'h"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pa_jenn(où) "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Em_bannadur"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Titl al levr"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Levrenn"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Ri_zh an embannadur"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Ao_zadur"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Ensavad_ur"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Skol _Uhel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Rizh da_nevell"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Miz"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Kazetenn"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Niv_er"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Ste_udadoù "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "N_otennoù"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Notenn"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Maezienn despizet gant an arveriad _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Maezienn despizet gant an arveriad _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Maezienn despizet gant an arveriad _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Maezienn despizet gant an arveriad _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Maezienn despizet gant an arveriad _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Anvioù ar bannoù"
@@ -3507,27 +3507,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Enankit anv ar rizh roadennoù nevez :"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Eren ar maeziennoù"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Aliañ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "An isfurmskridoù a ro tu da skrammañ stlennoù munudet diwar-benn enrolladur bremanel ar furmskrid mestr. D'henn ober, erspizit bannoù an isfurmskrid o klotañ gant bannoù all ar furmskrid mestr."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "skritellig"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "skritellig"
diff --git a/source/br/officecfg/registry/data/org/openoffice/Office/UI.po b/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
index b79d7b840bc..004990cf012 100644
--- a/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23563,6 +23563,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25870,6 +25879,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25888,6 +25906,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/br/sc/messages.po b/source/br/sc/messages.po
index 05468be5168..bf1ef2b1981 100644
--- a/source/br/sc/messages.po
+++ b/source/br/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15571,6 +15571,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(haeziñ ezpellaus)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16127,12 +16132,12 @@ msgstr "Ardeiñ ar mentrezhañ amplegadek"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17379,83 +17384,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Furmskrid roadennoù"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Serriñ"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Enrolladenn nevez"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nevez"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Dilemel"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Assav"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Enrolladenn _gent"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Enrolladenn _war-lerc'h"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Serriñ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Lanvoù roadennoù war-eeun"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL :"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-#, fuzzy
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Enankañ URL an teul tarzh er reizhiad restroù lec'hel pe er Genrouedad amañ."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Kantreal..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Lijorennoù ar stlennvon"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Lanv tarzh"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19182,32 +19145,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Disoc'hoù da :"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Roadennoù"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Bannoù"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Renkoù"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Strollet dre"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Etremez :"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Arventennoù"
@@ -19354,167 +19322,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22065,17 +22035,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Disoc'hoù ar c'hlask"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23973,107 +23953,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Arouezioù ar steuñv"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Prenestr"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Linennoù ar _gael :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Liv :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Diskouez"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Skrammañ war kelligoù livet"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Kuzhat"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Lammoù _pajenn"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Linennoù-dealfoù e-_pad an dilec'hiañ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Skoazelloù evit ar gweled"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Er_gorennoù/Skeudennoù :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Dierva_doù :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Ergor_ennoù tresañ :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Diskouez"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Kuzhat"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Diskouez"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Kuzhat"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Diskouez"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Kuzhat"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Ergorennoù"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Goubredañ ar f_ollennoù"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoum"
diff --git a/source/br/scp2/source/ooo.po b/source/br/scp2/source/ooo.po
index bd5afc9b9d6..40b38295851 100644
--- a/source/br/scp2/source/ooo.po
+++ b/source/br/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Digeriñ un teul"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/br/scp2/source/winexplorerext.po b/source/br/scp2/source/winexplorerext.po
index 09e355a79b6..31a0c25bacb 100644
--- a/source/br/scp2/source/winexplorerext.po
+++ b/source/br/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 10:50+0200\n"
-"Last-Translator: Alan <alan.monfort@free.fr>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:43+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369349011.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Reiñ a ra tu da Ergerzher Microsoft Windows da wereañ ar stlennoù diwar-benn an teulioù eus %PRODUCTNAME, evel alberzioù garventel."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/br/sd/messages.po b/source/br/sd/messages.po
index 44dae437a2e..a541f4446e5 100644
--- a/source/br/sd/messages.po
+++ b/source/br/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2624,6 +2624,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3079,164 +3084,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Anv evit an neuz mod HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4662,160 +4852,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Skrammañ an daskemmadurioù"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/br/sfx2/messages.po b/source/br/sfx2/messages.po
index 36d3f0b584e..ba96666536c 100644
--- a/source/br/sfx2/messages.po
+++ b/source/br/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -917,11 +917,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " B : %1 M : %2 D : %3 E : %4 M : %5 E : %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Dilemel ar perzh"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -930,27 +925,27 @@ msgstr ""
"Ne glot ket ar werzh enanket gant ar rizh erzpizet.\n"
"Kadavet e vo ar werzh-mañ evel testenn."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Ar stil-se a zo anezhañ endeo. Flastrañ ar stil ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Adderaouekaat"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Roet eo bet endeo an anv-se."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Ar stil-mañ n'eus ket anezhañ."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -959,7 +954,7 @@ msgstr ""
"N'hall ket ar stil-mañ bezañ arveret evel stil diazez\n"
"rak un dave askizat a vefe degaset."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -968,7 +963,7 @@ msgstr ""
"Roet eo bet an anv-mañ d'ur stil dre ziouer. \n"
"Dibabit unan all, mar plij."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -979,95 +974,95 @@ msgstr ""
"Mar bez dilamet ar stiloù-se ez ay an destenn gant ar stil kar.\n"
"Ha fellout a ra deoc'h dilemel ar stiloù-mañ ?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stiloù arveret : "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Merdeer"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Kadarnaat ar ger-tremen faziek "
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Kas"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Nodrezh"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Enankañ un askelenn a-fet handelv"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(anv ebet bet despizet)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Roll stiloù"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Urzhaz"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Mod Leuniañ pep tra"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Stil nevez diouzh an diuzad"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "~Hizivaat ar stiloù"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "C'hoant hoc'h eus da nullañ da vat an enrollañ ? Kollet e vo an holl bazennoù enrollet bete-vremañ."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Nullañ an enrollañ"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Deraouekaat ar patromoù evit un arver kentañ"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1076,7 +1071,7 @@ msgstr ""
"N'haller ket dinoiñ ar voullerez dre ziouer.\n"
"Diuzit ur voullerez ha klaskit en-dro."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1085,17 +1080,17 @@ msgstr ""
"N'haller ket loc'hañ ar voullerez !\n"
"Gwiriit he c'hefluniadur."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Moullerez ac'hubet"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (e mod lenn nemetken)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1106,7 +1101,7 @@ msgstr ""
"Fellout a ra deoc'h enrollañ an arventennoù nevez\n"
"en teul oberiat ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1117,7 +1112,7 @@ msgstr ""
"Enrollañ an arventennoù daskemmet en teul\n"
"a fell deoc'h ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1128,7 +1123,7 @@ msgstr ""
"Fellout a ra deoc'h enrollañ an arventennoù nevez\n"
"en teul oberiat ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1137,7 +1132,7 @@ msgstr ""
"N'haller ket serriñ an teul rak\n"
"oberiat eo ar voullerez c'hoazh."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,7 +1140,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1153,17 +1148,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "N'hall ket an teul-mañ bezañ embannet (gwirioù haeziñ re skort). Fellout a ra deoc'h embann un eilad eus an teul ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1171,356 +1166,366 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (teul ratreet)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "N'eo ket eztennet an teul diouzh an dafariad."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Teul digor e mod lenn hepken."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "%1 eo skritell rummata an teul-mañ."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "An teul-mñ a rank bezañ rummataet kent ma vo peget ar golverad."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Ul live rummata izeloc'h eget hini ar golver ez eus gant an teul-mañ."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Diogelroez vroadel :"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Reolerezh an ezporzhiañ :"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Teurel ur sell"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Embann an teul"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Sinañ an teul..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Eoriñ"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Dizeoriñ"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Muioc'h a zibarzhioù"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Serriñ penel ar varrenn gostez"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Arventennoù ar varrenn gostez"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personelaat"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Assav an arventennoù dre ziouer"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Serriñ ar varrenn gostez"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Dilemel"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1889,32 +1894,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Askelenn a-fet handelv :"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Anv"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Rizh"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Gwerzh"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Rizh"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ya"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ket"
@@ -1924,17 +1914,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Ouzhpennañ ur _perzh"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Anv"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Rizh"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Gwerzh"
@@ -2065,17 +2055,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Lec'hiadur :"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Rizh :"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Kemmañ ar _ger tremen"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Patrom :"
@@ -2085,27 +2075,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Perzhioù eus “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Hollek..."
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Deskrivadur"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Perzhioù personelaet"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Perzhioù CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Diogelroez"
@@ -2321,6 +2311,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/br/shell/messages.po b/source/br/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/br/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/br/starmath/messages.po b/source/br/starmath/messages.po
index 5f1ac69a64c..9a93b6bac87 100644
--- a/source/br/starmath/messages.po
+++ b/source/br/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Skouerioù"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Skoueriek"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Stouet"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Tev"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "du"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "glas"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "gwer"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "ruz"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "siañ"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "majenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "loued"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "sitroñs"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "gell"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "glas mor"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olivez"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "limestra"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "argant"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "krakhouad"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "melen"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "kuzhat"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "ment"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "nodrezh"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "kleiz"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "kreiz"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dehou"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Arc'hadoù"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Reollun"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Oc'h enrollañ an teul..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Reollun mod %PRODUCTNAME %PRODUCTVERSION Formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FAZI : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Arouezenn dic'hortozet"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' gortozet"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' gortozet"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' gortozet"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' gortozet"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' gortozet"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Liv rekis"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' gortozet"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Endalc'hadoù"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titl"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Testenn ar ~reollun"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Ri~blennoù"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ment"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Ment ~orin"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "L~akaat da genglotañ gant ar bajenn"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skeul"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elfennoù"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/br/svtools/messages.po b/source/br/svtools/messages.po
index 18858813236..4a76e99ffae 100644
--- a/source/br/svtools/messages.po
+++ b/source/br/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1525 +16,1527 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195275.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Dizober : "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "A~dober : "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "A~rren : "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Testenn anmentrezhet"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Stlenn stad eus Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Sinedoù Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Mentrezh an dafariad Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Mentrezh an ergorenn Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Ergorenn an arloadig"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Ergorenn an enlugellad"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Ergorenn mod StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Ergorenn mod StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Ergorenn mod StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Ergorenn mod StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Ergorenn mod StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Ergorenn mod StarWriter/Mestr 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Ergorenn mod StarWriter/Mestr 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Ergorenn mod StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Ergorenn mod StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Ergorenn mod StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Ergorenn mod StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Ergorenn mod StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Ergorenn mod StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Ergorenn mod StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Ergorenn mod StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Ergorenn mod StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Ergorenn mod StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Ergorenn mod StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Ergorenn mod StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Ergorenn mod StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Ergorenn mod StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Ergorenn mod StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Ergorenn mod StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Ergorenn mod StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Ergorenn mod Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Ergorenn mod StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Ergorenn mod Office document "
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Stlenn teul Notennoù"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Teul mod sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Ergorenn mod StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Ergorenn gevregañ"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Writer/Mestr"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Ergorenn mod OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Trarestr mod Windows (WMF)"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Ergorenn tarzh roadennoù"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Taolenn an tarzh roadennoù"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Azgoulenn mod SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Boestad emziviz OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Gourere"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Mentrezh HTML hep an askelennoù"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "N'haller ket enlakaat an ergorenn %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "N'haller ket enlakaat an ergorenn diouzh ar restr % "
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Ergorennoù all"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Tarzh dianav"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Anv"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Ment"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Deiziad an daskemmañ"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Rizh"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Eizhbitoù"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "Ke"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "Me"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "Ge"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Renk : %1, bann : %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", rizh : %1, URL : %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Teuliad"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Restr"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Maezienn c'houllo"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Lizhersifrennel"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Reizh"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Spletad arouezennoù"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Geriadur"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Tres"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Gwriz"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Levr ar pellgomz"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Soniadouriezh (lizhersifrennel da gentañ)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Soniadouriezh (lizhersifrennel da ziwezhañ)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Lizhersifrennel"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Geriadur"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Gwriz"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Tres"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Soniadouriezh (lizhersifrennel da gentañ, strollañ dre leñvennoù)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Soniadouriezh (lizhersifrennel da gentañ, strollañ dre gensonennoù)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Soniadouriezh (lizhersifrennel da ziwezhañ, strollañ dre leñvennoù)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Soniadouriezh (lizhersifrennel da ziwezhañ, strollañ dre gensonennoù)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Hiziv"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Tra ebet"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Skañv"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Stouet skañv"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Reol"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Stouet"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Tev"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Stouet tev"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Dreisttev"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Stouet gourtev"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Levr"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Krennet"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Hanter-tev"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Arveret eo an hevelep nodrezh gant ar moullañ hag ar skrammañ."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Nodrezh ar voullerez. Ar skrammañ hag ar moullañ a c'hell bout disheñvel."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Drevezet e vo ar stil nodrezh-mañ pe implijet e vo ar stil dereatañ."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "N'eo ket bet staliet an nodrezh-se. Implijet e vo an nodrezh dereatañ."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Kantreal..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Dilec'hiañ d'ar gêr"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "D'an tu kleiz"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "D'an tu dehou"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Dilec'hiañ d'an dibenn"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Ouzhpennañ"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Reolenn a-blaen"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Reolenn a-serzh"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Gwerzh gwehin 1 bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Dithering (skignadur) 1 eizhbit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Liveoù louedoù 4 eizhbit"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Liv 4 eizhbit"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Liveoù louedoù 8 eizhbit"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Liv 8 eizhbit"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Liv gwir 24 eizhbit (True color)"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Ezhomm he deus ar skeudenn war-dro %1 Ke memor."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Ezhomm he deus ar skeudenn war-dro %1 Ke memor, ment ar restr a dalv da %2 Ke."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Ment ar restr a dalv da %1 Ke."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "tasmant"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Rummañ"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Hegerz"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Paouezet"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Lamidigezh diouzhtu."
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ac'hub"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "O teraouekaat"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "O c'hortoz"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "O raktommañ"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "O keweriañ"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "O voullañ"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Ezlinenn"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fazi"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Dafariad dianav"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Choukadur paper"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Diouer a baper"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Boueta dre zorn"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Kudenn gant ar paper"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "En/Ec'h oberiant"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Leun eo ar bailh ermaeziañ"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Mirad izel a doner"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Toner ebet ken"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Lamidigezh pajenn"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Emelladur an arveriad azgoulennet"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memor re skort"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Klozenn digor"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mod da arboell an tredan"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Moullerez dre ziouer"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d a deulioù"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Echuiñ"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~War-lerc'h >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< ~Kent"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Pazennoù"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<tra ebet>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Kevredigezh"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Gwazadur"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Kentanv"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Anv"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Straed"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Bro"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Boneg Post"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Kêr"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titl"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Arc'hwel"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Anvad"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Tallizherennoù"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Troiennoù gourc'hemenn"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Pgz ti"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Pgz burev 1"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notennoù"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Arveriad 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Arveriad 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Arveriad 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Arveriad 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Stad"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Pgz burev 2"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pajenner"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Hezougell"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Pgz (all)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Deiziataer"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Pedadenn"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME en deus ezhomm eus un amva Java runtime environment (JRE) da erounit an trevell-se. Trugarez da staliañ un amva JRE hag adloc'hañ %PRODUCTNAME war-lerc'h."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Kemmet eo bet kefluniadur %PRODUCTNAME. Dre %PRODUCTNAME - Gwellvezioù - %PRODUCTNAME - Kempleshoc'h, diuzit Endro Erounit Java (JRE) a fell deoc'h ma vo arveret gant %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Daskemmet eo bet kefluniadur %PRODUCTNAME. Dre Ostilhoù - Dibarzhioù - %PRODUCTNAME - Kempleshoc'h, diuzit an amva Java runtime environment a fell deoc'h ma vefe arveret gant %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME en deus ezhomm ur Java runtime environment (JRE) da erounit an trevell-se. Siek eo ar JRE bet diuzet. Mar plij, diuzit un handelv all pe stailhit ur JRE nevez ha diuzit eñ dre %PRODUCTNAME - Gwellvezioù - %PRODUCTNAME - Kempleshoc'h."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME en deus ezhomm un amva Java runtime environment (JRE) da erounit an trevell-se. Faziek eo an amva JRE bremanel. Trugarez da ziuzañ un handelv all pe da staliañ ur JRE nevez hag e ziuzañ dre Ostilhoù - Dibarzhioù - %PRODUCTNAME - Kempleshoc'h."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE Rekis"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Diuzañ ar JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Faziek eo ar JRE"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Boneg Tarzh"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Restr ar sinedoù"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Skeudennoù"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Restr kefluniañ"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Arload"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Taolenn ur stlennvon"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Restr ar reizhiad"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Teul mod MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Restr ar skoazell"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Teul mod HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Restr diell"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Restr ar c'herzhlevr"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Stlennvon mod StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Teul mestr mod StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Skeudenn mod StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Restr mod testenn"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Eren"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Patromoù mod StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Teul mod MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Patrom mod MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Restr keweriañ dre lodoù"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Restr"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Teuliad"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Testenn"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Renkell"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Kinnigadenn"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tresadenn"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Teul mod HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Teul mestr"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Reollun"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Stlennvon"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Patrom renkell mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Patrom tresadenn mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Patrom kinnigadenn mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Patrom teul testenn mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unvez lec'hel"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unvez ar gantenn"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unvez ar Sederom"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Kennask ouzh ar rouedad"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Teul mod MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Patrom mod MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Treyonennaoueg mod MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Reollun mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diervad mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Tresadenn mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Renkell mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Kinnigadenn mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Teul testenn mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Teul mestr mod OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Teul mod MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Stlennvon mod OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Tresadenn mod OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Reollun mod OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Teul mestr mod OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Kinnigadenn mod OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Renkell mod OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Testenn mod OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Patrom renkell mod OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Patrom tresadenn mod OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Patrom kinnigadenn mod OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Patrom testenn mod OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Askouezh %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/br/svx/messages.po b/source/br/svx/messages.po
index d8e2a6768d5..e01124ff527 100644
--- a/source/br/svx/messages.po
+++ b/source/br/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7960,6 +7960,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12344,82 +12349,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Embanner an drolinenn"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Seveniñ"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Maez labour"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Diuzañ"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Reizhkorn"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsenn"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Liestueg"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Embann poentoù "
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Dilec'hiañ poentoù"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Enlakaat poentoù"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Dilemel poentoù"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "EmDrolinenn"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Dizober "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Adober"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Garennig"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Aotrevarz liv"
@@ -12743,112 +12753,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Troad pajenn"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Embanner Skeudenn Map"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Seveniñ"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Digeriñ..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Enrollañ..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Serriñ"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Diuzañ"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Reizhkorn"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsenn"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Liestueg"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Liestueg sav taol"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Embann poentoù"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Dilec'hiañ poentoù"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Enlakaat poentoù"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Dilemel poentoù"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Dizober "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Adober"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Oberiant"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Perzhioù..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Chomlec'h :"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Stern :"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Testenn :"
diff --git a/source/br/sw/messages.po b/source/br/sw/messages.po
index af2a150fb26..2ac99273a30 100644
--- a/source/br/sw/messages.po
+++ b/source/br/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3169,9 +3169,9 @@ msgid "Change object title of $1"
msgstr "Kemmañ titl an ergorenn eus $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Kemmañ deskrivadur an ergorenn eus $1"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12153,147 +12153,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12303,152 +12303,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13533,8 +13533,8 @@ msgstr "Astenn an esaouiñ etre ar gerioù war al linennoù gant lammoù linenn
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Gwareziñ ar furmskrid"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16882,47 +16882,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Taolenn an danvezioù, ibil pe levrlennadur"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Alberz"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Alberz"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Rizh"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Enankadoù"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stiloù"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Bannoù"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Drekleur"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Alberz"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Li_ve"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Rizh"
@@ -17152,302 +17152,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Embann..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titl :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Rizh :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Taolenn an danvezioù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Ibil lizherennel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Ibil an taolennoù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Despizet gant an arveriad"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Ibil an ergorennoù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Levrlennadur"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Gwarezet a-enep un daskemmadur dre zorn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Rizh ha titl"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Evit :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Teul a-bezh"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Chabistr"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Priziañ betek al live :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Krouiñ un ibil pe un daolenn eus an danvezioù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Steuñv"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Merkoù i_bilioù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Taolennoù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "S_terniadoù testenn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Skeudennoù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Ergorennoù mod OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Arverañ live ar chabistr orin"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Stiloù _ouzhpenn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stil_où"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Deverkañ ar stiloù..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Leadelloù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Anvioù an ergorenn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Rummad :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Skrammañ :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Daveoù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Rummad ha niverenn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Testenn al leadell"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Krouiñ diouzh"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Krouiñ diouzh an ergorennoù da-heul"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Krommelloù :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Niverenniñ an enankadoù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[tra ebet]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Mentrezhañ an enankadoù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Kenstrollañ an enankadoù heñvel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Kedaozañ an enankadoù heñvel gant p pe _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Kenstrollañ gant -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Teurel evezh ouzh an direnneg"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Enankadoù e pennlizherennoù (emgefreek)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Alc'hwez evit enankadoù dispartiet"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Restr kenglotañ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Restr"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Dibarzhioù"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Yezh :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Rizh alc'hwez :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Rummañ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Li_veoù"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Stiloù ar _rannbennadoù"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Dre ziouer"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Embann"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Deverkadur"
diff --git a/source/brx/cui/messages.po b/source/brx/cui/messages.po
index 0db1cdde33b..a0c747b5f73 100644
--- a/source/brx/cui/messages.po
+++ b/source/brx/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1664,107 +1664,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "जेबो सायख्लुम गैया"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1807,7 +1802,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1927,7 +1922,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2167,7 +2162,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2422,12 +2417,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2497,7 +2492,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2577,7 +2572,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2818,7 +2813,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3432,68 +3427,73 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME~सोमोन्दै"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "आंनि वेबसाइट"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME API"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3617,19 +3617,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "~जायगा सोलाय हो"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "~जायगा सोलाय हो"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "गुवारथि"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4496,6 +4496,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5675,29 +5835,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "आखुथायफोर"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "फ्रेम:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "मुं"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9440,85 +9600,85 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद हो"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME बिबुंफोर"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME बिबुंफोर"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "फोरमान बिलाय मुं \\ मुवानि थाखो मान "
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "आरो"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "सिस्टेम जागायनाय समाव %PRODUCTNAME ल'ड खालामनाय"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11476,24 +11636,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12161,102 +12306,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13328,27 +13377,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/brx/extensions/messages.po b/source/brx/extensions/messages.po
index 2c05573baab..69a167cfbb0 100644
--- a/source/brx/extensions/messages.po
+++ b/source/brx/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3199,191 +3199,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "%1 फारिलाइनि थाखाय खाम्फा लेआउट"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "गुसुं मुं"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "लिरगिरि फोर"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "दिहुनगिरि"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "आयदा"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "सुजुगिरि"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "रोखोम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "बोसोर"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "बिमुं"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "थं"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "~बिखं (फोर)..."
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "~बिजाब साफायनाय"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~बिजाब बिमुं"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "बिसान"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "फोसावनाय ~रोखोम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "~फसंथान"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "~सोलोंग्रा आफाद"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "मुलुग सोलोंसालि"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "~फोरमायनायनि रोखोम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "दान"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "सानलाइमा लायसि"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "अनजिमा"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "~थाखो फारि"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "~सोदोब बेखेवनाय"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "सुद' लिरथाय"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "बाहायग्रा-ओंथि बेखेवनाय फोथार ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "बाहायग्रा-ओंथि बेखेवनाय फोथार ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "बाहायग्रा-ओंथि बेखेवनाय फोथार ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "बाहायग्रा-ओंथि बेखेवनाय फोथार ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "बाहायग्रा-ओंथि बेखेवनाय फोथार ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3566,30 +3566,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "लिंक फोथारफोर"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "बोसोन हो"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "लेबेल"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po b/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
index 782a133b6e4..73197d35cb8 100644
--- a/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23756,6 +23756,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26115,6 +26124,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26133,6 +26151,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/brx/sc/messages.po b/source/brx/sc/messages.po
index 0b82e96f893..974aea0b484 100644
--- a/source/brx/sc/messages.po
+++ b/source/brx/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15634,6 +15634,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16205,12 +16210,12 @@ msgstr "जाहोनारि दाथाय दानाय"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17503,90 +17508,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "~बन्द खालाम"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "गोदान फोरमानलाइ"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "गोदान"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "हुखु"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "लाबोफिन"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "सिगांनि फोरमानलाइ"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "उननि फोरमानलाइ"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "~बन्द खालाम"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ब्राउज..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "डाटाबेस सारिफोर"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19391,36 +19353,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "डाटा"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "खाम्फा"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "सारि"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "..जों हानजा खालामबाय: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "जिराय थ'नाय"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19567,167 +19534,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22359,17 +22328,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24341,111 +24320,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~विंडो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "दिनथि"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "एरसो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "बिखं सिफाय"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "चार्टफोर"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "सावगारि बोनाय मुवाफोर"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "दिनथि"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "एरसो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "दिनथि"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "एरसो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "दिनथि"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "एरसो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "मुवाफोर"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "जुम"
diff --git a/source/brx/scp2/source/ooo.po b/source/brx/scp2/source/ooo.po
index 137c6c14235..26e1cc83736 100644
--- a/source/brx/scp2/source/ooo.po
+++ b/source/brx/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "फोरमान बिलाइ खेव"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/brx/scp2/source/winexplorerext.po b/source/brx/scp2/source/winexplorerext.po
index 6823226eb2f..fde8dab35d1 100644
--- a/source/brx/scp2/source/winexplorerext.po
+++ b/source/brx/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 09:32+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:44+0000\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: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369349089.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "%PRODUCTNAME फोरमान बिलाइफोरनि सोमोनदै मोनथिहोनाय दिनथिनो मायक्र'सफ्ट विंडोज संदानग्रा हाहोनाय खालामो, दिनथि महरै थामनेइल गिबि नुथायफोर।"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/brx/sd/messages.po b/source/brx/sd/messages.po
index 75b57e9cdf3..2cbb997c7c0 100644
--- a/source/brx/sd/messages.po
+++ b/source/brx/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2650,6 +2650,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3135,164 +3140,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4782,160 +4972,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/brx/sfx2/messages.po b/source/brx/sfx2/messages.po
index fa1e26be99e..f53cecfe745 100644
--- a/source/brx/sfx2/messages.po
+++ b/source/brx/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -903,39 +903,34 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "फाइला आगोलावनो दं खायो. लिरदेरबावनो?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~फिन फज'"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "बे मुंखौ सिगाङावनो बाहायनाय जाबाय."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "बे आदबया गैया।"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -945,7 +940,7 @@ msgstr ""
"बे आदबखौ मोनसे बिथा आदब बादियै बाहायनो हाया,\n"
" मानोना बेयो मोनसे जाफ्लेनाय मखनायाव जाउन महर जागोन।"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -954,7 +949,7 @@ msgstr ""
"मोनसे बाहाय जायै आदब बादियै मुङा सिगाङावनो दं।\n"
"अननानै गुबुन मुं बासिख।"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -962,98 +957,98 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "नेभिगेटर"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "गोरोन्थि पासवर्ड बायजोनि महर"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "दैथाय हर"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "फन्ट"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "भारसन बिबुं सोसन"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "आदबफोर"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "हायरार्चिकेल"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "आबुं दाथाय म'ड"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "सायखनाय निफ्राय गोदान आदब"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "आपडेट आदब"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "नोंथाङा रेकर्डिंखौ नागारनो सानो नामा? बे बिन्दोआव जायखि जाया स्टेपफोर रेकर्ड खालामनाया गोमानो हागौ."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "रेकर्डिं नागारनाय"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "गिबि-बाहायनायनि थाखाय टेमप्लेटफोरखौ जागायहोनाय जाबाय।"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1062,7 +1057,7 @@ msgstr ""
"जेबो खामानिआव उदायै साफायग्रा मोना।\n"
" अननानै मोनसे साफायग्रा सायखनानै नाजाफिन।"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1071,17 +1066,17 @@ msgstr ""
"साफायग्रा जागायनो हायाखै।\n"
"अननानै नोंथांनि साफायग्रा बायजोनि महरखौ आनजाद खालामा।"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "साफायग्रा खामानिआव मुखुब"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(फरायनो-थाखायल')"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1091,7 +1086,7 @@ msgstr ""
"बिखं महर आरो अरियेन्टेसनखौ सोलाय होनाय जाबाय।\n"
" नोंथाङा मावथि फोरमान बिलाइआव गोदानै फज'नायखौ थिनो सानो नामा?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1101,7 +1096,7 @@ msgstr ""
"बिखं महरखौ सोलाय होनाय जाबाय।\n"
"नोंथाङा मावथि फोरमान बिलाइआव गोदानै फज'नायखौ थिनो सानो नामा?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1111,7 +1106,7 @@ msgstr ""
"बिखं महर आरो अरियेन्टेसनखौ सोलाय होनाय जाबाय।\n"
" नोंथाङा मावथि फोरमान बिलाइआव गोदानै फज'नायखौ थिनो सानो नामा?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1121,7 +1116,7 @@ msgstr ""
"फोरमान बिलाइखौ बन्द खालामनो हाया मानोना मोनसे\n"
"सेबखांनाय हाबाखौ सालाय लांबाय थानो हाया।"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1129,7 +1124,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1137,18 +1132,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "बे फोरमान बिलाइखौ सुजुनो हाया, हाबनाय गोमाना थानायनि जाहोनाव जानो हागौ। नोंथाङा फोरमान बिलाइनि मोनसे कपिखौ सुजुनो लुबैयो नामा?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1156,352 +1151,362 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "(फोसाबनाय फोरमान बिलाइ)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "फोरमान बिलाइ सुजु"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "फाइल फोरमान बिलाइ"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "गोबां~ उफ्रा"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "गैया खालाम"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1861,32 +1866,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "भारसन बिबुं"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "मुं"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "रोखोम"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "बेसेन"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "रोखोम"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "नंगौ"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "नङा"
@@ -1896,17 +1886,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "मुं"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "रोखोम"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "बेसेन"
@@ -2047,19 +2037,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "जायगा:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "रोखोम:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "पासवर्डखौ~ सोलाय..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2070,29 +2060,29 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "सरासनस्रा"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
#, fuzzy
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "बेखेवनाय"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr ""
@@ -2316,6 +2306,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/brx/shell/messages.po b/source/brx/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/brx/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/brx/starmath/messages.po b/source/brx/starmath/messages.po
index 4f2e15b04b9..353a9bf5c47 100644
--- a/source/brx/starmath/messages.po
+++ b/source/brx/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:43+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1630,277 +1630,302 @@ msgid "Examples"
msgstr "बिदिन्थि"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "थाखोमान"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "फारसे खेंख्रा हांखो"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "बल्ड"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "गोसोम"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "गोथां"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "सोमखोर"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "गोजा-फानथाव गाब"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "फुरगेव"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "सम"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "गोमो"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "एरसो"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "महर"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "फन्ट"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "आगसि"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "मिरु"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "आगदा"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "बिथोनफोर"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "फरमुला"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "फोरमान बिलाइखौ थि गासिनो दङ..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION फरमुला"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "मिजिंथियै हांखो"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' मिजिंथिनाय"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' मिजिंथिनाय"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' मिजिंथिनाय"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' मिजिंथिनाय"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' मिजिंथिनाय"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "गोनांथि जानाय गाब"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' मिजिंथिनाय"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME कल्क"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "आयदाफोर"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "बिमुं"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~फरमुला फराय बिजाब"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "सिमनाफोर"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "महर"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "गुबै महर"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~बिखंनि गोरोबनाय"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1973,6 +1998,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "सायखनाय"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/brx/svtools/messages.po b/source/brx/svtools/messages.po
index 5f3757c0515..f5d2e7b932a 100644
--- a/source/brx/svtools/messages.po
+++ b/source/brx/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1537 +15,1539 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195283.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "सिगांनि महराव लाबोफिननाय:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "फिन मावनाय:"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "मावफिननाय:"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "दाथाय खालामै फराय बिजाब"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx इसिङारि सोमोन्दो निफ्राय थाखोमान मोनथिहोनाय"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "नेटस्केप बिजाबनि बिखं सिन"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टार सार्भार दाथाय"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टार बेसाद दाथाय"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "आप्लेट बेसाद"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लाग-इन बेसाद"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "स्टार रायटार 3.0 बेसाद"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "स्टार रायटार 4.0 बेसाद"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "स्टार रायटार 5.0 बेसाद"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "स्टार रायटार/ वेब 4.0 बेसाद"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "स्टार रायटार/ वेब 5.0 बेसाद"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "स्टार रायटार/ गाहाय 4.0 बेसाद"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "स्टार रायटार/ गाहाय 5.0 बेसाद"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "स्टारड्र बेसाद"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "स्टारड्र 4.0 बेसाद"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "स्टार इम्प्रेस 5.0 बेसाद"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "स्टारड्र 5.0 बेसाद"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "स्टारकल्क बेसाद"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "स्टारकल्क 4.0 बेसाद"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "स्टारकल्क 5.0 बेसाद"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "स्टारचार्ट बेसाद"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "स्टारचार्ट 4.0 बेसाद"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "स्टारचार्ट 5.0 बेसाद"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "स्टारमुसुखा बेसाद"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "स्टारमुसुखा 4.0 बेसाद"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "स्टारमुसुखा 5.0 बेसाद"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "स्टार सानखानथि बेसाद"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "स्टार सानखानथि 4.0 बेसाद"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "स्टार सानखानथि 5.0 बेसाद"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "स्टारबेसाद पेन्ट बेसाद"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "मायक्र'सफ्ट वर्ड बेसाद"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "स्टारफ्रेमसेट बेसाद"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "अफिस फोरमान बिलाइ बेसाद"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "सुंद' लिरथाय फोरमान बिलाइ मोनथिहोनाय"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx फोरमान बिलाइ"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "स्टारचार्ट 5.0 बेसाद"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "बोसावगारि बेसाद"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "उइन्डस मेटाफाइल"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "डाटा फुंखा बेसाद"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "डाटा फुंखा फारिलाइ"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL सोंनाय"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "सोमोन्दो"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "बिबुं गैयाबालानो HTML दाथाय"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% बेसादखौ सोसननो हाया।"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% फाइल निफ्राय बेसादखौ सोसननो हाया।"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "गोबां बेसाद"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "मोनथिमोनै फुंखा"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "मुं"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "महर"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "अक्ट' सोलाय होबाय"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "रोखोम"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बाइटस"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "सारि: %1,खाम्फा : %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ",रोखोम: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "फल्डार"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "फाइल"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "लांदां फोथार"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "आल्फानिउमारिक"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "सरासनस्रा"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "हांखो जथाय"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "सोदोब बिहुं"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "स्ट्रक"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "रेडिकेल"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "इउनिक'ड"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "झुयिन"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "फ'न बिजाब"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "रिंसार बिगियान सोमोन्दै (आल्फान्युमरिक गिबि)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "रिंसार बिगियान सोमोन्दै (जोबथा आल्फानिउमारिक)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "आल्फानिउमारिक"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "सोदोब बिहुं"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "रेडिकेल"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "स्ट्रक"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "झुयिन"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "रिंसार बिगियान सोमोन्दै (गिबि आल्फानिउमारिक, फराय फारिजों हानजा खालामबाय)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "रिंसार बिगियान सोमोन्दै (गिबि आल्फानिउमारिक, खौरां हांखोजों हानजा खालामबाय)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "रिंसार बिगियान सोमोन्दै(जोबथा आल्फानिउमारिक, फराय फारिजों हानजा खालामबाय)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "रिंसार बिगियान सोमोन्दै (जोबथा आल्फानिउमारिक, खौरां हांखोजों हानजा खालामबाय)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "दिनै"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "रावबो नङा"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "एसे"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "एसे फारसे खेंख्रा हांखो"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "अराय सम"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "फारसे खेंख्रा हांखो"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "बल्ड"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "बल्ड फारसे खेंख्रा हांखो"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "गोसोम"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "गोसोम फारसे खेंख्रा हांखो"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "बिजाब"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "गथा जाहोनाय"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "नोंथांनि साफायग्रा आरो स्क्रिन मोनैबो एखे फन्ट बाहाय जागोन।"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "बेयो मोनसे साफायग्रा फन्ट। स्क्रिन मुसुखाया गुबुन गुबुन जानो हागौ।"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "बे फन्ट आदब सिमुलेट खालामनाय जागोन एबा खाथिसिन गोरोबनाय आदबखौ बाहायनाय जागोन।"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "बे फन्टखौ इनष्टल खालामनाय जायाखै। खाथिसिन मोननो हाथाव फन्ट बाहायनाय जागोन।"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ब्राउज..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "फ्रेम लोरिहो"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "आगसिथिं लोरिहो"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "आगदाथिं लोरिहो"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "गाहायाव लाबो"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "दाजाबदेर"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "समानथिनि बायजोआव"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "थोंगोरै थानाय खुंगिरि"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 बिट थ्रेशोल्ड"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 बिट डिथारड"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 बिट ग्रे स्केल"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 बिट ग्रे स्केल"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 बिट थार गाब"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "बेसेन"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "रोखोम"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "थाद' हो"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "जागायजेन गासिनो दङ..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "नेथ गासिनो दङ"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "गोरोनथि"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "बिखंखौ हुखुमोर"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "थोजासे नङै मेमरी"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "खामानिआव उदायै साफायग्रा"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "सोदोब फोरमान बिलाइफोर"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~जोबनाय"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "उननि >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< उनथिं"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "स्टेपफोर"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<जेबो नङा>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "कम्पानि"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "बिफान"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "गिबि मुं"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "जोबथा मुं"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "लामा"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "हादोत"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Zip क'ड"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "नोगोर"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "बिमुं"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "जायगा"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "थं फर्म"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "चहिफोर"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "हामलायनाय बंद खालाम"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "टेलेफ'न: न'"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "टेलेफ'न: खामानि"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "सुद' लिरथाय"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "बाहायग्रा 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "बाहायग्रा 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "बाहायग्रा 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "बाहायग्रा 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "राइजो"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "टेलेफ'न: अफिस"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजार"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मबाइल"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "टेलेफ'न: गुबुन"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "केलेण्डार"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "हांख्राय हर"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE गोनांथि जाबाय"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE सायख"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE आ गोरोनथि गोनां"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "फुंखा क'ड"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "बिजाबनि बिखं सिन फाइल"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "बो सावगारि"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "बायजोनि महर फाइल"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "बाहायनाय"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "डाटाबेस फारिलाइ"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "सिस्टेम फाइल"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "मायक्र'सफ्ट वर्ड फोरमान बिलाइ"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "मदद फाइल"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML फोरमान बिलाइ"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "आर्किभ फाइल"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लग फाइल"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 टेमप्लेट"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 गाहाय फोरमान बिलाइ"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 टेमप्लेट"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "फराय बिजाब फाइल"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "सोमोन्दो"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 टेमप्लेट"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "मायक्र'सफ्ट एक्सेल फोरमान बिलाइ"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "मायक्र'सफ्ट एक्सेल टेमप्लेट"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "बेच फाइल"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "फाइल"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "फल्डार"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "फराय बिजाब फोरमान बिलाइ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रेडशीट"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रेजेन्टेसन"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "सावगारि"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML फोरमान बिलाइ"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "गाहाय फोरमान बिलाइ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "फरमुला"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "डाटाबेस"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "जायगानि ड्राइभ"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "डिस्क ड्राइभ"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ड्राइभ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "नेटवर्क फोनांजाबनाय"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "मायक्र'सफ्ट पावारपइन्ट फोरमान बिलाइ"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "मायक्र'सफ्ट पावारपइन्ट टेमप्लेट"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "मायक्र'सफ्ट पावारपइन्ट दिनथिनाय"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML फोरमान बिलाइ"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "उदां फोरमान बिलाइ डाटाबेस"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "उदां फोरमान बिलाइ सावगारि"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "उदां फोरमान बिलाइ फरमुला"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "उदां फोरमान बिलाइ गाहाय फोरमान बिलाइ"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "उदां फोरमान बिलाइ प्रेजेनटेसन"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "उदां फोरमान बिलाइ स्प्रेडशीट"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "उदां फोरमान बिलाइ फराय बिजाब"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "उदां फोरमान बिलाइ स्प्रेडशीट टेमप्लेट"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "उदां फोरमान बिलाइ सावगारि टेमप्लेट"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "उदां फोरमान बिलाइ प्रेजेनटेसन टेमप्लेट"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "उदां फोरमान बिलाइ फराय बिजाब टेमप्लेट"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/brx/svx/messages.po b/source/brx/svx/messages.po
index 47cd2e421f6..f2af5823893 100644
--- a/source/brx/svx/messages.po
+++ b/source/brx/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8071,6 +8071,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12577,87 +12582,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "बायजोनि सारि सुजुगिरि"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "खामानियाव बाहाय''"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "खामानि जायगा"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "सायख"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "आयत"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "गोलाव बेंखन"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "पलिगन"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिन्दुफोर सुजु"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिन्दुफोर लोरिनाय"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिन्दुफोर सोसन"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिन्दुफोर हुखुमोर"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "गावआरि बायजोनि सारि"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "सिगांनि महराव लाबो फिननाय"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "गोजा"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12998,123 +13008,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "फुटार"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "मुसुखा मेप सुजुगिरि"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "खामानियाव बाहाय''"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "खेव..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "थिना दोन..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "बन्द खालाम"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "सायख"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "आयत"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "गोलाव बेंखन"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "पलिगन"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "उदांश्रि पलिगन"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिन्दुफोर सुजु"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिन्दुफोर लोरिनाय"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिन्दुफोर सोसन"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिन्दुफोर हुखुमोर"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "सिगांनि महराव लाबो फिननाय"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "गोजा"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "मावथि"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "मेक्र'..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "आखुथायफोर:"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "थं:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "फ्रेम"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/brx/sw/messages.po b/source/brx/sw/messages.po
index 34b38526b5a..30b85f18f59 100644
--- a/source/brx/sw/messages.po
+++ b/source/brx/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:43+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: brx\n"
@@ -3204,7 +3204,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12710,147 +12710,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12860,152 +12860,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14122,7 +14122,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17670,50 +17670,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "सिगांनि नुथाय"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "सिगांनि नुथाय"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "रोखोम"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "~हाबनायफोर"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "आदबफोर"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "खाम्फाफोर"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "सावगारिनि उनथिं थानाय महर"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "सिगांनि नुथाय"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "लेभेल"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17963,326 +17963,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "सुजु..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "बिमुं:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "रोखोम"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "फारिलाइ आयदाफोर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "बाहायग्रा-थि खालामनाय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "बिजाबनि फारिलाइ 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "फर्म"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~गासै फोरमान बिलाइ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "आयदा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "सिमा सारि"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
#, fuzzy
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "फारिलाइफोर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "फराय बिजाब फ्रेम"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "बोसावगारि"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE बेसादफोर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "चर्टगोनां आदाबफोर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "आदबफोर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "उफ्राफोर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "बेसादनि मुं"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "थाखो"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "दिनथिफुं"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "मखनायफोर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "थाखो आरो अनजिमा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "केप्शन फराय बिजाब"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "~बेन्दोंफोर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "रावबो नङा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "फाइल"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "उफ्राफोर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "राव"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "रोखोम"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "लेभेल"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(आन्थोर आदब: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "खामानिआव उदायै"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "सुजु"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/bs/cui/messages.po b/source/bs/cui/messages.po
index 3b4cb51d57d..117726b7415 100644
--- a/source/bs/cui/messages.po
+++ b/source/bs/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1654,107 +1654,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Postaviti bez granica"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Postaviti Samo Vanjsku Granicu"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Postaviti Vanjsku Granicu i Horizontalne Linije"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Postaviti Vanjsku Granicu i Sve Unutrašnje Linije"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Postaviti Vanjsku Granicu Bez Mijenjanja Unutrašnjih Linija"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Postaviti Samo Dijagonalne Linije"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Postaviti Sve Četiri Granice"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Postaviti Samo Lijeve i Desne Granice"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Postaviti Gornju i Donju Granicu Samo"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Postaviti Lijevu Granicu Samo"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Postaviti Gornju i Donju Granicu, i Sve Unutrašnje Linije"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Postaviti Lijevu i Desnu Granicu, i Sve Unutrašnje Linije"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Bez sjene"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Baciti Sjenu na Donje Desno"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Baciti Sjenu na Gornje Desno"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Baciti Sjenu na Donje Lijevo"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Baciti Sjenu na Gornje Lijevo"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1797,7 +1792,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1917,7 +1912,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2157,7 +2152,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2412,12 +2407,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2487,7 +2482,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2567,7 +2562,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2808,7 +2803,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3430,66 +3425,71 @@ msgid "About %PRODUCTNAME"
msgstr "O programu %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "_Zasluge"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Web stranica"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID gradnje: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME je moderan, jednostavan za korištenje, paket produktivnosti otvorenog izvornog koda za obradu teksta, radnih listova, prezentacija i više."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice je zasnovan na OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME je izveden iz LibreOffice koji je baziran na OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Ovo izdanje je isporučeno od %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3610,17 +3610,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Zamijeni"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Zamije_ni"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Sa:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Samo tekst"
@@ -4493,6 +4493,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimalna dužina riječi"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5657,30 +5817,30 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Svojstva"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
#, fuzzy
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "O_kvir"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Ime:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
#, fuzzy
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternativni _tekst"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9425,84 +9585,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoć"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Koristi %PRODUCTNAME dijaloge"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dijalozi za otvaranje/snimanje"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Koristi %PRODUCTNAME _dijaloge"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dijalozi za štampanje"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Š_tampanje postavlja status \"dokument izmijenjen\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Status dokumenta"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Tumači kao godine između "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Godina (dvocifrena)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Učitaj %PRODUCTNAME prilikom pokretanja sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Omogući traku Quickstarter-a"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -11464,25 +11624,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Vlastita tema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox Teme"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -12133,102 +12278,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Sigurnosne opcije"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13281,27 +13330,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/bs/extensions/messages.po b/source/bs/extensions/messages.po
index f091370746a..00987d42a5d 100644
--- a/source/bs/extensions/messages.po
+++ b/source/bs/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3240,190 +3240,190 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Uređenje kolona za tabelu %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Kratko ime"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Autor(i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Izdavač"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Poglavlje"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Urednik"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Vrsta"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Godina"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Naslov"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Adresa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "~Stranice"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "~Izdanje"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Naslo~v knjige"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Razina zvuka"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Vrs~ta publikacije"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi~zacija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "~Ustanova"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Univerzitet"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Vrsta ~izvještaja"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mjesec"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Dnevnik"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Broj"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se~rija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An~otacija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Napomena"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Korisnički definisano polje ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Korisnički definisano polje ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Korisnički definisano polje ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Korisnički definisano polje ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Korisnički definisano polje ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3608,31 +3608,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Polja za linkove"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Predloži"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Podformulari se mogu koristiti za detaljni prikaz trenutnog zapisa glavnog formulara. Da biste koristili podformulare, možete izabrati koje kolone u podformularu odgovaraju kolonama u glavnom formularu."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Oznaka"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/bs/helpcontent2/source/auxiliary.po b/source/bs/helpcontent2/source/auxiliary.po
index 8a9074c0f89..e889f56ab2b 100644
--- a/source/bs/helpcontent2/source/auxiliary.po
+++ b/source/bs/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Opšte informacije"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "Alatne trake"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Crteži (%PRODUCTNAME crtati)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Meniji"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Alatne trake"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objekti, grafici, i BMP slike"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupe i slojevi"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Tekst u prezentacijama i crtežima"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/sbasic/guide.po b/source/bs/helpcontent2/source/text/sbasic/guide.po
index 2ad75502896..55133c5b8cb 100644
--- a/source/bs/helpcontent2/source/text/sbasic/guide.po
+++ b/source/bs/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,7 +541,7 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
+msgid "Opening a Dialog With Basic"
msgstr ""
#: show_dialog.xhp
@@ -525,8 +549,8 @@ msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>modul/preklapanje dijaloga</bookmark_value><bookmark_value>dijalozi;upotreba programskog koda za prikaz (primjer)</bookmark_value><bookmark_value>primjeri; prikaz dijaloga programskim kodom</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/sbasic/python.po b/source/bs/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/bs/helpcontent2/source/text/sbasic/python.po
+++ b/source/bs/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/bs/helpcontent2/source/text/sbasic/shared.po b/source/bs/helpcontent2/source/text/sbasic/shared.po
index b4c3554ef81..dd76efd6cfb 100644
--- a/source/bs/helpcontent2/source/text/sbasic/shared.po
+++ b/source/bs/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Osnovna Pomoć\">%PRODUCTNAME Osnovna Pomoć</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/sbasic/shared/03.po b/source/bs/helpcontent2/source/text/sbasic/shared/03.po
index 3d950ec4ddc..00ccc96e972 100644
--- a/source/bs/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/bs/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/bs/helpcontent2/source/text/scalc/01.po b/source/bs/helpcontent2/source/text/scalc/01.po
index d94088e0bdb..be7312cfd05 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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,7 +40949,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifikuje raspon celija koje hocete da integrisete sa rasponom celija izlistane u <emph>Rasponi za usklađivanje </emph> box.Izaberite celije u listi i onda kliknite na <emph>Add</emph>. Takodje mozete da izaberete ime predefinirane celije iz Y <emph>Rasponi izvornih podataka </emph> list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/bs/helpcontent2/source/text/schart/00.po b/source/bs/helpcontent2/source/text/schart/00.po
index 99c38782ce7..c9f57de4991 100644
--- a/source/bs/helpcontent2/source/text/schart/00.po
+++ b/source/bs/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 15:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/bs/helpcontent2/source/text/shared/00.po b/source/bs/helpcontent2/source/text/shared/00.po
index 1c3fff2ae17..677113efc6f 100644
--- a/source/bs/helpcontent2/source/text/shared/00.po
+++ b/source/bs/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/bs/helpcontent2/source/text/shared/01.po b/source/bs/helpcontent2/source/text/shared/01.po
index cc6de1f6bc4..9eeb2c82d1c 100644
--- a/source/bs/helpcontent2/source/text/shared/01.po
+++ b/source/bs/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/bs/helpcontent2/source/text/shared/02.po b/source/bs/helpcontent2/source/text/shared/02.po
index 7f6f93b734f..f1767de981a 100644
--- a/source/bs/helpcontent2/source/text/shared/02.po
+++ b/source/bs/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/bs/helpcontent2/source/text/shared/guide.po b/source/bs/helpcontent2/source/text/shared/guide.po
index 738033abd3d..ba258925b29 100644
--- a/source/bs/helpcontent2/source/text/shared/guide.po
+++ b/source/bs/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/bs/helpcontent2/source/text/shared/optionen.po b/source/bs/helpcontent2/source/text/shared/optionen.po
index 3433b4f910b..01aef55afd8 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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/bs/helpcontent2/source/text/simpress/01.po b/source/bs/helpcontent2/source/text/simpress/01.po
index 5d354f24b4d..695ec141511 100644
--- a/source/bs/helpcontent2/source/text/simpress/01.po
+++ b/source/bs/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/bs/helpcontent2/source/text/swriter/guide.po b/source/bs/helpcontent2/source/text/swriter/guide.po
index bbe84957443..9da81084406 100644
--- a/source/bs/helpcontent2/source/text/swriter/guide.po
+++ b/source/bs/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,7 +229,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
msgstr ""
#: arrange_chapters.xhp
@@ -237,7 +237,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
index 233af3e36fe..c4a403d93e9 100644
--- a/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23726,6 +23726,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26069,6 +26078,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26087,6 +26105,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/bs/sc/messages.po b/source/bs/sc/messages.po
index 442f3e5fcf7..99c7ee61710 100644
--- a/source/bs/sc/messages.po
+++ b/source/bs/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15561,6 +15561,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ekskluzivni pristup)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16137,12 +16142,12 @@ msgstr "Uslovno formatiranje"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17440,84 +17445,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formular za podatke"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Zatvori"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Novi zapis"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Novo"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Izbriši"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Vrati"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Prethodni zapis"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Slje_deći zapis"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Zatvori"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Živi tokovi podataka"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-#, fuzzy
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Unesi URL izvornog dokumenta u sistem lokalnog dokumenta ili Internet ovdje."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Istraži..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Opsezi baza podataka"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-#, fuzzy
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Izvorni tok"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19285,34 +19247,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Rezultati u"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Datum"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolone"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Redovi"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Grupisano po"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametri"
@@ -19461,167 +19428,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22269,17 +22238,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Rezultati pretrage"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24214,109 +24193,114 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Konturni simboli"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Prozor"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Linije mreže:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Boja:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Prikaži"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Prikaži na obojenim ćelijama"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Sakrij"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Prijelomi stranica"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Pomoćne linije _tokom pomicanja"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
#, fuzzy
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Vizuelni pomoćnici"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
#, fuzzy
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jekti / Slika:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Grafici:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Crtanje objekata:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Prikaži"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Sakrij"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Prikaži"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Sakrij"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Prikaži"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Sakrij"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_inhroniziraj stranice"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zumiraj"
diff --git a/source/bs/scp2/source/ooo.po b/source/bs/scp2/source/ooo.po
index 8c259f89820..a9f63d100dc 100644
--- a/source/bs/scp2/source/ooo.po
+++ b/source/bs/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Otvori dokument"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/bs/scp2/source/winexplorerext.po b/source/bs/scp2/source/winexplorerext.po
index 350160b7e70..49f5cb9fff4 100644
--- a/source/bs/scp2/source/winexplorerext.po
+++ b/source/bs/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 19:06+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:49+0000\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: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369349389.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Omogućava Microsoft Windows Explorer-u da prikaže informacije o %PRODUCTNAME dokumentima;počevši od prikazivanja sličica."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/bs/sd/messages.po b/source/bs/sd/messages.po
index c10967b7b36..6b3ad50c88a 100644
--- a/source/bs/sd/messages.po
+++ b/source/bs/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2637,6 +2637,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3104,164 +3109,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Imenuj HTML dizajn"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4727,160 +4917,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Oblici Strelica"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/bs/sfx2/messages.po b/source/bs/sfx2/messages.po
index e8bbad8c804..3566e040862 100644
--- a/source/bs/sfx2/messages.po
+++ b/source/bs/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -915,11 +915,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " G: %1 M: %2 D: %3 S: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Ukloni svojstvo"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -929,27 +924,27 @@ msgstr ""
"Unesena vrijednost se ne slaže s navedenim tipom.\n"
"Vrijednost će biti smještena kao tekst."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Stil već postoji. Prepisati?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Poništi"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Ovo ime je već u upotrebi."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Ovaj stil ne postoji."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -959,7 +954,7 @@ msgstr ""
"Ovaj stil se ne može koristiti kao bazni stil,\n"
"jer bi rezultovao rekurzivnom referencom."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -968,7 +963,7 @@ msgstr ""
"Ime već postoji kao podrazumijevani stil.\n"
"Molim odaberite drugo ime."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -976,95 +971,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stilovi u upotrebi: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Pogrešna potvrda lozinke"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Pošalji"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Font"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Viditi komentar verzije"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lista stilova"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hijerarhijski"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Popunjen format način"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Novi stil na osnovu izbora"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "~Ažuriraj stilove"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Da li stvarno želite otkazati snimanje? Bilo koji korak zabilježen do sada će biti izgubljen."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Prekini snimanje"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Šabloni se inicijaliziraju za prvu upotrebu."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1073,7 +1068,7 @@ msgstr ""
"Podrazumijevani štampač nije pronađen.\n"
"Odaberite štampač i pokušajte ponovo."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1082,17 +1077,17 @@ msgstr ""
"Ne mogu pokrenuti štampač.\n"
" Molim provjerite postavke štampača."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Štampač zauzet"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (samo za čitanje)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1103,7 +1098,7 @@ msgstr ""
"Želite li da nove postavke budu snimljene \n"
"u aktivni dokument?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1114,7 +1109,7 @@ msgstr ""
"Želite li da nove postavke budu snimljene \n"
"u aktivni dokument?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1125,7 +1120,7 @@ msgstr ""
"Želite li da nove postavke budu snimljene \n"
"u aktivni dokument?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1135,7 +1130,7 @@ msgstr ""
"Dokument ne može biti zatvoren zato \n"
" što je štampanje u toku."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1143,7 +1138,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1151,18 +1146,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Ovaj dokument se ne može mijenjati, vjerovatno zbog nedostajućih prava pristupa. Želite li izmijeniti kopiju ovog dokumenta?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1170,357 +1165,367 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (popravljen dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Dokument nije izdvojen na serveru"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Kontrole izvještaja"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Odjava"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Izmijeni dokument"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Potpiši dokument..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Spajanje"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Odvajanje"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Više opcija"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zatvori skup bočnih traka"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Podešavanja"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Vratiti uobičajeno"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Ukloni"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1896,32 +1901,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Komentar verzije"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Ime"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Vrsta"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Vrijednost"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Vrsta"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Da"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ne"
@@ -1931,17 +1921,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Ime"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Vrsta"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Vrijednost"
@@ -2076,17 +2066,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Mjesto:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Vrsta:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Izmijeni _lozinku"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Šablon:"
@@ -2097,27 +2087,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Osobine "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Općenito "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Opis"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Ostale osobine"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS osobine"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Sigurnost"
@@ -2347,6 +2337,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/bs/shell/messages.po b/source/bs/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/bs/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/bs/starmath/messages.po b/source/bs/starmath/messages.po
index ff17ba737f5..319ac526368 100644
--- a/source/bs/starmath/messages.po
+++ b/source/bs/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1654,268 +1654,293 @@ msgid "Examples"
msgstr "Primjeri"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standardno"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kurziv"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Masno"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "crna"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "plava"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "zelena"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "crvena"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cijan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "purpurna"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Siva"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lime"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kestenjasta"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "mornarska"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "maslinasta"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ljubičasta"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "srebrena"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "grogotovac"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "žuta"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "sakriti"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "veličina"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "lijevo"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centar"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "desno"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Naredbe"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Snimam dokument..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "GREŠKA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Neočekivani znak"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' očekivana"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' očekivana"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "očekivana '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "očekivano je ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "očekivan '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Zahtjevana je boja"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Očekivan 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Sadržaj"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Naslov"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Tekst formule"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Rubovi"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Veličina"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Originalna veličina"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Stati na stranicu"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1983,6 +2008,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "element"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/bs/svtools/messages.po b/source/bs/svtools/messages.po
index 554704bceb3..09578bf802d 100644
--- a/source/bs/svtools/messages.po
+++ b/source/bs/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1533 +16,1535 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195290.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Poništi: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Vrati: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Ponovi: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Neformatirani tekst"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informacija o stanju od Svx unutrašnje veze"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-ova zabilješka"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format Star servera"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format objekta Zvijezda"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objekat apleta"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Dodatak objekat"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objekat StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objekat StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objekat StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objekat StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objekat StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 objekat"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 objekat"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objekat StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objekat StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objekat StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objekat StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objekat StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objekat StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objekat StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objekat StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objekat StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objekat StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objekat StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objekat StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objekat StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objekat StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objekat StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objekat StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objekat StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Svila"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objekat Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objekat StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objekat Office-ovog dokumenta"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Podaci o Notes dokumentu"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Dokument Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objekat StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafički objekat"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer objekat"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web objekat"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master objekat"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Objekat za crtanje"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress objekat"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc objekat"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart objekat"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math objekat"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metadatoteka"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objekat izvora podataka"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabela izvora podataka"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL upit"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dijalog"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Veza"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML format bez komentara"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekat % nije moguće ubaciti."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekat iz datoteke % nije moguće ubaciti."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Dodatni objekti"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Nepoznat izvor"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Ime"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Veličina"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Datum izmjene"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Vrsta"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajta"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Red: %1, Kolona: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Vrsta: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Direktorij"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Datoteka"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Prazno polje"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerički"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normalan"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Skup znakova"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Rječnik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Prekriženo"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unikod"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonski imenik"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetski (alfa-numerički prvo)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetski (alfa-numerički posljednje)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerički"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Rječnik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Prekriženo"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetski (alfa-numerički prvo, grupisano po suglasnicima)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetski (alfa-numerički prvo, grupisano po samoglasnicima)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetski (alfa-numerički posljednje, grupisano po suglasnicima)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetski (alfa-numerički posljednje, grupisano po samoglasnicima)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Danas"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Nijedan"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lagani"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Svijetla kurziv"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Običan"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kurziv"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Masno"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Masno i kurziv"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Crna"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Crna kurziv"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Knjiga"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Zgusnuto"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "polu-masno"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Isti font će biti korišten i za štampač i za ekran."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Ovo je font štampača. Slika na ekranu se može razlikovati."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Ovaj stil pisanja će biti simuliran ili će se koristiti najbliži odgovarajući."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Ovaj font nije instaliran. Najbliži dostupni font će se koristiti."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Potraži..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Pomjeri na početak"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Pomjeri ulijevo"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Pomjeri udesno"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Pomjeri na kraj"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Dodaj"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "_Vodoravni linijar"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Uspravni linijar"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit prag"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit tačkano"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bitni sivi tonovi"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bitna boja"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bitni sivi tonovi"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bitna boja"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bitna prava boja"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Slici je potrebno oko %1 KB memorije."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Slici je potrebno %1 KB memorije, veličina datoteke je %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Veličina datoteke je %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Cijena"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Sortiranje"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Spreman"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pauziran"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "U toku brisanje"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Zauzet"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicijaliziranje"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Čekanje"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Zagrijavanje"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "U obradi"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Štampanje"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Izvan mreže"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Greška"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Nepoznat server"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zastoj papira"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nedovoljno papira"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Ručno napajanje"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem sa papirom"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktivan"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Izlazni spremnik prazan"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner skoro prazan"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Nema tonera"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Obriši stranu"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Potrebna intervencija korisnika"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Nedovoljno memorije"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Otvoren poklopac"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Način uštede energije"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Uobičajeni štampač"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumenata"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Kraj"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Dalje >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Naza~d"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Koraci"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ništa>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Firma"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Odjel"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ime"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Prezime"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Ulica"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Država"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Poštanski broj"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Grad"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Naslov"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Položaj"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Forma adrese"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicijali"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Zaključni pozdrav"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel. (kuća)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel. (posao)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Napomena"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Korisnik 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Korisnik 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Korisnik 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Korisnik 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Identifikacija"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Kanton"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel. (ured)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pejdžer"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobilni"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel. (ostalo)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendar"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Pozovi"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME zahtijeva Java runtime okruženje (JRE) za izveđenje ovog zadatka. Instalirajte JRE i ponovo pokrenite %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracija %PRODUCTNAME je promijenjena. Pod %PRODUCTNAME - Postavke - %PRODUCTNAME - Napredno, odaberite Java runtime okruženje koje želite da koristi %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME konfiguracija je promijenjena. Pod Alati - Opcije - %PRODUCTNAME - Napredno, odaberite Java runtime okruženje koje želite da koristi %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME zahtijeva Java runtime okruženje (JRE) za izvođenje ovog zadatka Odabrani JRE je neispravan. Odaberite drugu verziju ili instalirajte novi JRE i odaberite ga pod %PRODUCTNAME - Prvenstvo - %PRODUCTNAME - Napredno."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME zahtijeva Java runtime okruženje (JRE) za izvođenje ovog zadatka. Odabrani JRE je neispravan. Odaberite drugu verziju ili instalirajte novi JRE i odaberite ga pod Alati - Opcije - %PRODUCTNAME - Napredno."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE zahtijevan"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Odaberite JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE je neispravan"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Izvorni kod"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Datoteka zabilješki"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Ilustracije"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfiguracijska datoteka"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplikacija"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabela baze podataka"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sistemska datoteka"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word dokument"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Datoteka pomoći"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arhivska datoteka"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Dnevnik"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Baza podataka"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 master dokument"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice slika"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstualna datoteka"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Veza"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Staroffice 3.0 - 5.0 šablon"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel dokument"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel šablon"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Komandna datoteka"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Datoteka"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Direktorij"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstualni dokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Proračunska tablica"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentacija"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Crtež"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Master dokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Baza podataka"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 šablon proračunske tablice"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 šablon za crtanje"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 šablon prezentacije"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 šablon tekstualnog dokumenta"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokalni disk"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk jedinica"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM jedinica"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Mrežna konekcija"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint dokument"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint šablon"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint prezentacija"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 Formula"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 grafikon"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Crtež"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Proračunske tablice"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 prezentacija"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Tekstualni dokument"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 master dokument"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument baza podataka"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument crtež"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument formula"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument master dokument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument prezentacija"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument tablični proračun"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument tekst"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument šablon tabličnog proračuna"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument šablon crteža"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument šablon prezentacije"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument šablon teksta"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Dodatak za %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/bs/svx/messages.po b/source/bs/svx/messages.po
index dee2e9613b7..31a8d35d3a6 100644
--- a/source/bs/svx/messages.po
+++ b/source/bs/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8016,6 +8016,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12564,88 +12569,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor kontura"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Primijeni"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Radni prostor"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Izaberi"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Pravougaonik"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Poligon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Izmijeni tačke"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Pomjeri tačke"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Ubaci tačke"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Obriši tačke"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Automatska kontura"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Vrati "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Crveno"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12978,124 +12988,118 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Podnožje"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor ImageMap-a"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Primijeni"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Otvori..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Snimi..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Zatvori"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Izaberi"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Pravougaonik"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Poligon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Poligon slobodnom rukom"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Izmijeni tačke"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Pomjeri tačke"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Ubaci tačke"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Obriši tačke"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Vrati "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Crveno"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktivno"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Osobine: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresa:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Okvir"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/bs/sw/messages.po b/source/bs/sw/messages.po
index ebf3a212a28..3d14d62490b 100644
--- a/source/bs/sw/messages.po
+++ b/source/bs/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3187,9 +3187,9 @@ msgid "Change object title of $1"
msgstr "Promijeni naslov objekta u $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Promijeni opis objekta u $1"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12495,147 +12495,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12645,152 +12645,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13897,7 +13897,7 @@ msgstr "Proširi razmak riječi na redovima sa ručnim prijelomom redova u obost
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17320,48 +17320,48 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Pregled"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-#, fuzzy
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Pregled"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Vrsta"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Unosi"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stilovi"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Kolone"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Pozadina"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+#, fuzzy
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Pregled"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Nivo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Vrsta"
@@ -17606,316 +17606,316 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Izmijeni..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Naslov"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tip:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Tabele Sadržaja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Abecedni indeks"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Indeks tabela"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Korisnički definisan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tabela predmeta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografija"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Zaštićeno od ručnih izmjena"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
#, fuzzy
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tip i naslov"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Formular"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Cijeli dokument"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Poglavlje"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
#, fuzzy
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Procijeni do nivoa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Kontura"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Oznake indeksa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabele"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "_Okviri teksta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Ilustracije"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE objekti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Upotrijebi nivo iz izvornog poglavlja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Dodatni Stilovi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Stilovi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Pridruži stilove"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Naslovi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Imena predmeta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorija"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Prikaži"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Reference"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorija i broj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Tekst naslova"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
#, fuzzy
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Kreiraj formu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
#, fuzzy
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Napravi iz sljedećih predmeta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Zagrade"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Numerički unosi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[none]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
#, fuzzy
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatiranje unosa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Kombinuj identične unose"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Kombinuj identične unose sa p ili _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Kombinuj sa -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Razlikuj veličinu slova"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Ulazi AutomatskiVelikimSlovima"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Svaka tipka kao poseban unos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Saglasna datoteka"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Datoteka"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opcije"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Jezik"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Vrsta ključa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sortiranje"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Nivoi"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Stilovi odlomaka"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Podrazumijevano"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Izmijeni"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Dodjela"
diff --git a/source/ca-valencia/cui/messages.po b/source/ca-valencia/cui/messages.po
index 5335f7867e3..027f259ec73 100644
--- a/source/ca-valencia/cui/messages.po
+++ b/source/ca-valencia/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "No poses vores"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Posa només la vora exterior"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Posa la vora exterior i línies horitzontals"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Posa la vora exterior i totes les línies interiors"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Posa la vora exterior sense canviar les línies interiors"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Posa només línies diagonals"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Posa les quatre vores"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Posa només les vores esquerra i dreta"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Posa només les vores superior i inferior"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Posa només la vora esquerra"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Posa les vores inferior i superior i totes les línies interiors"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Posa les vores esquerra i dreta i totes les línies interiors"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Sense ombra"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Projecta l'ombra cap a la part inferior dreta"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Projecta l'ombra cap a la part superior dreta"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Projecta l'ombra cap a la part inferior esquerra"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Projecta l'ombra cap a la part superior esquerra"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Quant al %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Crè_dits"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Lloc _web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID de la construcció: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Configuració local: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Vegeu el registre: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "El %PRODUCTNAME és un paquet ofimàtic modern, fàcil d'utilitzar i de programari lliure que us permet escriure documents, crear fulls de càlcul, fer presentacions i molt més."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "El LibreOffice està basat en l'OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "El %PRODUCTNAME és un derivat del LibreOffice que està basat en l'OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Aquesta versió ha estat subministrada per %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Reemplaça"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Reempl_aça"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Amb:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Només _text"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Longitud mínima de paraula"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Propietats"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Marc:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nom:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Text alternatiu:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Descripció:"
@@ -9019,80 +9179,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ajuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilitza els diàlegs del %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diàlegs d'obri/guarda"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utilitza els _diàlegs del %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Diàlegs d'impressió"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "En im_primir s'estableix l'estat de \"document modificat\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estat del document"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpreta com a anys entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Any (dues xifres)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recull dades d'ús i els envia a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ajuda a millorar el %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Carrega el %PRODUCTNAME en iniciar el sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Habilita l'inici ràpid a la safata del sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Inici ràpid del %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tema propi"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "O bé seleccioneu dels temes instal·lats des d'extensions:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Temes del Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opcions de seguretat"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Seleccioneu el tema del Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ca-valencia/extensions/messages.po b/source/ca-valencia/extensions/messages.po
index 1123c4f8f21..2aab95464f6 100644
--- a/source/ca-valencia/extensions/messages.po
+++ b/source/ca-valencia/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3169,162 +3169,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Disposició de les columnes per a la taula %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Nom curt"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autors"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "E_ditor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Capítol"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipus"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "An_y"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Títo_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dreça"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pà_gines"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_ició"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Títol del llibre"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volum"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Ti_pus de publicació"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organit_zació"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_ució"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versitat"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tipus d'in_forme"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mes"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Re_vista"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Núm_ero"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Sè_rie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_otació"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Camp definit per l'usuari _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Camp definit per l'usuari _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Camp definit per l'usuari _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Camp definit per l'usuari _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Camp definit per l'usuari _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Noms de les columnes"
@@ -3499,27 +3499,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Escriviu un nom per al tipus de dades nou:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Enllaça els camps"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suggereix"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Els subformularis es poden utilitzar per a mostrar dades detallades del registre actual del formulari mestre. Per a fer-ho, especifiqueu quines columnes del subformulari es corresponen amb columnes del formulari mestre."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiqueta"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiqueta"
diff --git a/source/ca-valencia/helpcontent2/source/auxiliary.po b/source/ca-valencia/helpcontent2/source/auxiliary.po
index 17c88e4c101..4b641ccdeae 100644
--- a/source/ca-valencia/helpcontent2/source/auxiliary.po
+++ b/source/ca-valencia/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Informació general"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "Barres d'eines"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Dibuixos (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menús"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Barres d'eines"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objectes, gràfics i mapes de bits"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grups i capes"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Text en presentacions i en dibuixos"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/guide.po b/source/ca-valencia/helpcontent2/source/text/sbasic/guide.po
index 36adb158e5e..41627535110 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -169,6 +169,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -518,16 +542,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Obertura d'un diàleg amb codi de programació"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>commutació del mòdul/diàleg</bookmark_value><bookmark_value>diàlegs;ús de codi de programació per visualitzar diàlegs (exemple)</bookmark_value><bookmark_value>exemples; visualització d'un diàleg mitjançant codi de programació</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/python.po b/source/ca-valencia/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/python.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po b/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
index 31e2479a9f8..d5e7a7cc5ba 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36198,8 +36198,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Ajuda del $[officename] Basic\">Ajuda del %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po b/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po
index 61b4ce3e5b4..07e57ab325f 100644
--- a/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ca-valencia/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/ca-valencia/helpcontent2/source/text/scalc/01.po b/source/ca-valencia/helpcontent2/source/text/scalc/01.po
index 6122cf9cd05..64a21677de7 100644
--- a/source/ca-valencia/helpcontent2/source/text/scalc/01.po
+++ b/source/ca-valencia/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40950,8 +40950,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Cerqueu el fitxer que conté les dades que voleu inserir.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40982,7 +40982,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41006,8 +41006,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Seleccioneu la taula o l'interval de dades que voleu inserir.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46294,8 +46294,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Especifica l'interval de cel·les que voleu consolidar amb els intervals de cel·les llistats al quadre <emph>Intervals de consolidació</emph>. Seleccioneu l'interval de cel·les en un full i feu clic a <emph>Afig</emph>. També podeu seleccionar el nom d'una cel·la predefinida de la llista <emph>Interval de dades font</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/schart/00.po b/source/ca-valencia/helpcontent2/source/text/schart/00.po
index ef8bf0b2228..9346a3aa382 100644
--- a/source/ca-valencia/helpcontent2/source/text/schart/00.po
+++ b/source/ca-valencia/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 15:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -486,13 +486,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">En el diàleg Tipus de diagrama d'un diagrama de tipus Línia o diagrama XY que mostre línies, trieu Suau en el desplegable de tipus de línies, i aleshores feu clic al botó Propietats.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">En el diàleg de tipus de diagrama d'un diagrama de tipus Línia o diagrama XY que mostre línies, trieu Línies esglaonades en el desplegable de tipus de línies, i aleshores feu clic al botó Propietats.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/00.po b/source/ca-valencia/helpcontent2/source/text/shared/00.po
index 5be61e9362a..6baf1e1df3a 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/00.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7564,14 +7564,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index 904db91ea0a..f4a6c84d695 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6252,6 +6252,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/02.po b/source/ca-valencia/helpcontent2/source/text/shared/02.po
index bdf5463d3dd..0c6ad8a0717 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/02.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3838,7 +3838,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/guide.po b/source/ca-valencia/helpcontent2/source/text/shared/guide.po
index 96ee18779d7..2b995bed5be 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3100,14 +3100,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3116,14 +3108,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3132,14 +3116,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3148,14 +3124,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3164,14 +3132,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3180,14 +3140,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3196,14 +3148,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3212,14 +3156,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3228,14 +3164,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3292,14 +3220,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3308,14 +3228,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3324,14 +3236,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3348,14 +3252,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3364,14 +3260,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3380,14 +3268,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3396,14 +3276,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3412,14 +3284,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3428,14 +3292,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3460,14 +3316,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3476,14 +3324,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3492,14 +3332,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3508,14 +3340,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3524,14 +3348,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3540,14 +3356,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3556,14 +3364,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3572,14 +3372,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3588,14 +3380,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3604,14 +3388,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3620,14 +3396,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3636,14 +3404,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3652,14 +3412,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3668,14 +3420,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3684,14 +3428,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3700,14 +3436,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3716,14 +3444,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3732,14 +3452,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3796,14 +3508,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3812,14 +3516,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3828,14 +3524,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3844,14 +3532,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3860,14 +3540,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3876,14 +3548,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3900,14 +3564,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3916,14 +3572,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3932,14 +3580,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3948,14 +3588,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3964,14 +3596,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3980,14 +3604,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4012,14 +3628,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4028,14 +3636,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4060,14 +3660,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4076,14 +3668,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4092,14 +3676,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4108,14 +3684,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4124,14 +3692,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4140,14 +3700,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4156,14 +3708,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4188,14 +3732,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4204,14 +3740,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4220,14 +3748,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4236,14 +3756,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4252,14 +3764,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4348,14 +3852,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4380,14 +3876,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4396,14 +3884,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4412,14 +3892,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4444,14 +3916,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4460,14 +3924,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4476,14 +3932,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4492,14 +3940,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4540,14 +3980,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4556,14 +3988,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4572,14 +3996,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4588,14 +4004,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4604,14 +4012,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4652,14 +4052,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4732,14 +4124,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4748,14 +4132,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4764,14 +4140,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4780,14 +4148,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4796,14 +4156,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4812,14 +4164,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4876,14 +4220,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4892,14 +4228,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4908,14 +4236,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4924,14 +4244,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4940,14 +4252,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4956,14 +4260,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4972,14 +4268,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4988,14 +4276,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5004,14 +4284,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5020,14 +4292,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5036,14 +4300,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5052,14 +4308,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5068,14 +4316,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5084,14 +4324,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5116,14 +4348,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5132,14 +4356,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5148,14 +4364,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5164,14 +4372,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5180,14 +4380,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5196,14 +4388,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5212,14 +4396,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5228,14 +4404,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5292,14 +4460,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5308,14 +4468,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5324,14 +4476,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5340,14 +4484,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5356,14 +4492,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5388,14 +4516,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5436,14 +4556,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5452,14 +4564,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5484,14 +4588,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5500,14 +4596,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5532,14 +4620,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5564,14 +4644,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5580,14 +4652,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5596,14 +4660,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5612,14 +4668,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5628,14 +4676,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5644,14 +4684,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5660,14 +4692,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5676,14 +4700,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5692,14 +4708,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5708,14 +4716,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5756,14 +4756,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5772,14 +4764,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5788,14 +4772,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5804,14 +4780,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5820,14 +4788,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5836,14 +4796,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5884,14 +4836,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5900,14 +4844,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5916,14 +4852,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5932,14 +4860,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5948,14 +4868,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5964,14 +4876,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5980,14 +4884,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5996,14 +4892,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6012,14 +4900,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6028,14 +4908,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6044,14 +4916,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6060,14 +4924,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6076,14 +4932,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6092,14 +4940,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6108,14 +4948,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6124,14 +4956,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6140,14 +4964,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6156,14 +4972,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6172,14 +4980,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6188,14 +4988,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6204,14 +4996,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6220,14 +5004,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6236,14 +5012,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6252,14 +5020,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6268,14 +5028,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6284,14 +5036,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6300,14 +5044,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6316,14 +5052,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6332,14 +5060,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6348,14 +5068,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6364,14 +5076,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6380,14 +5084,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6396,14 +5092,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6412,27 +5100,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
index aac37b599bf..d8351e89f8b 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca-valencia/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14785,182 +14785,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalització"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalització</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Podeu personalitzar el vostre %PRODUCTNAME amb els mateixos temes disponibles per al Mozilla Firefox. Es veurà el tema escollit al fons de la barra de menú, les barres d'eines superiors i les barres d'eines inferiors."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Els temes del Mozilla Firefox es poden trobar al lloc web del Mozilla a la següent adreça: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Temes del Firefox:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Hi ha disponibles les opcions següents:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Aparença plana, no utilitzes temes"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Els fons de les barres d'eines hereten les configuracions de fons del gestor de finestres de l'escriptori.</ahelp> Este és el predeterminat del %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Tema propi"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Escolliu esta opció per obrir el diàleg de Seleccioneu el tema del Firefox per poder escollir altres temes.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Diàleg de selecció un tema del Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Este diàleg permet instal·lar un tema concret o fer una ullada a altres temes interessants del lloc web del Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Mostra una selecció aleatòria de nou temes basada en les categories que es mostren als botons.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Per seleccionar un dels temes mostrats, feu clic a la seua imatge i premeu <item type=\"menuitem\">D'acord</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/ca-valencia/helpcontent2/source/text/simpress/01.po b/source/ca-valencia/helpcontent2/source/text/simpress/01.po
index 39ea221091d..9f92c9b78e9 100644
--- a/source/ca-valencia/helpcontent2/source/text/simpress/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8182,7 +8182,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
index ba47e5f84b6..7e8b11384f0 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -230,15 +230,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "A la <emph>barra Estàndard</emph>, feu clic a la icona <emph>Navegador</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icona</alt></image> per obrir el <emph>Navegador</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -262,7 +262,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -294,7 +294,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -310,7 +310,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
index 53bb35f1718..f684847ffeb 100644
--- a/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ca-valencia/sc/messages.po b/source/ca-valencia/sc/messages.po
index 437734abf4f..272d40572d8 100644
--- a/source/ca-valencia/sc/messages.po
+++ b/source/ca-valencia/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15209,6 +15209,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(accés exclusiu)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15762,12 +15767,12 @@ msgstr "Gestiona la formatació condicional"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16985,81 +16990,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulari de dades"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Tanca"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Registre nou"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nou"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Suprimeix"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restaura"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Registre _anterior"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Registre _següent"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Tanca"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Fluxos de dades en directe"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Introduïu ací l'URL del document d'origen en el sistema de fitxers local o Internet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Navega..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Interval de base de dades:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Proveïdor de dades:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Cadena de busca:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Flux d'origen"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18775,32 +18740,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultats a:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Dades"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Columnes"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Files"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Agrupat per"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Paràmetres"
@@ -18940,167 +18910,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21581,17 +21553,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Resultats de la busca"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23461,107 +23443,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Símbols d'esque_ma"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Finestra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Línies de la _graella:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Color:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Mostra en les cel·les acolorides"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Amaga"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Salts de _pàgina"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Línies d'ajuda en _moure"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Ajudes visuals"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jectes/imatges:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diag_rames:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Objectes de _dibuix:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Amaga"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Amaga"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Amaga"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objectes"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_incronitza els fulls"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Escala"
diff --git a/source/ca-valencia/scp2/source/ooo.po b/source/ca-valencia/scp2/source/ooo.po
index 87f145d3944..ffc91260d70 100644
--- a/source/ca-valencia/scp2/source/ooo.po
+++ b/source/ca-valencia/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Obri un document"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ca-valencia/scp2/source/winexplorerext.po b/source/ca-valencia/scp2/source/winexplorerext.po
index 18bf57085fa..45b3dfdc5d5 100644
--- a/source/ca-valencia/scp2/source/winexplorerext.po
+++ b/source/ca-valencia/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-02-28 00:16+0200\n"
-"Last-Translator: Joan <joan@montane.cat>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-11-20 14:05+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: ca_XV\n"
+"Language: ca-valencia\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1384956317.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permet que l'Explorador del Microsoft Windows mostre informació sobre els documents del %PRODUCTNAME, com ara imatges de previsualització."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ca-valencia/sd/messages.po b/source/ca-valencia/sd/messages.po
index 725f3777c36..eabaaa45da3 100644
--- a/source/ca-valencia/sd/messages.po
+++ b/source/ca-valencia/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Anomena el disseny HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Mostra les formes"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ca-valencia/sfx2/messages.po b/source/ca-valencia/sfx2/messages.po
index e514be3a930..39c23265fa9 100644
--- a/source/ca-valencia/sfx2/messages.po
+++ b/source/ca-valencia/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,11 +916,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " A: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Suprimeix la propietat"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -929,27 +924,27 @@ msgstr ""
"El valor introduït no coincideix amb el tipus especificat.\n"
"El valor es guardarà com a text."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Ja existeix l'estil. Voleu sobreescriure'l?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Reinicialitza"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Aquest nom ja s'utilitza per a una plantilla."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Aquest estil no existeix."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -958,7 +953,7 @@ msgstr ""
"Aquest estil no pot utilitzar-se com a estil base,\n"
"perquè implicaria una referència recursiva."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -967,7 +962,7 @@ msgstr ""
"El nom ja existeix com a estil per defecte.\n"
" Trieu-ne un altre."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -978,92 +973,92 @@ msgstr ""
"Si suprimiu aquests estils, el text tornarà a l'estil pare.\n"
"Voleu suprimir aquests estils?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Estils en ús: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navegador"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Confirmació incorrecta de la contrasenya"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Envia"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Tipus de lletra"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Mostra el comentari de la versió"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(sense nom definit)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Llista d'estils"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Jeràrquic"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Mode format d'emplenament"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Estil nou a partir de la selecció"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Actualitza l'estil"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Voleu cancel·lar l'gravació\t? Tot el que heu gravat fins ara es perdrà."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Cancel·la l'gravació\t"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "S'estan inicialitzant les plantilles per al primer ús."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1072,7 +1067,7 @@ msgstr ""
"No s'ha trobat cap impressora per defecte.\n"
"Trieu-ne una i torneu-ho a provar."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1081,17 +1076,17 @@ msgstr ""
"No s'ha pogut iniciar la impressora.\n"
"Reviseu-ne la configuració."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "La impressora està ocupada."
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (només de lectura)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1102,7 +1097,7 @@ msgstr ""
"Voleu guardar la nova configuració\n"
"en el document actiu?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1113,7 +1108,7 @@ msgstr ""
"Voleu guardar la nova configuració\n"
"en el document actiu?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1124,7 +1119,7 @@ msgstr ""
"Voleu guardar la nova configuració\n"
"en el document actiu?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1133,7 +1128,7 @@ msgstr ""
"El document no es pot tancar perquè\n"
" s'està duent a terme una tasca d'impressió."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1141,7 +1136,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1149,17 +1144,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "No es pot editar el document, segurament per falta de drets d'accés. Voleu editar una còpia del document?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1167,349 +1162,359 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (document reparat)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Aquest document no s'ha baixat del servidor."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Aquest document s'ha obert en mode només de lectura."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Este PDF és obert en mode de només de lectura per a poder signar el fitxer existent."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "L'etiqueta de classificació d'aquest document és %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Aquest document ha de classificar-se abans que es puga apegar des del porta-retalls."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Este document té una classificació d'un nivell inferior que el del porta-retalls."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Seguretat nacional:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Control d'exportació:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Baixa"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Edita el document"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Signa el document"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Este document té una signatura no vàlida."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "La signatura era vàlida, però el document s'ha modificat."
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "La signatura és correcta, però el certificat no s'ha pogut validar."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "La signatura és correcta, però el document només s'ha signat parcialment."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Este document és signat digitalment i la signatura és vàlida."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Mostra les signatures"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Tanca el quadre"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Acobla"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Desacobla"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Més opcions"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Tanca la barra lateral"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Configuració de la barra lateral"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalització"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restaura els valors predeterminats"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Tanca la barra lateral"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alitzarina"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Rusc"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Corba blava"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cianotip"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Blau brillant"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Roig elegant"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Au forestal"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impressió"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiració"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Llums"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verd exuberant"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metròpoli"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Blau de mitjanit"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Llapis"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portafolis"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progrés"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Ocàs"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Llampant"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículum"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Per defecte"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, lletra sense serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, lletra amb serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Targeta de visita amb logotip"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Suprimeix"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Neteja-ho tot"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1854,32 +1859,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Comentari sobre la versió"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nom"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipus"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valor"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipus"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Sí"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "No"
@@ -1889,17 +1879,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Afig una _propietat"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nom"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipus"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valor"
@@ -2029,17 +2019,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Ubicació:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipus:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Canvia la _contrasenya"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Plantilla:"
@@ -2049,27 +2039,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Propietats de «%1»"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "General "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descripció"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Propietats personalitzades"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Propietats CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Seguretat"
@@ -2283,6 +2273,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ca-valencia/shell/messages.po b/source/ca-valencia/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ca-valencia/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ca-valencia/starmath/messages.po b/source/ca-valencia/starmath/messages.po
index bca1a2a6203..2cf9bc7ab8e 100644
--- a/source/ca-valencia/starmath/messages.po
+++ b/source/ca-valencia/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,267 +1652,292 @@ msgid "Examples"
msgstr "Exemples"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estàndard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negreta"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "negre"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blau"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verd"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "roig"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cian"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "llimona"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marró"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "blau marí"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "verd oliva"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "porpa"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "jade"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "groc"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "amaga"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "mida"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "tipus de lletra"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "esquerra"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dreta"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Ordes"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "S'està desant el document..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula del %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caràcter no esperat"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Símbol inesperat"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "S'esperava '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "S'esperava '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "S'esperava '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "S'esperava ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Els símbols esquerre i dret no es corresponen"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "S'esperava «fixed«, «sans» o «serif»"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "«size» seguit d'un senyal no esperat"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "No es permet l'alineació doble"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "No es permeten ni els subíndexs dobles ni els superíndexs dobles"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "S'esperava '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Es necessita un color"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "S'esperava 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contingut"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Títol"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Text de la fórmula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Vores"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Mida"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Mida original"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ajusta a la pàgina"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1978,6 +2003,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elements"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ca-valencia/svtools/messages.po b/source/ca-valencia/svtools/messages.po
index 8ebcf6ef473..9b3f370d893 100644
--- a/source/ca-valencia/svtools/messages.po
+++ b/source/ca-valencia/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1525 +16,1527 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195305.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desfés: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Re~fés: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repeteix: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Text sense format"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informació d'estat d'un enllaç intern d'SVX"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Adreça d'interés del Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format de servidor Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format d'objecte Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objecte miniaplicació"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objecte connector"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objecte d'StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objecte d'StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objecte d'StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objecte d'StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objecte d'StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objecte d'StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objecte d'StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objecte d'StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objecte d'StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objecte d'StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objecte d'StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objecte d'StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objecte d'StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objecte d'StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objecte d'StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objecte d'StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objecte d'StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objecte d'StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objecte d'StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objecte d'StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objecte d'StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objecte d'StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objecte d'StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objecte de Paint d'StarObject"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objecte de Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objecte d'StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objecte document d'Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informació de document de Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Document SFX"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objecte d'StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objecte gràfic"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objecte de l'OpenOffice.org Writer 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objecte de l'OpenOffice.org Writer/Web 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objecte mestre de l'OpenOffice.org Writer 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objecte de l'OpenOffice.org Draw 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objecte de l'OpenOffice.org Impress 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objecte de l'OpenOffice.org Calc 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objecte de diagrama de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objecte de l'OpenOffice.org Math 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metafitxer de Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objecte font de dades"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Taula de font de dades"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diàleg de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Enllaç"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Format HTML sense comentaris"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "No s'ha pogut inserir l'objecte %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "No s'ha pogut inserir l'objecte del fitxer %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Objectes addicionals"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Font desconeguda"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nom"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Mida"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Data de modificació"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipus"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Fila: %1, columna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", tipus: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Carpeta"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fitxer"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Camp buit"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumèric"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Joc de caràcters"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionari"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Traç"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Llibreta de telèfons"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonètic (primer alfanumèric)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonètic (últim alfanumèric)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumèric"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionari"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Traç"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonètic (primer alfanumèric, agrupat per síl·labes)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonètic (primer alfanumèric, agrupat per consonants)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonètic (últim alfanumèric, agrupat per síl·labes)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonètic (últim alfanumèric, agrupat per consonants)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Hui"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Cap"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Clar"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Cursiva lleu"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiva"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Negreta"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Negreta cursiva"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Negre"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Negra cursiva"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Llibre"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Negreta obliqua"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensat"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensada negreta"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensada negreta cursiva"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensada negreta obliqua"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensada cursiva"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensada obliqua"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extafina"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extrafina cursiva"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Obliqua"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "seminegreta"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Seminegreta cursiva"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "S'utilitzarà el mateix tipus de lletra a la impressora i a la pantalla."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Lletra d'impressora. La visualització per pantalla podria ser diferent."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Aquest estil de lletra s'imitarà o s'utilitzarà el més adequat."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Aquest tipus de lletra no està instal·lat. S'utilitzarà el tipus de lletra disponible més adequat."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Navega..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mou a l'inici"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mou a l'esquerra"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mou a la dreta"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mou al final"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Afig"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regle horitzontal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regle vertical"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Llindar d'un bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Tramat d'un bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escala de grisos de 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Color de 4 bits"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de grisos de 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Color de 8 bits"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Color real de 24 bits"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "La imatge necessita aproximadament %1 KB de memòria."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "La imatge necessita aproximadament %1 KB de memòria, la mida del fitxer és %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "La mida del fitxer és %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "fantasma"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Ordena"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Un altre CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preparat"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "En pausa"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Supressió pendent"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupat"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "S'està inicialitzant"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "S'està esperant"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "S'està escalfant"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "S'està processant"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "S'està imprimint"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Desconnectat"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor desconegut"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Bloqueig de paper"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "No hi ha prou paper"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentació manual"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema amb el paper"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/E actives"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "La paperera d'eixida està plena"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tòner baix"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "No hi ha tòner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Suprimeix la pàgina"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Es requereix la intervenció de l'usuari"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "No hi ha prou memòria"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Coberta oberta"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mode d'estalvi d'energia"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impressora per defecte"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Finalitza"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Següent >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< ~Arrere"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Passos"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<cap>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departament"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nom"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Cognoms"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Carrer"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Estat"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Codi postal"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciutat"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Títol"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posició"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tractament"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicials"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tancament complementari"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel.: particular"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel.: faena"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuari 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuari 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuari 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuari 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Identificador"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Comarca"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel.: oficina"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Cercapersones"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Tel. mòbil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel.: altres"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendari"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Convida"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de l'usuari $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) per a realitzar aquesta tasca. Instal·leu un JRE i reinicieu el %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuració del %PRODUCTNAME ha canviat. A %PRODUCTNAME - Preferències - %PRODUCTNAME - Avançat, seleccioneu l'entorn d'execució de Java que voleu utilitzar amb el %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuració del %PRODUCTNAME ha canviat. A Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Avançat, seleccioneu l'entorn d'execució de Java que voleu utilitzar amb el %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) per a realitzar aquesta tasca. El JRE seleccionat no funciona correctament. Seleccioneu una altra versió o instal·leu un JRE nou i seleccioneu-lo a %PRODUCTNAME - Preferències - %PRODUCTNAME - Avançat."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) per realitzar esta tasca. El JRE seleccionat no funciona correctament. Seleccioneu una altra versió o instal·leu un JRE nou i seleccioneu-lo a Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Avançat."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Es necessita un JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Seleccioneu un JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "El JRE no funciona correctament"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Codi font"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Fitxer de marcadors"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Gràfics"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Fitxer de configuració"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicació"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Taula de la base de dades"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Fitxer del sistema"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Document de l'MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Fitxer d'ajuda"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Document HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Fitxer d'arxiu"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Fitxer de registre"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de dades de l'StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Document mestre de l'StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imatge de l'StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Fitxer de text"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Enllaç"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Plantilla de l'StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Document de l'MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Plantilla de l'MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Fitxer de lot"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fitxer"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Carpeta"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Document de text"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Full de càlcul"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentació"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dibuix"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Document HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Document mestre"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de dades"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Plantilla de full de càlcul de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Plantilla de dibuix de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Plantilla de presentació de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Plantilla de document de text de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unitat local"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unitat de disc dur"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unitat de CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Connexió de xarxa"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Document de l'MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Plantilla de l'MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Exposició de l'MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagrama de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dibuix de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Full de càlcul de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentació de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Document de text de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Document mestre de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Document MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de dades OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dibuix OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Document mestre OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentació OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Full de càlcul OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Text OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Plantilla de full de càlcul OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Plantilla de dibuix OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Plantilla de presentació OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Plantilla de text OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensió del %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Verificador ortogràfic Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Divisor de paraules Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ca-valencia/svx/messages.po b/source/ca-valencia/svx/messages.po
index 66383c1f1fb..043c11f4513 100644
--- a/source/ca-valencia/svx/messages.po
+++ b/source/ca-valencia/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7918,6 +7918,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12185,82 +12190,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Indiqueu el percentatge de desplaçament vertical des del centre per a l'estil d'ombreig del degradat. 50% és el centre vertical."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor de la vora"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplica"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Àrea de treball"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Selecciona"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "El·lipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polígon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Edita els punts"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mou els punts"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insereix punts"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Suprimeix els punts"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Vora automàtica"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Desfés "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Refés"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolerància del color"
@@ -12571,112 +12581,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Peu"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor del mapa d'imatge"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplica"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Obri..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Guarda..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Tanca"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Seleccioneu"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "El·lipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polígon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Polígon de forma lliure"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Edita els punts"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mou els punts"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insereix punts"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Suprimeix els punts"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Desfés "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Refés"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Actiu"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Propietats..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adreça:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Marc:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Text:"
diff --git a/source/ca-valencia/sw/messages.po b/source/ca-valencia/sw/messages.po
index 0448b361954..ce318c55275 100644
--- a/source/ca-valencia/sw/messages.po
+++ b/source/ca-valencia/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Canvia el títol de l'objecte $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Canvia la descripció de l'objecte $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12007,147 +12007,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12157,152 +12157,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13369,8 +13369,8 @@ msgstr "Amplia la separació de paraules a les línies de paràgrafs justificats
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Protegeix el formulari"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16648,47 +16648,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Taula de continguts, índex o bibliografia"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Previsualització"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Previsualització"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipus"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entrades"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Estils"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Columnes"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fons"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Previsualització"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Nivell"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tipus"
@@ -16918,302 +16918,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Edita..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Títol:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipus:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Índex de continguts"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Índex alfabètic"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Índex de taules"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Definit per l'usuari"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Taula d'objectes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protegit contra canvis manuals"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipus i títol"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Per a:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Tot el document"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capítol"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Avalua fins al nivell:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Crea un índex o una taula de continguts"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Esquema"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Mar_ques de l'índex"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Taules"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Marcs de te_xt"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Gràfics"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Objectes OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Utilitza el nivell del capítol d'origen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Estils _addicionals"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Estils"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Assigna estils..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Llegendes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Noms d'objecte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categoria:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Visualització:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referències"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categoria i número"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Text de la llegenda"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Crea a partir de"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Crea a partir dels objectes següents"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Parèntesis:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Numera les entrades"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[cap]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatació de les entrades"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Combina entrades idèntiques"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Combina entrades idèntiques amb p o _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Combina amb -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Distingeix majúscules i minúscules"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Posa les entrades en majúscula autom."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Claus com a entrades separades"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Fitxer de _concordança"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Fitxer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opcions"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Llengua:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipus de clau:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ordena"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Nivells"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "E_stils de paràgraf"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Per _defecte"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Edita"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Assignació"
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index 8b15f964667..ba3f221c955 100644
--- a/source/ca/cui/messages.po
+++ b/source/ca/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-05-07 10:31+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Introduïu una adreça de tema vàlida o un terme de cerca."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "No posis vores"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Posa només la vora exterior"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Posa la vora exterior i línies horitzontals"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Posa la vora exterior i totes les línies interiors"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Posa la vora exterior sense canviar les línies interiors"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Posa només línies diagonals"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Posa totes quatre vores"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Posa només les vores esquerra i dreta"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Posa només les vores superior i inferior"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Posa només la vora esquerra"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Posa les vores inferior i superior i totes les línies interiors"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Posa les vores esquerra i dreta i totes les línies interiors"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Sense ombra"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Projecta l'ombra cap a la part inferior dreta"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Projecta l'ombra cap a la part superior dreta"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Projecta l'ombra cap a la part inferior esquerra"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Projecta l'ombra cap a la part superior esquerra"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Signat per: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Tots els fitxers"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Bases de dades registrades"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Quant al %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Crè_dits"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Lloc _web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID de la construcció: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Configuració local: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Llengua de la IU: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Vegeu el registre: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "El %PRODUCTNAME és un paquet ofimàtic modern, fàcil d'utilitzar i de programari lliure que us permet escriure documents, crear fulls de càlcul, fer presentacions i molt més."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000 – 2019 col·laboradors del LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "El LibreOffice està basat en l'OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "El %PRODUCTNAME és un derivat del LibreOffice que està basat en l'OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Aquesta versió ha estat subministrada per %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Reemplaça"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Reempl_aça"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Amb:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Només _text"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Longitud mínima de paraula"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Propietats"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Marc:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nom:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Text alternatiu:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Descripció:"
@@ -9019,80 +9179,80 @@ msgstr "Mostra el missatge emergent «No teniu instal·lada l'ajuda fora de lín
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ajuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilitza els diàlegs del %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Diàlegs d'obertura/desament"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utilitza els _diàlegs del %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Diàlegs d'impressió"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "En im_primir s'estableix l'estat de «document modificat»"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estat del document"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpreta com a anys entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Any (dues xifres)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recull dades d'ús i els envia a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ajudar a millorar el %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Carrega el %PRODUCTNAME en iniciar el sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Habilita l'inici ràpid a la safata del sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Inici ràpid del %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Tema preinstal·lat"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tema propi"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Carrega el tema del Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "O bé seleccioneu dels temes instal·lats des d'extensions:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Temes del Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opcions de seguretat"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Seleccioneu el tema del Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Terme de cerca o adreça"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ca_tegoria:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstractes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Causes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Cinema i televisió"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Festes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Música"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natura"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Altres"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Paisatges"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Estacionals"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Sòlids"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Esports"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Llocs web"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Destacats"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Ho sabíeu?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Enllaç"
diff --git a/source/ca/extensions/messages.po b/source/ca/extensions/messages.po
index 10026edc41d..5138745a3a1 100644
--- a/source/ca/extensions/messages.po
+++ b/source/ca/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-27 18:20+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\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: 1556389250.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Disposició de les columnes per a la taula «%1»"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Nom curt"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autors"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "E_ditor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Capítol"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipus"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "An_y"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Títo_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dreça"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pà_gines"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_ició"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Títol del llibre"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volum"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Ti_pus de publicació"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organit_zació"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_ució"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versitat"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tipus d'in_forme"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mes"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Re_vista"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Núm_ero"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Sè_rie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_otació"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Camp definit per l'usuari _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Camp definit per l'usuari _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Camp definit per l'usuari _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Camp definit per l'usuari _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Camp definit per l'usuari _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Noms de les columnes"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Escriviu un nom per al tipus de dades nou:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Enllaça els camps"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suggereix"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Els subformularis es poden utilitzar per mostrar dades detallades del registre actual del formulari mestre. Per fer-ho, especifiqueu quines columnes del subformulari es corresponen amb columnes del formulari mestre."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiqueta"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiqueta"
diff --git a/source/ca/helpcontent2/source/auxiliary.po b/source/ca/helpcontent2/source/auxiliary.po
index 13dbb701877..14132946e64 100644
--- a/source/ca/helpcontent2/source/auxiliary.po
+++ b/source/ca/helpcontent2/source/auxiliary.po
@@ -3,9 +3,9 @@ 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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-01-18 20:25+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-16 07:54+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1547843137.000000\n"
+"X-POOTLE-MTIME: 1557993262.000000\n"
#: sbasic.tree
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"0702\n"
"node.text"
msgid "Python Scripts Help"
-msgstr ""
+msgstr "Ajuda de scripts de Python"
#: sbasic.tree
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"070202\n"
"node.text"
msgid "Programming with Python"
-msgstr ""
+msgstr "Programació en Python"
#: scalc.tree
msgctxt ""
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Informació general"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Presentacions i dibuixos (Impress i Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Barres d'eines"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Dibuixos (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menús"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Barres d'eines"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objectes, gràfics i mapes de bits"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grups i capes"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Text en presentacions i en dibuixos"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -662,7 +742,7 @@ msgctxt ""
"030101\n"
"node.text"
msgid "%PRODUCTNAME Formula Elements"
-msgstr ""
+msgstr "Elements de fórmula del %PRODUCTNAME "
#: smath.tree
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/sbasic/guide.po b/source/ca/helpcontent2/source/text/sbasic/guide.po
index 794e1627631..4bf0fff14b1 100644
--- a/source/ca/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ca/helpcontent2/source/text/sbasic/guide.po
@@ -3,9 +3,9 @@ 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: 2019-04-24 18:25+0200\n"
-"PO-Revision-Date: 2018-08-06 17:09+0000\n"
-"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-16 08:17+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1533575344.000000\n"
+"X-POOTLE-MTIME: 1557994644.000000\n"
#: access2base.xhp
msgctxt ""
@@ -169,6 +169,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Compareu l'Access2Base amb el Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -351,7 +375,7 @@ msgctxt ""
"hd_id3155338\n"
"help.text"
msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Exemples de programació dels controls de l'editor de diàlegs\">Exemples de programació dels controls de l'editor de diàlegs</link> </variable>"
#: sample_code.xhp
msgctxt ""
@@ -518,16 +542,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Obertura d'un diàleg amb codi de programació"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>commutació del mòdul/diàleg</bookmark_value><bookmark_value>diàlegs;ús de codi de programació per visualitzar diàlegs (exemple)</bookmark_value><bookmark_value>exemples; visualització d'un diàleg mitjançant codi de programació</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/sbasic/python.po b/source/ca/helpcontent2/source/text/sbasic/python.po
index 45e8f2326ba..0b5cda3eefa 100644
--- a/source/ca/helpcontent2/source/text/sbasic/python.po
+++ b/source/ca/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-11 07:48+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,7 +77,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value><bookmark_value>Platform;isMacOsX</bookmark_value><bookmark_value>Platform;isWindows</bookmark_value><bookmark_value>Platform;ComputerName</bookmark_value><bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1493,7 +1493,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1515,6 +1515,30 @@ msgstr "Mitjançant un mòdul de classe del Basic:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared.po b/source/ca/helpcontent2/source/text/sbasic/shared.po
index e3d12a706d2..4f937b0700b 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-11 07:51+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36198,8 +36198,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Ajuda del $[officename] Basic\">Ajuda del %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared/02.po b/source/ca/helpcontent2/source/text/sbasic/shared/02.po
index 5a2317ea1e1..8025d2c8f11 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared/02.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-08-16 04:30+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-05-16 08:25+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1534393828.000000\n"
+"X-POOTLE-MTIME: 1557995155.000000\n"
#: 11010000.xhp
msgctxt ""
@@ -1607,7 +1607,7 @@ msgctxt ""
"hd_id11904\n"
"help.text"
msgid "Table Control"
-msgstr ""
+msgstr "Control de taules"
#: 20000000.xhp
msgctxt ""
@@ -1615,7 +1615,7 @@ msgctxt ""
"par_id7511524\n"
"help.text"
msgid "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Table control icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_insertgridcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Icona del control de taules</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1623,7 +1623,7 @@ msgctxt ""
"par_id9961854\n"
"help.text"
msgid "<ahelp hid=\".\">Adds a table control that can show a table data. You can populate the data by your program, using API calls.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Afegeix un control de taules que pot mostrar dades d'una taula. Podeu fer que el programa empleni la llista utilitzant crides d'API.</ahelp>"
#: 20000000.xhp
msgctxt ""
@@ -1631,7 +1631,7 @@ msgctxt ""
"hd_id11905\n"
"help.text"
msgid "Hyperlink Control"
-msgstr ""
+msgstr "Control d'enllaç"
#: 20000000.xhp
msgctxt ""
@@ -1639,7 +1639,7 @@ msgctxt ""
"par_id7511525\n"
"help.text"
msgid "<image id=\"Graphic3\" src=\"cmd/sc_inserthyperlinkcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Insert hyperlink control icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"Graphic3\" src=\"cmd/sc_inserthyperlinkcontrol.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_\">Icona de control d'enllaços</alt></image>"
#: 20000000.xhp
msgctxt ""
@@ -1647,4 +1647,4 @@ msgctxt ""
"par_id9961856\n"
"help.text"
msgid "<ahelp hid=\".\">Adds a hyperlink control that can open an address in web browser.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Afegeix un control d'enllaços que pot obrir una adreça al navegador web.</ahelp>"
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared/03.po b/source/ca/helpcontent2/source/text/sbasic/shared/03.po
index f548db0ceb8..a7bf06b5494 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-23 02:49+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1548211789.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Funcions i subrutines per al control dels mòduls."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index e0fd173fef5..6720290b5e3 100644
--- a/source/ca/helpcontent2/source/text/scalc/01.po
+++ b/source/ca/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-03-06 07:51+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40950,8 +40950,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Cerqueu el fitxer que conté les dades que voleu inserir.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40982,8 +40982,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Introduïu l'URL o el nom del fitxer que contingui les dades que voleu inserir i tot seguit premeu Retorn.</ahelp> Aleshores se sol·licitarà l'URL a la xarxa o al sistema de fitxers."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41006,8 +41006,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Seleccioneu la taula o l'interval de dades que voleu inserir.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46294,8 +46294,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Especifica l'interval de cel·les que voleu consolidar amb els intervals de cel·les llistats al quadre <emph>Intervals de consolidació</emph>. Seleccioneu l'interval de cel·les en un full i feu clic a <emph>Afegeix</emph>. També podeu seleccionar el nom d'una cel·la predefinida de la llista <emph>Interval de dades font</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/schart/00.po b/source/ca/helpcontent2/source/text/schart/00.po
index cc403bcc38a..dad89b5107f 100644
--- a/source/ca/helpcontent2/source/text/schart/00.po
+++ b/source/ca/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-21 11:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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-Language: ca\n"
"X-POOTLE-MTIME: 1548069828.000000\n"
@@ -486,13 +486,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">En el diàleg Tipus de diagrama d'un diagrama de tipus Línia o diagrama XY que mostri línies, trieu Suau en el desplegable de tipus de línies, i aleshores feu clic al botó Propietats.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">En el diàleg de tipus de diagrama d'un diagrama de tipus Línia o diagrama XY que mostri línies, trieu Línies esglaonades en el desplegable de tipus de línies, i aleshores feu clic al botó Propietats.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/ca/helpcontent2/source/text/sdraw.po b/source/ca/helpcontent2/source/text/sdraw.po
index 522b0a6ba9c..3bb4c17147c 100644
--- a/source/ca/helpcontent2/source/text/sdraw.po
+++ b/source/ca/helpcontent2/source/text/sdraw.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2018-10-04 07:31+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-05-16 08:15+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1538638296.000000\n"
+"X-POOTLE-MTIME: 1557994534.000000\n"
#: main0000.xhp
msgctxt ""
@@ -639,7 +639,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Edita"
#: main_edit.xhp
msgctxt ""
@@ -647,7 +647,7 @@ msgctxt ""
"hd_id3150868\n"
"help.text"
msgid "<link href=\"text/sdraw/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_edit.xhp\" name=\"Edit\">Edita</link>"
#: main_edit.xhp
msgctxt ""
@@ -655,7 +655,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
-msgstr ""
+msgstr "Les ordres d'aquest menú s'utilitzen per editar documents del Draw (per exemple, copiar i enganxar)."
#: main_edit.xhp
msgctxt ""
@@ -663,7 +663,7 @@ msgctxt ""
"hd_id3147396\n"
"help.text"
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Enganxament especial\">Enganxament especial</link>"
#: main_edit.xhp
msgctxt ""
@@ -671,7 +671,7 @@ msgctxt ""
"hd_id3149400\n"
"help.text"
msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Cerca i reemplaça\">Cerca i reemplaça</link>"
#: main_edit.xhp
msgctxt ""
@@ -679,7 +679,7 @@ msgctxt ""
"hd_id3153713\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Punts\">Punts</link>"
#: main_edit.xhp
msgctxt ""
@@ -687,7 +687,7 @@ msgctxt ""
"par_id3147340\n"
"help.text"
msgid "Enables you to edit points on your drawing."
-msgstr ""
+msgstr "Permet editar punts del dibuix."
#: main_edit.xhp
msgctxt ""
@@ -695,7 +695,7 @@ msgctxt ""
"hd_id3149258\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Punts d'adhesió</link>"
#: main_edit.xhp
msgctxt ""
@@ -703,7 +703,7 @@ msgctxt ""
"par_id3146315\n"
"help.text"
msgid "Enables you to edit glue points on your drawing."
-msgstr ""
+msgstr "Permet editar punts d'adhesió del dibuix."
#: main_edit.xhp
msgctxt ""
@@ -711,7 +711,7 @@ msgctxt ""
"hd_id3147005\n"
"help.text"
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplica\">Duplica</link>"
#: main_edit.xhp
msgctxt ""
@@ -719,7 +719,7 @@ msgctxt ""
"hd_id3150205\n"
"help.text"
msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Esvaïment creuat</link>"
#: main_edit.xhp
msgctxt ""
@@ -727,7 +727,7 @@ msgctxt ""
"hd_id3154650\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Camps\">Camps</link>"
#: main_edit.xhp
msgctxt ""
@@ -735,7 +735,7 @@ msgctxt ""
"hd_id3156446\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Enllaços\">Enllaços</link>"
#: main_edit.xhp
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Enllaç\">Enllaç</link>"
#: main_format.xhp
msgctxt ""
@@ -751,7 +751,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: main_format.xhp
msgctxt ""
@@ -759,7 +759,7 @@ msgctxt ""
"hd_id3153770\n"
"help.text"
msgid "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">Format</link>"
#: main_format.xhp
msgctxt ""
@@ -767,7 +767,7 @@ msgctxt ""
"par_id3152578\n"
"help.text"
msgid "Contains commands for formatting the layout and the contents of your document."
-msgstr ""
+msgstr "Conté ordres per a formatar l'estructura i els continguts del document."
#: main_format.xhp
msgctxt ""
@@ -775,7 +775,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caràcter\">Caràcter</link>"
#: main_format.xhp
msgctxt ""
@@ -783,7 +783,7 @@ msgctxt ""
"hd_id3146979\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paràgraf\">Paràgraf</link>"
#: main_format.xhp
msgctxt ""
@@ -791,7 +791,7 @@ msgctxt ""
"hd_id3166426\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Pics i numeració\">Pics i numeració</link>"
#: main_format.xhp
msgctxt ""
@@ -799,7 +799,7 @@ msgctxt ""
"hd_id3146971\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Posició i mida\">Posició i mida</link>"
#: main_format.xhp
msgctxt ""
@@ -807,7 +807,7 @@ msgctxt ""
"hd_id3148576\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Línia\">Línia</link>"
#: main_format.xhp
msgctxt ""
@@ -815,7 +815,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Àrea\">Àrea</link>"
#: main_format.xhp
msgctxt ""
@@ -823,7 +823,7 @@ msgctxt ""
"hd_id3153878\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
#: main_format.xhp
msgctxt ""
@@ -831,7 +831,7 @@ msgctxt ""
"hd_id3153913\n"
"help.text"
msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05140000.xhp\" name=\"Capa\">Capa</link>"
#: main_insert.xhp
msgctxt ""
@@ -839,7 +839,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Insereix"
#: main_insert.xhp
msgctxt ""
@@ -847,7 +847,7 @@ msgctxt ""
"hd_id3148797\n"
"help.text"
msgid "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insert</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insereix\">Insereix</link>"
#: main_insert.xhp
msgctxt ""
@@ -855,7 +855,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
-msgstr ""
+msgstr "Aquest menú permet inserir elements, com ara gràfics i guies, en documents del Draw."
#: main_insert.xhp
msgctxt ""
@@ -863,7 +863,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Capa\">Capa</link>"
#: main_insert.xhp
msgctxt ""
@@ -871,7 +871,7 @@ msgctxt ""
"hd_id3147397\n"
"help.text"
msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insereix un punt o una línia de captura\">Insereix un punt o una línia de captura</link>"
#: main_insert.xhp
msgctxt ""
@@ -879,7 +879,7 @@ msgctxt ""
"hd_id0915200910361385\n"
"help.text"
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comentari\">Comentari</link>"
#: main_insert.xhp
msgctxt ""
@@ -887,7 +887,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Caràcter especial\">Caràcter especial</link>"
#: main_insert.xhp
msgctxt ""
@@ -895,7 +895,7 @@ msgctxt ""
"hd_id3150749\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Enllaç\">Enllaç</link>"
#: main_insert.xhp
msgctxt ""
@@ -903,7 +903,7 @@ msgctxt ""
"hd_id3156385\n"
"help.text"
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Taula\">Taula</link>"
#: main_insert.xhp
msgctxt ""
@@ -911,7 +911,7 @@ msgctxt ""
"hd_id3147003\n"
"help.text"
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagrama\">Diagrama</link>"
#: main_insert.xhp
msgctxt ""
@@ -919,7 +919,7 @@ msgctxt ""
"par_id0302200904020595\n"
"help.text"
msgid "Inserts a chart."
-msgstr ""
+msgstr "Insereix un diagrama."
#: main_insert.xhp
msgctxt ""
@@ -927,7 +927,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Marc flotant\">Marc flotant</link>"
#: main_insert.xhp
msgctxt ""
@@ -935,7 +935,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"Fitxer\">Fitxer</link>"
#: main_page.xhp
msgctxt ""
@@ -943,7 +943,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Pàgina"
#: main_page.xhp
msgctxt ""
@@ -951,7 +951,7 @@ msgctxt ""
"hd_id41556822227733\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Pàgina</link>"
#: main_page.xhp
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"par_id771556822318420\n"
"help.text"
msgid "This menu provides page management and navigation commands."
-msgstr ""
+msgstr "Aquest menú permet gestionar les pàgines i les ordres de navegació."
#: main_page.xhp
msgctxt ""
@@ -967,7 +967,7 @@ msgctxt ""
"hd_id131556822326832\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">Pàgina nova</link>"
#: main_page.xhp
msgctxt ""
@@ -975,7 +975,7 @@ msgctxt ""
"hd_id3155091\n"
"help.text"
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Propietats\">Propietats</link>"
#: main_tools.xhp
msgctxt ""
@@ -983,7 +983,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "Eines"
#: main_tools.xhp
msgctxt ""
@@ -991,7 +991,7 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/sdraw/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_tools.xhp\" name=\"Eines\">Eines</link>"
#: main_tools.xhp
msgctxt ""
@@ -999,7 +999,7 @@ msgctxt ""
"par_id3156443\n"
"help.text"
msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
-msgstr ""
+msgstr "Aquest menú proporciona eines per al $[officename] Draw, així com l'accés a la configuració de la llengua i del sistema."
#: main_tools.xhp
msgctxt ""
@@ -1007,7 +1007,7 @@ msgctxt ""
"hd_id3148699\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Mapa d'imatge\">Mapa d'imatge</link>"
#: main_tools.xhp
msgctxt ""
@@ -1015,7 +1015,7 @@ msgctxt ""
"hd_id3153415\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Opcions de correcció automàtica</link>"
#: main_tools.xhp
msgctxt ""
@@ -1023,4 +1023,4 @@ msgctxt ""
"hd_id3150044\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Personalitza\">Personalitza</link>"
diff --git a/source/ca/helpcontent2/source/text/sdraw/00.po b/source/ca/helpcontent2/source/text/sdraw/00.po
index 0902ef7bf61..d36a5c94636 100644
--- a/source/ca/helpcontent2/source/text/sdraw/00.po
+++ b/source/ca/helpcontent2/source/text/sdraw/00.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2018-07-02 06:35+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-05-16 07:48+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1530513312.000000\n"
+"X-POOTLE-MTIME: 1557992900.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -39,7 +39,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Menu"
-msgstr ""
+msgstr "Menú de pàgina"
#: page_menu.xhp
msgctxt ""
@@ -47,7 +47,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Trieu <emph>Pàgina ▸ Propietats</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -55,7 +55,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Trieu <emph>Pàgina ▸ Propietats</emph> i feu clic a la pestanya <emph>Pàgina</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -63,7 +63,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Trieu <emph>Pàgina ▸ Propietats</emph> i feu clic a la pestanya <emph>Fons</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -71,7 +71,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Page - Master Page</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Trieu <emph>Pàgina ▸ Diapositiva mestra</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -79,7 +79,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <emph>Page - New Page</emph>"
-msgstr ""
+msgstr "Trieu <emph>Pàgina ▸ Pàgina nova</emph>"
#: page_menu.xhp
msgctxt ""
@@ -87,7 +87,7 @@ msgctxt ""
"par_id1001556823044677\n"
"help.text"
msgid "On the <emph>Insert</emph> bar, click"
-msgstr ""
+msgstr "A la barra <emph>Insereix</emph>, feu clic a"
#: page_menu.xhp
msgctxt ""
@@ -95,7 +95,7 @@ msgctxt ""
"par_id351556823072396\n"
"help.text"
msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icona</alt></image>"
#: page_menu.xhp
msgctxt ""
@@ -103,4 +103,4 @@ msgctxt ""
"par_id831556823072396\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Pàgina nova"
diff --git a/source/ca/helpcontent2/source/text/sdraw/01.po b/source/ca/helpcontent2/source/text/sdraw/01.po
index a8f1e543bd0..3de10838459 100644
--- a/source/ca/helpcontent2/source/text/sdraw/01.po
+++ b/source/ca/helpcontent2/source/text/sdraw/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 17:59+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-16 07:53+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1494352744.000000\n"
+"X-POOTLE-MTIME: 1557993212.000000\n"
#: new_page.xhp
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Pàgina nova"
#: new_page.xhp
msgctxt ""
@@ -31,7 +31,7 @@ msgctxt ""
"hd_id3150202\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">Pàgina nova</link>"
#: new_page.xhp
msgctxt ""
@@ -39,7 +39,7 @@ msgctxt ""
"par_id3152988\n"
"help.text"
msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
-msgstr ""
+msgstr "<variable id=\"seitetext\">Insereix una pàgina en blanc després de la pàgina seleccionada.</variable>"
#: page_properties.xhp
msgctxt ""
@@ -47,7 +47,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Pàgina"
#: page_properties.xhp
msgctxt ""
@@ -55,7 +55,7 @@ msgctxt ""
"hd_id231556821873595\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Pàgina"
#: page_properties.xhp
msgctxt ""
@@ -63,7 +63,7 @@ msgctxt ""
"par_id571556821811542\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Defineix l'orientació, els marges de la pàgina, el fons i altres opcions de format.</ahelp></variable>"
#: page_properties.xhp
msgctxt ""
@@ -71,4 +71,4 @@ msgctxt ""
"par_id691556822054550\n"
"help.text"
msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Per a canviar el fons de totes les pàgines del fitxer actiu, seleccioneu un fons, feu clic a <emph>D'acord</emph> i després feu clic a <emph>Sí </emph> al diàleg <emph>Configuració de la pàgina</emph>."
diff --git a/source/ca/helpcontent2/source/text/shared/00.po b/source/ca/helpcontent2/source/text/shared/00.po
index 7807b39b3cd..33e3bec9235 100644
--- a/source/ca/helpcontent2/source/text/shared/00.po
+++ b/source/ca/helpcontent2/source/text/shared/00.po
@@ -3,9 +3,9 @@ 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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-02-04 08:19+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-15 04:14+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1549268352.000000\n"
+"X-POOTLE-MTIME: 1557893662.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -423,7 +423,7 @@ msgctxt ""
"par_id3149651\n"
"help.text"
msgid "<ahelp hid=\".\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Reinicialitza els canvis fets a la pestanya actual als que hi havia quan s'ha obert el diàleg. No apareixerà una pregunta de confirmació quan tanqueu el diàleg.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -439,7 +439,7 @@ msgctxt ""
"par_id3154153\n"
"help.text"
msgid "<ahelp hid=\".\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Reinicialitza els valors visibles al diàleg als valors per defecte de la instal·lació.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -463,7 +463,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "<ahelp hid=\".\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra les seleccions del diàleg fetes en el punt anterior. Els paràmetres actuals es mantenen igual.</ahelp> Aquest botó només es pot activar a partir de la pàgina dos."
#: 00000001.xhp
msgctxt ""
@@ -471,7 +471,7 @@ msgctxt ""
"hd_id3147353\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Opcions"
#: 00000001.xhp
msgctxt ""
@@ -479,7 +479,7 @@ msgctxt ""
"par_id3155314\n"
"help.text"
msgid "<ahelp hid=\".\">Click the <emph>Options</emph> label to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Feu clic a l'etiqueta <emph>Opcions</emph> per a ampliar el quadre de diàleg i mostrar més opcions. Feu-hi clic una altra vegada per a restaurar el diàleg.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -5431,7 +5431,7 @@ msgctxt ""
"par_id3152824\n"
"help.text"
msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business Cards</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"viskartinhalt\">Trieu la pestanya <emph>Fitxer ▸ Nou ▸ Targetes de visita ▸ Targetes de visita</emph>.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5639,7 +5639,7 @@ msgctxt ""
"par_id3146906\n"
"help.text"
msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General information</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda2\">Trieu <emph>Fitxer ▸ Auxiliars ▸ Agenda ▸ Informació general</emph>.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -6015,7 +6015,7 @@ msgctxt ""
"par_idN1117E\n"
"help.text"
msgid "Double-click or right-click the <emph>Signature</emph> field on the <emph>Status</emph> bar."
-msgstr ""
+msgstr "Feu doble clic o clic amb el botó dret del ratolí al camp <emph>Signatura</emph> de la barra d'<emph>estat</emph>."
#: 00000401.xhp
msgctxt ""
@@ -7564,14 +7564,6 @@ msgstr "<variable id=\"advanced\">Trieu <switchinline select=\"sys\"><caseinline
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Trieu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferències</emph></caseinline><defaultinline><emph>Eines ▸ Opcions</emph></defaultinline></switchinline><emph> ▸ $[officename] ▸ Personalització</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index de05e32cc05..c61f3298486 100644
--- a/source/ca/helpcontent2/source/text/shared/01.po
+++ b/source/ca/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-13 02:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6271,6 +6271,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/ca/helpcontent2/source/text/shared/02.po b/source/ca/helpcontent2/source/text/shared/02.po
index 3b8f81e7c9e..937e1955f1f 100644
--- a/source/ca/helpcontent2/source/text/shared/02.po
+++ b/source/ca/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-28 08:45+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\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-Language: ca\n"
"X-POOTLE-MTIME: 1551343529.000000\n"
@@ -3849,8 +3849,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Indica si una selecció de text o un control es mantenen seleccionats quan el focus ja no es troba sobre el control.</ahelp> Si definiu <emph>Amaga la selecció</emph> a «No», el text seleccionat es manté seleccionat quan el focus ja no es troba sobre el control que conté el text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/guide.po b/source/ca/helpcontent2/source/text/shared/guide.po
index 40f33af7c6f..abb2b3f59d0 100644
--- a/source/ca/helpcontent2/source/text/shared/guide.po
+++ b/source/ca/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-13 00:24+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3100,14 +3100,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3116,14 +3108,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3132,14 +3116,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3148,14 +3124,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3164,14 +3132,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3180,14 +3140,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3196,14 +3148,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3212,14 +3156,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3228,14 +3164,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3292,14 +3220,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3308,14 +3228,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3324,14 +3236,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3348,14 +3252,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3364,14 +3260,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3380,14 +3268,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3396,14 +3276,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3412,14 +3284,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3428,14 +3292,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3460,14 +3316,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3476,14 +3324,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3492,14 +3332,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3508,14 +3340,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3524,14 +3348,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3540,14 +3356,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3556,14 +3364,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3572,14 +3372,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3588,14 +3380,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3604,14 +3388,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3620,14 +3396,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3636,14 +3404,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3652,14 +3412,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3668,14 +3420,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3684,14 +3428,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3700,14 +3436,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3716,14 +3444,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3732,14 +3452,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3796,14 +3508,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3812,14 +3516,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3828,14 +3524,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3844,14 +3532,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3860,14 +3540,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3876,14 +3548,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3900,14 +3564,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3916,14 +3572,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3932,14 +3580,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3948,14 +3588,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3964,14 +3596,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3980,14 +3604,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4012,14 +3628,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4028,14 +3636,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4060,14 +3660,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4076,14 +3668,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4092,14 +3676,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4108,14 +3684,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4124,14 +3692,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4140,14 +3700,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4156,14 +3708,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4188,14 +3732,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4204,14 +3740,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4220,14 +3748,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4236,14 +3756,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4252,14 +3764,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4348,14 +3852,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4380,14 +3876,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4396,14 +3884,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4412,14 +3892,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4444,14 +3916,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4460,14 +3924,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4476,14 +3932,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4492,14 +3940,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4540,14 +3980,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4556,14 +3988,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4572,14 +3996,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4588,14 +4004,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4604,14 +4012,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4652,14 +4052,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4732,14 +4124,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4748,14 +4132,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4764,14 +4140,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4780,14 +4148,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4796,14 +4156,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4812,14 +4164,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4876,14 +4220,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4892,14 +4228,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4908,14 +4236,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4924,14 +4244,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4940,14 +4252,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4956,14 +4260,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4972,14 +4268,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4988,14 +4276,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5004,14 +4284,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5020,14 +4292,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5036,14 +4300,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5052,14 +4308,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5068,14 +4316,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5084,14 +4324,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5116,14 +4348,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5132,14 +4356,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5148,14 +4364,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5164,14 +4372,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5180,14 +4380,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5196,14 +4388,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5212,14 +4396,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5228,14 +4404,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5292,14 +4460,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5308,14 +4468,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5324,14 +4476,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5340,14 +4484,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5356,14 +4492,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5388,14 +4516,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5436,14 +4556,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5452,14 +4564,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5484,14 +4588,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5500,14 +4596,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5532,14 +4620,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5564,14 +4644,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5580,14 +4652,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5596,14 +4660,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5612,14 +4668,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5628,14 +4676,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5644,14 +4684,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5660,14 +4692,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5676,14 +4700,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5692,14 +4708,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5708,14 +4716,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5756,14 +4756,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5772,14 +4764,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5788,14 +4772,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5804,14 +4780,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5820,14 +4788,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5836,14 +4796,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5884,14 +4836,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5900,14 +4844,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5916,14 +4852,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5932,14 +4860,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5948,14 +4868,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5964,14 +4876,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5980,14 +4884,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5996,14 +4892,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6012,14 +4900,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6028,14 +4908,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6044,14 +4916,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6060,14 +4924,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6076,14 +4932,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6092,14 +4940,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6108,14 +4948,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6124,14 +4956,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6140,14 +4964,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6156,14 +4972,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6172,14 +4980,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6188,14 +4988,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6204,14 +4996,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6220,14 +5004,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6236,14 +5012,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6252,14 +5020,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6268,14 +5028,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6284,14 +5036,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6300,14 +5044,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6316,14 +5052,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6332,14 +5060,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6348,14 +5068,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6364,14 +5076,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6380,14 +5084,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6396,14 +5092,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6412,27 +5100,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/ca/helpcontent2/source/text/shared/optionen.po b/source/ca/helpcontent2/source/text/shared/optionen.po
index a4aaebf21c2..1b10161ea5b 100644
--- a/source/ca/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-27 07:37+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\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-Language: ca\n"
"X-POOTLE-MTIME: 1551253035.000000\n"
@@ -14785,182 +14785,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "Per a més informació sobre l'OpenCL, visiteu <link href=\"https://www.khronos.org/opencl/\">el lloc web de l'OpenCL</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalització"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalització</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Podeu personalitzar el vostre %PRODUCTNAME amb els mateixos temes disponibles per al Mozilla Firefox. Es veurà el tema escollit al fons de la barra de menú, les barres d'eines superiors i les barres d'eines inferiors."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Els temes del Mozilla Firefox es poden trobar al lloc web del Mozilla a la següent adreça: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Qualsevol tema compatible amb el Firefox funcionarà també al %PRODUCTNAME. No obstant això, no tots els dissenys produiran resultats visuals adequats: si la imatge de fons conté massa detalls, pot interferir en la llegibilitat dels menús i les icones."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Temes del Firefox:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Hi ha disponibles les opcions següents:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Aparença plana, no utilitzis temes"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Els fons de les barres d'eines hereten les configuracions de fons del gestor de finestres de l'escriptori.</ahelp> Aquest és el predeterminat del %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Tema preinstal·lat"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Trieu aquesta opció per a utilitzar un dels temes preinstal·lats.</ahelp> El vostre administrador de sistemes també podria haver afegit un tema personalitzat, complementari a les opcions predeterminades, durant la instal·lació del %PRODUCTNAME; aquesta opció el mostrarà."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Tema propi"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Escolliu aquesta opció per obrir el diàleg de Seleccioneu el tema del Firefox per poder escollir altres temes.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Diàleg de selecció un tema del Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Aquest diàleg permet instal·lar un tema concret o fer una ullada a altres temes interessants del lloc web del Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Cerca"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Exploració de temes per categoria"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Mostra una selecció aleatòria de nou temes basada en les categories que es mostren als botons.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Per seleccionar un dels temes mostrats, feu clic a la seva imatge i premeu <item type=\"menuitem\">D'acord</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/ca/helpcontent2/source/text/simpress.po b/source/ca/helpcontent2/source/text/simpress.po
index 4459b56019c..efb7425bae7 100644
--- a/source/ca/helpcontent2/source/text/simpress.po
+++ b/source/ca/helpcontent2/source/text/simpress.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-01-18 20:18+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-05-16 08:15+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1547842737.000000\n"
+"X-POOTLE-MTIME: 1557994503.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1351,7 +1351,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Edita"
#: main_edit.xhp
msgctxt ""
@@ -1359,7 +1359,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edita</link>"
#: main_edit.xhp
msgctxt ""
@@ -1367,7 +1367,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Aquest menú conté ordres per a editar el contingut del document actual.</ahelp>"
#: main_edit.xhp
msgctxt ""
@@ -1375,7 +1375,7 @@ msgctxt ""
"hd_id3154649\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Punts\">Punts</link>"
#: main_edit.xhp
msgctxt ""
@@ -1383,7 +1383,7 @@ msgctxt ""
"par_id3154766\n"
"help.text"
msgid "Switches the <emph>Edit Points</emph> mode on and off."
-msgstr ""
+msgstr "Activa o desactiva el mode <emph>Edita els punts</emph>."
#: main_edit.xhp
msgctxt ""
@@ -1391,7 +1391,7 @@ msgctxt ""
"hd_id3145116\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Punts d'adhesió\">Punts d'adhesió</link>"
#: main_edit.xhp
msgctxt ""
@@ -1399,7 +1399,7 @@ msgctxt ""
"par_id3147403\n"
"help.text"
msgid "Switches the <emph>Edit Glue Points</emph> mode on and off."
-msgstr ""
+msgstr "Activa o desactiva el mode <emph>Edita els punts d'adhesió</emph>."
#: main_edit.xhp
msgctxt ""
@@ -1407,7 +1407,7 @@ msgctxt ""
"hd_id3150396\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Camps\">Camps</link>"
#: main_edit.xhp
msgctxt ""
@@ -1415,7 +1415,7 @@ msgctxt ""
"hd_id3149355\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Enllaços\">Enllaços</link>"
#: main_edit.xhp
msgctxt ""
@@ -1423,7 +1423,7 @@ msgctxt ""
"hd_id0914201502131542\n"
"help.text"
msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Objecte\">Objecte</link>"
#: main_format.xhp
msgctxt ""
@@ -1431,7 +1431,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: main_format.xhp
msgctxt ""
@@ -1439,7 +1439,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
#: main_format.xhp
msgctxt ""
@@ -1447,7 +1447,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Conté ordres per a formatar l'estructura i els continguts del document.</ahelp>"
#: main_format.xhp
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"hd_id3147401\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caràcter\">Caràcter</link>"
#: main_format.xhp
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"hd_id3149941\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paràgraf\">Paràgraf</link>"
#: main_format.xhp
msgctxt ""
@@ -1471,7 +1471,7 @@ msgctxt ""
"hd_id3147299\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Pics i numeració\">Pics i numeració</link>"
#: main_format.xhp
msgctxt ""
@@ -1479,7 +1479,7 @@ msgctxt ""
"hd_id3149499\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Posició i mida\">Posició i mida</link>"
#: main_format.xhp
msgctxt ""
@@ -1487,7 +1487,7 @@ msgctxt ""
"hd_id3154510\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Línia\">Línia</link>"
#: main_format.xhp
msgctxt ""
@@ -1495,7 +1495,7 @@ msgctxt ""
"hd_id3149021\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Àrea\">Àrea</link>"
#: main_format.xhp
msgctxt ""
@@ -1503,7 +1503,7 @@ msgctxt ""
"hd_id3155961\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
#: main_format.xhp
msgctxt ""
@@ -1511,7 +1511,7 @@ msgctxt ""
"hd_id3156286\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Format de la pàgina...\">Disseny de la diapositiva</link>"
#: main_format.xhp
msgctxt ""
@@ -1519,7 +1519,7 @@ msgctxt ""
"hd_id3163827\n"
"help.text"
msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modifica el format\">Format de la diapositiva</link>"
#: main_slide.xhp
msgctxt ""
@@ -1527,7 +1527,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Diapositiva"
#: main_slide.xhp
msgctxt ""
@@ -1535,7 +1535,7 @@ msgctxt ""
"hd_id0908201507475698\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Diapositiva</link>"
#: main_slide.xhp
msgctxt ""
@@ -1543,7 +1543,7 @@ msgctxt ""
"par_id0908201507482661\n"
"help.text"
msgid "This menu provides slide management and navigation commands."
-msgstr ""
+msgstr "Aquest menú permet gestionar les diapositives i les ordres de navegació."
#: main_slide.xhp
msgctxt ""
@@ -1551,7 +1551,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">Diapositiva nova</link>"
#: main_slide.xhp
msgctxt ""
@@ -1559,7 +1559,7 @@ msgctxt ""
"hd_id551556824896520\n"
"help.text"
msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Propietats</link>"
#: main_tools.xhp
msgctxt ""
@@ -1567,7 +1567,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "Eines"
#: main_tools.xhp
msgctxt ""
@@ -1575,7 +1575,7 @@ msgctxt ""
"hd_id3154017\n"
"help.text"
msgid "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Eines</link>"
#: main_tools.xhp
msgctxt ""
@@ -1583,7 +1583,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Conté eines per a l'ortografia, una galeria d'objectes d'art que podeu afegir al document, així com eines per configurar els menús i les preferències de configuració del programa.</ahelp>"
#: main_tools.xhp
msgctxt ""
@@ -1591,7 +1591,7 @@ msgctxt ""
"hd_id3145590\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Mapa d'imatge\">Mapa d'imatge</link>"
#: main_tools.xhp
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"hd_id3153248\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Opcions de correcció automàtica</link>"
#: main_tools.xhp
msgctxt ""
@@ -1607,4 +1607,4 @@ msgctxt ""
"hd_id3149130\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Personalitza\">Personalitza</link>"
diff --git a/source/ca/helpcontent2/source/text/simpress/01.po b/source/ca/helpcontent2/source/text/simpress/01.po
index d066c990b2b..19ae44519e3 100644
--- a/source/ca/helpcontent2/source/text/simpress/01.po
+++ b/source/ca/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-09 06:24+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter.po b/source/ca/helpcontent2/source/text/swriter.po
index 90798720f5b..a162268fa8b 100644
--- a/source/ca/helpcontent2/source/text/swriter.po
+++ b/source/ca/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: 2019-01-07 11:14+0100\n"
-"PO-Revision-Date: 2019-03-07 13:45+0000\n"
+"PO-Revision-Date: 2019-05-16 08:15+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1551966316.000000\n"
+"X-POOTLE-MTIME: 1557994516.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -959,7 +959,7 @@ msgctxt ""
"par_id3147218\n"
"help.text"
msgid "<ahelp hid=\".uno:FormatMenu\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr "<ahelp hid=\".uno:FormatMenu\">Conté ordres per formatar l'estructura i els continguts del document.</ahelp>"
+msgstr "<ahelp hid=\".uno:FormatMenu\">Conté ordres per a formatar l'estructura i els continguts del document.</ahelp>"
#: main0105.xhp
msgctxt ""
@@ -1119,7 +1119,7 @@ msgctxt ""
"par_id3147269\n"
"help.text"
msgid "<ahelp hid=\".uno:WindowList\" visibility=\"visible\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr "<ahelp hid=\".uno:WindowList\" visibility=\"visible\">Conté ordres per manipular i visualitzar les finestres dels documents.</ahelp>"
+msgstr "<ahelp hid=\".uno:WindowList\" visibility=\"visible\">Conté ordres per a manipular i visualitzar les finestres dels documents.</ahelp>"
#: main0110.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/swriter/guide.po b/source/ca/helpcontent2/source/text/swriter/guide.po
index bed8c043358..0a666fa7b9c 100644
--- a/source/ca/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-26 07:32+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -230,16 +230,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "A la <emph>barra Estàndard</emph>, feu clic a la icona <emph>Navegador</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icona</alt></image> per obrir el <emph>Navegador</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "Al <emph>Navegador</emph>, feu clic a la icona <emph>Visualització del contingut</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icona</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -262,8 +262,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Feu clic a un encapçalament de la llista <emph>Navegador</emph> i, tot seguit, feu clic a les icones <emph>Capítol cap amunt</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icona</alt></image> o <emph>Capítol cap avall</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icona</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -294,8 +294,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Feu clic a les icones <emph>Un nivell cap amunt</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icona</alt></image> o <emph>Un nivell cap avall</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icona</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -310,8 +310,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Feu clic a la icona <emph>Nivells d'encapçalament mostrats</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icona</alt></image> i seleccioneu un nombre de la llista."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
index acb25cef9b6..d970c6f2e5d 100644
--- a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-09 07:51+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-16 07:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\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: 1557388299.000000\n"
+"X-POOTLE-MTIME: 1557992208.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Estils de taula"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Més camps"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Tabulat"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Seleccioneu una frase"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ca/sc/messages.po b/source/ca/sc/messages.po
index 244ad340c94..2cce438a507 100644
--- a/source/ca/sc/messages.po
+++ b/source/ca/sc/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-09 07:57+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 15:17+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557388653.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559315845.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15216,6 +15216,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(accés exclusiu)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15769,13 +15774,13 @@ msgstr "Gestiona la formatació condicional"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Interval"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
-msgstr ""
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Primera condició"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16992,81 +16997,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulari de dades"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Tanca"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Registre nou"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nou"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Suprimeix"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restaura"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Registre _anterior"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Registre _següent"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Tanca"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Fluxos de dades en directe"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Introduïu aquí l'URL del document d'origen en el sistema de fitxers local o Internet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Navega..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Interval de base de dades:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Proveïdor de dades:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Cadena de cerca:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Flux d'origen"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18782,32 +18747,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultats a:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Dades"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Columnes"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Files"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Agrupat per"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Paràmetres"
@@ -18947,167 +18917,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Ajuda"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fitxer"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Permet indicar les vores de les cel·les seleccionades."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Augmenta el sagnat"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Redueix el sagnat"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Inici"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Camp"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insereix"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Disposició"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Alineació d'objectes"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Format"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "Estadí_stiques"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dades"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dades"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisa"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisa"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualització"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualitza"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objecte"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objecte"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimeix"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimeix"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -21588,17 +21560,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Resultats de la cerca"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Full"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Cel·la"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Contingut"
@@ -23468,107 +23450,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Símbols d'esque_ma"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Finestra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Línies de la _graella:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Color:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Mostra en les cel·les acolorides"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Amaga"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Salts de _pàgina"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Línies d'ajuda en _moure"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Ajudes visuals"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jectes/imatges:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diag_rames:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Objectes de _dibuix:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Amaga"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Amaga"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Amaga"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objectes"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_incronitza els fulls"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Escala"
diff --git a/source/ca/scp2/source/ooo.po b/source/ca/scp2/source/ooo.po
index 9860f345700..0d2de009c76 100644
--- a/source/ca/scp2/source/ooo.po
+++ b/source/ca/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-27 17:16+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\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: 1556385401.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Obre un document"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ca/scp2/source/winexplorerext.po b/source/ca/scp2/source/winexplorerext.po
index b6d34ca8af2..3b7b5c33bb8 100644
--- a/source/ca/scp2/source/winexplorerext.po
+++ b/source/ca/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
-"PO-Revision-Date: 2016-05-23 08:35+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2018-01-15 11:50+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.7\n"
-"X-POOTLE-MTIME: 1463992534.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1516017008.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permet que l'Explorador del Microsoft Windows mostri informació sobre els documents del %PRODUCTNAME, com ara imatges de previsualització."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ca/sd/messages.po b/source/ca/sd/messages.po
index 879ed1f141b..e8bcb21ea86 100644
--- a/source/ca/sd/messages.po
+++ b/source/ca/sd/messages.po
@@ -3,9 +3,9 @@ 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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-27 18:25+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 15:18+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556389509.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559315929.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Feu clic per a obrir l'enllaç:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr "Enllaç"
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Anomena el disseny HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fitxer"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Ajuda"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fitxer"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inici"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Camp"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insereix"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Pàgina"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Pàgina"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisió"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisió"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualització"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualització"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_ext"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~ext"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converteix"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objecte"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo_rmulari"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eines"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr "Objecte"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Mostra les formes"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fitxer"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Ajuda"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fitxer"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inici"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Camp"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insereix"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Diapositiva"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "~Diapositiva"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Presentació de diapositives"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Presentació de diapositives"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisa"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisió"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualització"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualització"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converteix"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objecte"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eines"
diff --git a/source/ca/sfx2/messages.po b/source/ca/sfx2/messages.po
index 8bec587008f..a09da4255dc 100644
--- a/source/ca/sfx2/messages.po
+++ b/source/ca/sfx2/messages.po
@@ -3,9 +3,9 @@ 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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-27 17:17+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 15:02+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1556385442.000000\n"
+"X-POOTLE-MTIME: 1559314943.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -918,11 +918,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " A: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Suprimeix la propietat"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -931,27 +926,27 @@ msgstr ""
"El valor introduït no coincideix amb el tipus especificat.\n"
"El valor es desarà com a text."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Ja existeix l'estil. Voleu sobreescriure'l?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Reinicialitza"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Aquest nom ja s'utilitza per a una plantilla."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Aquest estil no existeix."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -960,7 +955,7 @@ msgstr ""
"Aquest estil no pot utilitzar-se com a estil base,\n"
"perquè implicaria una referència recursiva."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -969,7 +964,7 @@ msgstr ""
"El nom ja existeix com a estil per defecte.\n"
" Trieu-ne un altre."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -980,92 +975,92 @@ msgstr ""
"Si suprimiu aquests estils, el text tornarà a l'estil pare.\n"
"Voleu suprimir aquests estils?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Estils en ús: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navegador"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Confirmació incorrecta de la contrasenya"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Envia"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Tipus de lletra"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Mostra les previsualitzacions"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Mostra el comentari de la versió"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(sense nom definit)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Llista d'estils"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Jeràrquic"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Mode format d'emplenament"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Estil nou a partir de la selecció"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Accions dels estils"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Actualitza l'estil"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Voleu cancel·lar l'enregistrament? Tot el que heu enregistrat fins ara es perdrà."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Cancel·la l'enregistrament"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "S'estan inicialitzant les plantilles per al primer ús."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1074,7 +1069,7 @@ msgstr ""
"No s'ha trobat cap impressora per defecte.\n"
"Trieu-ne una i torneu-ho a provar."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1083,17 +1078,17 @@ msgstr ""
"No s'ha pogut iniciar la impressora.\n"
"Reviseu-ne la configuració."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "La impressora està ocupada."
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (només de lectura)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"Voleu desar la nova configuració\n"
"en el document actiu?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"Voleu desar la nova configuració\n"
"en el document actiu?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1126,7 +1121,7 @@ msgstr ""
"Voleu desar la nova configuració\n"
"en el document actiu?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1135,7 +1130,7 @@ msgstr ""
"El document no es pot tancar perquè\n"
" s'està duent a terme una feina d'impressió."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,7 +1140,7 @@ msgstr ""
"Reviseu la configuració del %PRODUCTNAME o del programa de correu."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1156,17 +1151,17 @@ msgstr ""
"\n"
"El codi d'error és $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "S'ha produït un error en enviar el correu electrònic."
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "No es pot editar el document, segurament per falta de drets d'accés. Voleu editar una còpia del document?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1177,349 +1172,359 @@ msgstr ""
"\n"
"També podeu intentar d'ignorar el blocatge i obrir el fitxer per a editar-lo."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Obre una ~còpia"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Obre"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (document reparat)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Aquest document no s'ha baixat del servidor."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Ajudeu-nos a fer el %PRODUCTNAME encara millor!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Implicar-se"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Les vostres donacions ajuden a la nostra comunitat mundial."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Donatiu"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Aquest document s'ha obert en mode només de lectura."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Aquest PDF és obert en mode de només de lectura per a poder signar el fitxer existent."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "L'etiqueta de classificació d'aquest document és %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Aquest document ha de classificar-se abans que es pugui enganxar des del porta-retalls."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Aquest document té una classificació d'un nivell inferior que el del porta-retalls."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Nivell"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Seguretat nacional:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Control d'exportació:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Baixa"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Edita el document"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Signa el document"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Aquest document té una signatura no vàlida."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "La signatura era vàlida, però el document s'ha modificat."
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "La signatura és correcta, però el certificat no s'ha pogut validar."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "La signatura és correcta, però el document només s'ha signat parcialment."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "No s'ha pogut validar el certificat i el document només està signat parcialment."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Aquest document és signat digitalment i la signatura és vàlida."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Mostra les signatures"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Tanca el quadre"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Acobla"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Desacobla"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Més opcions"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Tanca la barra lateral"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Configuració de la barra lateral"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalització"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restaura els valors predeterminats"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Tanca la barra lateral"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alitzarina"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Rusc"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Corba blava"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cianotip"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Blau brillant"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Vermell elegant"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Au forestal"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impressió"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiració"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Llums"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verd exuberant"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metròpoli"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Blau de mitjanit"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Llapis"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portafolis"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progrés"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Ocàs"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Llampant"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículum"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Per defecte"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, lletra sense serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, lletra amb serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Targeta de visita amb logotip"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Suprimeix"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Neteja-ho tot"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longitud de la contrasenya"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "La contrasenya que heu introduït té problemes d'interoperabilitat. Introduïu una contrasenya de menys de 52 bytes o de més de 55 bytes."
@@ -1864,32 +1869,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Comentari sobre la versió"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nom"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipus"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valor"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipus"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Sí"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "No"
@@ -1899,17 +1889,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Afegeix una _propietat"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nom"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipus"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valor"
@@ -2039,17 +2029,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Ubicació:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipus:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Canvia la _contrasenya"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Plantilla:"
@@ -2059,27 +2049,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Propietats de «%1»"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "General "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descripció"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Propietats personalitzades"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Propietats CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Seguretat"
@@ -2302,6 +2292,26 @@ msgstr ""
"\n"
"Aquest producte fou creat per %OOOVENDOR, basat en l'OpenOffice.org, amb copyright 2000 i 2011 d'Oracle i dels seus afiliats. %OOOVENDOR reconeix tots els membres de la comunitat. Visiteu http://www.libreoffice.org/ per a obtenir més detalls."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr "Suprimeix la propietat"
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr "..."
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr "Sí"
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr "No"
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ca/shell/messages.po b/source/ca/shell/messages.po
new file mode 100644
index 00000000000..5ab751b4068
--- /dev/null
+++ b/source/ca/shell/messages.po
@@ -0,0 +1,47 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-31 15:21+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: ca\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559316086.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Visualitza"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Edita"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Cancel·la"
diff --git a/source/ca/starmath/messages.po b/source/ca/starmath/messages.po
index 5fb55b36a0b..4cb6c036759 100644
--- a/source/ca/starmath/messages.po
+++ b/source/ca/starmath/messages.po
@@ -3,9 +3,9 @@ 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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2018-05-08 13:28+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 15:01+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525786095.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559314863.000000\n"
#: starmath/inc/smmod.hrc:16
msgctxt "RID_UI_SYMBOLSET_NAMES"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Exemples"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr "Circumferència"
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr "Equivalència massa-energia"
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr "Teorema de Pitàgores"
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr "Una sèrie senzilla"
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr "Distribució de Gauss"
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estàndard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negreta"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "negre"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blau"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verd"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "vermell"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cian"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "llimona"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marró"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "blau marí"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "verd oliva"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "porpa"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "jade"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "groc"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "amaga"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "mida"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "tipus de lletra"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "esquerra"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dreta"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Ordres"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "S'està desant el document..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula del %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caràcter no esperat"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Símbol inesperat"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "S'esperava '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "S'esperava '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "S'esperava '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "S'esperava ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Els símbols esquerre i dret no es corresponen"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "S'esperava «fixed«, «sans» o «serif»"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "«size» seguit d'un senyal no esperat"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "No es permet l'alineació doble"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "No es permeten ni els subíndexs dobles ni els superíndexs dobles"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "S'esperava '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Es necessita un color"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "S'esperava 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contingut"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Títol"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Text de la fórmula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "V~ores"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Mida"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Mida o~riginal"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ajusta a la ~pàgina"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "E~scalat"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elements"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr "Categories dels elements"
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ca/svtools/messages.po b/source/ca/svtools/messages.po
index c7f346755e5..3ddccebb4b1 100644
--- a/source/ca/svtools/messages.po
+++ b/source/ca/svtools/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-09 06:31+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 15:01+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,1521 +13,1523 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557383486.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559314911.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desfés: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Re~fés: "
+msgid "Redo: "
+msgstr "Refés: "
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repeteix: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Text sense format"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Text sense format (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imatge de mapa de bits (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metafitxer de interfície de dispositiu d'imatge (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Format de text enriquit (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Format de text enriquit (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Format de dibuix del %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Animació o mapa de bits de l'StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informació d'estat d'un enllaç intern d'SVX"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Enllaç deL %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Adreça d'interès del Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format de servidor Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format d'objecte Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objecte miniaplicació"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objecte connector"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objecte d'StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objecte d'StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objecte d'StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objecte d'StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objecte d'StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objecte d'StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objecte d'StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objecte d'StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objecte d'StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objecte d'StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objecte d'StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objecte d'StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objecte d'StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objecte d'StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objecte d'StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objecte d'StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objecte d'StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objecte d'StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objecte d'StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objecte d'StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objecte d'StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objecte d'StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objecte d'StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objecte de Paint d'StarObject"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Llenguatge de marques d'hipertext (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Llenguatge de marques d'hipertext simplificat (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Format d'intercanvi binari del Microsoft Excel 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Format d'intercanvi binari del Microsoft Excel 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Intercanvi de dades dinàmiques (enllaç DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Format d'intercanvi de dades (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objecte de Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objecte d'StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objecte document d'Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informació de document de Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Document SFX"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objecte d'StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objecte gràfic"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objecte de l'OpenOffice.org Writer 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objecte de l'OpenOffice.org Writer/Web 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objecte mestre de l'OpenOffice.org Writer 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objecte de l'OpenOffice.org Draw 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objecte de l'OpenOffice.org Impress 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objecte de l'OpenOffice.org Calc 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objecte de diagrama de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objecte de l'OpenOffice.org Math 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metafitxer de Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objecte font de dades"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Taula de font de dades"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diàleg de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Enllaç"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Format HTML sense comentaris"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Imatge de xarxa portable (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "No s'ha pogut inserir l'objecte %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "No s'ha pogut inserir l'objecte del fitxer %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Objectes addicionals"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Font desconeguda"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nom"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Mida"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Data de modificació"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipus"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Fila: %1, columna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", tipus: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Carpeta"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fitxer"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Camp buit"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumèric"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Joc de caràcters"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionari"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Traç"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Llibreta de telèfons"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonètic (primer alfanumèric)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonètic (últim alfanumèric)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumèric"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionari"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Traç"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonètic (primer alfanumèric, agrupat per síl·labes)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonètic (primer alfanumèric, agrupat per consonants)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonètic (últim alfanumèric, agrupat per síl·labes)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonètic (últim alfanumèric, agrupat per consonants)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Avui"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Cap"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Clar"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Cursiva lleu"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiva"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Negreta"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Negreta cursiva"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Negre"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Negra cursiva"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Llibre"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Negreta obliqua"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensada"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensada negreta"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensada negreta cursiva"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensada negreta obliqua"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensada cursiva"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensada obliqua"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extafina"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extrafina cursiva"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Obliqua"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Seminegreta"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Seminegreta cursiva"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "S'utilitzarà el mateix tipus de lletra a la impressora i a la pantalla."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Lletra d'impressora. La visualització per pantalla podria ser diferent."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Aquest estil de lletra s'imitarà o s'utilitzarà el més adequat."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Aquest tipus de lletra no està instal·lat. S'utilitzarà el tipus de lletra disponible més adequat."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Navega..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mou a l'inici"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mou a l'esquerra"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mou a la dreta"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mou al final"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Afegeix"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regle horitzontal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regle vertical"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Llindar d'un bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Tramat d'un bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escala de grisos de 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Color de 4 bits"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de grisos de 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Color de 8 bits"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Color real de 24 bits"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "La imatge necessita aproximadament %1 KB de memòria."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "La imatge necessita aproximadament %1 KB de memòria, la mida del fitxer és %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "La mida del fitxer és %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "amfitrió"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Un altre CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preparat"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "En pausa"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Supressió pendent"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupat"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "S'està inicialitzant"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "S'està esperant"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "S'està escalfant"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "S'està processant"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "S'està imprimint"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Desconnectat"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor desconegut"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Bloqueig de paper"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "No hi ha prou paper"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentació manual"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema amb el paper"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S actives"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "La paperera de sortida està plena"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tòner baix"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "No hi ha tòner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Suprimeix la pàgina"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Es requereix la intervenció de l'usuari"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "No hi ha prou memòria"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Coberta oberta"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mode d'estalvi d'energia"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impressora per defecte"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Finalitza"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "En~davant >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< En~rere"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Passos"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<cap>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departament"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nom"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Cognoms"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Carrer"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Estat"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Codi postal"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciutat"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Títol"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posició"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tractament"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicials"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tancament complementari"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel.: particular"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel.: feina"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Adreça electrònica"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuari 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuari 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuari 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuari 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Identificador"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Comarca"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel.: oficina"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Buscapersones"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Tel. mòbil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel.: altres"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendari"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Convida"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de l'usuari $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) per realitzar aquesta tasca. Instal·leu un JRE i reinicieu el %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) de %BITNESS bits per realitzar aquesta tasca. Instal·leu un JRE i reinicieu el %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "El %PRODUCTNAME requereix el Java Development Kit (JDK) d'Oracle al macOS X 10.10 o superior per a realitzar aquesta tasca. Instal·leu-ho i reinicieu el %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuració del %PRODUCTNAME ha canviat. A %PRODUCTNAME - Preferències - %PRODUCTNAME - Avançat, seleccioneu l'entorn d'execució de Java que voleu utilitzar amb el %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuració del %PRODUCTNAME ha canviat. A Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Avançat, seleccioneu l'entorn d'execució de Java que voleu utilitzar amb el %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) per realitzar aquesta tasca. El JRE seleccionat no funciona correctament. Seleccioneu una altra versió o instal·leu un JRE nou i seleccioneu-lo a %PRODUCTNAME - Preferències - %PRODUCTNAME - Avançat."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "El %PRODUCTNAME necessita un entorn d'execució de Java (JRE) per realitzar aquesta tasca. El JRE seleccionat no funciona correctament. Seleccioneu una altra versió o instal·leu un JRE nou i seleccioneu-lo a Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Avançat."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Es necessita un JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Seleccioneu un JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "El JRE no funciona correctament"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Codi font"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Fitxer de marcadors"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Gràfics"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Fitxer de configuració"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicació"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Taula de la base de dades"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Fitxer del sistema"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Document del MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Fitxer d'ajuda"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Document HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Fitxer d'arxiu"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Fitxer de registre"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de dades de l'StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Document mestre de l'StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imatge de l'StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Fitxer de text"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Enllaç"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Plantilla de l'StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Document del MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Plantilla del MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Fitxer de lot"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fitxer"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Carpeta"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Document de text"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Full de càlcul"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentació"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dibuix"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Document HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Document mestre"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de dades"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Plantilla de full de càlcul de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Plantilla de dibuix de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Plantilla de presentació de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Plantilla de document de text de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unitat local"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unitat de disc dur"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unitat de CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Connexió de xarxa"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Document del MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Plantilla del MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Exposició del MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagrama de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dibuix de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Full de càlcul de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentació de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Document de text de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Document mestre de l'OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Document MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de dades OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dibuix OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Document mestre OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentació OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Full de càlcul OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Text OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Plantilla de full de càlcul OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Plantilla de dibuix OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Plantilla de presentació OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Plantilla de text OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensió del %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Verificador ortogràfic Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Divisor de paraules Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Tesaure MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Llista de paraules ignorades"
@@ -4127,7 +4129,7 @@ msgstr "ilocano"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "anglès (Zàmbia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/ca/svx/messages.po b/source/ca/svx/messages.po
index 5e5344dc3a7..f5ee1323206 100644
--- a/source/ca/svx/messages.po
+++ b/source/ca/svx/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-07 10:26+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-16 07:43+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557224777.000000\n"
+"X-POOTLE-MTIME: 1557992625.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "D'esquerra a dreta (vertical)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Número de part:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Text de part:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Font de llum 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Color de llum 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Color de llum 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Color de llum 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Color de llum 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Color de llum 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Color de llum 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Color de llum 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Color de llum 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Indiqueu el percentatge de desplaçament vertical des del centre per a l'estil d'ombreig del degradat. 50% és el centre vertical."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor de la vora"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplica"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Àrea de treball"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Selecciona"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "El·lipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polígon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Edita els punts"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mou els punts"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insereix punts"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Suprimeix els punts"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Vora automàtica"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Desfés "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Refés"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolerància del color"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Peu"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor del mapa d'imatge"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplica"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Obre..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Desa..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Tanca"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Seleccioneu"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "El·lipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polígon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Polígon de forma lliure"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Edita els punts"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mou els punts"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insereix punts"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Suprimeix els punts"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Desfés "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Refés"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Actiu"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Propietats..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adreça:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Marc:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Text:"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"El %PRODUCTNAME s'està executant en mode segur, en què desactiva temporalment la vostra configuració d'usuari i les extensions.\n"
+"\n"
+"Podeu fer un o més del canvis següents al vostre perfil d'usuari per a recuperar el %PRODUCTNAME a l'estat de bon funcionament."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/ca/sw/messages.po b/source/ca/sw/messages.po
index 6103e667457..93187490a62 100644
--- a/source/ca/sw/messages.po
+++ b/source/ca/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-09 06:29+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-16 07:36+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\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: 1557383390.000000\n"
+"X-POOTLE-MTIME: 1557992170.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Canvia el títol de l'objecte $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Canvia la descripció de l'objecte $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -7679,7 +7679,7 @@ msgstr "Caràcter"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "E_stàndard"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Ajuda"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fitxer"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inici"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insereix"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposició"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Disposició"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Referències"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referèncie~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisió"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisió"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualització"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualització"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Imat_ge"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imat~ge"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dibuix"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dibuix"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objecte"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objecte"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimèdia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimèdia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimeix"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimeix"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulari"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulari"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Eines"
@@ -12160,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Fitxer"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Fitxer"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Inici"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Inici"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Insereix"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Insereix"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Ajusta"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Disposició"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Format"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referèncie_s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Referèncie~s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisió"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Revisió"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Visualitza"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Visualització"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_aula"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Taula"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Imatge"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Imat~ge"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "D_ibuix"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Dibuix"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objecte"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objecte"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Multimèdia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Multimèdia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Imprimeix"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Imprimeix"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulari"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmulari"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eines"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Ei~nes"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12449,7 +12449,7 @@ msgstr "_Objecte"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "_Marc"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12659,7 +12659,7 @@ msgstr "_Multimèdia"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objecte"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13372,8 +13372,8 @@ msgstr "Amplia la separació de paraules a les línies de paràgrafs justificats
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Protegeix el formulari"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Taula de continguts, índex o bibliografia"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Previsualització"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Previsualització"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipus"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entrades"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Estils"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Columnes"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fons"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Previsualització"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Nivell"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tipus"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Edita..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Títol:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipus:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Índex de continguts"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Índex alfabètic"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Taula de figures"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Índex de taules"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Definit per l'usuari"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Taula d'objectes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protegit contra canvis manuals"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipus i títol"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Per a:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Tot el document"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capítol"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Avalua fins al nivell:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Crea un índex o una taula de continguts"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Esquema"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Mar_ques de l'índex"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Taules"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Marcs de te_xt"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Gràfics"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Objectes OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Utilitza el nivell del capítol d'origen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Estils _addicionals"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Estils"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Assigna estils..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Llegendes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Noms d'objecte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categoria:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Visualització:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referències"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categoria i número"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Text de la llegenda"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Crea a partir de"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Crea a partir dels objectes següents"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Parèntesis:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Numera les entrades"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[cap]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatació de les entrades"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Combina entrades idèntiques"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Combina entrades idèntiques amb p o _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Combina amb -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Distingeix majúscules i minúscules"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Posa les entrades en majúscula autom."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Claus com a entrades separades"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Fitxer de _concordança"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Fitxer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opcions"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Llengua:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipus de clau:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ordena"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Nivells"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "E_stils de paràgraf"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Per _defecte"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Edita"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Assignació"
diff --git a/source/cs/cui/messages.po b/source/cs/cui/messages.po
index 5cd373a75c3..4d996b7c579 100644
--- a/source/cs/cui/messages.po
+++ b/source/cs/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-11 04:31+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-27 05:21+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557549096.000000\n"
+"X-POOTLE-MTIME: 1558934469.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Zadejte platnou adresu motivu vzhledu nebo hledaný výraz."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "The Mozilla Themes API je nyní nedostupné."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Bez ohraničení"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Pouze vnější ohraničení"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Vnější ohraničení a vodorovné linky"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Vnější ohraničení a všechny vnitřní linky"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Vnější ohraničení bez změny vnitřních linek"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Jen úhlopříčky"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Ohraničení na všech 4 stranách"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Ohraničení pouze vlevo a vpravo"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Ohraničení pouze nahoře a dole"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Ohraničení pouze vlevo"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Ohraničení nahoře a dole, všechny vnitřní čáry"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Ohraničení vlevo a vpravo, všechny vnitřní čáry"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Bez stínování"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Vrhat stín vpravo dolů"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Vrhat stín vpravo nahoru"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Vrhat stín vlevo dolů"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Vrhat stín vlevo nahoru"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Podepsáno: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Všechny soubory"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Registrované databáze"
@@ -1746,67 +1741,67 @@ msgstr "Registrované databáze"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "V %PRODUCTNAME lze prostřednictvím CMIS otevírat a ukládat soubory umístěné na vzdálených serverech."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr ""
+msgstr "Nástroje > Automatické opravy > Nastavení automatických oprav… > Nahradit obsahuje seznam častých náhrad. Podívejte se na ně a doplňte k nim své vlastní."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can handle styles conditionally: paragraph styles that have different properties depending on the context."
-msgstr ""
+msgstr "Ve Writeru můžete používat podmíněné styly: styly odstavce, jejichž vlastnosti závisí na kontextu."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/05130100.html
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With File > Versions you can store multiple versions of the document in the same file. You can also open, delete, and compare previous versions."
-msgstr ""
+msgstr "Pomocí Soubor > Verze můžete do jednoho souboru uložit více verzí dokumentu. Předchozí verze lze rovněž otevírat, mazat a využívat k porovnávání."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/01190000.html
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
-msgstr ""
+msgstr "Seznam obrázků můžete vytvořit také z názvů objektů, nejen z jejich popisků."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/05190000.html
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To temporarily starts with a fresh user profile or to restore a non-working %PRODUCTNAME instance start Help > Restart in Safe Mode."
-msgstr ""
+msgstr "Chcete-li dočasně použít čistý uživatelský profil nebo pokud chcete spravit nefunkční instalaci %PRODUCTNAME, spusťte Nápověda > Restartovat v nouzovém režimu."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
-msgstr ""
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
+msgstr "Základní písma pro přednastavené šablony nebo pro aktuální dokument změníte pomocí Nástroje > Možnosti > %PRODUCTNAME Writer > Základní písma."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr ""
+msgstr "Zadejte si texty, které často používáte, jako automatický text. Poté je budete moci vložit do jakéhokoliv dokumentu Writeru pomocí názvu, zkratky nebo z nástrojové lišty."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/autotext.html
#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools > Options > %PRODUCTNAME Writer > AutoCaption."
-msgstr ""
+msgstr "Při vkládání objektu může %PRODUCTNAME automaticky doplnit číslovaný popisek, viz Nástroje > Možnosti > %PRODUCTNAME Writer > Automatické popisky."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01041100.html
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr ""
+msgstr "Pomocí Nástroje > Seřadit můžete seřadit odstavce či řádky tabulky, a to a abecedně, nebo podle čísel."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sections in %PRODUCTNAME Writer to protect part of a text, show/hide text, reuse parts from other documents, use different column layout."
-msgstr ""
+msgstr "Sekce ve Writeru umožňují uzamykat části textu, zobrazovat je a skrývat, znovu používat části z jiných dokumentů či vytvářet různá rozvržení sloupců."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/04020100.html
#: cui/inc/tipoftheday.hrc:56
@@ -1836,7 +1831,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools > Options > OpenCL."
-msgstr ""
+msgstr "V menu Nástroje > Možnosti > OpenCL zapnete paralelní výpočty vzorců."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/opencl.html
#: cui/inc/tipoftheday.hrc:61
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -2853,12 +2848,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:263
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
-msgstr ""
+msgstr "Nápověda %PRODUCTNAME"
#: cui/inc/tipoftheday.hrc:264
msgctxt "STR_MORE_LINK"
msgid "More info"
-msgstr ""
+msgstr "Další informace"
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "O aplikaci %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr "_Poznámky k vydání"
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Zá_sluhy"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Webové stránky"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID sestavení: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Národní prostředí: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Jazyk UI: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Viz protokol změn: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME je moderní, snadno použitelný a svobodný kancelářský balík pro zpracování textu, tabulek, prezentací a dalších dokumentů."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 přispěvatelé do LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice byl vytvořen na základě OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME je odvozen z LibreOffice, který byl vytvořen na základě OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Dodavatelem tohoto produktu je %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Nahradit"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Na_hradit"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Za:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Pouze _text"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimální délka slova"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Vlastnosti"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Rámec:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Název:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Alternativní text:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Popis:"
@@ -6629,22 +6789,22 @@ msgstr "Formát"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:285
msgctxt "hangulhanjaconversiondialog|hanja_above"
msgid "Hanja above"
-msgstr ""
+msgstr "Handža nad"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:301
msgctxt "hangulhanjaconversiondialog|hanja_below"
msgid "Hanja below"
-msgstr ""
+msgstr "Handža pod"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:317
msgctxt "hangulhanjaconversiondialog|hangul_above"
msgid "Hangul above"
-msgstr ""
+msgstr "Hangul nad"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:333
msgctxt "hangulhanjaconversiondialog|hangul_below"
msgid "Hangul below"
-msgstr ""
+msgstr "Hangul pod"
#: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:346
msgctxt "hangulhanjaconversiondialog|simpleconversion"
@@ -9019,80 +9179,80 @@ msgstr "Zobrazovat okno \"Nápověda není nainstalována\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
-msgstr ""
+msgid "Show \"Tip of the Day\" dialog on start-up"
+msgstr "Zobrazovat při spuštění okno \"Tip dne\""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Nápověda"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Použít _dialogy %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogy Otevřít/Uložit"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Použít dialo_gy %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Tiskové dialogy"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Tisk _nastaví stav \"dokument změněn\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stav dokumentu"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretovat jako roky mezi"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Rok (dvě číslice)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Shromažďovat údaje o používání programu a odesílat je The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomoc při zlepšování %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Načíst %PRODUCTNAME během spuštění systému"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Povolit rychlé spouštění v hlavním panelu"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Předinstalovaný motiv"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Vlastní motiv vzhledu"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Načíst motiv vzhledu pro Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Nebo vybrat motiv vzhledu nainstalovaný pomocí rozšíření:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Motivy vzhledu pro Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Možnosti zabezpečení"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Vybrat motiv vzhledu pro Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Hledaný výraz nebo adresa"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "_Kategorie:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstraktní"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Názorové proudy"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Móda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film a TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Svátek"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Hudba"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Příroda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Ostatní"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Krajina"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Sezónní"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Jednoduché"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Webové stránky"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Doporučené"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12710,32 +12759,32 @@ msgstr "Nahradit za:"
#: cui/uiconfig/ui/tipofthedaydialog.ui:8
msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
-msgstr ""
+msgstr "Tip dne"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
-msgstr ""
+msgstr "_Zobrazovat tipy při spuštění"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
-msgstr ""
+msgstr "Toto okno znovu povolíte pomocí Nástroje > Možnosti > Obecné"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
-msgstr ""
+msgstr "_Další tip"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
-msgstr ""
+msgstr "Víte, že…?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
-msgstr ""
+msgstr "Odkaz"
#: cui/uiconfig/ui/transparencytabpage.ui:77
msgctxt "transparencytabpage|RBT_TRANS_OFF"
diff --git a/source/cs/extensions/messages.po b/source/cs/extensions/messages.po
index 346b4991246..a9ad25890f9 100644
--- a/source/cs/extensions/messages.po
+++ b/source/cs/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-12 04:28+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555043285.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Rozvržení sloupců pro tabulku „%1“"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Krátký název"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autoři"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Vydavatel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Ka_pitola"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "R_edaktor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Typ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Rok"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Titu_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dresa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_Stránky"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "V_ydání"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Název kni_hy"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Sva_zek"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Typ publika_ce"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "_Organizace"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_uce"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "_Univerzita"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Typ _zprávy"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Měsíc"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Ča_sopis"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Čís_lo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "_Edice"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "A_notace"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Poznámka"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Uživatelem definované pole _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Uživatelem definované pole _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Uživatelem definované pole _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Uživatelem definované pole _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Uživatelem definované pole _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Názvy sloupců"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Zadejte název nového datového typu:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Propojit pole"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Doporučit"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Podformuláře lze využít k zobrazení podrobných údajů o aktuálním záznamu hlavního formuláře. Je možné určit, které sloupce podformuláře a hlavního formuláře si odpovídají."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "popisek"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "popisek"
diff --git a/source/cs/helpcontent2/source/auxiliary.po b/source/cs/helpcontent2/source/auxiliary.po
index 28d1a26e2c8..f7c442e41f1 100644
--- a/source/cs/helpcontent2/source/auxiliary.po
+++ b/source/cs/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-11 04:33+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557549200.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Obecné informace"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Prezentace a kresby (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Nástrojové lišty"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Kresby (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Nabídky"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Nástrojové lišty"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objekty, obrázky a rastry"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Skupiny a vrstvy"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Text v prezentacích a kresbách"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/sbasic/guide.po b/source/cs/helpcontent2/source/text/sbasic/guide.po
index 53e4547c694..574f43c17f9 100644
--- a/source/cs/helpcontent2/source/text/sbasic/guide.po
+++ b/source/cs/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-05-06 14:49+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Porovnání Access2Base a Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Zobrazení dialogového okna pomocí kódu programu"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>moduly a dialogová okna; přepínání</bookmark_value><bookmark_value>dialogová okna;zobrazení pomocí kódu programu (příklad)</bookmark_value><bookmark_value>příklady; zobrazení dialogového okna pomocí kódu programu</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/sbasic/python.po b/source/cs/helpcontent2/source/text/sbasic/python.po
index e214ad0b8cf..faf9eb8b9d6 100644
--- a/source/cs/helpcontent2/source/text/sbasic/python.po
+++ b/source/cs/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-15 09:42+0000\n"
"Last-Translator: pavelbo <pavel.borecki@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,7 +77,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,7 +1469,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1493,7 +1493,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1515,6 +1515,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/cs/helpcontent2/source/text/sbasic/shared.po b/source/cs/helpcontent2/source/text/sbasic/shared.po
index bdf5254642d..d9cc5f5e2b9 100644
--- a/source/cs/helpcontent2/source/text/sbasic/shared.po
+++ b/source/cs/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-17 20:20+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Nápověda $[officename] Basic\">Nápověda %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/sbasic/shared/03.po b/source/cs/helpcontent2/source/text/sbasic/shared/03.po
index c96d84b485f..caaa0584337 100644
--- a/source/cs/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/cs/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-08-12 13:49+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr "Funkce a podprogramy pro modul ovládacích prvků."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/cs/helpcontent2/source/text/scalc/01.po b/source/cs/helpcontent2/source/text/scalc/01.po
index d809d07e3f7..224acc474b4 100644
--- a/source/cs/helpcontent2/source/text/scalc/01.po
+++ b/source/cs/helpcontent2/source/text/scalc/01.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-05-11 04:51+0000\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
+"PO-Revision-Date: 2019-05-30 15:19+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: NONE\n"
"Language: cs\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1557550299.000000\n"
+"X-POOTLE-MTIME: 1559229551.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -40950,8 +40950,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Najděte soubor s daty, která chcete vložit.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Otevřete souborový dialog pro nalezení souboru s daty, která chcete vložit.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -40982,8 +40982,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Zadejte adresu URL nebo název souboru, který obsahuje data, která chcete vložit, a stiskněte klávesu Enter.</ahelp> Pouze poté bude požadována adresa URL ze sítě nebo systému souborů."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41006,8 +41006,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Vyberte tabulku či oblast dat, kterou chcete vložit.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41535,7 +41535,7 @@ msgctxt ""
"par_id3146120\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 2 mm."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Stanoví optimální šířku sloupce tak, aby se zobrazil celý obsah buňky.</ahelp> Odstup od okraje je přednastaven na 2 mm."
#: 05050000.xhp
msgctxt ""
@@ -46294,7 +46294,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Určuje oblast buněk, kterou chcete konsolidovat s oblastmi buněk vypsanými v poli <emph>Oblasti konsolidace</emph>. Vyberte oblast buněk v sešitu a klepněte na <emph>Přidat</emph>. Také je možné vybrat název ze seznamu <emph>Zdrojová oblast dat</emph>.</ahelp>"
#: 12070000.xhp
@@ -51559,7 +51559,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CONCAT function"
-msgstr ""
+msgstr "CONCAT funkce"
#: func_concat.xhp
msgctxt ""
@@ -51567,7 +51567,7 @@ msgctxt ""
"bm_id741556228031712\n"
"help.text"
msgid "<bookmark_value>CONCAT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>CONCAT funkce</bookmark_value>"
#: func_concat.xhp
msgctxt ""
@@ -51575,7 +51575,7 @@ msgctxt ""
"hd_id471556226436779\n"
"help.text"
msgid "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51583,7 +51583,7 @@ msgctxt ""
"par_id891556226436781\n"
"help.text"
msgid "<variable id=\"concatfunction\"><ahelp hid=\".\">Concatenates one or more strings</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunction\"><ahelp hid=\".\">Zřetězí jeden nebo více řetězců</ahelp></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51591,7 +51591,7 @@ msgctxt ""
"par_id701556226865876\n"
"help.text"
msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M."
-msgstr ""
+msgstr "CONCAT je vylepšení CONCATENATE, protože CONCAT přijímá také rozsahy jako argumenty, jako B2: E5, K: K nebo K: M."
#: func_concat.xhp
msgctxt ""
@@ -51599,7 +51599,7 @@ msgctxt ""
"par_id461556226873963\n"
"help.text"
msgid "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate."
-msgstr ""
+msgstr "Pokud jsou použity rozsahy, buňky se prochází řádek po řádku (od shora dolů), aby se zřetězily."
#: func_concat.xhp
msgctxt ""
@@ -51607,7 +51607,7 @@ msgctxt ""
"par_id911556226813411\n"
"help.text"
msgid "CONCAT( string1[, string2][, …] )"
-msgstr ""
+msgstr "CONCAT( řetězec1[, řetězec2][, …] )"
#: func_concat.xhp
msgctxt ""
@@ -51615,7 +51615,7 @@ msgctxt ""
"par_id581556227044166\n"
"help.text"
msgid "<emph>string1[, string2][, …]</emph> are strings or references to cells or ranges that contains strings to concatenate."
-msgstr ""
+msgstr "<emph>řetězec1[, řetězec2][, …]</emph> jsou řetězce nebo odkazy na buňky nebo rozsahy, které obsahují řetězce, které se mají spojit."
#: func_concat.xhp
msgctxt ""
@@ -51623,7 +51623,7 @@ msgctxt ""
"par_id531556227248228\n"
"help.text"
msgid "<input>=CONCAT(\"Hello \", A1:C3)</input> concatenates the string \"Hello\" with all strings in range <literal>A1:C3</literal>."
-msgstr ""
+msgstr "<input>=CONCAT(\"Hello \", A1:C3)</input> spojí řetězec \"Hello\" se všemi řetězci v rozsahu <literal>A1:C3</literal>."
#: func_concat.xhp
msgctxt ""
@@ -51631,7 +51631,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
#: func_countifs.xhp
msgctxt ""
@@ -53575,7 +53575,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "IFS function"
-msgstr ""
+msgstr "IFS funkce"
#: func_ifs.xhp
msgctxt ""
@@ -53583,7 +53583,7 @@ msgctxt ""
"bm_id901556242230198\n"
"help.text"
msgid "<bookmark_value>IFS function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>IFS funkce</bookmark_value>"
#: func_ifs.xhp
msgctxt ""
@@ -53591,7 +53591,7 @@ msgctxt ""
"hd_id271556234923654\n"
"help.text"
msgid "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -53599,7 +53599,7 @@ msgctxt ""
"par_id171556234923655\n"
"help.text"
msgid "<variable id=\"variable name\"><ahelp hid=\".\">IFS is a multiple IF-function.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"variable name\"><ahelp hid=\".\">IFS je několikanásobná IF-funkce.</ahelp></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -53607,7 +53607,7 @@ msgctxt ""
"par_id271556235333493\n"
"help.text"
msgid "IFS( expression1, result1[, expression2, result2][, …] )"
-msgstr ""
+msgstr "IFS( výraz1, výsledek1[, výraz2, výsledek2][, …] )"
#: func_ifs.xhp
msgctxt ""
@@ -53615,7 +53615,7 @@ msgctxt ""
"par_id31556235655212\n"
"help.text"
msgid "<emph>expression1, expression2, ...</emph> are any boolean values or expressions that can be TRUE or FALSE"
-msgstr ""
+msgstr "<emph>výraz1, výraz2, ...</emph> jsou všechny logické hodnoty nebo výrazy, které mohou být PRAVDA nebo NEPRAVDA"
#: func_ifs.xhp
msgctxt ""
@@ -53623,7 +53623,7 @@ msgctxt ""
"par_id441556235649549\n"
"help.text"
msgid "<emph>result1, result2, ... </emph> are the values that are returned if the logical test is TRUE"
-msgstr ""
+msgstr "<emph>výsledek1, výsledek2, ... </emph> jsou hodnoty, které jsou vráceny, pokud je logický test PRAVDA"
#: func_ifs.xhp
msgctxt ""
@@ -53631,7 +53631,7 @@ msgctxt ""
"par_id641556235704257\n"
"help.text"
msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as"
-msgstr ""
+msgstr "IFS( výraz1, výsledek1, výraz2, výsledek2, výraz3, výsledek3 ) je spuštěn jako"
#: func_ifs.xhp
msgctxt ""
@@ -53639,7 +53639,7 @@ msgctxt ""
"par_id551556235712759\n"
"help.text"
msgid "IF expression1 is TRUE"
-msgstr ""
+msgstr "KDYŽ výraz1 je PRAVDA"
#: func_ifs.xhp
msgctxt ""
@@ -53647,7 +53647,7 @@ msgctxt ""
"par_id1001556235718948\n"
"help.text"
msgid "THEN result1"
-msgstr ""
+msgstr "POTOM výsledek1"
#: func_ifs.xhp
msgctxt ""
@@ -53655,7 +53655,7 @@ msgctxt ""
"par_id571556235725969\n"
"help.text"
msgid "ELSE IF expression2 is TRUE"
-msgstr ""
+msgstr "JINAK KDYŽ výraz2 je PRAVDA"
#: func_ifs.xhp
msgctxt ""
@@ -53663,7 +53663,7 @@ msgctxt ""
"par_id581556235731982\n"
"help.text"
msgid "THEN result2"
-msgstr ""
+msgstr "POTOM výsledek2"
#: func_ifs.xhp
msgctxt ""
@@ -53671,7 +53671,7 @@ msgctxt ""
"par_id961556235738258\n"
"help.text"
msgid "ELSE IF expression3 is TRUE"
-msgstr ""
+msgstr "JINAK KDYŽ výraz3 je PRAVDA"
#: func_ifs.xhp
msgctxt ""
@@ -53679,7 +53679,7 @@ msgctxt ""
"par_id951556235743954\n"
"help.text"
msgid "THEN result3"
-msgstr ""
+msgstr "POTOM výsledek3"
#: func_ifs.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/schart/00.po b/source/cs/helpcontent2/source/text/schart/00.po
index 4dfe2e5e416..9f3f5780cf3 100644
--- a/source/cs/helpcontent2/source/text/schart/00.po
+++ b/source/cs/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-13 14:54+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547391276.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">V dialogu Typ grafu u čárového grafu nebo XY (bodového) grafu, který zobrazuje čáry, zvolte Vyhlazené v rozbalovacím seznamu Typ čáry a poté klepněte na tlačítko Vlastnosti.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">V dialogu Typ grafu u čárového grafu nebo XY (bodového) grafu, který zobrazuje čáry, zvolte Stupňové v rozbalovacím seznamu Typ čáry a poté klepněte na tlačítko Vlastnosti.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/cs/helpcontent2/source/text/shared/00.po b/source/cs/helpcontent2/source/text/shared/00.po
index f58ac84725e..f6b75630623 100644
--- a/source/cs/helpcontent2/source/text/shared/00.po
+++ b/source/cs/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-10 09:31+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Zvolte <switchinline select=\"sys\"><caseinlin
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Zvolte <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Předvolby</emph></caseinline><defaultinline><emph>Nástroje - Možnosti</emph></defaultinline></switchinline><emph> - $[officename] - Přizpůsobení</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/cs/helpcontent2/source/text/shared/01.po b/source/cs/helpcontent2/source/text/shared/01.po
index 4bf5a51ab01..3bd217face9 100644
--- a/source/cs/helpcontent2/source/text/shared/01.po
+++ b/source/cs/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-10 09:17+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/cs/helpcontent2/source/text/shared/02.po b/source/cs/helpcontent2/source/text/shared/02.po
index 11315eaf05b..c3502f4837a 100644
--- a/source/cs/helpcontent2/source/text/shared/02.po
+++ b/source/cs/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-14 17:14+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1552583678.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Určuje, zda označený text v ovládacím prvku zůstane označen, i když ovládací prvek již nemá zaměření.</ahelp> Pokud nastavíte <emph>Skrýt výběr</emph> na \"Ne\", označený text v ovládacím prvku zůstane označen, i když ovládací prvek již nemá zaměření."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/shared/guide.po b/source/cs/helpcontent2/source/text/shared/guide.po
index 2bdba9c501b..f5a0cddea1b 100644
--- a/source/cs/helpcontent2/source/text/shared/guide.po
+++ b/source/cs/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-10 09:44+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/cs/helpcontent2/source/text/shared/optionen.po b/source/cs/helpcontent2/source/text/shared/optionen.po
index d3839d1a167..9cc419f2ee2 100644
--- a/source/cs/helpcontent2/source/text/shared/optionen.po
+++ b/source/cs/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-05 09:55+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: NONE\n"
@@ -14785,182 +14785,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "Více informací naleznete na <link href=\"https://www.khronos.org/opencl/\">stránkách OpenCL</link>."
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Přizpůsobení"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>motivy vzhledu;možnosti nastavení</bookmark_value><bookmark_value>možnosti nastavení;motivy vzhledu</bookmark_value><bookmark_value>přizpůsobení;motivy vzhledu pro Mozilla Firefox</bookmark_value><bookmark_value>personas;přizpůsobení</bookmark_value><bookmark_value>přizpůsobení;personas</bookmark_value><bookmark_value>motivy vzhledu pro Mozilla Firefox;přizpůsobení</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Přizpůsobení</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "%PRODUCTNAME můžete přizpůsobit pomocí motivů vzhledu, které jsou k dispozici pro prohlížeč Mozilla Firefox. Zvolený motiv se zobrazí na pozadí hlavní nabídky a nástrojových lišt ukotvených k horní a dolní části okna."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Motivy vzhledu pro Mozilla Firefox jsou k dispozici na stránkách společnosti Mozilla na následující adrese: <link href=\"https://addons.mozilla.org/cs/firefox/themes/\">https://addons.mozilla.org/cs/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "V %PRODUCTNAME bude fungovat jakýkoliv motiv vzhledu určený pro Firefox, ne každý však bude dobře vypadat. Motivy s výraznými prvky mohou zhoršit čitelnost nabídek a ikon."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Motivy vzhledu pro Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "K dispozici jsou následující možnosti:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Běžný vzhled, nepoužívat motivy vzhledu"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Pozadí nástrojových lišt bude určeno podle nastavení pozadí v desktopovém prostředí.</ahelp> Toto je v %PRODUCTNAME výchozí nastavení."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Předinstalovaný motiv"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Zvolte tuto možnost, chcete-li použít některý z předinstalovaných motivů.</ahelp> Kromě výchozích možností se zobrazí také motivy, které byly přidány administrátorem systému během instalace %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Vlastní motiv vzhledu"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Volbou této možnosti otevřete dialogové okno „Vybrat motiv vzhledu pro Firefox“ a v něm budete moci určit vlastní motiv.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Dialogové okno Vybrat motiv vzhledu pro Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Toto dialogové okno umožňuje nainstalovat určitý motiv vzhledu a poskytuje přehled jiných zajímavých motivů z webových stránek motivů pro Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Vyhledávání"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Zadejte výraz, pro který se bude motiv vyhledávat na stránkách s doplňky pro Mozillu, nebo vložte adresu, pomocí níž motiv získáte přímo.</ahelp> Adresu URL získáte tím, že v prohlížeči přejdete na webovou stránku zvoleného motivu vzhledu a zkopírujete adresu zobrazenou v adresním řádku prohlížeče. Poté ji vložte do vyhledávacího pole tohoto dialogového okna. Klepnutím na <item type=\"menuitem\">Přejít</item> nebo stisknutím klávesy <item type=\"keycode\">Enter</item> motiv stáhnete a nainstalujete do %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Procházení motivů podle kategorie"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Zobrazuje náhodný výběr devíti motivů vzhledu podle kategorie uvedené na tlačítkách.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Klepnutím na některé z pěti tlačítek zobrazíte v oblasti obrázků devět motivů vzhledu náhodně vybraných odpovídajících kategorii na tlačítku."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Chcete-li některý ze zobrazených motivů vybrat, klepněte na jeho obrázek a zvolte <item type=\"menuitem\">OK</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/cs/helpcontent2/source/text/simpress/01.po b/source/cs/helpcontent2/source/text/simpress/01.po
index ec2212d30b3..19abe54e2cf 100644
--- a/source/cs/helpcontent2/source/text/simpress/01.po
+++ b/source/cs/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-13 14:39+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter/guide.po b/source/cs/helpcontent2/source/text/swriter/guide.po
index dd374c21052..4feadf5ed76 100644
--- a/source/cs/helpcontent2/source/text/swriter/guide.po
+++ b/source/cs/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Klepnutím na ikonu <emph>Navigátor</emph><image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Ikona</alt></image> na nástrojové liště <emph>Standardní</emph> otevřete <emph>Navigátor</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "V okně <emph>Navigátor</emph> klepněte na ikonu <emph>Pohled na obsah</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Ikona</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Klepněte na nadpis v seznamu <emph>Navigátoru</emph> a poté klepněte na ikonu <emph>Kapitolu o úroveň výše</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Ikona</alt></image> nebo <emph>Kapitolu o úroveň níže</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Ikona</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Klepněte na ikonu <emph>O úroveň výše </emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Ikona</alt></image> nebo <emph>O úroveň níže </emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Ikona</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Klepněte na ikonu <emph>Zobrazené úrovně nadpisu</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Ikona</alt></image> a poté vyberte počet ze seznamu."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
index fce890def54..1fe23868e56 100644
--- a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 10:52+0000\n"
-"Last-Translator: raal <raal@post.cz>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 17:05+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557744749.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558631113.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Další pole"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Znovu vytvořit diagram"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Karty"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Skupiny"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/cs/sc/messages.po b/source/cs/sc/messages.po
index feafc6727d7..a095bdf6594 100644
--- a/source/cs/sc/messages.po
+++ b/source/cs/sc/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 10:52+0000\n"
-"Last-Translator: raal <raal@post.cz>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 17:27+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557744763.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558632430.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15221,6 +15221,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(výhradní přístup)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "Ve vybraném dokumentu nejsou k dispozici žádné pojmenované oblasti"
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15774,14 +15779,14 @@ msgstr "Spravovat podmíněné formátování"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr "První podmínka"
-
-#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
msgid "Range"
msgstr "Oblast"
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "První podmínka"
+
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
msgid "Add"
@@ -16997,81 +17002,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Datový formulář"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Zavřít"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nový záznam"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "No_vý"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "S_mazat"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "O_bnovit"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Předchozí záznam"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "_Další záznam"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Zavřít"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Živé datové proudy"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Zadejte URL zdrojového dokumentu v místním systému souborů nebo na Internetu."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Procházet..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Databázová oblast:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Poskytovatel dat:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Hledaný řetězec:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Zdrojový proud"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18787,32 +18752,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Výsledky do:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Oříznout vstupní oblast podle skutečných dat"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sloupce"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Řádky"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Seskupit podle"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametry"
@@ -18952,167 +18922,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Nápověda"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Soubor"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Určete ohraničení vybraných buněk."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Zvětšit odsazení"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Zmenšit odsazení"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Domů"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Domů"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Pole"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Vložit"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Vložit"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "Roz_vržení"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Zarovnání objektu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Roz~vržení"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "St_atistika"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revize"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "_Revize"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Zobrazit"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Zobrazit"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "O_brázek"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresba"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresba"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimédia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Tisk"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Tisk"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formulář"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nástroje"
@@ -21593,17 +21565,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Výsledky vyhledávání"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "_Zobrazovat toto dialogové okno"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "Toto okno znovu povolíte pomocí Nástroje > Možnosti > Calc > Zobrazení"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "List"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Buňka"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Obsah"
@@ -23473,107 +23455,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "S_ymboly pro souhrny"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "Shrnutí _vyhledávání"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Okno"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Mřížka:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Barva:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Zobrazit"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Zobrazit i u obarvených buněk"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Skrýt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Za_lomení stránky"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Vo_dítka při přesouvání"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Pomůcky zobrazení"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Objekty/obrázky:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Grafy:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Objekty _kresby:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Zobrazit"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Skrýt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Zobrazit"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Skrýt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Zobrazit"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Skrýt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekty"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Syn_chronizovat listy"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Přiblížení"
diff --git a/source/cs/scp2/source/ooo.po b/source/cs/scp2/source/ooo.po
index bf19619bc5c..47b2a85b7c3 100644
--- a/source/cs/scp2/source/ooo.po
+++ b/source/cs/scp2/source/ooo.po
@@ -3,9 +3,9 @@ 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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-11 20:42+0000\n"
-"Last-Translator: raal <raal@post.cz>\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-23 17:05+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1555015343.000000\n"
+"X-POOTLE-MTIME: 1558631145.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Otevřít dokument"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (nouzový režim)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/cs/scp2/source/winexplorerext.po b/source/cs/scp2/source/winexplorerext.po
index cf0ed9e8601..4bc9c3702ac 100644
--- a/source/cs/scp2/source/winexplorerext.po
+++ b/source/cs/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 13:29+0200\n"
-"Last-Translator: pawell <p.franc@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:56+0000\n"
+"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369349760.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Umožní Průzkumníku Microsoft Windows zobrazit informace o dokumentech %PRODUCTNAME, jako náhledy apod."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/cs/sd/messages.po b/source/cs/sd/messages.po
index 32f4d5d4d81..5fbc6924dcd 100644
--- a/source/cs/sd/messages.po
+++ b/source/cs/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-09 15:52+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557417154.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Kliknutím otevřete hypertextový odkaz: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Název HTML návrhu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Soubor"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Nápověda"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Soubor"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Domů"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Domů"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Pole"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Vložit"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Vložit"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "S_tránka"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "S~tránka"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revize"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revize"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Zobrazit"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Zobrazit"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "Te_xt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "Te~xt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "T_abulka"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "T~abulka"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Převést"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "O_brázek"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresba"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresba"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Média"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formulář"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nástroje"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Zobrazit tvary"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Soubor"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Nápověda"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Soubor"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Domů"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Domů"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Pole"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Vložit"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Vložit"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "Sní_mek"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "Sní~mek"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Pr_ezentace"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Pr~ezentace"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revize"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revize"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Zobrazit"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Zobrazit"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "T_abulka"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "T~abulka"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Převést"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "O_brázek"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresba"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresba"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimédia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formulář"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nástroje"
diff --git a/source/cs/sfx2/messages.po b/source/cs/sfx2/messages.po
index 513a324d022..276a0423e47 100644
--- a/source/cs/sfx2/messages.po
+++ b/source/cs/sfx2/messages.po
@@ -3,9 +3,9 @@ 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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-11 20:41+0000\n"
-"Last-Translator: raal <raal@post.cz>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 17:11+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1555015313.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558631469.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " R: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Odebrat vlastnost"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Zadaná hodnota neodpovídá určenému typu.\n"
"Hodnota bude uložena jako text."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Styl již existuje. Přepsat?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "O~bnovit"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Název se již používá."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Tento styl neexistuje."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Tento styl nemůže být použit jako základní,\n"
"vznikly by totiž rekurzivní odkazy."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Název už existuje jako výchozí styl.\n"
"Zadejte jiný název."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Pokud tyto styly smažete, text bude převeden na rodičovský styl.\n"
"Opravdu si přejete tyto styly smazat?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Použité styly: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigátor"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Neplatné potvrzení hesla"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Odeslat"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Písmo"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Zobrazit náhledy"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Zobrazit komentář k verzi"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(název nenastaven)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Styly"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarchicky"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Režim vyplňování formátu"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nový styl z výběru"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Akce stylů"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Aktualizovat styl"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Opravdu chcete přerušit nahrávání? Veškeré doposud zaznamenané kroky budou ztraceny."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Zrušit nahrávání"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Šablony jsou inicializovány pro první použití."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Nebyla nalezena žádná výchozí tiskárna.\n"
"Vyberte tiskárnu a akci opakujte."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Tiskárnu nelze inicializovat.\n"
"Zkontrolujte nastavení tiskárny."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Tiskárna je zaneprázdněna"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (jen pro čtení)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Přejete si uložit nové nastavení\n"
"v aktivním dokumentu?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Má být nové nastavení uloženo\n"
"v aktivním dokumentu?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Přejete si uložit nové nastavení\n"
"v aktivním dokumentu?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Dokument není možné zavřít, protože\n"
"se právě provádí tisková úloha."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Zkontrolujte nastavení %PRODUCTNAME nebo nastavení poštovního klienta."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Kód chyby je $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Chyba při odesílání zprávy"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Dokument nemohl být otevřen pro úpravy, pravděpodobně kvůli chybějícím právům. Přejete si jej použít pouze jako šablonu pro vytvoření nového dokumentu?\""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Můžete se také pokusit uzamčení ignorovat a otevřít soubor pro úpravy."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Otevřít ~kopii"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Otevřít"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (opravený dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Tento dokument není na serveru rezervován."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Pomozte nám %PRODUCTNAME vylepšit!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Zapojte se"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Vaše dary podporují naši celosvětovou komunitu."
+msgstr "Vaše finanční příspěvky pomáhají naší celosvětové komunitě."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Přispějte"
+msgstr "Přispět"
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Poprvé jste spustili verzi %PRODUCTVERSION of %PRODUCTNAME. Chcete se dozvědět, co je v ní nového?"
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Poznámky k vydání"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Tento dokument je otevřen v režimu jen pro čtení."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Tento soubor PDF je otevřen v režim jen pro čtení, aby jej bylo možné podepsat."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Popisek klasifikace tohoto dokumentu je %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Aby bylo možné vložit obsah schránky, musí být tento dokument klasifikován."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Tento dokument má nižší stupeň klasifikace než obsah schránky."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Úroveň"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Národní bezpečnost:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Kontrola vývozu:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Rezervovat"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Upravit dokument"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Podepsat dokument"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Tento dokument má neplatný podpis."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Podpis byl platný, ale dokument se změnil"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Podpis je v pořádku, ale certifikát nelze ověřit."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Podpis je v pořádku, ale dokument je podepsán pouze částečně."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Certifikát nelze ověřit a dokument je podepsán pouze částečně."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Tento dokument je elektronicky podepsán platným podpisem."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Zobrazit podpisy"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Zavřít panel"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Uchytit"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Uvolnit"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Další možnosti"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zavřít kartu postranní lišty"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Nastavení postranní lišty"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Přizpůsobení"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Obnovit výchozí"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Zavřít postranní lištu"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Včelí úl"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Modrá křivka"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blueprint plánu"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Jasně modrá"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Červená"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Ohnisko"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Lesní zátiší"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirace"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Světla"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Svěží zelená"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Půlnoční modř"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Příroda"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Tužka"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavír"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Pokrok"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Západ slunce"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Starožitnost"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Svěží"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Životopis"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Stručný životopis"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Výchozí"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderní"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderní obchodní dopis bezpatkový"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderní obchodní dopis patkový"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Vizitky s logem"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Odstranit"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Vymazat vše"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Délka hesla"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Zadané heslo způsobuje problémy s interoperabilitou. Zadejte heslo kratší než 52 bajtů nebo delší než 55 bajtů."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Komentář k verzi:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Název"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Typ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Hodnota"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Typ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ano"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ne"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "_Přidat vlastnost"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Název"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Typ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Hodnota"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Umístění:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Typ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Změnit _heslo"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Šablona:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Vlastnosti souboru „%1“"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Obecné "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Popis"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Vlastní vlastnosti"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Vlastnosti CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Zabezpečení"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Tento produkt vytvořila %OOOVENDOR na základě OpenOffice.org, který je Copyright 2000, 2011 Oracle a/nebo jeho pobočky. %OOOVENDOR děkuje všem členům komunity, podrobnosti naleznete na stránce http://www.libreoffice.org/."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/cs/shell/messages.po b/source/cs/shell/messages.po
new file mode 100644
index 00000000000..ef17063e239
--- /dev/null
+++ b/source/cs/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-23 17:08+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558631333.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Otevřít dokument"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Otevíráte dokument\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Přejete si jej pouze zobrazit, nebo otevřít i pro úpravy?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Zobrazit"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Upravit"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Zrušit"
diff --git a/source/cs/starmath/messages.po b/source/cs/starmath/messages.po
index efb8b663f73..e8645b8e89c 100644
--- a/source/cs/starmath/messages.po
+++ b/source/cs/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-06-23 16:20+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Příklady"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standardní"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kurzíva"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Tučné"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "černá"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "modrá"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "zelená"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "červená"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "azurová"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "šedá"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "žlutozelená"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kaštanová"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "tmavomodrá"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olivová"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "tmavě purpurová"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "stříbrná"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "zelenomodrá"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "žlutá"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "skryté"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "velikost"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "písmo"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "vlevo"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "na střed"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "vpravo"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Příkazy"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Vzorec"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Ukládání dokumentu..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Vzorec %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "CHYBA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Neočekávaný znak"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Neočekávaný token"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Očekávána '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Očekávána '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Očekávána '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Očekávána ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Levé a pravé symboly si neodpovídají"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Očekávána hodnota „fixed“, „sans“ nebo „serif“"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Neočekávaný token za hodnotou „size“"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Nelze použít dvojí zarovnání"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Nelze použít dvojitý dolní nebo horní index"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Očekáván '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Je vyžadována barva"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Očekáváno 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Obsah"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Náz~ev"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Text ~vzorce"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "O~hraničení"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Velikost"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Původní velikost"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Přizpůsobit velikosti ~stránky"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Měřítko"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Prvky"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/cs/svtools/messages.po b/source/cs/svtools/messages.po
index 3d1887a4b0d..9ea73dfa637 100644
--- a/source/cs/svtools/messages.po
+++ b/source/cs/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-13 10:53+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,1521 +13,1523 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557744791.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "~Zpět: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Zn~ovu: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "O~pakovat: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Neformátovaný text"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Neformátovaný text (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Rastrový obrázek (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metasoubor Graphics Device Interface (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Formátování rich text (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Formátování rich text (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formát kresby %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView rastr/animace (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Stavové informace od Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Záložka Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formát Star serveru"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formát Star objektu"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Zásuvný modul"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objekt StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objekt StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objekt StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objekt StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objekt StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objekt StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objekt StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objekt StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objekt StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objekt StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objekt StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objekt StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objekt StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objekt StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objekt StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objekt StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objekt StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objekt StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objekt StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objekt StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objekt StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objekt StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objekt StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Zjednodušený HyperText Markup Language (jednoduché HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (odkaz DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objekt Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objekt StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Dokument"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Poznámky k dokumentu"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokument"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Obrázek"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objekt OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objekt OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objekt OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objekt OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objekt OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objekt OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows Metafile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Zdroj dat"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabulka zdroje dat"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL dotaz"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialogové okno OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Odkaz"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML formát bez komentářů"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % nelze vložit."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt ze souboru % nelze vložit."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Další objekty"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Neznámý zdroj"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Název"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Velikost"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Datum změny"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Typ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajtů"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "kB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Řádek: %1, Sloupec: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Typ: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Složka"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Soubor"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Prázdné pole"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerický"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Běžné"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Znaková sada"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Slovník"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pchin-jin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Tah"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Základní znak"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Ču-jin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonní seznam"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foneticky (písmena a číslice jako první)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foneticky (písmena a číslice jako poslední)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerický"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Slovník"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pchin-jin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Základní znak"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Tah"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Ču-jin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foneticky (písmena a číslice jako první, seskupené podle hlásek)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foneticky (písmena a číslice jako první, seskupené podle souhlásek)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foneticky (písmena a číslice jako poslední, seskupené podle hlásek)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foneticky (písmena a číslice jako poslední, seskupené podle souhlásek)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Dnes"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Žádné"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Světlé"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Lehce skloněné"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Běžné"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kurzíva"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Tučné"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Tučná kurzíva"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Černé"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Černá kurzíva"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Knižní"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Tučné skloněné"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Zúžené"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Zúžené tučné"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Zúžená tučná kurzíva"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Zúžené tučné skloněné"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Zúžená kurzíva"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Zúžené skloněné"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Velmi tenké"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Velmi tenká kurzíva"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Skloněné"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Polotučné"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Polotučná kurzíva"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Stejné písmo bude použito na tiskárně i na obrazovce."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Toto je písmo je určeno pro tiskárnu; na obrazovce se může lišit."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Tento styl písma bude simulován nebo bude použit nejbližší odpovídající styl."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Toto písmo nebylo nainstalováno. Bude použito nejblíže odpovídající písmo."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Procházet..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Přesunout domů"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Přesunout doleva"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Přesunout doprava"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Přesunout na konec"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Přidat"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vodorovné pravítko"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Svislé pravítko"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bitový práh"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bitový rozklad"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bity stupně šedi"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bity barva"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bitů stupně šedi"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bitů barva"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bitů TrueColor"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Obrázek potřebuje asi %1 KB paměti."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Obrázek potřebuje asi %1 kB paměti, velikost souboru je %2 kB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Velikost souboru je %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "hostitel"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Ostatní CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Připraveno"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pozastaveno"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Odstraňování"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Zaneprázdněno"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicializace"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Čeká se"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Zahřívání"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Zpracování"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Probíhá tisk"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Chyba"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Neznámý server"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zaseknutý papír"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nedostatek papíru"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Ruční podávání"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Potíže s papírem"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Aktivní V/V"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Výstupní zásobník je plný"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Nedostatek toneru"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Došel toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Smazat stránku"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Je třeba zásahu uživatele"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Nedostatek paměti"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Kryt je otevřen"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Úsporný režim"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Výchozí tiskárna"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumentů"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Do~končit"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Další >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Z~pět"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Kroky"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<nic>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Společnost"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Oddělení"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Jméno"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Příjmení"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Ulice"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Země"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "PSČ"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Obec"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titul"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pozice"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Formulář adresy"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciály"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Zdvořilostní zakončení"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: domů"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: do práce"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Poznámka"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Vlastní 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Vlastní 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Vlastní 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Vlastní 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Stát"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: kancelář"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: jiný"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendář"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Pozvánka"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Pro vykonání tohoto úkolu vyžaduje %PRODUCTNAME běhové prostředí Javy (JRE). Nainstalujte JRE a %PRODUCTNAME restartujte."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Pro vykonání tohoto úkolu vyžaduje %PRODUCTNAME %BITNESS bitové běhové prostředí Javy (JRE). Nainstalujte JRE a %PRODUCTNAME restartujte."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME vyžaduje v systémech macOS X 10.10 a novějších pro vykonání tohoto úkolu Java Development Kit (JDK) od společnosti Oracle. Nainstalujte jej a %PRODUCTNAME restartujte."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Nastavení %PRODUCTNAME bylo změněno. V %PRODUCTNAME - Předvolby - %PRODUCTNAME - Pokročilé vyberte běhově prostředí Javy, které chcete v %PRODUCTNAME používat."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Nastavení %PRODUCTNAME bylo změněno. V nabídce Nástroje - Možnosti - %PRODUCTNAME - Pokročilé vybere běhové prostředí Javy, které chcete v %PRODUCTNAME používat."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vyžaduje pro vykonání tohoto úkolu běhové prostředí Javy (JRE). Zvolené běhové prostředí je vadné. Zvolte jinou verzi, nebo nainstalujte nové běhové prostředí a vyberte jej v nabídce %PRODUCTNAME - Předvolby - %PRODUCTNAME - Pokročilé."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vyžaduje pro vykonání toho úkolu běhové prostředí Javy (JRE). Zvolené běhové prostředí je vadné. Zvolte jinou verzi, nebo nainstalujte nové běhové prostředí a vyberte jej v nabídce Nástroje - Možnosti - %PRODUCTNAME - Pokročilé."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Vyžadováno JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Zvolte JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE je poškozeno"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Zdrojový kód"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Soubor záložek"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Obrázek"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigurační soubor"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplikace"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Databázová tabulka"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systémový soubor"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dokument MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Soubor nápovědy"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archivní soubor"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Protokolový soubor"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Databáze StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Hlavní dokument StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Obrázek StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Textový soubor"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Odkaz"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Šablona StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Dokument MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Šablona MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Dávkový soubor"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Soubor"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Složka"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Textový dokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Sešit"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentace"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Kresba"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Hlavní dokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Vzorec"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Databáze"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Šablona sešitu OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Šablona kresby OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Šablona prezentace OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Šablona textového dokumentu OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokální mechanika"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD mechanika"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Síťové spojení"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Dokument MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Šablona MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Prezentace MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Vzorec OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Graf OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Kresba OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Sešit OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Prezentace OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Textový dokument OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Hlavní dokument OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Databáze OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Kresba OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Vzorec OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Hlavní dokument OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Prezentace OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Sešit OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Textový dokument OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Šablona sešitu OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Šablona kresby OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Šablona prezentace OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Šablona textového dokumentu OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Rozšíření %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Kontrola pravopisu Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Dělení slov Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Slovník synonym Mythes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Seznam ignorovaných slov"
diff --git a/source/cs/svx/messages.po b/source/cs/svx/messages.po
index 0b843aa79a3..96bd51d185e 100644
--- a/source/cs/svx/messages.po
+++ b/source/cs/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-09 15:59+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 17:32+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557417569.000000\n"
+"X-POOTLE-MTIME: 1558632742.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Zleva doprava (svisle)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Zdola nahoru, zleva doprava (svisle)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Část číslo:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Část textu:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Zdroj světla 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Barva světla 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Barva světla 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Barva světla 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Barva světla 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Barva světla 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Barva světla 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Barva světla 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Barva světla 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Zadejte pro styl přechodu posun od středu ve svislém směru v procentech. 50 % znamená střed ve svislém směru."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor obrysů"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Použít"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Pracovní plocha"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Vybrat"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Obdélník"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Mnohoúhelník"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Upravit body"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Přesunout body"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Vložit body"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Smazat body"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Automatický obrys"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Zpět"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Znovu"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Kapátko"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolerance barev"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Zápatí"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor obrázkových map"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Použít"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Otevřít…"
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Uložit…"
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Zavřít"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Vybrat"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Obdélník"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Mnohoúhelník"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Mnohoúhelník od ruky"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Upravit body"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Přesunout body"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Vložit body"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Smazat body"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Zpět"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Znovu"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktivní"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Vlastnosti..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresa:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Rámec:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Text:"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME je nyní spuštěn v nouzovém režimu, v němž jsou dočasně vypnuta vaše uživatelská nastavení a rozšíření.\n"
+"\n"
+"Aby začal %PRODUCTNAME opět fungovat, můžete zkusit provést na uživatelském profilu jednu či více následujících změn."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/cs/sw/messages.po b/source/cs/sw/messages.po
index 2571063abe0..2675f71a67d 100644
--- a/source/cs/sw/messages.po
+++ b/source/cs/sw/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 10:55+0000\n"
-"Last-Translator: raal <raal@post.cz>\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-23 17:03+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557744936.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558631027.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3124,7 +3124,7 @@ msgid "Change object title of $1"
msgstr "Změnit titulek objektu $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Změnit popis objektu $1"
@@ -6119,7 +6119,7 @@ msgstr "Formát zápatí..."
#: sw/inc/strings.hrc:1210
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
-msgstr ""
+msgstr "Ukotvit tabulku"
#: sw/inc/strings.hrc:1212
msgctxt "STR_GRFILTER_OPENERROR"
@@ -6669,7 +6669,7 @@ msgstr "~Dolů"
#: sw/inc/strings.hrc:1339
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
-msgstr ""
+msgstr "Nebyla zadána žádná položka"
#. --------------------------------------------------------------------
#. Description: Classification strings
@@ -7025,7 +7025,7 @@ msgstr "Přiřaďte pole ze zdroje dat k jednotlivým prvkům adresy."
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:185
msgctxt "assignfieldsdialog|ST_ADDRESSELEMENT"
msgid "Address elements"
-msgstr ""
+msgstr "Prvky adresy"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:197
msgctxt "assignfieldsdialog|ST_PREVIEW"
@@ -7685,7 +7685,7 @@ msgstr "Znak"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Standardní"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -9904,7 +9904,7 @@ msgstr "Zr_cadlit na sudých stránkách"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Udržovat v hranicích textu"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|label11"
@@ -12016,147 +12016,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Nápověda"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Soubor"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Domů"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Domů"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Vložit"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "V~ložit"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Rozvrž~ení"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Rozvrž~ení"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "O_dkazy"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "O~dkazy"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revize"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revize"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Zobrazit"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Zobrazit"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "T_abulka"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "T~abulka"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "O_brázek"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresba"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresba"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimédia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Tisk"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Tisk"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formulář"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formulář"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Nástro~je"
@@ -12166,155 +12166,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Soubor"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "~Soubor"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Domů"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr "~Domů"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "V_ložit"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "~Vložit"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Obtékání textu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Rozvržení"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "~Rozvržení"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Odkazy"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr "O~dkazy"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Revize"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr "~Revize"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Zobrazit"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "~Zobrazit"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abulka"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr "~Tabulka"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Obrázek"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "O~brázek"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Kresba"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Kresba"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Multimédia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Multimédia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Tisk"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Tisk"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "_Formulář"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "~Formulář"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Nástroj_e"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Nástroj~e"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12455,7 +12455,7 @@ msgstr "_Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "Ráme_c"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12665,7 +12665,7 @@ msgstr "_Multimédia"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13378,8 +13378,8 @@ msgstr "V odstavcích zarovnaných do bloku rozšířit mezery mezi slovy i u ru
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Zamknout formulář"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13414,12 +13414,12 @@ msgstr "Nastavení kompatibility pro „%DOCNAME“"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:166
msgctxt "optcompatpage|globalcompatoptions"
msgid "Reorganize Forms menu to have it MS compatible"
-msgstr ""
+msgstr "Uspořádat nabídku Formuláře kompatibilně s MS"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:184
msgctxt "optcompatpage|label2"
msgid "Global compatibility options"
-msgstr ""
+msgstr "Globální nastavení kompatibility"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -16117,7 +16117,7 @@ msgstr "Vodorovně"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Svisle (shora dolů)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
msgctxt "tabletextflowpage|liststore1"
@@ -16127,7 +16127,7 @@ msgstr "Použít nastavení nadřazeného objektu"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:301
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Svisle (zdola nahoru)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:322
msgctxt "tabletextflowpage|headline"
@@ -16402,7 +16402,7 @@ msgstr "Styl stránky"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:71
msgctxt "templatedialog8|standard"
msgid "Standard"
-msgstr ""
+msgstr "Standardní"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:166
msgctxt "templatedialog8|organizer"
@@ -16659,47 +16659,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Obsah, rejstřík nebo seznam použité literatury"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Náhled"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Náhled"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Typ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Položky"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Styly"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Sloupce"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Pozadí"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Náhled"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Ú_roveň"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Typ"
@@ -16929,302 +16929,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Upravit..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Nadpis:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Typ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Obsah"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Abecední rejstřík"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Tabulka obrázků"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Seznam tabulek"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Definované uživatelem"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tabulka objektů"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Seznam použité literatury"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "_Zamknuto proti ručním změnám"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Typ a nadpis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Pro:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Celý dokument"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Kapitola"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Vyhodnotit až do úrovně:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Vytvořit rejstřík nebo obsah"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Osnova"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Značky rejstříku"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabulky"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "_Textové rámce"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Obrázky"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Objekty OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Úroveň zdrojové kapitoly"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Další styly"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Styly"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Přiřadit styly..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Popisky"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Názvy objektů"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorie:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Zobrazení:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Odkazy"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorie a číslo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Text popisku"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Vytvořit z"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Vytvořit z následujících objektů"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Zá_vorky:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Očíslovat položky"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[žádné]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formátování položek"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Sloučit stejné položky"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Sloučit stejné položky s p nebo pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Sloučit do intervalu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Rozlišovat velikost písmen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Použít velké písmeno"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Klíče jako oddělené položky"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Rejstříkový soubor"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Sou_bor"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Možnosti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Jazyk:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Druh klíče:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Seřadit"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Ú_rovně"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Styly odstavce"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Výchozí"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Upravit"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Přiřazení"
@@ -17277,17 +17277,17 @@ msgstr "Zobrazení"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:223
msgctxt "viewoptionspage|hiddentextfield"
msgid "Hidden te_xt"
-msgstr ""
+msgstr "Skrytý te_xt"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:237
msgctxt "viewoptionspage|hiddenparafield"
msgid "Hidden p_aragraphs"
-msgstr ""
+msgstr "Skryté odst_avce"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:257
msgctxt "viewoptionspage|fieldslabel"
msgid "Display fields"
-msgstr ""
+msgstr "Zobrazovat pole"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:301
msgctxt "viewoptionspage|smoothscroll"
diff --git a/source/cs/vcl/messages.po b/source/cs/vcl/messages.po
index b37afc10749..7e12f99539c 100644
--- a/source/cs/vcl/messages.po
+++ b/source/cs/vcl/messages.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-05-10 11:52+0000\n"
+"PO-Revision-Date: 2019-05-27 05:19+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557489159.000000\n"
+"X-POOTLE-MTIME: 1558934371.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -270,7 +270,7 @@ msgstr "15x11"
#: vcl/inc/print.hrc:78
msgctxt "RID_STR_PAPERNAMES"
msgid "Invitation Envelope"
-msgstr ""
+msgstr "Obálka pozvání"
#: vcl/inc/print.hrc:79
msgctxt "RID_STR_PAPERNAMES"
@@ -1730,7 +1730,7 @@ msgstr "_Liché stránky"
#: vcl/uiconfig/ui/printdialog.ui:625
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
-msgstr ""
+msgstr "_Odkud tisknout:"
#: vcl/uiconfig/ui/printdialog.ui:650
msgctxt "printdialog|labelpapersides"
diff --git a/source/cy/cui/messages.po b/source/cy/cui/messages.po
index 62cb2062266..989b53e8860 100644
--- a/source/cy/cui/messages.po
+++ b/source/cy/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-04-09 08:55+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Rhowch gyfeiriad thema dilys neu derm chwilio."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Peidio Gosod Borderi"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Gosod Border Allanol yn Unig"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Gosod Border Allanol a Llinellau Llorweddol"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Gosod Border Allanol a Phob Llinell Fewnol"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Gosod Border Allanol Heb Newid Llinellau Mewnol"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Gosod Llinellau Croeslin yn Unig"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Gosod y Pedwar Border"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Gosod Border Chwith a De yn Unig"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Gosod Borderi Brig a Gwaelod yn Unig"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Gosod Border Chwith Yn Unig"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Gosod Brig a Gwaelod Borderi a Phob Llinell Fewnol"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Gosod Brig a Gwaelod Borderi a Phob Llinell Fewnol"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Dim Cysgod"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Taflu Cysgod i'r Gwaelod De"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Taflu Cysgod i'r Brig De"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Taflu Cysgod i'r Gwaelod Chwith"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Taflu Cysgod i'r Brig Chwith"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Llofnodwyd gan: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Pob ffeil"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Cronfeydd Data Cofrestredig"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Ynghylch %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "_Diolchiadau"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Gwefan"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "Cymorth %PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Adeiladedd: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Locale: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Iaith Rhyngwyneb: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Gweld cofnod: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "Mae %PRODUCTNAME yn gasgliad cynhyrchu cod agored modern, hawdd ei ddefnyddio ar gyfer prosesu geiriau, taenlenni, cyflwyniadau a rhagor."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Hawlfraint © 2000 - 2019 cyfranwyr LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "Mae LibreOffice yn seiliedig ar OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "Mae %PRODUCTNAME yn deillio o LibreOffice sy'n seiliedig ar OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Darparwyd y fersiwn yma gan %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Newid"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "A_mnewid"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Gyda:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Testun yn unig"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Hyd Leiaf Gair"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Priodweddau"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Ffrâm:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Enw:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Testun arall:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Disgrifiad:"
@@ -9019,80 +9179,80 @@ msgstr "Dangos llamlen \"Dim cymorth all-lein wedi ei osod\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Cymorth"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Defnyddio deialogau %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Deialogau Agor/Cadw"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Defnyddio d_eialogau %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Deialogau Argraffu"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Argraffu yn gosod statws \"dogfen wedi newid\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Statws Dogfen"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Dehongli fel blynyddoedd rhwng "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Blwyddyn (Dau Ddigid)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Casglu data defnydd a'i anfon at y Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Helpwch wella %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Llwytho %PRODUCTNAME wrth gychwyn y system"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Galluogi Cychwyn Cyflym"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Cychwyn Cyflym %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Thema Rhagosodedig"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Thema Bersonol"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Llwyth thema Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Neu dewis o'r Themâu sydd wedi eu gosod drwy estyniadau:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Thema Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Dewisiadau Diogelwch"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Dewis Thema Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Chwilio'r term neu'r cyfeiriad"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "C_ategori:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Crynodeb"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Achosion"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Ffasiwn"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Ffilm a Theledu"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Gwyliau"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Cerddoriaeth"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natur"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Arall"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Golygfa"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Tymhorol"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Solet"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Chwaraeon"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Gwefannau"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Nodwedd"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/cy/extensions/messages.po b/source/cy/extensions/messages.po
index c74a46abd6e..18fe7bdf774 100644
--- a/source/cy/extensions/messages.po
+++ b/source/cy/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-09 09:05+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@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==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554800711.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Cynllun Colofn ar gyfer Tabl “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Enw byr"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Awdur(on)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Cyhoeddwr"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Pennod"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Golygydd"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Math"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Blwyddyn"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "_Teitl"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "C_yfeiriad"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_Tudalen(nau)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Cy_frol"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Teitl _llyfr"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Cyfrol"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Math o _gyhoeddiad"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "C_orff"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "_Sefydliad"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "_Prifysgol"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Math o _adroddiad"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "M_is"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Dyddlyfr"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "_Rhif"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Cyf_res"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "A_nodiad"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nodyn"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Maes diffiniwyd gan y defnyddiwr _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Maes diffiniwyd gan y defnyddiwr _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Maes diffiniwyd gan y defnyddiwr _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Maes diffiniwyd gan y defnyddiwr _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Maes diffiniwyd gan y defnyddiwr _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Enwau Colofnau"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Teipiwch enw ar gyfer y math newydd o ddata:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Cysylltu'r meysydd"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Cynnig"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Mae modd defnyddio Is-ffurflen i ddangos data manwl am y cofnod cyfredol yn y brif ffurflen. I wneud hyn, gallwch bennu pa golofnau yn y ffurflen sy'n cydweddu â cholofnau yn y brif ffurflen."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "label"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "label"
diff --git a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
index bb9a785945e..b906ca9e4b4 100644
--- a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-27 15:06+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Rhagor o Feysydd"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Tabiwyd"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Bar Grwpio"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/cy/sc/messages.po b/source/cy/sc/messages.po
index df88a56fd90..542e395bddc 100644
--- a/source/cy/sc/messages.po
+++ b/source/cy/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-27 15:08+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(mynediad cyfyngedig)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,12 +15775,12 @@ msgstr "Rheoli Fformatio Amodol"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Ffurflen Data"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Cau"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Cofnod Newydd"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Newydd"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Dileu"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Adfer"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Cofnod Blaenorol"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Cofnod _Nesaf"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Cau"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Ffrydiau Data Byw"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Rhowch URL y ddogfen ffynhonnell yn y system ffeil leol neu Ryngrwyd yma."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Pori..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Ystodau Cronfa Ddata:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Darparwr Data:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Llinyn Chwilio:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Ffynhonnell Llif"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Canlyniad i:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Colofnau"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rhesi"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Grwpiwyd yn ôl"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Cyfwng:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Paramedrau"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Cymorth"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Ffeil"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Pennu borderi'r celloedd hyn."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Cynyddu'r Mewnoliad"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Lleihau'r Mewnoliad"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Cartref"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Cartref"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Maes"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Mewnosod"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Mewnosod"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Cynllun"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Alinio Gwrthrych"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Cynllun"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Ystadegau"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Adolygu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Adolygu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Golwg"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Golwg"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "~Delwedd"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "~Lluniadu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Lluniadu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Gwrthrych"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Gwrthrych"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Cyfrwng"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Argraffu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Argraffu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "-Ffurflen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Offer"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Canlyniadau Chwilio"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Dalen"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Cell"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Cynnwys"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Symbolau amlinell"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Ffenestr"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Llinellau grid:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Lliw:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Dangos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Dangos ar gelloedd lliw"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Cuddio"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Toriad tudalen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Llinellau cymorth _wrth symud"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Cymhorthion Gweledol"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "G_wrthrychau/Delweddau:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Siartiau:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "G_wrthrychau lluniadu:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Dangos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Cuddio"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Dangos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Cuddio"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Dangos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Cuddio"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Gwrthrychau"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "_Cydweddu dalennau"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Chwyddo"
diff --git a/source/cy/scp2/source/ooo.po b/source/cy/scp2/source/ooo.po
index 2cfbe6eccfa..aca7bd68382 100644
--- a/source/cy/scp2/source/ooo.po
+++ b/source/cy/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-09 09:41+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@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==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554802919.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Agor Dogfen"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/cy/scp2/source/winexplorerext.po b/source/cy/scp2/source/winexplorerext.po
index 3897b37f42b..844e072849c 100644
--- a/source/cy/scp2/source/winexplorerext.po
+++ b/source/cy/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 19:24+0200\n"
-"Last-Translator: Rhoslyn <rprys@yahoo.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 07:08+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\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==2) ? 1 : 0;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369379294.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Mae'n galluogi Microsoft Windows Explorer i ddangos gwybodaeth am ddogfennau %PRODUCTNAME, megis rhagolwg lluniau bach."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/cy/sd/messages.po b/source/cy/sd/messages.po
index a81dbd6f764..c0c95cbbab1 100644
--- a/source/cy/sd/messages.po
+++ b/source/cy/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-09 09:44+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Cliciwch i agor dolen:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Enw Cynllun HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Ffeil"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Cymorth"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Ffeil"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Cartref"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Cartref"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Maes"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Mewnosod"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Mewnosod"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "T_udalen"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Tudalen"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Adolygu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Adolygu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Golwg"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Golwg"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "_Testun"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "_Testun"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabl"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabl"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Trosi"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "~Delwedd"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "~Lluniadu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Lluniadu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "~Gwrthrych"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Gwrthrych"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Cyfrwng"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "-Ffurflen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Offer"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Dangos Siapiau"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Ffeil"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Cymorth"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Ffeil"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Cartref"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Cartref"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Maes"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Mewnosod"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Mewnosod"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Sleid"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "S~leid"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Sioe Sleidiau"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Sioe Sleidiau"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Adolygu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Adolugu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Golwg"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Golwg"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabl"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabl"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Trosi"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "~Delwedd"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "~Lluniadu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Lluniadu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Gwrthrych"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Gwrthrych"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Cyfrwng"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Ffurflen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Offer"
diff --git a/source/cy/sfx2/messages.po b/source/cy/sfx2/messages.po
index 49535a450c7..748eb690e7e 100644
--- a/source/cy/sfx2/messages.po
+++ b/source/cy/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-09 10:55+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@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==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554807300.000000\n"
#: include/sfx2/strings.hrc:25
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Tynnu'r Priodwedd"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Nid yw'r gwerth rhoddwyd yn cyd-fynd a'r math a benodwyd.\n"
"Bydd y gwerth yn cael ei gadw fel testun."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Mae'r Arddull yn bodoli eisoes. Trosysgrifo?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Ailosod"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Mae'r enw'n cael ei ddefnyddio eisoes."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Nid yw'r Arddull yn bodoli."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Nid oes modd defnyddio'r Arddull fel yr Arddull sail;\n"
"gan y byddai'n arwain at gyfeiriad ailadroddus."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Mae'r enw'n bodoli fel Arddull rhagosodedig eisoes.\n"
"Dewiswch enw arall."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"hon. Os fyddwch yn dileu'r arddulliau hyn, bydd y testun yn dychwelyd\n"
"i'r arddull rhiant. Hoffech chi ddileu'r arddulliau hyn?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Arddulliau ar waith: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Dewisydd"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Cadarnhad cyfrinair gwallus"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Anfon"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Ffont"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Dangos rhagolygon"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Mewnosod Sylwadau'r Fersiwn"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(dim enw wedi ei osod)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Rhestr Arddulliau"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarchaidd"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Modd Fformat Llanw"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Arddull Newydd o'r Dewis"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Gweithredoedd arddulliau"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Diweddaru Arddull"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Ydych wir am diddymu'r recordio? Bydd unrhyw gamau wedi eu recordio hyd yma yn cael eu colli."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Diddymu Recordio"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Mae'r templedi'n cael eu cychwyn ar gyfer defnydd cyntaf."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Heb ganfod argraffydd rhagosodedig.\n"
"Dewiswch argraffydd a cheisiwch eto."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Methu cychwyn yr argraffydd.\n"
"Gwiriwch ffurfweddiad eich argraffydd."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Argraffydd yn brysur"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (darllen yn unig)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"A ddylai'r gosodiadau newydd gael eu cadw\n"
"yn y ddogfen bresennol?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"A ddylai'r gosodiadau newydd gael eu cadw\n"
"yn y ddogfen bresennol?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"A ddylai'r gosodiadau newydd gael eu cadw\n"
"yn y ddogfen bresennol?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Nid oes modd cau'r ddogfen gan fod gwaith\n"
"argraffu'n digwydd."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Gwiriwch osodiadau %PRODUCTNAME neu osodiadau eich rhaglen e-bost."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Cod gwall yw $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Gwall anfon e-bost"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Nid oes modd golygu'r ddogfen, efallai oherwydd hawl mynediad coll. Hoffech chi olygu copi o'r ddogfen?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Gallwch hefyd geisio anwybyddu'r clo ac agor y ffeil i'w golygu."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Agor ~Copi"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Agor"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (dogfen wedi ei thrwsio)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Nid yw'r ddogfen wedi ei ryddhau o'r gweinydd."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Cynorthwywch ni i wneud %PRODUCTNAME yn well byth!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Ymunwch"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Mae eich rhoddion yn cynnal ein cymuned byd eang."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Cyfrannu"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dogfen wedi ei hagor yn y modd darllen yn unig."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Mae'r PDF hwn ar agor yn y modd darllen yn unig er mwyn caniatau llofnodi'r ffeil gyfredol."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Label dosbarthiad y ddogfen yw %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Rhaid i'r ddogfen gael dosbarthiad cyn fod modd gludo'r clipfwrdd."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Mae gan y ddogfen lefel dosbarthiad is na'r clipfwrdd."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Lefel"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Diogelwch Gwladol:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Rheoli Allforio:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Gadael"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Golygu Dogfen"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Llofnodi Dogfen"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Mae gan y ddogfen hon lofnod annilys."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Roedd y llofnod y ddilys, ond mae'r ddogfen wedi ei newid"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Mae'r llofnod yn iawn, ond nid oedd modd dilysu'r dystysgrif."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Mae'r llofnod yn iawn, ond dim ond yn rhannol mae'r ddogfen wedi ei llofnodi."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Nid oedd modd dilysu'r dystysgrif a dim ond yn rhannol mae'r ddogfen wedi ei llofnodi."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Mae'r ddogfen wedi ei llofnodi'n ddigidol ac mae'r lofnod yn ddilys."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Dangos Llofnodion"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Cau'r Paen"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Doc"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Dad-ddocio"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Rhagor o Ddewis"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Cau'r Bar Ochr"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Gosodiadau'r Bar Ochr"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Cyfaddasu"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Adfer y Rhagosodiad"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Cau'r Bar Ochr"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Cwch Gwenyn"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Cromlin Las"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cynlluniau Glasbrint"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Glas Llachar"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Coch Clasurol"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Canolbwynt"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Aderyn y Goedwig"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Argraff"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Ysbrydoliaeth"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Goleuadau"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Gwyrdd Dwfn"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Glas y Nos"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Darlun o Natur"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pensil"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portffolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Cynnydd"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Machlud Haul"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Hynafol"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Llachar"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Ail-ddechrau"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Rhagosodiad"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Llythyr busnes modern sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Llythyr busnes modern serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cerdyn busnes gyda logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Tynnu"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Clirio Pob Un"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Hyd cyfrinair"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Mae'r cyfrinair rydych wedi ei gynnig yn achosi anawsterau rhyngweithio. Rhowch gyfrinair sy'n llai na 52 did neu hirach na 55 did."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Sylwadau'r fersiwn:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Enw"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Math"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Gwerth"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Math"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Iawn"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Na"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Ychwanegu _Priodwedd"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Enw"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Math"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Gwerth"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Lleoliad:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Math:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_Newid Cyfrinair"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Templed:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Priodweddau “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Cyffredinol "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Disgrifiad"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Priodweddau Cyfaddas"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Priodweddau CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Security"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Crëwyd y cynnyrch hwn gan %OOOVENDOR, ar sail OpenOffice.org, Hawlfraint 2000, 2011 Oracle a/neu ei gysylltiadau. Mae %OOOVENDOR yn cydnabod pob aelod cymunedol, gweler http://www.libreoffice.org/ am wybodaeth bellach."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/cy/shell/messages.po b/source/cy/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/cy/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/cy/starmath/messages.po b/source/cy/starmath/messages.po
index 9314ceac4ee..0e8eab5537d 100644
--- a/source/cy/starmath/messages.po
+++ b/source/cy/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Esiamplau"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Safonol"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Italig"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Trwm"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "du"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "glas"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "gwyrdd"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "coch"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "llwyd"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "leim"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marŵn"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "glas tywyll"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "gwyrdd olewydd"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "porffor"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "arian"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "gwyrddlas"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "melyn"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "cuddio"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "maint"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "ffont"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "chwith"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "canoli"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "de"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Gorchmynion"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fformiwla"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Cadw dogfen..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fformiwla %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Nod annisgwyl"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Tocyn annisgwyl"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Disgwyl '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Disgwyl '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Disgwyl '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Disgwyl ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Nid yw'r symbolau de a chwith yn cyd-fynd"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Yn disgwyl 'fixed', 'sans', or 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' yn cael ei ddilyn gan docyn annisgwyl"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Nid yw alinio dwbl yn cael ei ganiatáu"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Nid yw is/uwchsgriptiau yn cael eu caniatáu"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Disgwyl '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Angen lliw"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "disgwyl 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Cynnwys"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Teitl"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Testun ~fformiwla"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Borderi"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Maint"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Maint ~gwreiddiol"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "­Ffitio i'r ~dudalen"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Graddio"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elfennau"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/cy/svtools/messages.po b/source/cy/svtools/messages.po
index 026c679d884..9401539c416 100644
--- a/source/cy/svtools/messages.po
+++ b/source/cy/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-09 10:34+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554806051.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Dadwneud: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Ail-wneud: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "A~iladrodd: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Testun difformat"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Testun heb ei fformatio [TSV-Calc]"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Delwedd Didfap (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Meta ffeil Rhyngwyneb Dyfais Graffigol (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Fformatio testun cyfoethog (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Fformatio testun cyfoethog (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Fformat lluniadu %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Animeiddio/didfap Starview (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statws Gwybodaeth o Gysylltiad Mewnol Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Nod Tudalen Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Fformat gweinydd Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Fformat gwrthrych Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Gwrthrych rhaglennig"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Gwrthrych ategyn"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Gwrthrych StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Gwrthrych StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Gwrthrych StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Gwrthrych StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Gwrthrych StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Gwrthrych StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Gwrthrych StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Gwrthrych StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Gwrthrych StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Gwrthrych StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Gwrthrych StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Gwrthrych StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Gwrthrych StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Gwrthrych StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Gwrthrych StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Gwrthrych StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Gwrthrych StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Gwrthrych StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Gwrthrych StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Gwrthrych StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Gwrthrych StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Gwrthrych StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Gwrthrych StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Gwrthrych StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Gwrthrych Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Gwrthrych StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Gwrthrych dogfen Swyddfa"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Nodiadau gwybodaeth dogfen"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Dogfen sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Gwrthrych StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Gwrthrych graffig"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Gwrthrych Writer OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Gwrthrych Writer OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Prif Wrthrych/Dogfen OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Gwrthrych Lluniadu OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Gwrthrych Impress OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Gwrthrych Calc OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Gwrthtych Siart OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Gwrthrych Math Adroddiad OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metaffeil Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Gwrthrych ffynhonnell data"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabl ffynhonnell data"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Ymholiad SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Deialog OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Cysylltiad"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Fformat HTML heb sylwadau"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Methu mewnosod gwrthrych %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Methu mewnosod gwrthrych o ffeil %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Gwrthrychau eraill"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Ffynhonnell anhysbys"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Enw"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Maint"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Dyddiad newidiwyd"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Math"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Beitiau"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Rhes: %1, Colofn: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Math: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Ffolder"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Ffeil"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Maes Gwag"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alffaniwmerig"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Set nod"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Geiriadur"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trawiad"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Llyfr ffôn"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Seinegol (alffaniwmerig gyntaf)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Seinegol (alffaniwmerig olaf)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alffaniwmerig"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Geiriadur"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trawiad"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Seinegol (alffaniwmerig gyntaf, grwpio yn ôl sillaf)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Seinegol (alffaniwmerig gyntaf, grwpio yn ôl cytseiniaid)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Seinegol (alffaniwmerig olaf, grwpio yn ôl sillafau)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Seinegol (alffaniwmerig gyntaf, grwpio yn ôl cytseiniaid)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Heddiw"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Dim"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Ysgafn"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Italig Ysgafn"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Arferol"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Italig"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Trwm"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Italig Trwm"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Du"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Italig Du"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Llyfr"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Trwm Arosgo"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Cywasgedig"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Cywasgedig Trwm"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Italig Trwm Cywasgedig"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Arosgo Trwm Cywasgedig"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Italig Cywasgedig"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Arosgo Cywasgedig"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ysgafn Iawn"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Italig Ysgafn Iawn"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Arosgo"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Hanner Trwm"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Italig Hanner Trwm"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Bydd yr un ffont yn cael ei ddefnyddio yn eich argraffydd a'ch sgrin."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Dyma ffont yr argraffydd. Efallai bydd y ddelwedd ar y sgrin yn wahanol."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Bydd arddull y ffont yn cael ei efelychu neu bydd yr arddull ffont agosaf yn cael ei ddefnyddio."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Nid yw'r ffont wedi ei osod. Bydd yr agosaf yn cael ei ddefnyddio."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Pori..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Symud i Cartref"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Symud i'r Chwith"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Symud i'r Dde"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Symud i'r Diwedd"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Ychwanegu"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Mesurydd Llorweddol"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Mesurydd Fertigol"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Trothwy 1 did"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Diddrwyd 1 did"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Graddlwyd 4 did"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 did lliw"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Graddlwyd 8 did"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 did lliw"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Gwir liw 24 did"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Mae'r ddelwedd angen %1 KB o gof."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Mae'r ddelwedd angen tua %1 KB o gof, mae'r ffeil yn %2 KB o faint."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Maint ffeil yw %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "gwesteiwr"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "porth"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "CMIS arall"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Parod"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Oedi"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Disgwyl dileu"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Prysur"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Cychwyn"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Disgwyl"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Cynhesu"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Prosesu"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Argraffu"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "All-lein"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Gwall"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Gweinyddwr anhysbys"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Tagfa papur"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Dim digon o bapur"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Bwydo gyda llaw"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem papur"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O'n weithredol"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Bin allbwn yn llawn"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner yn isel"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Dim toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Dileu tudalen"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Defnyddio ymyrraeth os oes angen"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Dim digon o gof"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Clawr ar agor"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modd arbed ynni"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Argraffydd rhagosodedig"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dogfen"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Gorffen"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Nesaf >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<~Nôl"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Camau"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<dim>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Cwmni"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Adran"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Enw cyntaf"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Enw olaf"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Stryd"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Gwlad"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Cod Post/ZIP"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Tref/Dinas"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Teitl"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Safle"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Ffurflen Cyfeiriad"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Llythrennau Blaen"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Cyfarchion i gloi"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Ffôn Cartref"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Ffôn Gwaith"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Ffacs"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-bost"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nodyn"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Defnyddiwr 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Defnyddiwr 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Defnyddiwr 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Defnyddiwr 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Enw"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Sir/Talaith"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Ffôn Swyddfa"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Swnyn"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Symudol"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Ffôn Arall"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendr"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Gwahoddiad"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Mae %PRODUCTNAME angen Java runtime environment (JRE) i gyflawni'r dasg. Gosodwch JRE ac ailgychwyn %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Mae %PRODUCTNAME angen Java runtime environment (JRE) %BITNESS-bit i gyflawni'r dasg. Gosodwch JRE ac ailgychwyn %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "Mae %PRODUCTNAME angen Java Development Kit (JDK), Oracle ar Mac OS X 10.10 neu well er mwyn cyflawni'r dasg yma. Gosodwch y rhain ac ailgychwyn %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Mae ffurfweddiad %PRODUCTNAME wedi newid. O dan %PRODUCTNAME - Dewisiadau - %PRODUCTNAME - Uwch, dewiswch yr amgylchedd rhedeg Java rydych am i %PRODUCTNAME ei ddefnyddio."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Mae ffurfweddiad %PRODUCTNAME wedi newid. O dan Offer - Dewisiadau - %PRODUCTNAME - Uwch, dewiswch yr amgylchedd rhedeg Java rydych am i %PRODUCTNAME ei ddefnyddio."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Mae angen amgylchedd rhedeg Java (JRE) ar %PRODUCTNAME i gyflawni hyn. Mae'r JRE yma'n ddiffygiol. Dewiswch fersiwn arall neu osod JRE newydd a'i ddewis o dan %PRODUCTNAME - Dewisiadau - %PRODUCTNAME - Uwch."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Mae angen amgylchedd rhedeg Java (JRE) ar %PRODUCTNAME i gyflawni hyn. Mae'r JRE yma'n ddiffygiol. Dewiswch fersiwn arall neu osod JRE newydd a'i ddewis o dan Offer - Dewisiadau - %PRODUCTNAME - Uwch."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Mae angen JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Dewiswch JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE Diffygiol"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Cod ffynhonnell"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Ffeil nod tudalen"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Graffigau"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Ffeil ffurfweddiad"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Rhaglen"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Cronfa Ddata"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Ffeil system"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dogfen MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ffeil Cymorth"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Dogfen HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Ffeil archif"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Ffeil cofnod"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Cronfa Ddata StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Prif Ddogfen StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Delwedd StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Ffeil testun"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Cysylltiad"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Templed StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Dogfen MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Templed MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Ffeil swp"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Ffeil"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Ffolder"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Dogfen Testun"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Taenlen"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Cyflwyniad"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Lluniadu"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Dogfen HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Prif ddogfen"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fformiwla"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Cronfa Ddata"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Templed Taenlen OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Templed Lluniadu OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Templed Cyflwyniad OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Templed Dogfen Testun OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Disg lleol"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Gyrrwr disg"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Gyrrwr CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Cysylltiad rhwydwaith"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Dogfen MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Templed MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Sioe MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fformiwla OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Siart OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Lluniadu OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Taenlen OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Cyflwyniad OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Dogfen Testun OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Prif Ddogfen OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Dogfen MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Cronfa Ddata OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Lluniadu OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fformiwla OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Dogfen OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Cyflwyniad OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Taenlen OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Testun OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Templed Taenlen OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Templed Lluniadu OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Templed Cyflwyniad OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Templed Testun OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Estyniad %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Gwirydd Sillafu Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Cysylltnodwr Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Thesawrws MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Rhestr o Eiriau Wedi eu Hanwybyddu"
diff --git a/source/cy/svx/messages.po b/source/cy/svx/messages.po
index b595116fd4b..0e13c318ec7 100644
--- a/source/cy/svx/messages.po
+++ b/source/cy/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-27 15:08+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Chwith i'r dde (fertigol)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Pennu canran atred fertigol o'r canol ar gyfer arddull cysgodi'r graddiant. 50% yw canol y fertigol."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Golygydd Amlinell"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Gosod"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Man gwaith"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Dewis"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Petryal"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elips"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Pwyntiau Golygu"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Pwyntiau Symud"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Pwyntiau Mewnosod"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Pwyntiau Dileu"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AwtoAmlinell"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Dadwneud "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Ail-wneud"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Piped"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Goddefiad Lliw"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Troedyn"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Golygydd ImageMap"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Gosod"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Agor..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Cadw..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Cau"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Dewis"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Petryal"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elips"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Polygon Rhyddffurf"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Pwyntiau Golygu"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Pwyntiau Symud"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Pwyntiau Mewnosod"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Pwyntiau Dileu"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Dadwneud "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Ail-wneud"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Gweithredol"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Priodweddau..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Cyfeiriad:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Ffrâm:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Testun:"
diff --git a/source/cy/sw/messages.po b/source/cy/sw/messages.po
index 30b45eaae8b..69b6f4332b1 100644
--- a/source/cy/sw/messages.po
+++ b/source/cy/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-04-09 10:41+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Newid teitl gwrthrych $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Newid disgrifiad gwrthrych $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Cymorth"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Ffeil"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Cartref"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Cartref"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Mewnosod"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Mewnosod"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Cynllun"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Cynllun"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "C_yfeirnodau"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "~Cyfeiriadau"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Adolygu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Adolygu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Golwg"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Golwg"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabl"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabl"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "~Delwedd"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Delwedd"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "~Lluniadu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Lluniadu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Gwrthrych"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Gwrthrych"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Cyfrwng"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Cyfrwng"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Argraffu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Argraffu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "-Ffurflen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Ffurflen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Offer"
@@ -12160,152 +12160,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Ffeil"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Cartref"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Mewnosod"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Amlapio"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Cynllun"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "C_yfeirnodau"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Adolygu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Golwg"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "_Tabl"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Delwedd"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Lluniadu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Gwrthrych"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Cyfrwng"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Argraffu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Offer"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13372,8 +13372,8 @@ msgstr "Estyn gofod geiriau ar linellau gyda thoriad llinell llaw mewn paragraff
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Diogelwyd rhag"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Tabl Cynnwys, Mynegai neu Lyfryddiaeth"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Rhagolwg"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Rhagolwg"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Math"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Cofnodion"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Arddulliau"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Colofnau"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Cefndir"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Rhagolwg"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Lefel"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Math"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Golygu..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "­_Teitl:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Math:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Tabl Cynnwys"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Mynegai yn ôl yr Wyddor"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Tabl Ffigyrau"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Mynegai Tablau"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Defnyddiwr Diffiniedig"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tabl Gwrthrychau"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Llyfryddiaeth"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Diogelwyd rhag newidiadau â llaw"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Math a Theitl"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Ar gyfer:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Dogfen gyfan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Pennod"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Mesur i lefel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Creu Mynegai neu Dabl Cynnwys"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Amlinell"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Marciau mynegai"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tablau"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Fframiau ­_Testun"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Graffigau"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "UGwrthrychau OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "UDefnyddio lefel o'r bennod ffynhonnell"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Arddulliau _Eraill"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Arddulliau"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Neilltuo arddulliau..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Eglurynnau"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Enwau gwrthrych"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categori:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Dangos:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Cyfeiriadau"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categori a Rhif"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Testun Egluryn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Creu o"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Creu o'r Gwrthrychau Canlynol"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Bracedi:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Cofnod rhif"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[dim]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Fformatio'r Cofnodion"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Uno endidau yr unfath"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Uno endidau yr un fath gyda p neu _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Cyfuno gyda -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Llythyren fach neu FAWR"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Cofnodion AwtoBrifLythyren"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Allweddi fel cofnod ar wahân"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Ffeil _concordans"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Ffeil"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Dewisiadau"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Iaith:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Math o allwedd:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Trefnu"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Lefelau"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Arddulliau _Paragraff"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Rhagosodiad"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Golygu"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Aseiniad"
diff --git a/source/da/cui/messages.po b/source/da/cui/messages.po
index c2a8714c753..ad54f291d83 100644
--- a/source/da/cui/messages.po
+++ b/source/da/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-05 18:05+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-30 16:47+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1557079511.000000\n"
+"X-POOTLE-MTIME: 1559234858.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Indtast venligst en gyldig temaadresse eller et søgeudtryk."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "Mozilla Themes' API er ikke tilgænglig i øjeblikket"
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Sæt ingen kanter"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Sæt kun ydre kant"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Sæt ydre kant og vandrette linjer"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Sæt ydre kant og alle indre linjer"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Sæt ydre kant uden at ændre indre linjer"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Sæt kun diagonallinjer"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Sæt alle fire kanter"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Sæt kun venstre og højre kanter"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Sæt kun top- og bundkanter"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Sæt kun venstre kant"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Sæt top- og bundkant og alle indre linjer"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Sæt venstre og højre kant og alle indre linjer"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Ingen skygge"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Kast skygge nederst til højre"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Kast skygge øverst til højre"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Kast skygge nederst til venstre"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Kast skygge øverst til venstre"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Underskrevet af: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Alle filer"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Registrerede databaser"
@@ -1746,7 +1741,7 @@ msgstr "Registrerede databaser"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME kan åbne og gemme filer, der er lagres på fjernservere med CMIS."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1848,13 +1843,13 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:63
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
-msgstr ""
+msgstr "Vil du se de gyldige kommandolinjeparametre? Start soffice med --help eller -h eller -?"
#. local help missing
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr ""
+msgstr "Vil du håndtere præsentationen af hyperlinks i et regneark? Indsæt dem med HYPERLINK-funktionen."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
@@ -1866,19 +1861,19 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Du kan signere eksisterende PDF-filer og også verificere disse signaturer."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
-msgstr ""
+msgstr "Writer inkluderer LibreLogo: Et simpelt Logo-lignende programmeringsmiljø med Skildpaddevektorgrafik, DTP og grafisk design."
#. local help missing
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr ""
+msgstr "Du kan beskytte celler med Format > Celler > Beskyt. For at forhindre indsættelse, slettelse, omdøbning og flytning/kopiering af ark, brug Værktøjer > Beskyt ark"
#. local help missing
#: cui/inc/tipoftheday.hrc:69
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -1986,7 +1981,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:86
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
-msgstr ""
+msgstr "Rammer kan sammenkædes, så teksten kan flyde fra den ene til den anden ligesom i dtp-programmer."
#. local help missing
#: cui/inc/tipoftheday.hrc:88
@@ -2017,7 +2012,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Din donation støtter vores verdensomspændende fællesskab."
#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2047,7 +2042,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management ? Use a 3rd party extension."
-msgstr ""
+msgstr "Citat-håndtering? Brug en tredieparts udvidelse."
#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Om %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Bidragsydere"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Websted"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Lokalisering: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Sprog for brugergrænseflade: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Se i log: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME er en moderne og letanvendelig open source kontorpakke til tekstbehandling, regneark, præsentationer m.m."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 LibreOffice bidragsydere."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice var baseret på OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME er afledt fra LibreOffice, der blev baseret på OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Denne udgivelse blev leveret af %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Erstat"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "E_rstat"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Med:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Kun tekst"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Mindste ordlængde"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Egenskaber"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Ramme:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Navn:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternativ _tekst:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "Be_skrivelse:"
@@ -9019,80 +9179,80 @@ msgstr "Vis popup \"Ingen offline hjælp installeret\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hjælp"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Brug %PRODUCTNAME-dialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Åbn/Gem-dialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Brug %PRODUCTNAME-dialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Udskriftsdialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Udskrivning sætter status for \"Dokument ændret\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Fortolk som år mellem "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "og "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Tocifrede årstal"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Data om anvendelse indsamles og sendes til The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Hjælp med at forbedre %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Indlæs %PRODUCTNAME ved systemstart"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Aktiver Hurtigstart i systembakken"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Hurtigstart"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Præinstalleret tema"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Eget tema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Indlæs Firefox tema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Eller vælg fra de temaer, der er installeret via udvidelser:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox-temaer"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Sikkerhedsindstillinger"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Vælg Firefox-tema"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Søgeterm eller adresse"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ka_tegori:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstrakt"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Årsager"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moderne"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film og TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Helligdag"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musik"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natur"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Andet"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Sceneri"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Sæson"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Massiv"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Websteder"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Fremhævede"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,30 +12761,30 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
-msgstr ""
+msgstr "Link"
#: cui/uiconfig/ui/transparencytabpage.ui:77
msgctxt "transparencytabpage|RBT_TRANS_OFF"
diff --git a/source/da/dbaccess/messages.po b/source/da/dbaccess/messages.po
index 29811cdfc3e..7f09e3749eb 100644
--- a/source/da/dbaccess/messages.po
+++ b/source/da/dbaccess/messages.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: 2019-04-24 18:25+0200\n"
-"PO-Revision-Date: 2019-01-14 19:15+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2019-05-21 17:57+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1547493304.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558461453.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1597,7 +1597,7 @@ msgstr "Fejl under oprettelsen"
#: dbaccess/inc/strings.hrc:341
msgctxt "STR_UNEXPECTED_ERROR"
msgid "An error occurred. The operation could not be performed."
-msgstr ""
+msgstr "Der er sket en fejl. Handlingen kunne ikke udføres."
#: dbaccess/inc/strings.hrc:342
msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
diff --git a/source/da/extensions/messages.po b/source/da/extensions/messages.po
index cd98cb0a87d..9fbd0d55c85 100644
--- a/source/da/extensions/messages.po
+++ b/source/da/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-20 15:46+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\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: 1555775202.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Kolonnelayout for tabel \"%1\""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Kort navn"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Forfatter(e)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Udgiver"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Kapitel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Redaktør"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_År"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tite_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dresse"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Si_de(r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "_Udgave"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Bogtitel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Bind"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Publikationstype"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organisation"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_ution"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Universitet"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Ra_pporttype"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Måned"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Tidsskrift"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Tal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_rier"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Anmærkning"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Note"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Brugerfelt _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Brugerfelt _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Brugerfelt _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Brugerfelt _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Brugerfelt _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Kolonnenavne"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Skriv et navn på den nye datatype:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Kæd felter"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Foreslå"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Underformularer kan bruges til at vise detaljerede data om den aktuelle datapost i hovedformularen. For at gøre dette kan du angive, hvilke kolonner i underformularen, der passer til hvilke kolonner i hovedformularen."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiket"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiket"
diff --git a/source/da/helpcontent2/source/auxiliary.po b/source/da/helpcontent2/source/auxiliary.po
index a24964bf8d2..28b07d77fee 100644
--- a/source/da/helpcontent2/source/auxiliary.po
+++ b/source/da/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-20 16:03+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\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: 1555776204.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Generelle oplysninger"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Præsentationer og Tegninger (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Værktøjslinjer"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Tegninger (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menuer"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Værktøjslinjer"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objekter, billeder og bitmaps"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupper og lag"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Tekst i præsentationer og tegninger"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sbasic/guide.po b/source/da/helpcontent2/source/text/sbasic/guide.po
index 1d5be36c829..143cd994bf5 100644
--- a/source/da/helpcontent2/source/text/sbasic/guide.po
+++ b/source/da/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-05 16:53+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\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: 1557075214.000000\n"
#: access2base.xhp
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Sammenlign Access2Base med Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Åbning af en dialog med programkode"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>modul/dialog skift</bookmark_value><bookmark_value>dialoger;bruge programkode til at vise (eksempel)</bookmark_value><bookmark_value>eksempler; vise en dialog ved at bruge programkode</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sbasic/python.po b/source/da/helpcontent2/source/text/sbasic/python.po
index 18b2d30cccf..13c242c7165 100644
--- a/source/da/helpcontent2/source/text/sbasic/python.po
+++ b/source/da/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-05-05 17:53+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-23 08:09+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1557078828.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558598950.000000\n"
#: main0000.xhp
msgctxt ""
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: Åbning af en dialog"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,8 +93,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
-msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Åbning af en dialog i Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1054,7 +1054,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1071,7 +1071,7 @@ msgctxt ""
"N0387\n"
"help.text"
msgid "Events raised by dialogs, documents, forms or graphical controls can be linked to macros, which is referred to as event-driven programming. The most common method to relate events to macros are the <literal>Events</literal> tab in <menuitem>Tools – Customize</menuitem> menu and the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Create dialog\">Dialog Editor</link> Control properties pane from <menuitem>Tools - Macros – Organise Dialogs...</menuitem> menu."
-msgstr ""
+msgstr "Hændelser, der er iværksat af dialoger, dokumenter, formularer eller grafiske kontrolelementer kan linkes til makroer, hvilket kaldes hændelsesdrevet programmering. De mest almindelige måder at henvise hændelser til makroer er fanebladet <literal>Hændelser</literal> på menuen <menuitem>Funktioner -- Tilpas...</menuitem> og <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"Create dialog\">Dialogredigeringen</link>s kontrolpanel for egenskaber, som du finder under menuen <menuitem>Funktioner -- Makroer -- Administrer dialoger...</menuitem>."
#: python_listener.xhp
msgctxt ""
@@ -1119,7 +1119,7 @@ msgctxt ""
"N0405\n"
"help.text"
msgid "_MY_LABEL = 'Python listens..'"
-msgstr ""
+msgstr "_MY_LABEL = 'Python lytter...'"
#: python_listener.xhp
msgctxt ""
@@ -1127,7 +1127,7 @@ msgctxt ""
"N0417\n"
"help.text"
msgid "MsgBox(\"The user acknowledged the dialog.\")"
-msgstr ""
+msgstr "MsgBox(\"Brugeren har set og forstået beskeden.\")"
#: python_listener.xhp
msgctxt ""
@@ -1135,7 +1135,7 @@ msgctxt ""
"N0419\n"
"help.text"
msgid "MsgBox(\"The user canceled the dialog.\")"
-msgstr ""
+msgstr "MsgBox(\"Brugeren afviste beskeden.\")"
#: python_listener.xhp
msgctxt ""
@@ -1143,7 +1143,7 @@ msgctxt ""
"N0424\n"
"help.text"
msgid "\"\"\" Create a Dialog from its location \"\"\""
-msgstr ""
+msgstr "\"\"\" Opret en besked fra dens placering \"\"\""
#: python_listener.xhp
msgctxt ""
@@ -1151,7 +1151,7 @@ msgctxt ""
"N0437\n"
"help.text"
msgid "\"\"\" Listen to & count button clicks \"\"\""
-msgstr ""
+msgstr "\"\"\" Lyt efter og tal antallet af klik på knapper \"\"\""
#: python_listener.xhp
msgctxt ""
@@ -1159,7 +1159,7 @@ msgctxt ""
"N0448\n"
"help.text"
msgid "def disposing(self, evt: EventObject): # mandatory routine"
-msgstr ""
+msgstr "def disposing(self, evt: EventObject): # obligatorisk rutine"
#: python_listener.xhp
msgctxt ""
@@ -1167,7 +1167,7 @@ msgctxt ""
"N0457\n"
"help.text"
msgid "<emph>msgbox.py</emph> in <emph>{installation}/program/</emph> directory has some examples of button listeners."
-msgstr ""
+msgstr "<emph>msgbox.py</emph> i <emph>{installation}/program/</emph>-kataloget har nogle eksempler på knap-listeners."
#: python_listener.xhp
msgctxt ""
@@ -1183,7 +1183,7 @@ msgctxt ""
"N0459d\n"
"help.text"
msgid "Const MY_LABEL = \"Basic listens..\""
-msgstr ""
+msgstr "Const MY_LABEL = \"Basic lytter...\""
#: python_listener.xhp
msgctxt ""
@@ -1191,7 +1191,7 @@ msgctxt ""
"N0478\n"
"help.text"
msgid "Case rc.OK : MsgBox \"The user acknowledged the dialog.\",, \"Basic\""
-msgstr ""
+msgstr "Case rc.OK : MsgBox \"Brugeren har set og forstået beskeden.\",, \"Basic\""
#: python_listener.xhp
msgctxt ""
@@ -1199,7 +1199,7 @@ msgctxt ""
"N0479\n"
"help.text"
msgid "Case rc.CANCEL : MsgBox \"The user canceled the dialog.\",, \"Basic\""
-msgstr ""
+msgstr "Case rc.CANCEL : MsgBox \"Brugeren har afvist beskeden.\",, \"Basic\""
#: python_listener.xhp
msgctxt ""
@@ -1207,7 +1207,7 @@ msgctxt ""
"N0486\n"
"help.text"
msgid "''' Listen to & count button clicks '''"
-msgstr ""
+msgstr "''' Lyt efter og tæl antallet af klik på knapper '''"
#: python_listener.xhp
msgctxt ""
@@ -1215,7 +1215,7 @@ msgctxt ""
"N0496\n"
"help.text"
msgid "' your code goes here"
-msgstr ""
+msgstr "' din kode skrives her"
#: python_listener.xhp
msgctxt ""
@@ -1223,7 +1223,7 @@ msgctxt ""
"N0498\n"
"help.text"
msgid "Other Event Listeners"
-msgstr ""
+msgstr "Andre Hændelses-overvågere"
#: python_listener.xhp
msgctxt ""
@@ -1231,7 +1231,7 @@ msgctxt ""
"N0499\n"
"help.text"
msgid "Listeners are usually coded along with <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"dialog opening\">dialog opening</link>. Numerous listener approaches are possible such as event handlers for dialogs or event monitors for documents or forms."
-msgstr ""
+msgstr "Listeners kodes normalt sammen med <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"dialog opening\">åbning af en dialog</link>. Talrige tilgange til Listeners er mulige som for eksempel hændelses-håndteringer til dialoger eller hændelsesovervågere til dokumenter eller formularer."
#: python_listener.xhp
msgctxt ""
@@ -1247,7 +1247,7 @@ msgctxt ""
"N0506\n"
"help.text"
msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">Events mapping to objects</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/05060700.xhp\" name=\"Events mapping to objects\">hændelseskortlægning til objekter</link>"
#: python_listener.xhp
msgctxt ""
@@ -1255,7 +1255,7 @@ msgctxt ""
"N0509\n"
"help.text"
msgid "See also <link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Document events</link>, <link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Form events</link>."
-msgstr ""
+msgstr "Se også<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Document events\">Dokumenthændelser</link> og <link href=\"text/shared/02/01170202.xhp\" name=\"Form events\">Formularhændelser</link>"
#: python_locations.xhp
msgctxt ""
@@ -1470,8 +1470,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerNavn</bookmark_value> <bookmark_value>Platform;OSNavn</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1494,8 +1494,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "%PRODUCTNAME Basic mangler indlejret Mac OS X-genkendelse, mens egenskaben ComputerNavn udelukkende er tilgængelig i Windows. Basic kalder Python-makroer for at omgå den slags begrænsninger."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr "Egenskaben ComputerName er udelukkende tilgængelig for Windows. Basic-kald til Python-makroer er med til at overvinde begrænsningerne i %PRODUCTNAME Basic."
#: python_platform.xhp
msgctxt ""
@@ -1516,6 +1516,30 @@ msgstr "Brug af et Basci-klassemodul:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr "%PRODUCTNAME Basic mangler medfødt genkendelse af MacOS X. Genkendelse af platform er mulig ved hjælp af %PRODUCTNAME Application Programming Interface (API)."
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr "' Returner platformnavne som \"MAC\". \"UNIX\" og \"WIN\"."
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr "' Udledt fra funktionen \"Tools.UCB..ShowHelperDialogue\""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
@@ -1719,7 +1743,7 @@ msgctxt ""
"N0241\n"
"help.text"
msgid "%PRODUCTNAME Basic libraries contain classes, routines and variables, Python modules contain classes, functions and variables. Common pieces of reusable Python or UNO features must be stored in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"My macros\">My macros</link> within <literal><User Profile>/Scripts/python/pythonpath</literal>. Python libraries help organize modules in order to prevent module name collisions. Import <literal>uno.py</literal> inside shared modules."
-msgstr ""
+msgstr "%PRODUCTNAME Basic-biblioteker indeholder klasser, rutiner og variabler; Python-moduler indeholder klasser, funktioner og variabler. Almindelige stykker af genbrugelige Python eller UNO-funktioner skal lagres i <link href=\"text/sbasic/python/python_locations.xhp\" name=\"external\">Mine makroer</link> i <literal><User Profile>Scripts/python/pythonpath</literal>. Python-biblioteker hjælper til med at organisere modulerne for at udgå sammenfaldende modulnavne. Du skal importere <literal>uno.py</literal> til delte moduler."
#: python_programming.xhp
msgctxt ""
@@ -1727,7 +1751,7 @@ msgctxt ""
"N0242\n"
"help.text"
msgid "Genuine BASIC UNO facilities can be inferred using <literal>uno.py</literal> module. Use <link href=\"text/sbasic/python/python_shell.xhp\" name=\"Python interactive shell\">Python interactive shell</link> to get a complete module description using <literal>dir()</literal> and <literal>help()</literal> Python commands."
-msgstr ""
+msgstr "Ægte BASIC UNO-faciliteter kan udledes med <literal>uno.py</literal>-modulet. Brug <link href=\"text/sbasic/python/python_shell.xhp\" name=\"Python interactive shell\">Pythons interaktive skal</link> til at få en fuldstændig modulbeskrivelse med Python-kommandoerne <literal>dir()</literal> og <literal>help()</literal>."
#: python_programming.xhp
msgctxt ""
@@ -1863,7 +1887,7 @@ msgctxt ""
"N0284\n"
"help.text"
msgid "See <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Opening a Dialog\">Opening a Dialog</link>"
-msgstr ""
+msgstr "Se <link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"Opening a Dialog\">Åbning af en dialog</link>"
#: python_programming.xhp
msgctxt ""
@@ -1871,7 +1895,7 @@ msgctxt ""
"N0286\n"
"help.text"
msgid "See <link href=\"text/sbasic/python/python_listener.xhp\" name=\"Creating a Listener\">Creating a Listener</link>"
-msgstr ""
+msgstr "Se <link href=\"text/sbasic/python/python_listener.xhp\" name=\"Creating a Listener\">Oprettelse af en listener</link>"
#: python_programming.xhp
msgctxt ""
@@ -1895,7 +1919,7 @@ msgctxt ""
"N0298\n"
"help.text"
msgid "Similarly to %PRODUCTNAME Basic that supports browsing and dynamic loading of libraries, Python libraries can be explored and imported on demand. For more information on library containers, visit <link href=\"https://api.libreoffice.org/\" name=\"API Documentation site\">%PRODUCTNAME Application Programming Interface</link> (API) or download <link href=\"https://www.libreoffice.org/download/download/\" name=\"SDK download page\">%PRODUCTNAME Software Development Kit</link> (SDK)."
-msgstr ""
+msgstr "I lighed med %PRODUCTNAME Basic, som understøtter bladring og dynamisk indlæsning af biblioteker, kan Python-biblioteker undersøges og importeres som ønsket. Se flere oplysninger om biblioteksdialoger på <link href=\"https://api.libreoffice.org/\" name=\"external\">%PRODUCTNAME Application Programming Interface</link> (API = brænseflade til applikationsprogrammering) eller download <link href=\"https://www.libreoffice.org/download/download/\" name=\"external\">%PRODUCTNAME Software Development Kit</link> (SDK = Udviklingssæt til software)."
#: python_programming.xhp
msgctxt ""
@@ -1935,7 +1959,7 @@ msgctxt ""
"N0307\n"
"help.text"
msgid "doc = XSCRIPTCONTEXT.getDocument() # current document"
-msgstr ""
+msgstr "doc = XSCRIPTCONTEXT.getDocument() # aktuelt dokument"
#: python_programming.xhp
msgctxt ""
@@ -1951,7 +1975,7 @@ msgctxt ""
"N0311\n"
"help.text"
msgid "sys.path.insert(0, url) # doclib takes precedence"
-msgstr ""
+msgstr "sys.path.insert(0, url) # doclib har forrang"
#: python_programming.xhp
msgctxt ""
@@ -1959,7 +1983,7 @@ msgctxt ""
"N0312\n"
"help.text"
msgid "if module_name: # import if requested"
-msgstr ""
+msgstr "if module_name: # importer om nødvendigt"
#: python_programming.xhp
msgctxt ""
@@ -1967,7 +1991,7 @@ msgctxt ""
"N0316\n"
"help.text"
msgid "ui = load_library(\"my_gui\",'screen_io') # add <lib> path + import <module>"
-msgstr ""
+msgstr "ui = load_library(\"my_gui\",'screen_io') # tilføj <lib> sti + import <module>"
#: python_programming.xhp
msgctxt ""
@@ -1975,7 +1999,7 @@ msgctxt ""
"N0321\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"UNO objects page\">Basic UNO Objects, Functions and Services</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/uno_objects.xhp\" name=\"external\">Basic UNO-objekter, -funktioner og -tjenester (på engelsk)</link>"
#: python_screen.xhp
msgctxt ""
@@ -1991,7 +2015,7 @@ msgctxt ""
"N0433\n"
"help.text"
msgid "<bookmark_value>Python;InputBox</bookmark_value> <bookmark_value>Python;MsgBox</bookmark_value> <bookmark_value>Python;Print</bookmark_value> <bookmark_value>API;MasterScriptProvider</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;InputBox</bookmark_value> <bookmark_value>Python;MsgBox</bookmark_value> <bookmark_value>Python;Udskriv</bookmark_value> <bookmark_value>API;MasterScriptProvider</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
#: python_screen.xhp
msgctxt ""
@@ -2023,7 +2047,7 @@ msgctxt ""
"N0437\n"
"help.text"
msgid "%PRODUCTNAME Basic proposes <literal>InputBox()</literal>, <literal>Msgbox()</literal> and <literal>Print()</literal> screen I/O functions. Python alternatives exist relying either on %PRODUCTNAME API Abstract Windowing Toolkit, either on Python to Basic function calls. The latter proposes a syntax that is intentionally close to that of Basic, and uses a Python module next to a Basic module. The API Scripting Framework is used to perform Basic, BeanShell, JavaScript and Python inter-languages function calls."
-msgstr ""
+msgstr "%PRODUCTNAME Basic foreslår skærm I/O-funktionerne <literal>InputBox()</literal>, <literal>Msgbox()</literal> og <literal>Print()</literal>. Der findes Python alternativer, der er afhængige af enten %PRODUCTNAME API Abstract Windowing Toolkit eller Python-til-Basic funktionskald. Det sidste anvender en syntaks, som med vilje ligger nær på Basics og som bruger et Python-modul, som ligner et Basic-modul. API-scripting-rammen er vant til at udføre Basic-, Beanshell-, JavaScript- og Python-mellemsproglige funktionskald."
#: python_screen.xhp
msgctxt ""
@@ -2055,7 +2079,7 @@ msgctxt ""
"N0450\n"
"help.text"
msgid "Copy <literal>screen_io</literal> Python module in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">My macros</link> within <UserProfile>/Scripts/python/pythonpath,"
-msgstr ""
+msgstr "Kopier Python-modulet <literal>scren_io</literal> til <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">Mine makroer</link> i <UserProfile>/Scripts/python/pythonpath"
#: python_screen.xhp
msgctxt ""
@@ -2063,7 +2087,7 @@ msgctxt ""
"N0451\n"
"help.text"
msgid "Copy <literal>uiScripts</literal> Basic module in <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">My macros</link> Standard Basic library,"
-msgstr ""
+msgstr "Kopier <literal>uiScripts</literal> Basic-modulet til <link href=\"text/sbasic/python/python_locations.xhp\" name=\"User macros\">Mine makroer</link> Standard Basic-biblioteket,"
#: python_screen.xhp
msgctxt ""
@@ -2079,7 +2103,7 @@ msgctxt ""
"N0453\n"
"help.text"
msgid "<literal>screen_io</literal> Python module"
-msgstr ""
+msgstr "<literal>screen_io</literal> Python-modul"
#: python_screen.xhp
msgctxt ""
@@ -2087,7 +2111,7 @@ msgctxt ""
"N0467\n"
"help.text"
msgid "\"\"\" Displays a dialog box containing a message and returns a value.\"\"\""
-msgstr ""
+msgstr "\"\"\" Viser et dialogfelt med en besked og returnerer en værdi.\"\""
#: python_screen.xhp
msgctxt ""
@@ -2095,7 +2119,7 @@ msgctxt ""
"N0473\n"
"help.text"
msgid "\"\"\" Displays a prompt in a dialog box at which the user can enter text.\"\"\""
-msgstr ""
+msgstr "\"\"\" Viser et prompt i et dialogfelt, hvor brugeren kan indtaste tekst.\"\"\""
#: python_screen.xhp
msgctxt ""
@@ -2103,7 +2127,7 @@ msgctxt ""
"N0479\n"
"help.text"
msgid "\"\"\"Outputs the specified strings or numeric expressions in a dialog box.\"\"\""
-msgstr ""
+msgstr "\"\"\"Udskriver de angivne strenge eller numeriske udtryk i et dialogfelt.\"\"\""
#: python_screen.xhp
msgctxt ""
@@ -2111,7 +2135,7 @@ msgctxt ""
"N0492\n"
"help.text"
msgid "<literal>uiScripts</literal> Basic module"
-msgstr ""
+msgstr "<literal>uiScripts</literal> Basic-modul"
#: python_session.xhp
msgctxt ""
@@ -2135,7 +2159,7 @@ msgctxt ""
"N0340\n"
"help.text"
msgid "<variable id=\"pythonsession\"><link href=\"text/sbasic/python/python_session.xhp\" name=\"session01\">Getting Session Information</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonsession\"><link href=\"text/sbasic/python/python_session.xhp\" name=\"session01\">Hentning af sessionsinformation</link></variable>"
#: python_session.xhp
msgctxt ""
@@ -2143,7 +2167,7 @@ msgctxt ""
"N0341\n"
"help.text"
msgid "Computing %PRODUCTNAME user profile and shared modules system file paths can be performed with Python or with Basic languages. BeanShell, Java, JavaScript and Python scripts locations can be derived from this information."
-msgstr ""
+msgstr "Behanding af %PRODUCTNAME-brugerprofil og -systemstier til delte moduler kan udføres i Python- eller i Basic-sprog. BeanShell-, Java-, JavaScript- ogPython-scripts placeringer kan udledes fra disse oplysninger."
#: python_session.xhp
msgctxt ""
@@ -2167,7 +2191,7 @@ msgctxt ""
"N0346\n"
"help.text"
msgid "<literal>>>> print(Session.SharedPythonScripts()) # static method</literal>"
-msgstr ""
+msgstr "<literal>>>> print(Session.SharedPythonScripts()) # statisk metode</literal>"
#: python_session.xhp
msgctxt ""
@@ -2175,7 +2199,7 @@ msgctxt ""
"N0347\n"
"help.text"
msgid "<literal>>>> print(Session().UserName) # object property</literal>"
-msgstr ""
+msgstr "<literal>>>> print(Session().UserName) # objektegenskab</literal>"
#: python_session.xhp
msgctxt ""
@@ -2183,7 +2207,7 @@ msgctxt ""
"N0348\n"
"help.text"
msgid "<literal>>>> input(Session().UserProfile) # object property</literal>"
-msgstr ""
+msgstr "<literal>>>> input(Session().UserProfile) # objektegenskab</literal>"
#: python_session.xhp
msgctxt ""
@@ -2199,7 +2223,7 @@ msgctxt ""
"N0354\n"
"help.text"
msgid "ui.MsgBox(Session.Share(),title='Installation Share') # static method"
-msgstr ""
+msgstr "ui.MsgBox(Session.Share(),title='Installation Share') # statisk metode"
#: python_session.xhp
msgctxt ""
@@ -2207,7 +2231,7 @@ msgctxt ""
"N0355\n"
"help.text"
msgid "ui.Print(Session.SharedPythonScripts()) # static method"
-msgstr ""
+msgstr "ui.Print(Session.SharedPythonScripts()) # statisk metode"
#: python_session.xhp
msgctxt ""
@@ -2215,7 +2239,7 @@ msgctxt ""
"N0356\n"
"help.text"
msgid "s = Session() # instance creation"
-msgstr ""
+msgstr "s = Session() # opret session"
#: python_session.xhp
msgctxt ""
@@ -2223,7 +2247,7 @@ msgctxt ""
"N0357\n"
"help.text"
msgid "ui.MsgBox(s.UserName,title='Hello') # object property"
-msgstr ""
+msgstr "ui.MsgBox(s.UserName,title='Hello') # objektegenskab"
#: python_session.xhp
msgctxt ""
@@ -2231,7 +2255,7 @@ msgctxt ""
"N0358\n"
"help.text"
msgid "ui.Print(s.UserPythonScripts) # object property"
-msgstr ""
+msgstr "ui.Print(s.UserPythonScripts) # objektegenskab"
#: python_session.xhp
msgctxt ""
@@ -2239,7 +2263,7 @@ msgctxt ""
"N0360\n"
"help.text"
msgid "g_exportedScripts = (demo_session,) # public macros"
-msgstr ""
+msgstr "g_exportedScripts = (demo_session,) # fællesmakroer"
#: python_session.xhp
msgctxt ""
@@ -2255,7 +2279,7 @@ msgctxt ""
"N0364\n"
"help.text"
msgid "Print \"Shared scripts location:\", s.SharedScripts"
-msgstr ""
+msgstr "Print \"Placering af delte scripts\", s.SharedScripts"
#: python_session.xhp
msgctxt ""
@@ -2263,7 +2287,7 @@ msgctxt ""
"N0365\n"
"help.text"
msgid "MsgBox s.UserName,,\"Hello\""
-msgstr ""
+msgstr "MsgBox s.UserName,,\"Hallo\""
#: python_session.xhp
msgctxt ""
@@ -2295,7 +2319,7 @@ msgctxt ""
"N0372\n"
"help.text"
msgid "' PathSubstitution service exhibits information to infer"
-msgstr ""
+msgstr "' PathSubstitution-tjenesten viser information som udledes"
#: python_session.xhp
msgctxt ""
@@ -2303,7 +2327,7 @@ msgctxt ""
"N0373\n"
"help.text"
msgid "' <UserProfile|Share>/Scripts/python locations from"
-msgstr ""
+msgstr "' <UserProfile|Share>/Scripts/python locations from"
#: python_session.xhp
msgctxt ""
@@ -2319,7 +2343,7 @@ msgctxt ""
"N0401\n"
"help.text"
msgid "@property # alternative to '$(username)' variable"
-msgstr ""
+msgstr "@property # alternativ til '$(username)'-variabel"
#: python_session.xhp
msgctxt ""
@@ -2343,7 +2367,7 @@ msgctxt ""
"N0417\n"
"help.text"
msgid "Private _ps As Object ' Private member"
-msgstr ""
+msgstr "Private _ps As Object ' Privat medlem"
#: python_session.xhp
msgctxt ""
@@ -2351,7 +2375,7 @@ msgctxt ""
"N0422\n"
"help.text"
msgid "End Sub ' Constructor"
-msgstr ""
+msgstr "End Sub ' Constructor"
#: python_session.xhp
msgctxt ""
@@ -2359,7 +2383,7 @@ msgctxt ""
"N0426\n"
"help.text"
msgid "End Sub ' Destructor"
-msgstr ""
+msgstr "End Sub ' Destructor"
#: python_session.xhp
msgctxt ""
@@ -2367,7 +2391,7 @@ msgctxt ""
"N0439\n"
"help.text"
msgid "Public Property Get UserName() As String ' User account name"
-msgstr ""
+msgstr "Public Property Get UserName() As String ' Brugerkonto-navn"
#: python_session.xhp
msgctxt ""
@@ -2375,7 +2399,7 @@ msgctxt ""
"N0443\n"
"help.text"
msgid "Public Property Get UserProfile() As String ' User profile system path"
-msgstr ""
+msgstr "Public Property Get UserProfile() As String ' Brugerprofil-systemsti"
#: python_session.xhp
msgctxt ""
@@ -2383,7 +2407,7 @@ msgctxt ""
"N0447\n"
"help.text"
msgid "Public Property Get UserScripts() As String ' User scripts system path"
-msgstr ""
+msgstr "Public Property Get UserScripts() As String ' Brugerscripts systemsti"
#: python_session.xhp
msgctxt ""
@@ -2391,7 +2415,7 @@ msgctxt ""
"N0451\n"
"help.text"
msgid "Public Property Get UserPythonScripts() As String ' User Python scripts system path"
-msgstr ""
+msgstr "Public Property Get UserPythonScripts() As String ' Bruger Python-scripts systemsti"
#: python_shell.xhp
msgctxt ""
@@ -2423,7 +2447,7 @@ msgctxt ""
"N0119\n"
"help.text"
msgid "The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as %PRODUCTNAME Python modules documentation can be obtained from the terminal."
-msgstr ""
+msgstr "Pythons interaktive konsol, også kendt som Python-fortolkeren eller Pythons skal, giver programmører en genvej til at udføre kommandoer, lave forsøg og afprøve kode uden at oprette en fil. %PRODUCTNAME's dokumentation til Python-moduler kan skaffes fra terminalen."
#: python_shell.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sbasic/shared.po b/source/da/helpcontent2/source/text/sbasic/shared.po
index b64b939dc97..519b299b8cd 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared.po
+++ b/source/da/helpcontent2/source/text/sbasic/shared.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-02-22 07:18+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-23 08:09+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1550819936.000000\n"
+"X-POOTLE-MTIME: 1558598980.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id051920171018124524\n"
"help.text"
msgid "This function or constant is enabled with the statement <link href=\"text/sbasic/shared/03103350.xhp\" name=\"optionvbasupport\"><literal>Option VBASupport 1</literal></link> placed before the executable program code in a module."
-msgstr ""
+msgstr "Denne funktion eller konstant aktiveres med udtrykket <link href=\"text/sbasic/shared/03103350.xhp\" name=\"optionvbasupport\"><literal>Option VBASupport 1</literal></link> placeret foran den eksekverbare kode i et modul."
#: 00000003.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "This statement must be added before the executable program code in a module."
-msgstr ""
+msgstr "Dette udtryk skal tilføjes før den eksekverbare programkode i et modul."
#: 00000003.xhp
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"par_id7906125\n"
"help.text"
msgid "' (or raises error for Option Explicit)"
-msgstr ""
+msgstr "' (eller markerer fejl ved Option Explicit)"
#: 01020300.xhp
msgctxt ""
@@ -6542,7 +6542,7 @@ msgctxt ""
"hd_id3156280\n"
"help.text"
msgid "<variable id=\"BasicScreenIO\"><link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link></variable>"
-msgstr ""
+msgstr "<variable id=\"BasicScreenIO\"><link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Skærm I/O funktioner</link></variable>"
#: 03010000.xhp
msgctxt ""
@@ -15110,7 +15110,7 @@ msgctxt ""
"bm_id051720170831387233\n"
"help.text"
msgid "<bookmark_value>Basic constants</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Basic-konstanter</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15134,7 +15134,7 @@ msgctxt ""
"bm_id871554200620243\n"
"help.text"
msgid "<bookmark_value>Boolean Basic constants</bookmark_value><bookmark_value>Basic constant;False</bookmark_value><bookmark_value>Basic constant;True</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Boolsken Basic-konstanter</bookmark_value><bookmark_value>Basic-konstant;Falsk</bookmark_value><bookmark_value>Basic-konstant;Sand</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15174,7 +15174,7 @@ msgctxt ""
"bm_id131554200364170\n"
"help.text"
msgid "<bookmark_value>Basic Mathematical constants</bookmark_value><bookmark_value>Pi;Basic constant</bookmark_value><bookmark_value>Basic constant;Pi</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Basic matematiske konstanter</bookmark_value><bookmark_value>Pi;Basic-konstant</bookmark_value><bookmark_value>Basic-konstant;Pi</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15214,7 +15214,7 @@ msgctxt ""
"bm_id261554201061695\n"
"help.text"
msgid "<bookmark_value>Basic Object constants</bookmark_value><bookmark_value>Empty;Basic constant</bookmark_value><bookmark_value>Null;Basic constant</bookmark_value><bookmark_value>Nothing;Basic constant</bookmark_value><bookmark_value>Basic constant;Nothing</bookmark_value><bookmark_value>Basic constant;Null</bookmark_value><bookmark_value>Basic constant;Empty</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Basic objektkonstanter</bookmark_value><bookmark_value>tom;Basic-konstant</bookmark_value><bookmark_value>Nul;Basic-konstant</bookmark_value><bookmark_value>Intet;Basic-konstant</bookmark_value><bookmark_value>Basic-konstant;Intet</bookmark_value><bookmark_value>Basic-konstant;Nul</bookmark_value><bookmark_value>Basic-konstant;Tom</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -15278,7 +15278,7 @@ msgctxt ""
"bm_id101554201127393\n"
"help.text"
msgid "<bookmark_value>Visual Basic constants</bookmark_value><bookmark_value>VBA Exclusive constants</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Visual Basic-konstanter</bookmark_value><bookmark_value>VBA-eksklusive konstanter</bookmark_value>"
#: 03040000.xhp
msgctxt ""
@@ -17422,7 +17422,7 @@ msgctxt ""
"par_id3159252\n"
"help.text"
msgid "Pi is here the fixed circle constant with the rounded value 3.14159. Pi is a <link href=\"text/sbasic/shared/03040000.xhp#mathconstants\" name=\"pi\">Basic mathematical constant</link>."
-msgstr ""
+msgstr "Pi er her den faste cirkelkonstant med den afrundede værdi 3,14159. Pi er en <link href=\"text/sbasic/shared/03040000.xhp#mathconstants\" name=\"pi\">Basic matematisk konstant</link>."
#: 03080101.xhp
msgctxt ""
@@ -22022,7 +22022,7 @@ msgctxt ""
"hd_id3154347\n"
"help.text"
msgid "<variable id=\"remstatement\"><link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement\">Rem Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"remstatement\"><link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement\">Rem udtyk</link></variable>"
#: 03090407.xhp
msgctxt ""
@@ -26054,7 +26054,7 @@ msgctxt ""
"hd_id3155805\n"
"help.text"
msgid "<variable id=\"optionbasestatement\"><link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement\">Option Base Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"optionbasestatement\"><link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement\">Option Base-udtryk</link></variable>"
#: 03103200.xhp
msgctxt ""
@@ -26094,7 +26094,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<variable id=\"explicitstatement\"><link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement\">Option Explicit Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"explicitstatement\"><link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement\">Option Explicit-udtryk</link></variable>"
#: 03103300.xhp
msgctxt ""
@@ -26134,7 +26134,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<variable id=\"vbasupportstatement\"><link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport Statement\">Option VBASupport Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"vbasupportstatement\"><link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport Statement\">Option VBASupport-udtryk</link></variable>"
#: 03103350.xhp
msgctxt ""
@@ -26158,7 +26158,7 @@ msgctxt ""
"par_id941552915528262\n"
"help.text"
msgid "When VBA support is enabled, %PRODUCTNAME Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, %PRODUCTNAME Basic functions may accept arguments and return values different of their VBA counterparts."
-msgstr ""
+msgstr "Når VBA-understøttelse er aktiveret, er %PRODUCTNAME Basic-funktioners argumenter og returværdier de samme som deres modsvarende VBA-funktioners. Når understøttelsen er deaktiveret, kan %PRODUCTNAME Basic-funktioner acceptere argumenter og returnere værdier, der er forskellige fra deres VBA-modparter."
#: 03103350.xhp
msgctxt ""
@@ -28022,7 +28022,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "<emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value."
-msgstr ""
+msgstr "<emph>Udtryk:</emph> en numerisk variabel, som repræsenterer en gyldig 8 bit ASCII-værdi (0-255) eller en 16 bit Unicode-værdi."
#: 03120102.xhp
msgctxt ""
@@ -28030,7 +28030,7 @@ msgctxt ""
"par_id991552913928635\n"
"help.text"
msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expression</emph> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
-msgstr ""
+msgstr "Når VBA-kompabilitetstilstand er aktiveret (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), er <emph>Udtryk</emph>udelukkende et numerisk udtryk, som repræsenterer en gyldig 8-bit ASCII-værdi (0-255)."
#: 03120102.xhp
msgctxt ""
@@ -28046,7 +28046,7 @@ msgctxt ""
"par_id111552916434071\n"
"help.text"
msgid "<embedvar href=\"text/sbasic/shared/00000003.xhp#err6\"/>, when VBA compatibility mode is enabled and expression is greater than 255."
-msgstr ""
+msgstr "<embedvar href=\"text/sbasic/shared/00000003.xhp#err6\"/>, når VBA-kompabilitettilstand er aktiveret og udtrykket er større end 255."
#: 03120102.xhp
msgctxt ""
@@ -31510,7 +31510,7 @@ msgctxt ""
"par_id251546102545124\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil statement\">WaitUntil statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil statement\">WaitUntil (kommando)</link>"
#: 03130610.xhp
msgctxt ""
@@ -31518,7 +31518,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "WaitUntil Statement"
-msgstr ""
+msgstr "WaitUntil (kommando)"
#: 03130610.xhp
msgctxt ""
@@ -31526,7 +31526,7 @@ msgctxt ""
"bm_id3154136\n"
"help.text"
msgid "<bookmark_value>WaitUntil statement</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>WaitUntil (kommando)</bookmark_value>"
#: 03130610.xhp
msgctxt ""
@@ -31534,7 +31534,7 @@ msgctxt ""
"hd_id3154136\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil Statement\">WaitUntil Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03130610.xhp\" name=\"WaitUntil Statement\">WaitUntil (kommando)</link>"
#: 03130610.xhp
msgctxt ""
@@ -31550,7 +31550,7 @@ msgctxt ""
"par_id3150669\n"
"help.text"
msgid "WaitUntil Time"
-msgstr ""
+msgstr "WaitUntil Time"
#: 03130610.xhp
msgctxt ""
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Hjælp</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sbasic/shared/03.po b/source/da/helpcontent2/source/text/sbasic/shared/03.po
index f42f894fb37..1eab9ddf684 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/da/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-22 07:19+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\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: 1550819961.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Funktioner og subrutiner til modulkontrol."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/da/helpcontent2/source/text/scalc/01.po b/source/da/helpcontent2/source/text/scalc/01.po
index 34289bd7077..5b886c98533 100644
--- a/source/da/helpcontent2/source/text/scalc/01.po
+++ b/source/da/helpcontent2/source/text/scalc/01.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-02-26 21:11+0000\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
+"PO-Revision-Date: 2019-05-24 07:38+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1551215502.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558683514.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -17966,7 +17966,7 @@ msgctxt ""
"par_id3153884\n"
"help.text"
msgid "<emph>Array</emph> is the reference, which is to comprise at least as many columns as the number passed in Index argument."
-msgstr ""
+msgstr "<emph>MATRIX</emph> er den henvisning, som skal omfatte mindst så mange kolonner som det tal, der blev angivet i INDEX-argumentet."
#: 04060109.xhp
msgctxt ""
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Find den fil, der indeholder de data, som du vil indsætte.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40977,12 +40977,13 @@ msgid "URL of external data source."
msgstr "URL til ekstern datakilde."
#: 04090000.xhp
+#, fuzzy
msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Indsæt den URL eller det filnavn, som indeholder de data, som du vil insætte, og tryk så på Enter.</ahelp> Først da bliver URL'en kaldt fra netværket eller filsystemet."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Indtast den URL eller det filnavn, som indeholder de data, du vil indsætte, og tryk så på Enter</ahelp>. Du kan også klikke på <emph>?@?@?@?</emph>-knappen for at markere filnavnet i den fildialog, der åbnes, Først da bliver URL'en krævet af netværket eller filsystemet."
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41006,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Marker tabellen eller dataområdet, som du vil indsætte.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46294,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specificerer det celleområde, som du vil konsolidere med de celleområder, der er listet i feltet <emph>Konsolideringsområder</emph>. Marker et celleområde i et ark, og klik så på <emph>Adder</emph>. Du kan også vælge navnet på en foruddefineret celle fra listen med <emph>Kildedataområde</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/scalc/05.po b/source/da/helpcontent2/source/text/scalc/05.po
index cafd7362e3c..fe9040e0d8d 100644
--- a/source/da/helpcontent2/source/text/scalc/05.po
+++ b/source/da/helpcontent2/source/text/scalc/05.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-10-01 16:50+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2019-05-24 07:44+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1538412646.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558683872.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_id601549825744677\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 02140000.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/schart/00.po b/source/da/helpcontent2/source/text/schart/00.po
index 58f5fb8ce87..5117d32f9ab 100644
--- a/source/da/helpcontent2/source/text/schart/00.po
+++ b/source/da/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-25 15:26+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@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: 1551108385.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">I dialogen Diagramtype for et linjediagram eller XY-diagram, som viser linjer, kan du markere afkrydsningsfeltet Udjævn kurver og derefter klikke på knappen Egenskaber.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">I dialogen Diagramtype for et linjediagram eller XY-diagram, som viser linjer, kan du markere afkrydsningsfeltet Trinvise linjer og derefter klikke på knappen Egenskaber.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/da/helpcontent2/source/text/sdraw.po b/source/da/helpcontent2/source/text/sdraw.po
index 6ebd05eaa03..37ca1ad5316 100644
--- a/source/da/helpcontent2/source/text/sdraw.po
+++ b/source/da/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-06 10:21+0000\n"
+"PO-Revision-Date: 2019-05-24 07:54+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557138093.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558684493.000000\n"
#: main0000.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
-msgstr ""
+msgstr "Denne menu giver dig mulighed for at indsætte elementer, såsom grafik og hjælpelinjer, i Draw-dokumenter."
#: main_insert.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Lag\">Lag</link>"
#: main_insert.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id3150749\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
#: main_insert.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id0302200904020595\n"
"help.text"
msgid "Inserts a chart."
-msgstr ""
+msgstr "Indsætter et diagram."
#: main_insert.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"hd_id3148699\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Imagemap\">Imagemap</link>"
#: main_tools.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sdraw/00.po b/source/da/helpcontent2/source/text/sdraw/00.po
index b325232a1d8..fb1c6ba65c8 100644
--- a/source/da/helpcontent2/source/text/sdraw/00.po
+++ b/source/da/helpcontent2/source/text/sdraw/00.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 19:02+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-24 07:57+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494356523.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558684663.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id1001556823044677\n"
"help.text"
msgid "On the <emph>Insert</emph> bar, click"
-msgstr ""
+msgstr "På værktøjslinjen <emph>Indsæt</emph> klik"
#: page_menu.xhp
msgctxt ""
@@ -102,4 +102,4 @@ msgctxt ""
"par_id831556823072396\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Ny side"
diff --git a/source/da/helpcontent2/source/text/sdraw/01.po b/source/da/helpcontent2/source/text/sdraw/01.po
index aeee98f7143..b8ad8163f44 100644
--- a/source/da/helpcontent2/source/text/sdraw/01.po
+++ b/source/da/helpcontent2/source/text/sdraw/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 19:02+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-17 21:17+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494356524.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558127855.000000\n"
#: new_page.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Ny side"
#: new_page.xhp
msgctxt ""
@@ -70,4 +70,4 @@ msgctxt ""
"par_id691556822054550\n"
"help.text"
msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "For at ændre baggrunden på alle siderne i den aktive fil, vælger du en baggrund, klikker på <emph>OK</emph> og klikker på <emph>Ja</emph> i dialogen <emph>Sideindstillinger</emph>."
diff --git a/source/da/helpcontent2/source/text/shared/00.po b/source/da/helpcontent2/source/text/shared/00.po
index dbafbb2eac8..fa7043cb125 100644
--- a/source/da/helpcontent2/source/text/shared/00.po
+++ b/source/da/helpcontent2/source/text/shared/00.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-05-06 13:29+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-23 08:10+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1557149377.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558599042.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id3149651\n"
"help.text"
msgid "<ahelp hid=\".\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Nulstiller ændringer på det aktuelle faneblad til dem, der var gældende, da denne dialog blev åbnet. Du bliver ikke bedt om at bekræfte, når du lukker dialogen.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Vælg <switchinline select=\"sys\"><caseinline
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline> <emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- $[officename] - Personalisering</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
@@ -11614,7 +11606,7 @@ msgctxt ""
"par_id3150290\n"
"help.text"
msgid "Choose <emph>Shape - Flip - Vertically</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Vælg <emph>Form - Spejlvend - Lodret</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -11638,7 +11630,7 @@ msgctxt ""
"par_id3153369\n"
"help.text"
msgid "Choose <emph>Shape - Flip - Horizontally</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Vælg <emph>Form - Spejlvend - Vandret</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -11670,7 +11662,7 @@ msgctxt ""
"par_id3147318\n"
"help.text"
msgid "Choose <emph>Shape - Distribution</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Vælg <emph>Form - Fordeling</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -12078,7 +12070,7 @@ msgctxt ""
"par_id3148744\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "På værktøjslinjen <emph>Standard</emph>, klik på"
#: edit_menu.xhp
msgctxt ""
@@ -12086,7 +12078,7 @@ msgctxt ""
"par_id3145173\n"
"help.text"
msgid "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Ikon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12094,7 +12086,7 @@ msgctxt ""
"par_id3154153\n"
"help.text"
msgid "Cut"
-msgstr ""
+msgstr "Klip"
#: edit_menu.xhp
msgctxt ""
@@ -12102,7 +12094,7 @@ msgctxt ""
"par_id3150742\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>."
-msgstr ""
+msgstr "Vælg <emph>Rediger - Kopier</emph>."
#: edit_menu.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/01.po b/source/da/helpcontent2/source/text/shared/01.po
index 48aa46fd514..0174b2a8550 100644
--- a/source/da/helpcontent2/source/text/shared/01.po
+++ b/source/da/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-07 17:49+0000\n"
"Last-Translator: Jørgen Madsen <jfma@mailme.dk>\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: 1557251382.000000\n"
#: 01010000.xhp
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/da/helpcontent2/source/text/shared/02.po b/source/da/helpcontent2/source/text/shared/02.po
index d35bcdfd730..3cd282bf10c 100644
--- a/source/da/helpcontent2/source/text/shared/02.po
+++ b/source/da/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-25 19:46+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@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: 1556221567.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Angiver om en tekstmarkering af et kontrolelement forbliver markeret, når fokus ikke længere er på kontrolelementet.</ahelp> Hvis du sætter <emph>Skjul markering</emph> til \"Nej\", forbliver den markerede tekst markeret, når fokus ikke længere er på kontrolelementet, som indeholder teksten."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/guide.po b/source/da/helpcontent2/source/text/shared/guide.po
index 7710015093b..8a150b6270a 100644
--- a/source/da/helpcontent2/source/text/shared/guide.po
+++ b/source/da/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-27 11:52+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-19 11:19+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1556365951.000000\n"
+"X-POOTLE-MTIME: 1558264742.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3094,15 +3094,7 @@ msgctxt ""
"par_writer0\n"
"help.text"
msgid "AbiWord Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
+msgstr "AbiWord-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3115,26 +3107,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
+msgstr "BroadBand eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3147,26 +3123,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
+msgstr "Epub-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3174,15 +3134,7 @@ msgctxt ""
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
+msgstr "FictionBook 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,26 +3155,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
+msgstr "Hangul WP 97"
#: convertfilters.xhp
msgctxt ""
@@ -3238,7 +3166,7 @@ msgctxt ""
"par_writer27\n"
"help.text"
msgid "Help content"
-msgstr ""
+msgstr "Indhold i hjælp"
#: convertfilters.xhp
msgctxt ""
@@ -3246,7 +3174,7 @@ msgctxt ""
"par_writer28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -3254,7 +3182,7 @@ msgctxt ""
"par_writer30\n"
"help.text"
msgid "Legacy Mac Text Document"
-msgstr ""
+msgstr "Ældre Mac-tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3262,7 +3190,7 @@ msgctxt ""
"par_writer31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -3270,7 +3198,7 @@ msgctxt ""
"par_writer33\n"
"help.text"
msgid "Legacy StarOffice Text Document"
-msgstr ""
+msgstr "Ældre StarOffice tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3278,7 +3206,7 @@ msgctxt ""
"par_writer34\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,26 +3227,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
+msgstr "MacWrite-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3334,7 +3238,7 @@ msgctxt ""
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
-msgstr ""
+msgstr "Mariner Write Mac Classic v1.6 - v3.5"
#: convertfilters.xhp
msgctxt ""
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,26 +3267,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft WinWord 1/2/5"
#: convertfilters.xhp
msgctxt ""
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,18 +3291,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
-msgstr ""
+msgstr "Microsoft Word til DOS"
#: convertfilters.xhp
msgctxt ""
@@ -3446,7 +3302,7 @@ msgctxt ""
"par_writer67\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -3454,15 +3310,7 @@ msgctxt ""
"par_writer69\n"
"help.text"
msgid "Microsoft Word for Mac (v1 - v5)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word til Mac (v1 - v5)"
#: convertfilters.xhp
msgctxt ""
@@ -3470,15 +3318,7 @@ msgctxt ""
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3491,26 +3331,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
+msgstr "Microsoft Write"
#: convertfilters.xhp
msgctxt ""
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,26 +3363,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0-tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3582,15 +3374,7 @@ msgctxt ""
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0-tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3598,15 +3382,7 @@ msgctxt ""
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0-tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3614,15 +3390,7 @@ msgctxt ""
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3630,15 +3398,7 @@ msgctxt ""
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3646,15 +3406,7 @@ msgctxt ""
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3662,15 +3414,7 @@ msgctxt ""
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
+msgstr "Palm-tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3678,15 +3422,7 @@ msgctxt ""
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
+msgstr "PalmDoc eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3694,15 +3430,7 @@ msgctxt ""
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
+msgstr "Plucker eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3715,26 +3443,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
+msgstr "T602-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3795,26 +3507,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007–2019-skabelon"
#: convertfilters.xhp
msgctxt ""
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,26 +3539,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
+msgstr "WordPerfect-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3886,7 +3550,7 @@ msgctxt ""
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
-msgstr ""
+msgstr "WriteNow-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,26 +3571,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
+msgstr "Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3942,15 +3582,7 @@ msgctxt ""
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
+msgstr "Writer 8-hoveddokument"
#: convertfilters.xhp
msgctxt ""
@@ -3958,15 +3590,7 @@ msgctxt ""
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
+msgstr "Writer 8-hoveddokumentskabelon"
#: convertfilters.xhp
msgctxt ""
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -3998,7 +3614,7 @@ msgctxt ""
"par_writer172\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4011,26 +3627,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
+msgstr "Writer/Web 8-skabelon"
#: convertfilters.xhp
msgctxt ""
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,26 +3675,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
+msgstr "Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -4118,15 +3686,7 @@ msgctxt ""
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
+msgstr "Calc 8-skabelon"
#: convertfilters.xhp
msgctxt ""
@@ -4134,15 +3694,7 @@ msgctxt ""
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisResolve-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4174,7 +3718,7 @@ msgctxt ""
"par_calc22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4187,26 +3731,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Excel 2007–2019-skabelon"
#: convertfilters.xhp
msgctxt ""
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,26 +3755,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
+msgstr "Gnumeric-regneark"
#: convertfilters.xhp
msgctxt ""
@@ -4294,7 +3798,7 @@ msgctxt ""
"par_calc45\n"
"help.text"
msgid "Legacy Mac Database"
-msgstr ""
+msgstr "Ældre Mac-database"
#: convertfilters.xhp
msgctxt ""
@@ -4302,7 +3806,7 @@ msgctxt ""
"par_calc46\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4310,7 +3814,7 @@ msgctxt ""
"par_calc48\n"
"help.text"
msgid "Legacy Mac Spreadsheet"
-msgstr ""
+msgstr "Ældre Mac-regneark"
#: convertfilters.xhp
msgctxt ""
@@ -4318,7 +3822,7 @@ msgctxt ""
"par_calc49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4334,7 +3838,7 @@ msgctxt ""
"par_calc52\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4366,7 +3862,7 @@ msgctxt ""
"par_calc58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4430,7 +3902,7 @@ msgctxt ""
"par_calc70\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4438,15 +3910,7 @@ msgctxt ""
"par_calc72\n"
"help.text"
msgid "Microsoft Excel 2007-2016 VBA XML"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
+msgstr "Microsoft Excel 2007-2016 VBA XML"
#: convertfilters.xhp
msgctxt ""
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,18 +3939,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: convertfilters.xhp
msgctxt ""
@@ -4510,7 +3950,7 @@ msgctxt ""
"par_calc85\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4518,7 +3958,7 @@ msgctxt ""
"par_calc87\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Microsoft Works-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -4526,7 +3966,7 @@ msgctxt ""
"par_calc88\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,26 +4003,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4614,7 +4014,7 @@ msgctxt ""
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
-msgstr ""
+msgstr "Quattro Pro 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4622,7 +4022,7 @@ msgctxt ""
"par_calc106\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4630,7 +4030,7 @@ msgctxt ""
"par_calc108\n"
"help.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "QuattroPro-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -4638,7 +4038,7 @@ msgctxt ""
"par_calc109\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4718,7 +4110,7 @@ msgctxt ""
"hd_000impress\n"
"help.text"
msgid "Filters for IMPRESS"
-msgstr ""
+msgstr "Filtre til IMPRESS"
#: convertfilters.xhp
msgctxt ""
@@ -4726,15 +4118,7 @@ msgctxt ""
"par_impress0\n"
"help.text"
msgid "Apple Keynote"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
+msgstr "Apple Keynote"
#: convertfilters.xhp
msgctxt ""
@@ -4747,26 +4131,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4779,26 +4147,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
+msgstr "Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4806,15 +4158,7 @@ msgctxt ""
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
+msgstr "Impress 8-skabelon"
#: convertfilters.xhp
msgctxt ""
@@ -4830,7 +4174,7 @@ msgctxt ""
"par_impress19\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4846,7 +4190,7 @@ msgctxt ""
"par_impress22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4862,7 +4206,7 @@ msgctxt ""
"par_impress25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -4870,15 +4214,7 @@ msgctxt ""
"par_impress27\n"
"help.text"
msgid "Office Open XML Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "Office Open XML præsentation"
#: convertfilters.xhp
msgctxt ""
@@ -4891,26 +4227,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "Office Open XML-præsentationsskabelon"
#: convertfilters.xhp
msgctxt ""
@@ -4918,15 +4238,7 @@ msgctxt ""
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
+msgstr "OpenDocument-præsentation (Flad XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4939,26 +4251,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
+msgstr "OpenOffice.org 1.0-præsentation"
#: convertfilters.xhp
msgctxt ""
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,26 +4283,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "PowerPoint 2007–2019-skabelon"
#: convertfilters.xhp
msgctxt ""
@@ -5030,15 +4294,7 @@ msgctxt ""
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
+msgstr "PowerPoint 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5102,7 +4334,7 @@ msgctxt ""
"hd_000draw\n"
"help.text"
msgid "Filters for DRAW"
-msgstr ""
+msgstr "Filtre til DRAW"
#: convertfilters.xhp
msgctxt ""
@@ -5110,15 +4342,7 @@ msgctxt ""
"par_draw0\n"
"help.text"
msgid "Adobe PageMaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
+msgstr "Adobe PageMaker"
#: convertfilters.xhp
msgctxt ""
@@ -5126,15 +4350,7 @@ msgctxt ""
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
+msgstr "Adobe/Macromedia Freehand"
#: convertfilters.xhp
msgctxt ""
@@ -5147,26 +4363,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
+msgstr "Corel Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,26 +4387,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -5222,15 +4398,7 @@ msgctxt ""
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
+msgstr "Draw 8-skabelon"
#: convertfilters.xhp
msgctxt ""
@@ -5238,7 +4406,7 @@ msgctxt ""
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
-msgstr ""
+msgstr "Ældre Mac-bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5246,7 +4414,7 @@ msgctxt ""
"par_draw25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -5254,7 +4422,7 @@ msgctxt ""
"par_draw27\n"
"help.text"
msgid "Legacy Mac Drawing"
-msgstr ""
+msgstr "Ældre Mac-tegning"
#: convertfilters.xhp
msgctxt ""
@@ -5262,7 +4430,7 @@ msgctxt ""
"par_draw28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -5270,7 +4438,7 @@ msgctxt ""
"par_draw30\n"
"help.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Ældre StarOffice tegning"
#: convertfilters.xhp
msgctxt ""
@@ -5278,7 +4446,7 @@ msgctxt ""
"par_draw31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,26 +4467,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
+msgstr "OpenDocument tegning (Flad XML)"
#: convertfilters.xhp
msgctxt ""
@@ -5339,26 +4483,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -5366,7 +4494,7 @@ msgctxt ""
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
-msgstr ""
+msgstr "QuarkXPress"
#: convertfilters.xhp
msgctxt ""
@@ -5374,7 +4502,7 @@ msgctxt ""
"par_draw49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -5387,18 +4515,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5406,7 +4526,7 @@ msgctxt ""
"par_draw55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -5430,15 +4550,7 @@ msgctxt ""
"par_math0\n"
"help.text"
msgid "Math 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
+msgstr "Math 8"
#: convertfilters.xhp
msgctxt ""
@@ -5446,15 +4558,7 @@ msgctxt ""
"par_math3\n"
"help.text"
msgid "MathML 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
+msgstr "MathML 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -5462,7 +4566,7 @@ msgctxt ""
"par_math6\n"
"help.text"
msgid "MathType3.x"
-msgstr ""
+msgstr "MathType3.x"
#: convertfilters.xhp
msgctxt ""
@@ -5470,7 +4574,7 @@ msgctxt ""
"par_math7\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -5478,15 +4582,7 @@ msgctxt ""
"par_math9\n"
"help.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
+msgstr "OpenOffice.org 1.0-formel"
#: convertfilters.xhp
msgctxt ""
@@ -5494,15 +4590,7 @@ msgctxt ""
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -5526,15 +4614,7 @@ msgctxt ""
"par_base0\n"
"help.text"
msgid "OpenDocument Database"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
+msgstr "OpenDocument-database"
#: convertfilters.xhp
msgctxt ""
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,26 +4659,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
+msgstr "DXF - AutoCAD-udvekslingsformat"
#: convertfilters.xhp
msgctxt ""
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,18 +4715,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5734,7 +4734,7 @@ msgctxt ""
"par_graphicfilter33\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5750,15 +4750,7 @@ msgctxt ""
"par_graphicfilter36\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5766,31 +4758,16 @@ msgctxt ""
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
+#, fuzzy
msgctxt ""
"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5803,26 +4780,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET - OS/2-metafil"
#: convertfilters.xhp
msgctxt ""
@@ -5835,14 +4796,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5854,7 +4807,7 @@ msgctxt ""
"par_graphicfilter55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -5870,7 +4823,7 @@ msgctxt ""
"par_graphicfilter58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Ingen"
#: convertfilters.xhp
msgctxt ""
@@ -5883,26 +4836,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM - Portable bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5915,14 +4852,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4860,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,26 +4868,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -5974,15 +4879,7 @@ msgctxt ""
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -5990,15 +4887,7 @@ msgctxt ""
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
+msgstr "PCX - Zsoft Paintbrush"
#: convertfilters.xhp
msgctxt ""
@@ -6006,15 +4895,7 @@ msgctxt ""
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -6022,15 +4903,7 @@ msgctxt ""
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -6043,14 +4916,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4924,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4932,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,26 +4940,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -6118,15 +4951,7 @@ msgctxt ""
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -6134,15 +4959,7 @@ msgctxt ""
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
+msgstr "PSD - Adobe Photoshop"
#: convertfilters.xhp
msgctxt ""
@@ -6150,15 +4967,7 @@ msgctxt ""
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -6166,15 +4975,7 @@ msgctxt ""
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS - Sun Raster-billede"
#: convertfilters.xhp
msgctxt ""
@@ -6187,14 +4988,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4996,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5004,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5012,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5020,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5028,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5036,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,26 +5044,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
+msgstr "TGA - Truevision Targa"
#: convertfilters.xhp
msgctxt ""
@@ -6331,14 +5060,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5068,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5076,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5084,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5092,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5100,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
@@ -9630,7 +8303,7 @@ msgctxt ""
"par_id3204443\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\">English Wiki page on digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\">Engelsk Wiki side om digitale signaturer</link>"
#: digitalsign_send.xhp
msgctxt ""
@@ -9822,7 +8495,7 @@ msgctxt ""
"par_id210820160859353525\n"
"help.text"
msgid "Choose<menuitem> File – Open Remote</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Filer – Åbn ekstern</menuitem>"
#: doc_open.xhp
msgctxt ""
@@ -15350,7 +14023,7 @@ msgctxt ""
"par_id2897427\n"
"help.text"
msgid "In the next page, click the <emph>Get It</emph> icon to download the dictionary extension. Note the folder name to which your browser downloads the file. Download additional dictionaries as you like."
-msgstr ""
+msgstr "Klik på ikonet <emph>Get It</emph> på den næste side for at hente ordbogsudvidelsen. Notér navnet på den folder, din browser gemmer filen i. Du kan hente flere ordbøger, hvis du vil."
#: language_select.xhp
msgctxt ""
@@ -15414,7 +14087,7 @@ msgctxt ""
"par_id3806878\n"
"help.text"
msgid "Click <emph>OK</emph> and restart the %PRODUCTNAME software."
-msgstr ""
+msgstr "Klik på <emph>OK</emph> og genstart %PRODUCTNAME-softwaren."
#: language_select.xhp
msgctxt ""
@@ -15486,7 +14159,7 @@ msgctxt ""
"par_id2216559\n"
"help.text"
msgid "Open your web browser and enter <link href=\"https://www.libreoffice.org/download/\"><emph>https://www.libreoffice.org/download/</emph></link>."
-msgstr ""
+msgstr "Åbn din webbrowser og tast <link href=\"https://www.libreoffice.org/download/\"><emph>https://www.libreoffice.org/download/</emph></link>"
#: language_select.xhp
msgctxt ""
@@ -15518,7 +14191,7 @@ msgctxt ""
"par_id221655a\n"
"help.text"
msgid "Open your web browser and enter <link href=\"https://www.libreoffice.org/download/\"><emph>https://www.libreoffice.org/download/</emph></link>."
-msgstr ""
+msgstr "Åbn din webbrowser og tast <link href=\"https://www.libreoffice.org/download/\"><emph>https://www.libreoffice.org/download/</emph></link>."
#: language_select.xhp
msgctxt ""
@@ -17854,7 +16527,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "OpenPGP"
-msgstr ""
+msgstr "OpenPGP"
#: openpgp.xhp
msgctxt ""
@@ -17870,7 +16543,7 @@ msgctxt ""
"hd_id131543693200115\n"
"help.text"
msgid "<link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp\">Encrypting Documents with OpenPGP</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp\">Kryptering af dokumenter med OpenPGP</link>"
#: openpgp.xhp
msgctxt ""
@@ -17886,7 +16559,7 @@ msgctxt ""
"par_id551543694091730\n"
"help.text"
msgid "Choose menu <menuitem>File - Save as</menuitem>, select <widget>Encrypt with GPG key</widget>, Click <widget>Save</widget>."
-msgstr ""
+msgstr "Vælg menuen <menuitem>Filer - Gem som</menuitem>, marker <widget>Krypter med GPG-nøgle</widget> og klik på <widget>Gem</widget>."
#: openpgp.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/optionen.po b/source/da/helpcontent2/source/text/shared/optionen.po
index 9e9dae6a184..99448cf3b8a 100644
--- a/source/da/helpcontent2/source/text/shared/optionen.po
+++ b/source/da/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-28 06:33+0000\n"
"Last-Translator: David Lamhauge <davidlamhauge@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: 1556433221.000000\n"
#: 01000000.xhp
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "for mere information om OpenCL, besøg <link href=\"https://www.khronos.org/opencl/\">OpenCL -websiden</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalisering"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>temaer;indstillingsvalg</bookmark_value> <bookmark_value>indstillingsvalg;temaer</bookmark_value> <bookmark_value>personalisering;Mozilla Firefox Temaer</bookmark_value> <bookmark_value>personas;personalisering</bookmark_value> <bookmark_value>personalisering;personas</bookmark_value> <bookmark_value>Mozilla Firefox Temaer;personalisering</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalisering</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Du kan personalisere dit %PRODUCTNAME med de samme temaer, der fås til Mozilla Firefox. Menulinjen samt værktøjslinjerne, der fastgjort øverst og nederst i vinduet, vil vise det valgte tema i baggrunden."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Mozilla Firefox temaer er tilgængelige på Mozillas hjemmeside på følgende web-adresse: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Ethvert Firefox-kompatibelt tema vil fungere sammen med %PRODUCTNAME. Ethvert tema vil imidlertid ikke give visuelt gode resultater -- hvis der foregår for meget i billedet, kan det forstyrre læseligheden af ikoner og menuerne."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Firefox-temaer:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Følgende indstillinger er tilgængelige:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Normalt udseende, brug ikke temaer"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Værktøjslinjernes baggrund arver baggrundsindstillinger fra dit skrivebordsmiljø.</ahelp> Dette er standardn indstillingen i %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Præinstalleret tema"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Vælg denne mulighed for at bruge et af de forudinstallerede temaer.</ahelp>. Ud over standardmulighederne har din systemadministrator måske tilføjet et brugertilpasset tema under installationen af %PRODUCTNAME. Denne mulighed vil vise det."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Eget tema"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Vælg denne indstilling for at åbne dialogen “Vælg Firefox tema” 0g vælg din egen.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Vælg Firefox tema dialogboks"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Denne dialogboks lader dig installere et bestemt tema, eller giver dig et glimt af andre spændende temaer fra Mozilla Firefox tema-hjemmeside."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Søge"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Find et søgeord for at lede efter temaer fra Mozilla's lager af tilføjelser, eller indsæt en temaadresse for at hente et bestemt tema direkte.</ahelp> For at finde adressen bruger du din browser til navigere til temaets webside og kopierer den URL, der vises på adresselinjen. Indsæt den derefter i dialogens søgefelt. Klik på <item type=\"menuitem\">Søg</item> eller tryk på <item type=\"keycode\">Enter</item> for at downloade og indsætte det i %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Gennemse temaer efter kategori"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Viser et tilfældigt udvalg af temaer baseret på kategorierne vist på knapperne.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Klik på en af de fem knapper for at vise et tilfældigt udvalg på ni temaer i billedområdet fra den kategori, knappen viser."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "For at vælge et af de viste temaer, klik på billedet og tryk <item type=\"menuitem\">OK</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/da/helpcontent2/source/text/simpress/01.po b/source/da/helpcontent2/source/text/simpress/01.po
index deb30b01f01..ad55395064f 100644
--- a/source/da/helpcontent2/source/text/simpress/01.po
+++ b/source/da/helpcontent2/source/text/simpress/01.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-06 22:08+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-19 23:41+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1557180532.000000\n"
+"X-POOTLE-MTIME: 1558309288.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"bm_id3159155\n"
"help.text"
msgid "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>indsætte; dias</bookmark_value><bookmark_value>dias; indsætte</bookmark_value>"
#: new_slide.xhp
msgctxt ""
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/da/helpcontent2/source/text/swriter/guide.po b/source/da/helpcontent2/source/text/swriter/guide.po
index 53f9bb59124..c7576dd1fa6 100644
--- a/source/da/helpcontent2/source/text/swriter/guide.po
+++ b/source/da/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-12-01 20:04+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "På <emph>Standardlinjen</emph> skal du klikke på ikonet <emph>Navigator</emph><image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Ikon</alt></image> for at åbne <emph>Navigatoren</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "Klik i <emph>Navigatoren</emph> på ikonet <emph>Indholdsvisning</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Ikon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Klik på en overskrift i listen i <emph>Navigator</emph>, og klik så på ikonet <emph>Kapitel op</emph><image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Ikon</alt></image>eller <emph>Kapitel ned</emph> ikon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Ikon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Klik på ikonet <emph>Niveau op</emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Ikon</alt></image> eller <emph>Niveau ned</emph> ikon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Ikon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Klik på ikonet <emph>Viste overskriftsniveauer</emph> ikon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Ikon</alt></image>, og vælg så et tal fra listen."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po b/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
index 46c1a3cba62..c51cdfc9cee 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/da/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-20 15:50+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-24 15:37+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1555775413.000000\n"
+"X-POOTLE-MTIME: 1558712242.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -4172,7 +4172,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 1"
-msgstr ""
+msgstr "Accent 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4181,7 +4181,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 1 Cell Style"
-msgstr ""
+msgstr "Celletypografi Accent 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4199,7 +4199,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 2"
-msgstr ""
+msgstr "Accent 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4208,7 +4208,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 2 Cell Style"
-msgstr ""
+msgstr "Celletypografi Accent 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4226,7 +4226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 3"
-msgstr ""
+msgstr "Accent 3"
#: CalcCommands.xcu
msgctxt ""
@@ -4235,7 +4235,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 3 Cell Style"
-msgstr ""
+msgstr "Celletypografi Accent 3"
#: CalcCommands.xcu
msgctxt ""
@@ -4253,7 +4253,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 1"
-msgstr ""
+msgstr "Overskrift 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 1 Cell Style"
-msgstr ""
+msgstr "Celletypografi Overskrift 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4280,7 +4280,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 2"
-msgstr ""
+msgstr "Overskrift 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4289,7 +4289,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 2 Cell Style"
-msgstr ""
+msgstr "Celletypografi Overskrift 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4307,7 +4307,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bad"
-msgstr ""
+msgstr "Dårlig"
#: CalcCommands.xcu
msgctxt ""
@@ -4316,7 +4316,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bad Cell Style"
-msgstr ""
+msgstr "Dårlig Celletypografi"
#: CalcCommands.xcu
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Error"
-msgstr ""
+msgstr "Fejl"
#: CalcCommands.xcu
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Error Cell Style"
-msgstr ""
+msgstr "Celletypografien Fejl"
#: CalcCommands.xcu
msgctxt ""
@@ -4361,7 +4361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Good"
-msgstr ""
+msgstr "God"
#: CalcCommands.xcu
msgctxt ""
@@ -4370,7 +4370,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Good Cell Style"
-msgstr ""
+msgstr "Celletypografi God"
#: CalcCommands.xcu
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Neutral"
-msgstr ""
+msgstr "Neutral"
#: CalcCommands.xcu
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Neutral Cell Style"
-msgstr ""
+msgstr "Celletypografi Neutral"
#: CalcCommands.xcu
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Warning"
-msgstr ""
+msgstr "Advarsel"
#: CalcCommands.xcu
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Warning Cell Style"
-msgstr ""
+msgstr "Celletypografien Advarsel"
#: CalcCommands.xcu
msgctxt ""
@@ -4442,7 +4442,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Footnote"
-msgstr ""
+msgstr "Fodnote"
#: CalcCommands.xcu
msgctxt ""
@@ -4451,7 +4451,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Footnote Cell Style"
-msgstr ""
+msgstr "Celletypografien Fodnote"
#: CalcCommands.xcu
msgctxt ""
@@ -4469,7 +4469,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Note"
-msgstr ""
+msgstr "Notat"
#: CalcCommands.xcu
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Note Cell Style"
-msgstr ""
+msgstr "Celletypografien Notat"
#: CalcWindowState.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Tabeltypografier"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Flere felter"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Regenerer diagram"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25297,7 +25306,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Lists"
-msgstr ""
+msgstr "Lister"
#: Sidebar.xcu
msgctxt ""
@@ -25689,6 +25698,15 @@ msgstr "Faneblade"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Grupperet-linje"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Marker sætning"
#: WriterCommands.xcu
msgctxt ""
@@ -30013,7 +30040,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal ~Line"
-msgstr ""
+msgstr "Vandret linje"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/da/sc/messages.po b/source/da/sc/messages.po
index 56d7b3bed17..f13f7996c16 100644
--- a/source/da/sc/messages.po
+++ b/source/da/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-20 15:55+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-24 15:37+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1555775715.000000\n"
+"X-POOTLE-MTIME: 1558712276.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -14348,7 +14348,7 @@ msgstr "Afbryd"
#: sc/inc/strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Autosum"
-msgstr ""
+msgstr "Autosum"
#: sc/inc/strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(eksklusiv adgang)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "Der er ingen navngivne områder i det markerede dokument"
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15570,27 +15575,27 @@ msgstr "Formaterer"
#: sc/uiconfig/scalc/ui/autosum.ui:12
msgctxt "autosum|sum"
msgid "Sum"
-msgstr ""
+msgstr "Sum"
#: sc/uiconfig/scalc/ui/autosum.ui:20
msgctxt "autosum|average"
msgid "Average"
-msgstr ""
+msgstr "Gennemsnit"
#: sc/uiconfig/scalc/ui/autosum.ui:28
msgctxt "autosum|min"
msgid "Min"
-msgstr ""
+msgstr "Min."
#: sc/uiconfig/scalc/ui/autosum.ui:36
msgctxt "autosum|max"
msgid "Max"
-msgstr ""
+msgstr "Maks."
#: sc/uiconfig/scalc/ui/autosum.ui:44
msgctxt "autosum|count"
msgid "Count"
-msgstr ""
+msgstr "Antal"
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:35
msgctxt "cellprotectionpage|checkProtected"
@@ -15770,13 +15775,13 @@ msgstr "Administrer betinget formatering"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Område"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
-msgstr ""
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Første betingelse"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16341,22 +16346,22 @@ msgstr "Der er modstridende ændringer i dette delte regneark. Konflikter skal v
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:147
msgctxt "conflictsdialog|conflict"
msgid "Conflict"
-msgstr ""
+msgstr "Konflikt"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:161
msgctxt "conflictsdialog|author"
msgid "Author"
-msgstr ""
+msgstr "Forfatter"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:175
msgctxt "conflictsdialog|date"
msgid "Date"
-msgstr ""
+msgstr "Dato"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:189
msgctxt "conflictsdialog|changes-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Ændringer"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:207
msgctxt "conflictsdialog|keepmine"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Dataformular"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Luk"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Ny datapost"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Ny"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Slet"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Gendan"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Forrige post"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Ny datapost"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Luk"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Live datastrøm"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "Url:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Angiv her URL til kildedokumentet i det lokale filsystem eller fra Internettet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Gennemse..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Databaseområde:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Dataudbyder:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Søgestreng:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Kildestrøm"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18596,17 +18561,17 @@ msgstr "Administrer navne"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:127
msgctxt "managenamesdialog|name"
msgid "Name"
-msgstr ""
+msgstr "Navn"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:140
msgctxt "managenamesdialog|expression"
msgid "Range or formula expression"
-msgstr ""
+msgstr "Område eller formeludtryk"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:153
msgctxt "managenamesdialog|scope"
msgid "Scope"
-msgstr ""
+msgstr "Omfang"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:183
msgctxt "managenamesdialog|info"
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultater til:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Beskær inddata-området til faktisk data-indhold"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolonner"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rækker"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Grupperet efter"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametre"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hjælp"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fil"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Angiv kanterne på de markerede celler."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Forøg indrykning"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Formindsk indrykning"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Hjem"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Hjem"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fel_t"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Indsæt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Indsæt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Layout"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Juster objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Layout"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistik"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Gennemse"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Gennemse"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bille_de"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medier"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medie"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Udskriv"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Udskriv"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Funktioner"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Funktioner"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Søgeresultater"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "Vis denne dialog"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "Aktiver dialogen igen på Funktioner > Indstillinger > Calc > Vis"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Ark"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Celle"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Indhold"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Dispositionssymboler"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "Resume af søgning"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Vindue"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Gitterlinjer:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "Farve:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Vis for farvede celler"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Skjul"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Sideskift"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Hjælpelinjer imens der flyttes"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Visuel støtte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jekter/billeder:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diagrammer:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Tegneobjekter:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Skjul"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Skjul"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Skjul"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekter"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Synkroniser ark"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoom"
diff --git a/source/da/scp2/source/ooo.po b/source/da/scp2/source/ooo.po
index 9d23995c7c6..d0808fc7dfc 100644
--- a/source/da/scp2/source/ooo.po
+++ b/source/da/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-20 15:55+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-24 15:38+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1555775721.000000\n"
+"X-POOTLE-MTIME: 1558712280.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Åbn dokument"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (Sikker tilstand)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/da/scp2/source/winexplorerext.po b/source/da/scp2/source/winexplorerext.po
index 296749e7350..a6cc8358302 100644
--- a/source/da/scp2/source/winexplorerext.po
+++ b/source/da/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 10:52+0200\n"
-"Last-Translator: Leif <leiflodahl@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:57+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369349837.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Gør Microsoft Windows Stifinder i stand til at vise information om %PRODUCTNAME-dokumenter, såsom forhåndsvisning af miniaturer."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/da/sd/messages.po b/source/da/sd/messages.po
index 5a817a44e37..dda5db8adc0 100644
--- a/source/da/sd/messages.po
+++ b/source/da/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-20 15:56+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "klik for at åbne hyperlink:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Navngiv HTML-design"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Filer"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hjælp"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fil"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Hjem"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hjem"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Felt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Indsæt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Indsæt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Side"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Side"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Gennemse"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Gennemsyn"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverter"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bille_de"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medier"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medie"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Værktøjer"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Fun~ktioner"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Vis figurer"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Filer"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hjælp"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fil"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hjem"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fel_t"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Indsæt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Indsæt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "Dias"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "~Dias"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Præsentation"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Dias~show"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Gennemse"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Gennemsyn"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverter"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bille_de"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medier"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medie"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Funktioner"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Fun~ktioner"
diff --git a/source/da/sfx2/messages.po b/source/da/sfx2/messages.po
index 3f40649f6be..905eadd8412 100644
--- a/source/da/sfx2/messages.po
+++ b/source/da/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-20 15:56+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-24 15:38+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1555775797.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558712289.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Å: %1 M: %2 D: %3 T: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Fjern egenskab"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Den indtastede værdi svarer ikke til den angivne type.\n"
"Værdien bliver gemt som tekst."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Typografien findes allerede. Overskriv?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Nulstil"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Dette navn er allerede i brug."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Denne typografi findes ikke."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Denne typografi kan ikke bruges som basistypografi,\n"
"da den i så fald vil referere til sig selv."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Navnet bruges allerede til en standardtypografi.\n"
"Vælg venligst et andet navn."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Hvis du sletter disse typografier, føres teksten tilbage til forældretypografien.\n"
"Vil du slette disse typografier?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Typografier i brug: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Fejl ved bekræftelse af adgangskoden"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Send"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Skrifttype"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Vis forhåndsvisning"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Vis versionskommentar"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(intet navn angivet)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Typografier"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarkisk"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Fyldformattilstand"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Ny typografi fra markeringen"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Typografi-handlinger"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Opdater typografi"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Er du sikker på, at du vil annullere optagelsen? Alle trin optaget indtil nu vil gå tabt."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Annuller optagelse"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Skabelonerne initialiseres nu til førstegangsbrug."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Der blev ikke fundet en standardprinter.\n"
"Vælg en printer og prøv igen."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Det var ikke muligt at starte printeren.\n"
"Kontroller venligst din printerkonfiguration."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Printeren er optaget"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (skrivebeskyttet)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Vil du gemme de nye indstillinger i det\n"
"aktive dokument?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Skal ændringerne gemmes\n"
"i det aktive dokument?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Vil du gemme de nye indstillinger i det \n"
"aktive dokument?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Dokumentet kan ikke lukkes,\n"
"da et udskriftsjob stadig er i gang."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Kontroller venligst indstillingerne i %PRODUCTNAME eller i dit e-mailprogram."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Fejlkoden er $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Fejl ved afsendelse af meddelelsen."
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Det er ikke muligt at åbne dokumentet til redigering, muligvis fordi du ingen adgangsrettigheder har. Ønsker du at redigere en kopi af dokumentet?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Du kan også forsøge at ignorere låsningen og åbne filen til redigering."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Åbn ~kopi"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Åbn"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (repareret dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Dokumentet er ikke tjekket ud på serveren."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Hjælp os til at gøre %PRODUCTNAME endnu bedre!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Deltag"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Din donation støtter vores verdensomspændende fællesskab."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Donér"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Du kører version %PRODUCTVERSION af %PRODUCTNAME for første gang. Vil du vide, hvad der er nyt?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Frigivelsesnoter"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dokument er åbnet i skrivebeskyttet tilstand."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Denne PDF er åben i læsetilstand for at kunne signere den eksisterende fil."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Klassificeringsmærket for dette dokument er %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Dokumentet skal klassificeres før klippebordets indhold kan indsættes."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Dokumentet har en lavere klassificering end klippebordet."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Niveau"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nationens sikkerhed:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Eksportkontrol:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Tjek ud"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Rediger dokument"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Signer dokument"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dette dokument har en ugyldig signatur."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Signaturen er gyldig, men dokumentet er blevet ændret"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Signaturen er i orden, men certifikatet kunne ikke valideres."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Signaturen er ok, men dokumentet er kun delvist signeret."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Certifikatet kunne ikke valideres, og dokumentet er kun delvist signeret."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dokumentet er digitalt signeret og signaturen er gyldig."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Vis signaturer"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Luk panel"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Fastgør"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Frigør"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Flere indstillinger"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Luk sidepanel"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Indstillinger for sidepanel"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Tilpasning"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Genskab standard"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Luk sidepanel"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bikube"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blå kurve"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blåtryk planer"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Klar blå"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klassisk rød"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Skovfugl"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lys"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Frodig grøn"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Storby"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Midnatsblå"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natur Illustration"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Blyant"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klaver"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portefølje"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Fremgang"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solnedgang"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivid"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Sammendrag"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne forretningsbrev sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne forretningsbrev serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visitkort med logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Fjern"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tøm alt"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Kodeordslængde"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Det kodeord, du har har indtastet giver interoperabilitets-problemer. Indtast venligst et kodeord, som er kortere end 52 bytes eller længere end 55 bytes."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Versionskommentar:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Navn"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Type"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Værdi"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ja"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nej"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Tilføj _egenskab"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Navn"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Værdi"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Placering:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Type:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Skift _adgangskode"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Skabelon:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Egenskaber for \"%1\""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Generelt"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Beskrivelse"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Brugerdefinerede egenskaber"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS-egenskaber"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Sikkerhed"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Dette produkt blev skabt af %OOOVENDOR, baseret på OpenOffice.org, der er underlagt ophavsret 2000, 2011 af Oracle og/eller dets partnere. %OOOVENDOR takker alle medlemmer af fællesskabet, se venligst http://www.libreoffice.org/ for flere detaljer."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/da/shell/messages.po b/source/da/shell/messages.po
new file mode 100644
index 00000000000..4c94ccadac4
--- /dev/null
+++ b/source/da/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-24 15:38+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: da\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558712321.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Åbn dokument"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Du er ved at åbne dokumentet\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Vil du se det eller redigere det?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Vis"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Rediger"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Annulér"
diff --git a/source/da/starmath/messages.po b/source/da/starmath/messages.po
index b5e274600e6..0d9127f471b 100644
--- a/source/da/starmath/messages.po
+++ b/source/da/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Eksempler"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiv"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Fed"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "sort"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blå"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "grøn"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "rød"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grå"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lime"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "rødbrun"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "marineblå"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olivengrøn"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lilla"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "sølv"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "blågrøn"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "gul"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "skjul"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "størrelse"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "skrifttype"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "venstre"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centrer"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "højre"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Kommandoer"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formel"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokumentet gemmes..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION-formel"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FEJL: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Uventet tegn"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Uventet symbol"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' forventes"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' forventes"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' forventes"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' forventes"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Venstre og højre symboler stemmer ikke overens"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', eller 'serif' forventet"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'størrelse' fulgt af et uventet tegn"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dobbelt justering er ikke tiladt"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dobbelt sænket/hævet skrift er ikke tilladt"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' forventes"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Farve påkrævet"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' forventes"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Indhold"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formeltekst"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Kanter"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Størrelse"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Oprindelig størrelse"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Tilpas til side"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalering"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementer"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/da/svtools/messages.po b/source/da/svtools/messages.po
index 022ec179dca..49c9ea0318f 100644
--- a/source/da/svtools/messages.po
+++ b/source/da/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-20 15:56+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-21 17:58+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555775812.000000\n"
+"X-POOTLE-MTIME: 1558461537.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Fortryd: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Gendan: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Gentag: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Uformateret tekst"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Uformateret tekst (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap-billede (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich Text Formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich Text Formatering (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME-tegningsformat"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmap/animation (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info fra Svx intern kæde"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME link (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-bogmærke"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star-serverformat"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star-objektformat"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet-objekt"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Plugin-objekt"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0-objekt"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0-objekt"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0-objekt"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0-objekt"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0-objekt"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0-objekt"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0-objekt"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-objekt"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0-objekt"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0-objekt"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0-objekt"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-objekt"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0-objekt"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0-objekt"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-objekt"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0-objekt"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objekt"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-objekt"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0-objekt"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0-objekt"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-objekt"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0-objekt"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0-objekt"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint-objekt"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Hypertext Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word-objekt"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet-objekt"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-dokumentobjekt"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-dokumentinfo"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokument"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objekt"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafikobjekt"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer-objekt"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web-objekt"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Hoved-objekt"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw-objekt"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress-objekt"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc-objekt"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Diagram-objekt"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math-objekt"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-metafil"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datakildeobjekt"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datakildetabel"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-forespørgsel"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dialog"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Kæde"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-format uden kommentarer"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Det er ikke muligt at indsætte objekt %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Det er ikke muligt at indsætte objektet fra fil %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Flere objekter"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Ukendt kilde"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Navn"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Størrelse"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Ændringsdato"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Type"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Række: %1, Kolonne: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Type: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Mappe"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fil"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Tomt felt"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerisk"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Tegnsæt"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Ordbog"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Strøg"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonbog"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetisk (alfanumerisk først)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetisk (alfanumerisk sidst)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerisk"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Ordbog"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Strøg"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetisk (alfanumerisk først, opdelt efter stavelser)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetisk (alfanumerisk først, opdelt efter konsonanter)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetisk (alfanumerisk sidst, opdelt efter stavelser)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetisk (alfanumerisk sidst, opdelt efter konsonanter)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "I dag"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Ingen"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Fin"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Tynd kursiv"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiv"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Fed"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Fed kursiv"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Sort"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Black kursiv"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Bog"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Fed hældende"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Smal"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Smal fed"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Smal fed kursiv"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Smal fed hældende"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Smal kursiv"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Smal hældende"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Tynd"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Tynd kursiv"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Hældende"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Halvfed"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Halvfed kursiv"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Den samme skrifttype vil blive brugt både på din skærm og på din printer."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Dette er en printerskrifttype. Tekst på skærmen kan afvige fra udskriften."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Denne skrifttype bliver simuleret, eller den type, som passer bedst, vil blive brugt i stedet."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Denne skrifttype er ikke blevet installeret. Den nærmeste tilgængelige skrifttype vil blive brugt i stedet."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Gennemse..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Gå til start"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mod venstre"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mod højre"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Gå til slut"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Tilføj"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vandret lineal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Lodret lineal"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1bit-tærskelværdi"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1bit-farvereducering"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bit - gråtoner"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bit farve"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bit - gråtoner"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bit farve"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24bit-ægte farver"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Billedet behøver ca %1 KB hukommelse."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Billedet behøver ca %1 KB hukommelse, men filstørrelsen er %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Flisestørrelsen er %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "vært"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Andet CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Klar"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Stoppet"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Afventer sletning"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Optaget"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialiserer"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Venter"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Varmer op"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Behandler"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Udskrivning"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fejl"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Ukendt server"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papirstop"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ikke nok papir"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuel papirfødning"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papirproblem"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktiv"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Output-bakken er fyldt"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Næsten ingen toner"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Ingen toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Slet side"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Brugerhandling krævet"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ikke tilstrækkelig hukommelse"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Låget er åben"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energibesparende tilstand"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standardprinter"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumenter"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Udfør"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Næste >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Tilbage"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Trin"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<intet>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Firma"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Afdeling"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Fornavn"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Efternavn"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Gade"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postnr."
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "By"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Stilling"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tiltale"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initialer"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Sluthilsen"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefon: privat"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefon arb."
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Note"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Bruger 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Bruger 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Bruger 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Bruger 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Delstat"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefon Kontor"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Personsøger"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefon andre"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Inviter"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME kræver et Java-afviklingsmiljø (JRE) for at udføre denne opgave. Installer et JRE og genstart %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME kræver et %BITNESS-bit Java-afviklingsmiljø (JRE) for at udføre denne opgave. Installer et JRE og genstart %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME forudsætter Oracles Java Development Kit (JDK) på macOS 10.10 eller højere for at udføre denne handling. Installer den og genstart %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Indstillingerne for %PRODUCTNAME er ændret. Vælg det Java-afviklingsmiljø du ønsker at benytte for %PRODUCTNAME under Funktioner - Indstillinger - %PRODUCTNAME - Avanceret."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Indstillingerne for %PRODUCTNAME er ændret. Under Funktioner - Indstillinger: %PRODUCTNAME - Avanceret, skal du vælge det Java afviklingsmiljø du ønsker at benytte for %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME kræver et Java-afviklingsmiljø (JRE) for at udføre denne opgave. Det valgte JRE er defekt. Vælg venligst en anden version, eller installer et nyt JRE og vælg det under %PRODUCTNAME – Indstillinger – %PRODUCTNAME – Avanceret."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME kræver et Java-afviklingsmiljø (JRE) for at udføre disse opgaver. Det valgte JRE er defekt. Vælg en anden version eller installer et nyt JRE og vælg det under Funktioner - Indstillinger - %PRODUCTNAME - Avanceret."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE nødvendig"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Vælg JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE er defekt"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Kildetekst"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Bogmærkefil"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafik"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigurationsfil"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Program"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Databasetabel"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systemfil"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-dokument"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Hjælpefil"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arkivfil"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Logfil"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Database"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0-hoveddokument"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Billede"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstfil"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Kæde"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Skabelon"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-dokument"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-skabelon"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch-fil"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fil"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Mappe"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstdokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Regneark"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Præsentation"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tegning"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Hoveddokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formel"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Database"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 Regnearksskabelon"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 Tegningsskabelon"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 Præsentationsskabelon"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0-tekstdokumentskabelon"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokalt drev"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskettedrev"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Cd-rom-drev"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Netværksforbindelse"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-dokument"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-skabelon"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-præsentation"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0-formel"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Diagram"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Tegning"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Regneark"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 Præsentation"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0-tekstdokument"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0-hoveddokument"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-database"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-tegning"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-formel"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-hoveddokument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-præsentation"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-regneark"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-tekst"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-regnearkskabelon"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-tegningsskabelon"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-præsentationsskabelon"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekstskabelon"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-udvidelse"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell stavekontrol"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen orddeling"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes Synonymordbog"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Liste af ignorerede ord"
@@ -4127,7 +4129,7 @@ msgstr "Iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Engelsk (Zambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/da/svx/messages.po b/source/da/svx/messages.po
index 643133c38fd..504c74382b6 100644
--- a/source/da/svx/messages.po
+++ b/source/da/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-20 15:56+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-24 15:39+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\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: 1555775818.000000\n"
+"X-POOTLE-MTIME: 1558712353.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Venstre-til-til højre (lodret)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Nederst-til-øverst, venstre-til-højre (vandret)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Del nummer:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Tekstdel:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,12 +11340,12 @@ msgstr "Lyskilde 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Lys 1 farve"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "lys 2 farve"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
@@ -11880,7 +11885,7 @@ msgstr "%PRODUCTNAME %PRODUCTVERSION Dokumentgendannelse"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:76
msgctxt "docrecoverysavedialog|label1"
msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "På grund af en fejl lukkede %PRODUCTNAME ned. Alle de filer, som du arbejdede på, vil blive gemt nu. Næste gang %PRODUCTNAME startes, vil dine filer blive gendannet automatisk."
#: svx/uiconfig/ui/docrecoverysavedialog.ui:98
msgctxt "docrecoverysavedialog|label2"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Angiv den lodrette procentvise forskydning fra centrum for farveforløbets skyggestil. 50% er det lodrette centrum."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Konturredigering"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Anvend"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Arbejdsområde"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Vælg"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Firkant"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Rediger punkter"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Flyt punkter"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Indsæt punkter"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Slet punkter"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoKontur"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Fortryd "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Gendan"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipette"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Farvetolerance"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Sidefod"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Imagemap-redigering"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Anvend"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Åbn..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Gem..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Luk"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Vælg"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Firkant"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Frihåndspolygon"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Rediger punkter"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Flyt punkter"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Indsæt punkter"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Slet punkter"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Fortryd "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Gendan"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktiv"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Egenskaber..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresse:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Ramme:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekst:"
@@ -13368,12 +13373,12 @@ msgstr "Kommentar"
#: svx/uiconfig/ui/redlineviewpage.ui:146
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Ændringer"
#: svx/uiconfig/ui/redlineviewpage.ui:245
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Ændringer"
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME kører nu i sikker tilstand, hvilket midlertidigt deaktiverer din konfiguration og dine udvidelser.\n"
+"\n"
+"Du kan foretage en eller flere af de følgende ændringer i din brugerprofil for at bringe %PRODUCTNAME i funktionsdygtig tilstand."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
@@ -14011,7 +14019,7 @@ msgstr "Afslutningstypografi"
#: svx/uiconfig/ui/sidebarlists.ui:22
msgctxt "sidebarlists|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Punktegn og nummerering"
#: svx/uiconfig/ui/sidebarparagraph.ui:26
msgctxt "sidebarparagraph|numberbullet|tooltip_text"
diff --git a/source/da/sw/messages.po b/source/da/sw/messages.po
index 9fc0b38b7b7..a319f04da3a 100644
--- a/source/da/sw/messages.po
+++ b/source/da/sw/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-20 16:01+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-26 20:21+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555776067.000000\n"
+"X-POOTLE-MTIME: 1558902065.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Erstat objekttitel for $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Erstat objektbeskrivelse for $1"
+msgstr "Erstat objektbeskrivelsen af $1"
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -7679,7 +7679,7 @@ msgstr "Tegn"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "Standard"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -9898,7 +9898,7 @@ msgstr "Spejlvend på lige sider"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Hold inden for tekstmargener"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|label11"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hjælp"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fil"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hjem"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insert"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Indsæt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Layout"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Reference_r"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "R~eferencer"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Gennemse"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Gennemsyn"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Bille_de"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bille~de"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medier"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medie"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Udskriv"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Udskriv"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmular"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmular"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Funktioner"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Fun~ktioner"
@@ -12160,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Fil"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "Filer"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "Home"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Indsæt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Indsæt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Ombryd"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Layout"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Layout"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Reference_r"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "R~eferencer"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Gennemse"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Revider"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Vis"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abel"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Billede"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Bille~de"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "D_raw"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "Tegn"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Medie"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "Medier"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Udskriv"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "Udskriv"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmular"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmular"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Funktioner"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Funktioner"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12449,7 +12449,7 @@ msgstr "_Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "_Ramme"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12659,7 +12659,7 @@ msgstr "_Medie"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13372,8 +13372,8 @@ msgstr "Udvid ordafstand på linjer med manuelle skift i afsnit med lige margene
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Beskyt formular"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Indholdsfortegnelse, stikordsregister eller litteraturliste"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Forhåndsvisning"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Forhåndsvisning"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Type"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Elementer"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Typografier"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Spalter"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Baggrund"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Forhåndsvisning"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Niveau"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "Type"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Rediger..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Type:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Indholdsfortegnelse"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Stikordsregister"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Liste over figurer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Tabeloversigt"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Brugerdefineret"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektoversigt"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Litteraturliste"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Beskyttet mod manuelle ændringer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Type og titel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "For:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Hele dokumentet"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Kapitel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Beregn op til niveau:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Opret stikordsregister, oversigt eller indholdsfortegnelse"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Disposition"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Indeksmærker"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Oversigter"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Tekstrammer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafik"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objekter"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Benyt niveau fra kildekapitel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Yderligere typografier"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Typografier"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Tildel typografier..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Billedtekster"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektnavne"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategori:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Vis:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referencer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategori og nummer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Billedtekstens tekst"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Opret fra"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Opret fra følgende objekter"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Kantede parenteser:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Talelementer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Ingen]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formattering af emnerne"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Sammensæt identiske emner"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Sammensæt identiske emner med p eller pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Sammensæt med -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "STORE og små bogstaver"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Skriv automatisk elementer med stort"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Nøgler som selvstændige emner"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Konkordansfil"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Fil"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Indstillinger"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Sprog:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Nøgletype:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sorter"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Niveauer"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Afsnitstypografier"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Standard"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Rediger"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Tildeling"
diff --git a/source/da/wizards/messages.po b/source/da/wizards/messages.po
index 11d99ccb75f..7c2a1c467a5 100644
--- a/source/da/wizards/messages.po
+++ b/source/da/wizards/messages.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-02-17 15:51+0000\n"
+"PO-Revision-Date: 2019-05-24 15:40+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1550418703.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558712458.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -1085,7 +1085,7 @@ msgstr "Min dagsordenskabelon"
#: wizards/com/sun/star/wizards/common/strings.hrc:264
msgctxt "RID_AGENDAWIZARDDIALOG_START_43"
msgid "An error occurred while saving the agenda template."
-msgstr ""
+msgstr "Der opstod en fejl under lagring af dagsordenskabelonen."
#: wizards/com/sun/star/wizards/common/strings.hrc:265
msgctxt "RID_AGENDAWIZARDDIALOG_START_44"
@@ -1145,7 +1145,7 @@ msgstr "Navn og sted"
#: wizards/com/sun/star/wizards/common/strings.hrc:276
msgctxt "RID_AGENDAWIZARDDIALOG_START_56"
msgid "An error occurred while opening the agenda template."
-msgstr ""
+msgstr "Der opstod en fejl under åbning af dagsordenskabelonen."
#: wizards/com/sun/star/wizards/common/strings.hrc:277
msgctxt "RID_AGENDAWIZARDDIALOG_START_57"
diff --git a/source/da/wizards/source/resources.po b/source/da/wizards/source/resources.po
index 967e7200669..9f012f0cf88 100644
--- a/source/da/wizards/source/resources.po
+++ b/source/da/wizards/source/resources.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2017-11-12 21:49+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2019-05-24 15:41+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510523386.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558712462.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -4206,7 +4206,7 @@ msgctxt ""
"RTErrorDesc\n"
"property.text"
msgid "An error has occurred in the wizard."
-msgstr ""
+msgstr "Der opstod en fejl i guiden."
#: resources_en_US.properties
msgctxt ""
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
index 100bfb67428..0776115e4b1 100644
--- a/source/de/cui/messages.po
+++ b/source/de/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-04-17 04:10+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-30 03:19+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555474256.000000\n"
+"X-POOTLE-MTIME: 1559186380.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Geben Sie bitte eine gültige Theme-Adresse oder ein Stichwort ein."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Keine Umrandung zeichnen"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Nur äußere Umrandung zeichnen"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Äußere Umrandung und horizontale Linien zeichnen"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Äußere Umrandung und alle inneren Linien zeichnen"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Äußere Umrandung zeichnen, ohne innere Linien zu verändern"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Nur diagonale Linien zeichnen"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Komplette Umrandung zeichnen"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Nur linken und rechten Rand zeichnen"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Nur oberen und unteren Rand zeichnen"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Nur linken Rand zeichnen"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Oberen und unteren Rand und alle inneren Linien zeichnen"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Linken und rechten Rand und alle inneren Linien zeichnen"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Kein Schatten"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Schatten nach rechts unten werfen"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Schatten nach rechts oben werfen"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Schatten nach links unten werfen"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Schatten nach links oben werfen"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Signiert von: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Alle Dateien"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Registrierte Datenbanken"
@@ -1746,235 +1741,235 @@ msgstr "Registrierte Datenbanken"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME kann per CMIS auf Servern abgelegte Dateien öffnen und speichern."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr ""
+msgstr "Extras - AutoKorrektur - AutoKorrektur-Optionen... - Ersetzungen stellt eine Liste mit gängigen Ersetzungen bereit. Werfen Sie dort einen Blick drauf und ergänzen Sie diese um Ihre eigenen Ersetzungen."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can handle styles conditionally: paragraph styles that have different properties depending on the context."
-msgstr ""
+msgstr "Writer kann bedingte Vorlagen handhaben: Absatzvorlagen, welche je nach Kontext verschiedene Einstellungen besitzen."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/05130100.html
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With File > Versions you can store multiple versions of the document in the same file. You can also open, delete, and compare previous versions."
-msgstr ""
+msgstr "Mittels Datei - Versionen... können Sie mehrere Versionen eines Dokuments in der selben Datei speichern. Sie können ebenso vorherige Versionen öffnen, löschen und vergleichen."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/01190000.html
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
-msgstr ""
+msgstr "Sie können auch ein Abbildungsverzeichnis von Objektnamen anstelle der Beschriftungen erstellen."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/05190000.html
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To temporarily starts with a fresh user profile or to restore a non-working %PRODUCTNAME instance start Help > Restart in Safe Mode."
-msgstr ""
+msgstr "Um temporär mit einem neuen Benutzerprofil zu starten oder eine nicht mehr funktionsfähige %PRODUCTNAME-Instanzen zu reparieren, wählen Sie Hilfe - Im abgesicherten Modus neu starten..."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
-msgstr ""
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
+msgstr "Ändern Sie die Grundschriftart für vordefinierte Vorlagen oder das aktuelle Dokument über Extras - Optionen... - %PRODUCTNAME Writer - Grundschriftarten."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr ""
+msgstr "Legen Sie häufig verwendete Texte als AutoText fest. Die können diese anschließend mittels Namen, Tastaturkürzel oder Symbolleiste in jedes Writer-Dokument einfügen."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/autotext.html
#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools > Options > %PRODUCTNAME Writer > AutoCaption."
-msgstr ""
+msgstr "%PRODUCTNAME kann beim Einfügen von Objekten automatisch eine nummerierte Beschriftung hinzufügen. Wählen Sie hierzu Extras - Optionen... - %PRODUCTNAME Writer - Automatische Beschriftung."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01041100.html
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr ""
+msgstr "Sie können mittels Extras - Sortieren... Absätze oder Tabellenzeilen alphabetisch oder numerisch sortieren."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sections in %PRODUCTNAME Writer to protect part of a text, show/hide text, reuse parts from other documents, use different column layout."
-msgstr ""
+msgstr "Verwenden Sie Bereiche in %PRODUCTNAME Writer, um Textteile zu schützen, ein-/auszublenden, von anderen Dokumenten wiederzuverwenden oder verschiedene Spaltenlayouts zu verwenden."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/04020100.html
#: cui/inc/tipoftheday.hrc:56
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet > Fill Cells > Random Number to generate a random series based on various distributions."
-msgstr ""
+msgstr "Wählen Sie Tabelle - Zellen ausfüllen - Zufallszahlen..., um eine zufällige, auf verschiedenen Verteilungen basierende Reihe zu erstellen."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/02140700.html
#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Conditional Formatting > Manage in Calc to find out which cells have been defined with conditional formatting."
-msgstr ""
+msgstr "Verwenden Sie Format - Bedingte Formatierung - Verwalten..., um herauszufinden, für welche Zellen bedingte Formatierungen definiert sind."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/05120000.html
#: cui/inc/tipoftheday.hrc:58
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
-msgstr ""
+msgstr "Neben Inhaltsverzeichnissen kann %PRODUCTNAME auch Stichwort- , Abbildungs-, Tabellen-, Objekt- Literatur- und benutzerdefinierte Verzeichnisse erstellen."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/indices_toc.html
#: cui/inc/tipoftheday.hrc:59
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
-msgstr ""
+msgstr "Um Reihen wie A1, A2, A3, A11, A15 in %PRODUCTNAME nicht in alphabetischer sondern in numerischer Folge zu sortieren, aktivieren Sie das Markierfeld Natürliche Sortierung verwenden unter Daten - Sortieren... - Register: Optionen."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/12030200.html
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools > Options > OpenCL."
-msgstr ""
+msgstr "Für massiv parallele Berechnungen von Formelzellen aktivieren Sie das Markierfeld unter Extras - Optionen... - LibreOffice - OpenCL."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/opencl.html
#: cui/inc/tipoftheday.hrc:61
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
-msgstr ""
+msgstr "%PRODUCTNAME unterstützt vier Makro-Sicherheitslevels (von niedrig bis sehr hoch) und vertrauenswürdige Quellen."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:63
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
-msgstr ""
+msgstr "Um die gültigen Kommandozeilen-Parameter kennenzulernen, starten Sie soffice mit --help, -h oder -?."
#. local help missing
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr ""
+msgstr "Um die Darstellung von Hyperlinks in einer Tabellenkalkulation zu verwalten, fügen Sie diese mittels Einfügen - Hyperlink... ein."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Can not get what you want with VLOOKUP? With INDEX and MATCH you can do everything!"
-msgstr ""
+msgstr "Falls Sie mit SVERWEIS nicht das Gewünschte erreichen, haben Sie mit INDEX und VERGLEICH unbegrenzte Möglichkeiten."
#. local help missing
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Sie können bestehende PDF-Dateien signieren und auch deren Signaturen überprüfen."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
-msgstr ""
+msgstr "Writer enthält LibreLogo, eine einfache, Logo-artige Programmierumgebung mit Turtle-Vektorgrafiken, DTP und Grafikdesign."
#. local help missing
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr ""
+msgstr "Zum Schützen von Zellen wählen Sie Format - Zellen... - Register: Zellschutz. Um zu verhindern, dass Tabellen eingefügt, gelöscht, umbenannt, verschoben oder kopiert werden, wählen Sie Extras - Tabelle schützen..."
#. local help missing
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr ""
+msgstr "Um zu einem Datum x Monate hinzu zu addieren, geben Sie =EDATUM(Datum;Monate) ein."
#. local help missing
#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependants (Shift+F5) (or use Tools > Detective). For each hit you go one more step in the chain."
-msgstr ""
+msgstr "Verfolgen Sie die in einer Formel verwendeten Zellen, die Spur zum Vorgänger (Umschalt+F9) oder die Spur zum Nachfolger (Umschalt+F5) (oder wählen Sie Extras - Detektiv). Bei jede Ausführung gehen Sie einen weiteren Schritt in der Kette."
#. local help missing
#: cui/inc/tipoftheday.hrc:71
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a serie? Select the cell range and Sheet > Fill Cells > Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Um eine Reihe zu erzeugen, markieren Sie den Zellbereich, wählen Tabelle - Zellen ausfüllen - Reihen... und entscheiden sich zwischen Linear, Wachstum, Datum und Automatisch füllen."
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
-msgstr ""
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
+msgstr "Um mit %PRODUCTNAME über Ihr Google Mail-Konto Serien-E-Mails zu versenden, geben Sie unter Extras - Optionen... - %PRODUCTNAME Writer - Serien-E-Mail Ihre Zugangsdaten ein."
#. local help missing
#: cui/inc/tipoftheday.hrc:73
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Data > Validity allows you to create drop-down lists where the user selects a value instead of typing."
-msgstr ""
+msgstr "Wählen Sie Daten - Gültigkeit..., um eine Dropdown-Liste zu erstellen, aus welcher der Benutzer einen Wert auswählen kann anstatt dieses einzugeben."
#. local help missing
#: cui/inc/tipoftheday.hrc:74
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use View > Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background."
-msgstr ""
+msgstr "Wählen Sie Ansicht - Werte hervorheben, um Zellinhalte farbig anzuzeigen: Text in schwarz, Formeln in grün, Zahlen in blau und geschützte Zellen mit grauem Hintergrund."
#. local help missing
#: cui/inc/tipoftheday.hrc:75
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
-msgstr ""
+msgstr "Wenn Sie einen merkwürdigen Fehlercode in Calc sehen, Fehler: gefolgt von einer Zahl, gibt folgende Seite die Erklärung:"
#. local help missing
#: cui/inc/tipoftheday.hrc:76
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit > Find & Replace > Other options > Attributes > Font weight."
-msgstr ""
+msgstr "Wenn Sie fett geschrieben Wörter in einem Writer-Dokument finden möchten, wählen Sie Bearbeiten - Suchen und Ersetzen... - Weitere Optionen... - Attribute... - Schriftstärke."
#. local help missing
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit > Find & Replace: Search = [<|>], Replace = blank and check ‘Regular expressions’ under Other options."
-msgstr ""
+msgstr "Wenn Sie alle <> auf einmal entfernen und den Text innerhalb behalten möchten, wählen Sie Bearbeiten - Suchen und Ersetzen... - Suchen: [<|>], Ersetzen: (leer) und Weitere Optionen... - Reguläre Ausdrücke."
#. local help missing
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > Detective > Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
-msgstr ""
+msgstr "Wählen Sie Extras - Detektiv - Ungültige Daten einkreisen, um alle Zellen einer Tabelle mit Werten außerhalb der Gültigkeitsregeln hervorzuheben."
#. local help missing
#: cui/inc/tipoftheday.hrc:79
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to allow changes to parts of a read-only document in Writer? Insert frames or sections that can authorize changes."
-msgstr ""
+msgstr "Um Änderungen in Teilen eines schreibgeschützten Writer-Dokuments zu erlauben, fügen Sie Rahmen oder Bereiche ein, in denen Änderungen erlaubt sind."
#. local help missing
#: cui/inc/tipoftheday.hrc:80
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writing a book? %PRODUCTNAME master document lets you manage large documents as a container for individual %PRODUCTNAME Writer files."
-msgstr ""
+msgstr "Wenn Sie ein Buch schreiben, können Sie mit %PRODUCTNAME Globaldokument große Dokumente als Container verwenden, um individuelle %PRODUCTNAME Writer-Dateien zu verwalten."
#. local help missing
#: cui/inc/tipoftheday.hrc:81
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
-msgstr ""
+msgstr "Verwenden Sie in Calc die Funktion =GESTUTZTMITTEL(), um den Mittelwert einer Datenreihe ohne den höchsten und niedrigsten Wert zu bestimmen."
#. local help missing
#: cui/inc/tipoftheday.hrc:82
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
-msgstr ""
+msgstr "Berechnen Sie Darlehnsrückzahlungen mit Calc, beispielsweise =RMZ(2%/12;36;2500) für einen Zinssatz pro Periode von 2%/12, 36 Perioden und einen Darlehnsbetrag von 2500."
#. local help missing
#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
-msgstr ""
+msgstr "Verwenden Sie Ihr Android oder iPhone als Fernbedienung für Ihre Impress-Präsentation."
#. local help missing
#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
-msgstr ""
+msgstr "Probieren Sie mal die Presenter Console aus, welche eine hervorragende Funktion bei der Arbeit mit %PRODUCTNAME Impress ist."
#. local help missing
#: cui/inc/tipoftheday.hrc:85
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -2853,12 +2848,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:263
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
-msgstr ""
+msgstr "%PRODUCTNAME Hilfe"
#: cui/inc/tipoftheday.hrc:264
msgctxt "STR_MORE_LINK"
msgid "More info"
-msgstr ""
+msgstr "Weitere Informationen"
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Info zu %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "_Beiträge"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Webseite"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build-ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Gebietsschema: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "UI-Sprache: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Siehe Logdatei: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME ist ein modernes und einfach zu nutzendes Open-Source-Programm für Textverarbeitung, Tabellenkalkulation, Präsentationen und mehr."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 LibreOffice-Beitragende."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice basiert auf OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME ist von LibreOffice abgeleitet, das auf OpenOffice.org basiert."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Dieses Produkt wurde von %OOOVENDOR zur Verfügung gestellt."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://de.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Ersetzen"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Ersetzen"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Durch:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Nur _Text"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimale Wortlänge"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Eigenschaften"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Rahmen:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Name:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Alternativtext:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Beschreibung:"
@@ -9019,80 +9179,80 @@ msgstr "Popup \"Keine Offline-Hilfe installiert\" anzeigen"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hilfe"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME-Dialoge _verwenden"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialoge zum Öffnen/Speichern"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME-Dialoge verwende_n"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialoge zum Drucken"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Drucken setzt Status \"Dokument geändert\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretieren als Jahre zwischen"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "und "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jahr (zweistellig)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Nutzungsdaten sammeln und an die The Document Foundation senden"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Mithelfen, %PRODUCTNAME zu verbessern"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME beim Systemstart laden"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Schnellstarter aktivieren"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Schnellstarter"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Vorinstalliertes Theme"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Eigenes Theme"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Firefox-Thema laden"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Oder aus via Extensions installierten Themes wählen:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox Themes"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Sicherheitsoptionen"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Firefox-Themes auswählen"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Suchbegriff oder Adresse"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "_Kategorie:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Zusammenfassung"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Anlass"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Stil"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film und Fernsehen"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Urlaub"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musik"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natur"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Andere"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Landschaft"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Saisonal"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Körper"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Webseiten"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Vorkommen"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/de/dbaccess/messages.po b/source/de/dbaccess/messages.po
index c62f58cb4e8..d6050b1b68e 100644
--- a/source/de/dbaccess/messages.po
+++ b/source/de/dbaccess/messages.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: 2019-04-24 18:25+0200\n"
-"PO-Revision-Date: 2019-04-28 13:58+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2019-05-26 05:06+0000\n"
+"Last-Translator: Michael Weghorn <m.weghorn@posteo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1556459898.000000\n"
+"X-POOTLE-MTIME: 1558847169.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1065,7 +1065,7 @@ msgstr "Fehler beim Setzen der Filter-Kriterien"
#: dbaccess/inc/strings.hrc:240
msgctxt "RID_STR_CONNECTION_LOST"
msgid "Connection lost"
-msgstr "Vebindung verloren"
+msgstr "Verbindung verloren"
#: dbaccess/inc/strings.hrc:241
msgctxt "RID_STR_QUERIES_CONTAINER"
diff --git a/source/de/desktop/messages.po b/source/de/desktop/messages.po
index a03904c53e5..c970e7ccf49 100644
--- a/source/de/desktop/messages.po
+++ b/source/de/desktop/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-09-07 14:39+0000\n"
+"PO-Revision-Date: 2019-05-26 04:55+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1536331195.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558846552.000000\n"
#: desktop/inc/strings.hrc:25
msgctxt "RID_STR_COPYING_PACKAGE"
@@ -880,7 +880,7 @@ msgstr "Was ist neu:"
#: desktop/uiconfig/ui/updatedialog.ui:297
msgctxt "updatedialog|RELEASE_NOTES_LINK"
msgid "Release notes"
-msgstr "Release Hinweise"
+msgstr "Versionshinweise"
#: desktop/uiconfig/ui/updateinstalldialog.ui:8
msgctxt "updateinstalldialog|UpdateInstallDialog"
diff --git a/source/de/extensions/messages.po b/source/de/extensions/messages.po
index da91751683a..e97b6f58f9b 100644
--- a/source/de/extensions/messages.po
+++ b/source/de/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-17 04:16+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.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: 1555474560.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Spaltenzuordnung für Tabelle „%1“"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Kurzbezeichnung"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "A_utor(en)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Verlag"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Kapitel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Herausgeber"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Typ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Jahr"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tite_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dresse"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Sei_te(n)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Au_sgabe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Bu_chtitel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Band"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Au_sgabeart"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Or_ganisation"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Ein_richtung"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versität"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "_Berichtsart"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Monat"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Journal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "An_zahl"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_rien"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_merkung"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Notiz"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Benutzerfeld _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Benutzerfeld _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Benutzerfeld _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Benutzerfeld _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Benutzerfeld _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Spaltennamen"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Geben Sie einen Namen für den neuen Datentyp an:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Felder verknüpfen"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Vorschlagen"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Unterformulare können benutzt werden, um Detaildaten zu dem aktuellen Datensatz des Hauptformulars anzuzeigen. Dazu können Sie festlegen, welche Spalten sich jeweils entsprechen sollen."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Beschriftung"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "Beschriftung"
diff --git a/source/de/helpcontent2/source/auxiliary.po b/source/de/helpcontent2/source/auxiliary.po
index 00c1a900a05..4925e59e339 100644
--- a/source/de/helpcontent2/source/auxiliary.po
+++ b/source/de/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-12 04:22+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.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: 1557634957.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Allgemeine Informationen"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Präsentationen und Zeichnungen (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Symbolleisten"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Zeichnungen (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menüs"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Symbolleisten"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objekte, Grafiken und Bitmaps"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Gruppen und Ebenen"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Text in Präsentationen und Zeichnungen"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sbasic/guide.po b/source/de/helpcontent2/source/text/sbasic/guide.po
index 6d276355f6c..f8b42ba7b84 100644
--- a/source/de/helpcontent2/source/text/sbasic/guide.po
+++ b/source/de/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-25 09:57+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.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: 1556186230.000000\n"
#: access2base.xhp
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Vergleich von Access2Base mit Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Aufrufen eines Dialogs vom Programmcode aus"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>Module/Dialoge umschalten</bookmark_value><bookmark_value>Dialoge; Programmcode zum Anzeigen verwenden (Beispiel)</bookmark_value><bookmark_value>Beispiele; einen Dialog mithilfe von Programmcode anzeigen</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sbasic/python.po b/source/de/helpcontent2/source/text/sbasic/python.po
index 7ed92886d69..9c5fcba5fab 100644
--- a/source/de/helpcontent2/source/text/sbasic/python.po
+++ b/source/de/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-07 05:37+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.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: 1557207432.000000\n"
#: main0000.xhp
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: Einen Dialog öffnen"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,7 +1469,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1493,7 +1493,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1515,6 +1515,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/de/helpcontent2/source/text/sbasic/shared.po b/source/de/helpcontent2/source/text/sbasic/shared.po
index 2f23397aa89..70864a5f24e 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-04-09 18:32+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-14 03:43+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554834779.000000\n"
+"X-POOTLE-MTIME: 1557805424.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -26094,7 +26094,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<variable id=\"explicitstatement\"><link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement\">Option Explicit Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"explicitstatement\"><link href=\"text/sbasic/shared/03103300.xhp\" name=\"Anweisung Option Explicit\">Anweisung Option Explicit</link></variable>"
#: 03103300.xhp
msgctxt ""
@@ -26134,7 +26134,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<variable id=\"vbasupportstatement\"><link href=\"text/sbasic/shared/03103350.xhp\" name=\"Option VBASupport Statement\">Option VBASupport Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"vbasupportstatement\"><link href=\"text/sbasic/shared/03103350.xhp\" name=\"Anweisung Option VBASupport\">Anweisung Option VBASupport</link></variable>"
#: 03103350.xhp
msgctxt ""
@@ -28022,7 +28022,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "<emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value."
-msgstr ""
+msgstr "<emph>Ausdruck:</emph> Ein numerischer Ausdruck, der einen gültigen 8-Bit-ASCII-Wert (0-255) oder 16-Bit-Unicode-Wert darstellt."
#: 03120102.xhp
msgctxt ""
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Hilfe zu $[officename] Basic\">Hilfe zu %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sbasic/shared/03.po b/source/de/helpcontent2/source/text/sbasic/shared/03.po
index 8a522943d6a..05e048abeb3 100644
--- a/source/de/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/de/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-21 06:19+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr "Funktionen und Subroutinen für die Modulkontrolle."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index e48b2e2d681..34ac5239d96 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/helpcontent2/source/text/scalc/01.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-03-03 06:33+0000\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
+"PO-Revision-Date: 2019-05-28 04:20+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1551594802.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559017246.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -6358,7 +6358,7 @@ msgctxt ""
"bm_id3159147\n"
"help.text"
msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Jährlicher Nettozinssatz</bookmark_value><bookmark_value>Berechnen; jährlicher Nettozinssatz</bookmark_value><bookmark_value>Netto (jährlicher Zinssatz)</bookmark_value><bookmark_value>EFFECTIV (Funktion)</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -6366,7 +6366,7 @@ msgctxt ""
"hd_id3159147\n"
"help.text"
msgid "EFFECT"
-msgstr ""
+msgstr "EFFEKTIV"
#: 04060103.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3148805\n"
"help.text"
msgid "EFFECT(Nom; P)"
-msgstr ""
+msgstr "EFFEKTIV(Nom; P)"
#: 04060103.xhp
msgctxt ""
@@ -6422,7 +6422,7 @@ msgctxt ""
"par_id3150772\n"
"help.text"
msgid "<item type=\"input\">=EFFECT(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
-msgstr ""
+msgstr "<item type=\"input\">=EFFEKTIV(9,75%;4)</item> = 10,11 %. Der jährliche effektive Zins beträgt demzufolge 10,11 %."
#: 04060103.xhp
msgctxt ""
@@ -9894,7 +9894,7 @@ msgctxt ""
"par_id3154297\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN2\">Gibt den Winkel (im Bogenmaß) zwischen der X-Achse und einer Linie vom Ursprung zum Punkt (Zahl_X|Zahl_Y) zurück.</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -9910,7 +9910,7 @@ msgctxt ""
"par_id3001800\n"
"help.text"
msgid "<emph>NumberX</emph> is the value of the x coordinate."
-msgstr ""
+msgstr "<emph>Zahl_X</emph> ist der Wert der X-Koordinate."
#: 04060106.xhp
msgctxt ""
@@ -9934,7 +9934,7 @@ msgctxt ""
"par_id5036165\n"
"help.text"
msgid "ATAN2 returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY)"
-msgstr ""
+msgstr "ARCTAN2 gibt den Winkel (im Bogenmaß) zwischen der X-Achse und einer Linie vom Ursprung zum Punkt (Zahl_X|Zahl_Y) zurück."
#: 04060106.xhp
msgctxt ""
@@ -9942,7 +9942,7 @@ msgctxt ""
"par_id3154692\n"
"help.text"
msgid "<item type=\"input\">=ATAN2(-5;9)</item> returns 2.07789 radians."
-msgstr ""
+msgstr "<item type=\"input\">=ARCTAN2(-5;9)</item> gibt 2,07789 zurück."
#: 04060106.xhp
msgctxt ""
@@ -9950,7 +9950,7 @@ msgctxt ""
"par_id5036166\n"
"help.text"
msgid "To get the angle in degrees apply the DEGREES function to the result."
-msgstr ""
+msgstr "Um den Winkel im Gradmaß zu erhalten, wenden Sie die Funktion GRAD auf das Ergebnis an."
#: 04060106.xhp
msgctxt ""
@@ -9958,7 +9958,7 @@ msgctxt ""
"par_id1477095\n"
"help.text"
msgid "<input>=DEGREES(ATAN2(12.3;12.3))</input> returns 45. The tangent of 45 degrees is 1."
-msgstr ""
+msgstr "<input>=GRAD(ARCTAN2(12,3;12,3))</input> ergibt 45. Der Tangens von 45 Grad ist 1."
#: 04060106.xhp
msgctxt ""
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Suchen Sie die Datei mit den einzufügenden Daten.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Geben Sie die URL oder den Dateinamen ein, der die einzufügenden Daten enthält, und drücken Sie die Eingabetaste.</ahelp> Erst dann wird die Datei vom Netzwerk oder Dateisystem abgerufen."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Wählen Sie die Tabelle oder den Datenbereich mit den einzufügenden Daten aus.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -45270,7 +45270,7 @@ msgctxt ""
"hd_id3147438\n"
"help.text"
msgid "Enable natural sort"
-msgstr "Aktiviere die natürliche Sortierung"
+msgstr "Natürliche Sortierung verwenden"
#: 12030200.xhp
msgctxt ""
@@ -45278,7 +45278,7 @@ msgctxt ""
"par_id3149378\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
-msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natürliche Sortierung ist ein Sortieralgorithmus, der mit einer Zeichenkette vorangestellte Zahlen sortiert, die auf den Wert des Zahlenelements in jeder sortierten Zahl basiert, anstatt auf der traditionellen Art sie als gewöhnliche Zeichenketten zu sortieren.</ahelp> Nehmen Sie beispielsweise eine Wertereihe wie A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. Wenn Sie diese Werte in einen Zellenbereich bringen und sie sortieren lassen, wird A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9 herauskommen. Während dieses Sortierverhalten vielleicht für die Sinn macht, die den zugrunde liegenden Sortiermechanismus verstehen, scheint er für den Rest der Bevölkerung verwirrend oder zumindest unpraktisch. Mit der aktivierten Funktion Natürliche Sortierung werden die im obigen Beispiel angegebenen Werte „richtig“ sortiert, was den Komfort der Sortieroperationen im Allgemeinen verbessert."
+msgstr "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natürliche Sortierung ist ein Sortieralgorithmus, der mit einer Zeichenkette vorangestellte Zahlen sortiert, die auf den Wert des Zahlenelements in jeder sortierten Zahl basiert, anstatt auf der traditionellen Art sie als gewöhnliche Zeichenketten zu sortieren.</ahelp> Nehmen Sie beispielsweise eine Wertereihe wie A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. Wenn Sie diese Werte in einen Zellenbereich bringen und sie sortieren lassen, wird A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9 herauskommen. Während dieses Sortierverhalten vielleicht für die Sinn macht, die den zugrunde liegenden Sortiermechanismus verstehen, scheint er für den Rest der Bevölkerung verwirrend oder zumindest unpraktisch. Mit der aktivierten Funktion Natürliche Sortierung verwenden werden die im obigen Beispiel angegebenen Werte „richtig“ sortiert, was den Komfort der Sortieroperationen im Allgemeinen verbessert."
#: 12030200.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Gibt den Zellbereich an, der mit den im Feld <emph>Konsolidierungsbereiche</emph> aufgeführten Zellbereichen konsolidiert werden soll. Wählen Sie in einer Tabelle einen Zellbereich aus und klicken Sie dann auf <emph>Hinzufügen</emph>. Sie können auch den Namen einer vordefinierten Zelle aus der Liste <emph>Quelldatenbereich</emph> wählen.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/schart/00.po b/source/de/helpcontent2/source/text/schart/00.po
index 215149a20ae..acb1bb1eaaa 100644
--- a/source/de/helpcontent2/source/text/schart/00.po
+++ b/source/de/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-03 06:43+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.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: 1551595406.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Im Dialog Diagrammtyp eines Linien- oder XY-Diagramms, das Linien ausgibt, wählen Sie Glättung im Dropdown-Feld Linientyp und klicken dann auf die Schaltfläche Eigenschaften.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">Im Dialog Diagrammtyp eines Linien- oder XY-Diagramms mit dargestellten Linien wählen Sie „Gestuft“ im Dropdown-Feld Linien aus und klicken dann auf die Schaltfläche Eigenschaften.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/de/helpcontent2/source/text/sdraw.po b/source/de/helpcontent2/source/text/sdraw.po
index fbdf2fb3cd9..a910ce6ef21 100644
--- a/source/de/helpcontent2/source/text/sdraw.po
+++ b/source/de/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-12 04:41+0000\n"
+"PO-Revision-Date: 2019-05-14 04:02+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557636080.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557806579.000000\n"
#: main0000.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Einfügen"
#: main_insert.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id3148797\n"
"help.text"
msgid "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insert</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_insert.xhp\" name=\"Einfügen\">Einfügen</link>"
#: main_insert.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
-msgstr ""
+msgstr "In diesem Menü sind alle Befehle zusammengefasst, die zum Einfügen neuer Elemente in das Dokument dienen, wie beispielsweise Fanglinien, Grafiken, Objekte, Symbole und andere Dateien."
#: main_insert.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Ebene...\">Ebene...</link>"
#: main_insert.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"hd_id3147397\n"
"help.text"
msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Fangpunkt/-linie...\">Fangpunkt/-linie...</link>"
#: main_insert.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"hd_id0915200910361385\n"
"help.text"
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Kommentar</link>"
#: main_insert.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Sonderzeichen...\">Sonderzeichen...</link>"
#: main_insert.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id3150749\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink...\">Hyperlink...</link>"
#: main_insert.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"hd_id3156385\n"
"help.text"
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Tabelle...\">Tabelle...</link>"
#: main_insert.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"hd_id3147003\n"
"help.text"
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagramm...\">Diagramm...</link>"
#: main_insert.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id0302200904020595\n"
"help.text"
msgid "Inserts a chart."
-msgstr ""
+msgstr "Fügt ein Diagramm ein."
#: main_insert.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Schwebender Rahmen...\">Schwebender Rahmen...</link>"
#: main_insert.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"Datei...\">Datei...</link>"
#: main_page.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Folie"
#: main_page.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"hd_id41556822227733\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Folie</link>"
#: main_page.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id771556822318420\n"
"help.text"
msgid "This menu provides page management and navigation commands."
-msgstr ""
+msgstr "Dieses Menü bietet Befehle zur Verwaltung und Navigation auf Folien."
#: main_page.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"hd_id131556822326832\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"Neue Folie\">Neue Folie</link>"
#: main_page.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"hd_id3155091\n"
"help.text"
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Eigenschaften...\">Eigenschaften...</link>"
#: main_tools.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/sdraw/00.po b/source/de/helpcontent2/source/text/sdraw/00.po
index e13f0af94da..b5c6787122b 100644
--- a/source/de/helpcontent2/source/text/sdraw/00.po
+++ b/source/de/helpcontent2/source/text/sdraw/00.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 19:23+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-15 03:39+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494357780.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557891589.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Menu"
-msgstr ""
+msgstr "Menü Folie"
#: page_menu.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Wählen Sie <emph>Folie - Eigenschaften...</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Wählen Sie <emph>Folie - Eigenschaftten...</emph> und das Register <emph>Seite</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Wählen Sie <emph>Folie - Eigenschaften...</emph> und das Register <emph>Hintergrund</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Page - Master Page</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Wählen Sie <emph>Folie - Masterfolie...</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <emph>Page - New Page</emph>"
-msgstr ""
+msgstr "Wählen Sie <emph>Folie - Neue Folie</emph>"
#: page_menu.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id1001556823044677\n"
"help.text"
msgid "On the <emph>Insert</emph> bar, click"
-msgstr ""
+msgstr "In der Symbolleiste <emph>Einfügen</emph> klicken Sie auf"
#: page_menu.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id351556823072396\n"
"help.text"
msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Symbol</alt></image>"
#: page_menu.xhp
msgctxt ""
@@ -102,4 +102,4 @@ msgctxt ""
"par_id831556823072396\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Neue Folie"
diff --git a/source/de/helpcontent2/source/text/sdraw/01.po b/source/de/helpcontent2/source/text/sdraw/01.po
index ade390899a8..32e6d45da5f 100644
--- a/source/de/helpcontent2/source/text/sdraw/01.po
+++ b/source/de/helpcontent2/source/text/sdraw/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 19:23+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-15 03:42+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494357780.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557891741.000000\n"
#: new_page.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Neue Folie"
#: new_page.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3150202\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"Neue Folie\">Neue Folie</link>"
#: new_page.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3152988\n"
"help.text"
msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
-msgstr ""
+msgstr "<variable id=\"seitetext\">Fügt eine neue leere Folie hinter der ausgewählten Folie ein.</variable> Alle eventuell folgenden Folien werden nach hinten verschoben und erhalten neue Standardnamen. Fügen Sie beispielsweise hinter Folie 2 eine Folie ein, so wird die alte Folie 3, wenn es diese gab, jetzt zu Folie 4."
#: page_properties.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Folie"
#: page_properties.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"hd_id231556821873595\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Folie"
#: page_properties.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id571556821811542\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Legt Folienausrichtung, Folienränder, Folienhintergrund und andere Layoutoptionen fest.</ahelp></variable>"
#: page_properties.xhp
msgctxt ""
@@ -70,4 +70,4 @@ msgctxt ""
"par_id691556822054550\n"
"help.text"
msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Um den Hintergrund für alle Folien des aktiven Dokumentes zu ändern, klicken Sie auf <emph>OK</emph> und anschließend auf <emph>Ja</emph> im Dialog <emph>Folieneinstellungen</emph>."
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index 781db1da936..66e98427dda 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/helpcontent2/source/text/shared/00.po
@@ -3,9 +3,9 @@ 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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-05-10 13:24+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-14 03:56+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557494684.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1557806209.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -6582,7 +6582,7 @@ msgctxt ""
"par_idN1092E\n"
"help.text"
msgid "<variable id=\"guides\">Choose <emph>View - Snap Guides</emph> (Impress or Draw).</variable>"
-msgstr "<variable id=\"guides\">Wählen Sie <emph>Ansicht - Fanglinien</emph> (Impress oder Draw).</variable>"
+msgstr "<variable id=\"guides\">Wählen Sie <emph>Einfügen - F~angpunkt/-linie...</emph> (Impress oder Draw).</variable>"
#: 00000404.xhp
msgctxt ""
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Wählen Sie <switchinline select=\"sys\"><case
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - $[officename] - Personalisierung</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index 7c87f722efa..28d48979990 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-09 18:31+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.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: 1554834685.000000\n"
#: 01010000.xhp
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/de/helpcontent2/source/text/shared/02.po b/source/de/helpcontent2/source/text/shared/02.po
index 575980f2023..f4bc8a72e8d 100644
--- a/source/de/helpcontent2/source/text/shared/02.po
+++ b/source/de/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-17 23:26+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.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: 1552865193.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Legt fest, ob eine Textauswahl in einem Steuerelement weiterhin markiert bleiben soll, wenn dieses Steuerelement nicht mehr fokussiert ist.</ahelp> Wird <emph>Auswahl verstecken</emph> auf \"Nein\" gesetzt, bleibt der ausgewählte Text markiert, wenn das Steuerelement, das den Text enthält, nicht mehr fokussiert ist."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/guide.po b/source/de/helpcontent2/source/text/shared/guide.po
index a7870b44112..5f654abbe0e 100644
--- a/source/de/helpcontent2/source/text/shared/guide.po
+++ b/source/de/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-03-18 19:16+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-16 12:52+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1552936587.000000\n"
+"X-POOTLE-MTIME: 1558011154.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,18 +3939,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: convertfilters.xhp
msgctxt ""
@@ -4518,7 +3958,7 @@ msgctxt ""
"par_calc87\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Microsoft Works-Dokument"
#: convertfilters.xhp
msgctxt ""
@@ -4534,15 +3974,7 @@ msgctxt ""
"par_calc90\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works für Mac-Dokument (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -4550,15 +3982,7 @@ msgctxt ""
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Office Open XML-Tabellendokument"
#: convertfilters.xhp
msgctxt ""
@@ -4566,15 +3990,7 @@ msgctxt ""
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Office Open XML Tabellendokument Dokumentvorlage"
#: convertfilters.xhp
msgctxt ""
@@ -4582,15 +3998,7 @@ msgctxt ""
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
+msgstr "OpenDocument-Tabellendokument (Flat XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4598,15 +4006,7 @@ msgctxt ""
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4614,7 +4014,7 @@ msgctxt ""
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
-msgstr ""
+msgstr "Quattro Pro 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4630,7 +4030,7 @@ msgctxt ""
"par_calc108\n"
"help.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "QuattroPro-Dokument"
#: convertfilters.xhp
msgctxt ""
@@ -4646,15 +4046,7 @@ msgctxt ""
"par_calc111\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
@@ -4662,7 +4054,7 @@ msgctxt ""
"par_calc114\n"
"help.text"
msgid "SYLK"
-msgstr ""
+msgstr "SYLK"
#: convertfilters.xhp
msgctxt ""
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,26 +4259,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4982,15 +4270,7 @@ msgctxt ""
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,26 +4707,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -5718,7 +4718,7 @@ msgctxt ""
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5734,7 +4734,7 @@ msgctxt ""
"par_graphicfilter33\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/de/helpcontent2/source/text/shared/optionen.po b/source/de/helpcontent2/source/text/shared/optionen.po
index 1eec7866521..f399cb2cf20 100644
--- a/source/de/helpcontent2/source/text/shared/optionen.po
+++ b/source/de/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: 2019-02-11 11:53+0100\n"
-"PO-Revision-Date: 2019-03-03 06:15+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-14 04:08+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\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: 1551593730.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1557806890.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -10958,7 +10958,7 @@ msgctxt ""
"par_id3152940\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/backgroundback\">Specifies whether to use the cache for displaying objects on the master slide.</ahelp> This speeds up the display. Unmark the <emph>Use background cache</emph> option if you want to display changing contents on the master slide."
-msgstr "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/backgroundback\">Für die Anzeige von Objekten auf dem Folienmaster wird der Arbeitsspeicher verwendet.</ahelp> Dadurch wird der Bildschirmaufbau beschleunigt. Wenn die Änderungen am Inhalt auf dem Folienmaster sichtbar sein sollen, deaktivieren Sie die Option <emph>Cache für Hintergrund verwenden</emph>."
+msgstr "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/backgroundback\">Für die Anzeige von Objekten auf der Masterfolie wird der Arbeitsspeicher verwendet.</ahelp> Dadurch wird der Bildschirmaufbau beschleunigt. Wenn die Änderungen am Inhalt auf der Masterfolie sichtbar sein sollen, deaktivieren Sie die Option <emph>Cache für Hintergrund verwenden</emph>."
#: 01070500.xhp
msgctxt ""
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "Weitere Informationen zu OpenCL finden Sie in Wikipedia: <link href=\"https://de.wikipedia.org/wiki/OpenCL\">https://de.wikipedia.org/wiki/OpenCL</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalisierung"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>Themen; Einstellungen</bookmark_value><bookmark_value>Einstellungen; Themen</bookmark_value><bookmark_value>Personalisierung; Mozilla Firefox Themen</bookmark_value><bookmark_value>Personas; Personalisierung</bookmark_value><bookmark_value>Personalisierung; Personas</bookmark_value><bookmark_value>Mozilla Firefox Themen; Personalisierung</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalisierung</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Sie können Ihre %PRODUCTNAME Anwendung mit denselben Themes personalisieren, die für Mozilla Firefox verfügbar sind. Die Menüleiste sowie die Symbolleisten, die oben und unten angedockt sind, werden mit dem gewählten Theme im Hintergrund dargestellt."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Themes von Mozilla Firefox sind auf der Mozilla-Webseite unter der folgenden Adresse verfügbar: <link href=\"https://addons.mozilla.org/de/firefox/themes/\">https://addons.mozilla.org/de/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Jedes Firefox-konforme Theme funktioniert auch mit %PRODUCTNAME. Dennoch sieht nicht jedes Theme gut aus - Wenn das Bild ungeeignet ist, kann es sich mit den Menüs und den Symbolen der Symbolleisten vermischen."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Firefox Themes:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Die folgenden Optionen stehen zur Verfügung:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Normale Ansicht ohne Themes"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Der Hintergrund der Symbolleisten erbt die Hintergrundeinstellungen Ihres Desktopumgebung.</ahelp> Dies ist die Standardeinstellung für %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Vorinstalliertes Theme"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Verwenden Sie diese Option, um eines der vorinstallierten Themes zu verwenden.</ahelp> Ergänzend zu den Standardeinstellungen kann Ihr Systemadministrator ein benutzerdefiniertes Theme während der %PRODUCTNAME-Installation hinzugefügt haben. Bei dieser Einstellung wird dieses angezeigt."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Eigenes Theme"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Wählen Sie diese Option aus, um den Dialog „Firefox-Theme auswählen“ zu öffnen und ein Theme auszuwählen.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Dialog Firefox-Themes auswählen"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Dieser Dialog erlaubt es Ihnen, spezielle Themes zu installieren oder existierende Themes von der Mozilla Firefox-Webseite hinzuzufügen."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Suchen"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Stellt Suchbegriffe zur Verfügung, um nach Themes auf der Add-on-Seite von Mozilla zu suchen, oder bietet die Möglichkeit, direkt Theme-Adressen zu einem bestimmten Theme einzugeben.</ahelp> Verwenden Sie Ihren Browser, um auf der Webseite ein Theme zu finden, und kopieren Sie die in der Adresszeile angezeigte URL. Fügen Sie diese anschließend in das Suchfeld des Dialogs ein. Klicken Sie auf <item type=\"menuitem\">Gehe zu</item> oder drücken Sie die <item type=\"keycode\">Eingabetaste</item>, um das Theme herunterzuladen und in %PRODUCTNAME zu installieren."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Themes mittels Kategorie finden"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Zeigt eine zufällige Auswahl von neun Themes an, basierend auf den Kategorien, die auf den Schaltflächen angezeigt werden.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Klicken Sie auf eine der 5 Schaltflächen, um im Bildbereich unten eine zufällige Auswahl von neun Themes der Kategorie anzuzeigen, die mit der Kategorie der Schaltfläche bezeichnet sind."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Um eines der angezeigten Themes zu übernehmen, klicken Sie auf dessen Bild und anschließend auf <item type=\"menuitem\">OK</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/de/helpcontent2/source/text/simpress.po b/source/de/helpcontent2/source/text/simpress.po
index 22e39d2c7f4..0eec14dd350 100644
--- a/source/de/helpcontent2/source/text/simpress.po
+++ b/source/de/helpcontent2/source/text/simpress.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-02-24 20:06+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2019-05-15 03:55+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1551038805.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557892528.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Bearbeiten"
#: main_edit.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_edit.xhp\" name=\"Bearbeiten\">Bearbeiten</link>"
#: main_edit.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Dieses Menü enthält Befehle zur Bearbeitung des Inhalts des aktuellen Dokuments.</ahelp>"
#: main_edit.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"hd_id3154649\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Punkte\">Punkte</link>"
#: main_edit.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id3154766\n"
"help.text"
msgid "Switches the <emph>Edit Points</emph> mode on and off."
-msgstr ""
+msgstr "Schaltet den Modus <emph>Punkte bearbeiten</emph> ein und aus."
#: main_edit.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"hd_id3145116\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Klebepunkte\">Klebepunkte</link>"
#: main_edit.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id3147403\n"
"help.text"
msgid "Switches the <emph>Edit Glue Points</emph> mode on and off."
-msgstr ""
+msgstr "Schaltet den Modus <emph>Klebepunkte bearbeiten</emph> ein und aus."
#: main_edit.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"hd_id3150396\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Feldbefehl...\">Feldbefehl...</link>"
#: main_edit.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"hd_id3149355\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Verknüpfungen...\">Verknüpfungen...</link>"
#: main_edit.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"hd_id0914201502131542\n"
"help.text"
msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Objekt\">Objekt</link>"
#: main_format.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: main_format.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
#: main_format.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Enthält Befehle zur Formatierung des Layouts und des Inhalts Ihres Dokuments.</ahelp>"
#: main_format.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"hd_id3147401\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Zeichen...\">Zeichen...</link>"
#: main_format.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"hd_id3149941\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Absatz...\">Absatz...</link>"
#: main_format.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"hd_id3147299\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Aufzählungszeichen und Nummerierung...\">Aufzählungszeichen und Nummerierung...</link>"
#: main_format.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"hd_id3149499\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position und Größe...\">Position und Größe...</link>"
#: main_format.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"hd_id3154510\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Linie...\">Linie...</link>"
#: main_format.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"hd_id3149021\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Fläche...\">Fläche...</link>"
#: main_format.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"hd_id3155961\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text...\">Text...</link>"
#: main_format.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"hd_id3156286\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Folienvorlage...\">Folienvorlage...</link>"
#: main_format.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"hd_id3163827\n"
"help.text"
msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Folienlayout...\">Folienlayout...</link>"
#: main_slide.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Folie"
#: main_slide.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"hd_id0908201507475698\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Folie</link>"
#: main_slide.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_id0908201507482661\n"
"help.text"
msgid "This menu provides slide management and navigation commands."
-msgstr ""
+msgstr "Dieses Menü bietet Befehle zur Verwaltung und Navigation auf der Folien."
#: main_slide.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Neue Folie\">Neue Folie</link>"
#: main_slide.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"hd_id551556824896520\n"
"help.text"
msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Eigenschaften...\">Eigenschaften...</link>"
#: main_tools.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "Extras"
#: main_tools.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"hd_id3154017\n"
"help.text"
msgid "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_tools.xhp\" name=\"Extras\">Extras</link>"
#: main_tools.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Enthält Rechtschreibfunktionen, die Gallery mit Grafiken, die Sie in das Dokument einfügen können, sowie Funktionen zum Konfigurieren von Menüs und Programmvoreinstellungen.</ahelp>"
#: main_tools.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"hd_id3145590\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Verweissensitive Grafik...\">Verweissensitive Grafik...</link>"
#: main_tools.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id3153248\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoKorrektur-Optionen...\">AutoKorrektur-Optionen...</link>"
#: main_tools.xhp
msgctxt ""
@@ -1606,4 +1606,4 @@ msgctxt ""
"hd_id3149130\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Anpassen...\">Anpassen...</link>"
diff --git a/source/de/helpcontent2/source/text/simpress/00.po b/source/de/helpcontent2/source/text/simpress/00.po
index 8c6445555c4..5a3a746116a 100644
--- a/source/de/helpcontent2/source/text/simpress/00.po
+++ b/source/de/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-03-14 16:56+0000\n"
+"PO-Revision-Date: 2019-05-15 03:57+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1552582611.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557892670.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_id3155530\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Slide - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Wählen Sie <emph>Folie - Eigenschaften...</emph></variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id3145386\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Slide - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Wählen Sie <emph>Folie - Eigenschaftten...</emph> und das Register <emph>Seite</emph></variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Slide - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Wählen Sie <emph>Folie - Eigenschaften...</emph> und das Register <emph>Hintergrund</emph></variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_id3155266\n"
"help.text"
msgid "<variable id=\"adnsei\">Choose <emph>Slide - Layout</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"adnsei\">Wählen Sie <emph>Folie - Layout</emph></variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3153012\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Change Slide Master</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Wählen Sie <emph>Folie - Folienmaster</emph></variable>"
#: slide_menu.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <emph>Slide - New Slide</emph>"
-msgstr ""
+msgstr "Wählen Sie <emph>Einfügen - Neue Folie</emph>"
#: slide_menu.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3685251\n"
"help.text"
msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Symbol</alt></image>"
#: slide_menu.xhp
msgctxt ""
@@ -1310,4 +1310,4 @@ msgctxt ""
"par_id7354512\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Neue Folie"
diff --git a/source/de/helpcontent2/source/text/simpress/01.po b/source/de/helpcontent2/source/text/simpress/01.po
index 4eaab1afc34..aa8ad66cb9c 100644
--- a/source/de/helpcontent2/source/text/simpress/01.po
+++ b/source/de/helpcontent2/source/text/simpress/01.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-03-14 17:02+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-15 04:00+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1552582957.000000\n"
+"X-POOTLE-MTIME: 1557892818.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"bm_id3154011\n"
"help.text"
msgid "<bookmark_value>slides; formatting</bookmark_value> <bookmark_value>formatting;slides</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Folien; formatieren</bookmark_value><bookmark_value>Formatieren; Folien</bookmark_value>"
#: 01180001.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Folie\">Folie</link>"
#: 03070000.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"par_idN105AB\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/pagenumber\">Adds a slide number placeholder to the master slide.</ahelp>"
-msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/pagenumber\">Fügt dem Folienmaster einen Platzhalter für eine Foliennummer hinzu.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/masterlayoutdlg/pagenumber\">Fügt der Masterfolie einen Platzhalter für eine Foliennummer hinzu.</ahelp>"
#: 03151200.xhp
msgctxt ""
@@ -2870,7 +2870,7 @@ msgctxt ""
"par_id3148868\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/backgrounds\">Unused master pages are not inserted.</ahelp>"
-msgstr "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/backgrounds\">Ungenutzte Folienmaster werden nicht eingefügt.</ahelp>"
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/backgrounds\">Ungenutzte Masterfolien werden nicht eingefügt.</ahelp>"
#: 04110200.xhp
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts the page number into the current slide or page.</ahelp> If you want to add a page number to every slide, choose View - Master<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> Slide</caseinline></switchinline> and insert the page number field. To change the number format, choose <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Slide</emph></caseinline><caseinline select=\"DRAW\"><emph>Page</emph></caseinline></switchinline><emph> - Properties - Page</emph> tab and then select a format from the list in the <emph>Layout Settings</emph> area."
-msgstr "<ahelp hid=\".\">Fügt die Seitenzahl in die gegenwärtige Folie oder Seite ein.</ahelp> Falls Sie eine Seitenzahl auf jeder Folie einfügen wollen, wählen Sie Ansicht - Folienmaster<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> Folie</caseinline></switchinline> und fügen das Seitenzahlfeld ein. Um das Zahlenformat zu ändern, wählen Sie das <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Folie</emph></caseinline><caseinline select=\"DRAW\"><emph>Seite</emph></caseinline></switchinline><emph> - Folieneigenschaften... - Seite</emph>-Register und dann ein Format aus der Liste im Bereich <emph>Layout-Einstellungen</emph>."
+msgstr "<ahelp hid=\".\">Fügt die Seitenzahl in die gegenwärtige Folie oder Seite ein.</ahelp> Falls Sie eine Seitenzahl auf jeder Folie einfügen möchten, wählen Sie Folie - Masterfolie...<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"></caseinline></switchinline> und fügen das Feld Seitenzahl ein. Um das Zahlenformat zu ändern, wählen Sie <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Folie</emph></caseinline><caseinline select=\"DRAW\"><emph>Folie</emph></caseinline></switchinline><emph> - Eigenschaften... - Seite</emph> und dann ein Format aus der Liste im Bereich <emph>Layout-Einstellungen</emph>."
#: 04990600.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_id3146121\n"
"help.text"
msgid "When you edit a style, the changes are automatically applied to all of the elements formatted with this style in your document. If you want to ensure that the styles on a specific slide are not updated, create a new <link href=\"text/simpress/guide/masterpage.xhp\" name=\"master slide\">master slide</link> for the slide."
-msgstr "Änderungen an den Formatvorlagen wirken sich auf alle Folien aus, die diese Formatvorlagen verwenden. Um eine Folie einer Präsentation anders als die restlichen Folien zu formatieren, müssen Sie für diese Folie einen neuen <link href=\"text/simpress/guide/masterpage.xhp\" name=\"Folienmaster\">Folienmaster</link> anlegen."
+msgstr "Änderungen an den Formatvorlagen wirken sich auf alle Folien aus, die diese Formatvorlagen verwenden. Um eine Folie einer Präsentation anders als die restlichen Folien zu formatieren, müssen Sie für diese Folie einen neuen <link href=\"text/simpress/guide/masterpage.xhp\" name=\"Masterfolie\">Masterfolie</link> anlegen."
#: 05100000.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"bm_id3154754\n"
"help.text"
msgid "<bookmark_value>changing; slide layouts</bookmark_value> <bookmark_value>slide layouts</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Ändern; Folienlayouts</bookmark_value><bookmark_value>Folienlayouts</bookmark_value>"
#: 05130000.xhp
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Opens a submenu with slide layouts.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"seite\"><ahelp hid=\".uno:ModifyPage\">Öffnet ein Untermenü mit Folienlayouts.</ahelp></variable>"
#: 05130000.xhp
msgctxt ""
@@ -3902,7 +3902,7 @@ msgctxt ""
"par_id31469757\n"
"help.text"
msgid "<switchinline select=\"appl\"> <caseinline select=\"IMPRESS\">The icon in the Presentation toolbar opens a submenu. Select the slide layout for the slide.</caseinline> </switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Das Symbol in der Symbolleiste Präsentation öffnet ein Untermenü. Wählen Sie das Folienlayout für die Folie.</caseinline></switchinline>"
#: 05140000.xhp
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Neue Folie"
#: new_slide.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"bm_id3159155\n"
"help.text"
msgid "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Einfügen; Folien</bookmark_value><bookmark_value>Folien; einfügen</bookmark_value>"
#: new_slide.xhp
msgctxt ""
@@ -8174,14 +8174,14 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Neue Folie\">Neue Folie</link>"
#: new_slide.xhp
msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
@@ -8326,7 +8326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Folie"
#: slide_properties.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"hd_id3149379\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Folie"
#: slide_properties.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Sets slide orientation, slide margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Legt Folienausrichtung, Folienränder, Folienhintergrund und andere Layoutoptionen fest.</ahelp></variable>"
#: slide_properties.xhp
msgctxt ""
@@ -8350,7 +8350,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "To change the background of all of the slides in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Um den Hintergrund für alle Folien des aktiven Dokumentes zu ändern, klicken Sie auf <emph>OK</emph> und anschließend auf <emph>Ja</emph> im Dialog <emph>Folieneinstellungen</emph>."
#: slidesorter.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress/02.po b/source/de/helpcontent2/source/text/simpress/02.po
index 84e79ee90dc..464b6058f7a 100644
--- a/source/de/helpcontent2/source/text/simpress/02.po
+++ b/source/de/helpcontent2/source/text/simpress/02.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-05-20 10:50+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2019-05-15 04:00+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526813445.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557892821.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"hd_id3149028\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Folie\">Folie</link>"
#: 10110000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress/guide.po b/source/de/helpcontent2/source/text/simpress/guide.po
index 9ef7e9e2298..daa7ba9c3fc 100644
--- a/source/de/helpcontent2/source/text/simpress/guide.po
+++ b/source/de/helpcontent2/source/text/simpress/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-03-14 17:03+0000\n"
+"PO-Revision-Date: 2019-05-14 04:17+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1552583019.000000\n"
+"X-POOTLE-MTIME: 1557807437.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"bm_id3153191\n"
"help.text"
msgid "<bookmark_value>footers;master slides</bookmark_value><bookmark_value>master slides; headers and footers</bookmark_value><bookmark_value>headers and footers; master slides</bookmark_value><bookmark_value>inserting;headers/footers in all slides</bookmark_value><bookmark_value>slide numbers on all slides</bookmark_value><bookmark_value>page numbers on all slides</bookmark_value><bookmark_value>date on all slides</bookmark_value><bookmark_value>time and date on all slides</bookmark_value>"
-msgstr "<bookmark_value>Fußzeilen; Folienmaster</bookmark_value><bookmark_value>Folienmaster; Kopf- und Fußzeilen</bookmark_value><bookmark_value>Kopf- und Fußzeilen; Folienmaster</bookmark_value><bookmark_value>Einfügen; Kopf-/Fußzeilen zu allen Folien</bookmark_value><bookmark_value>Foliennummern auf allen Folien</bookmark_value><bookmark_value>Seitenzahlen auf allen Folien</bookmark_value><bookmark_value>Datum auf allen Folien</bookmark_value><bookmark_value>Uhrzeit und Datum auf allen Folien</bookmark_value>"
+msgstr "<bookmark_value>Fußzeilen; Masterfolien</bookmark_value><bookmark_value>Masterfolien; Kopf- und Fußzeilen</bookmark_value><bookmark_value>Kopf- und Fußzeilen; Masterfolien</bookmark_value><bookmark_value>Einfügen; Kopf-/Fußzeilen zu allen Folien</bookmark_value><bookmark_value>Foliennummern auf allen Folien</bookmark_value><bookmark_value>Seitenzahlen auf allen Folien</bookmark_value><bookmark_value>Datum auf allen Folien</bookmark_value><bookmark_value>Uhrzeit und Datum auf allen Folien</bookmark_value>"
#: footer.xhp
msgctxt ""
@@ -3102,7 +3102,7 @@ msgctxt ""
"par_id3154507\n"
"help.text"
msgid "You can lock a layer to protect its contents, or hide a layer and its contents from view or from printing. When you add a new layer to a page, the layer is added to all of the pages in your document. However, when you add an object to a layer, it is only added to the current page. If you want the object to appear on all of the pages, add the object to the master slide (<item type=\"menuitem\">View - Master Slide</item>)."
-msgstr "Sie können eine Ebene sperren, um ihren Inhalt vor Bearbeitung zu schützen, oder Sie verbergen eine Ebene mit ihren Inhalten sowohl für die Anzeige als auch für das Drucken. Wenn Sie einer Seite eine neue Ebene hinzufügen, wird sie allen Seiten im Dokument hinzugefügt. Objekte werden jedoch immer nur zur aktuellen Seite hinzugefügt, unabhängig davon, auf welcher Ebene Sie die Objekte einfügen. Soll ein Objekt auf jeder Seite erscheinen, fügen Sie es dem Folienmaster (<item type=\"menuitem\">Ansicht - Folienmaster</item>) hinzu."
+msgstr "Sie können eine Ebene sperren, um ihren Inhalt vor Bearbeitung zu schützen, oder Sie verbergen eine Ebene mit ihren Inhalten sowohl für die Anzeige als auch für das Drucken. Wenn Sie einer Seite eine neue Ebene hinzufügen, wird sie allen Seiten im Dokument hinzugefügt. Objekte werden jedoch immer nur zur aktuellen Seite hinzugefügt, unabhängig davon, auf welcher Ebene Sie die Objekte einfügen. Soll ein Objekt auf jeder Seite erscheinen, fügen Sie es der Masterfolie (<item type=\"menuitem\">Ansicht - Masterfolie...</item>) hinzu."
#: line_arrow_styles.xhp
msgctxt ""
@@ -3774,7 +3774,7 @@ msgctxt ""
"bm_id3152596\n"
"help.text"
msgid "<bookmark_value>slide designs</bookmark_value><bookmark_value>master slides; designing</bookmark_value><bookmark_value>backgrounds; slides</bookmark_value><bookmark_value>slides; backgrounds</bookmark_value><bookmark_value>master pages, see master slides</bookmark_value>"
-msgstr "<bookmark_value>Folienvorlagen</bookmark_value><bookmark_value>Folienmaster; entwerfen</bookmark_value><bookmark_value>Hintergründe; Folien</bookmark_value><bookmark_value>Folien; Hintergründe</bookmark_value><bookmark_value>Masterfolien, siehe Folienmaster</bookmark_value>"
+msgstr "<bookmark_value>Folienvorlagen</bookmark_value><bookmark_value>Masterfolien; entwerfen</bookmark_value><bookmark_value>Hintergründe; Folien</bookmark_value><bookmark_value>Folien; Hintergründe</bookmark_value><bookmark_value>Masterfolien, siehe Folienmaster</bookmark_value>"
#: masterpage.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "<variable id=\"masterpage\"><link href=\"text/simpress/guide/masterpage.xhp\" name=\"Applying a Slide Design to a Master Slide\">Applying a Slide Design to a Master Slide</link></variable>"
-msgstr "<variable id=\"masterpage\"><link href=\"text/simpress/guide/masterpage.xhp\" name=\"Anwenden einer Folienvorlage auf einen Folienmaster\">Anwenden einer Folienvorlage auf einen Folienmaster</link></variable>"
+msgstr "<variable id=\"masterpage\"><link href=\"text/simpress/guide/masterpage.xhp\" name=\"Anwenden einer Folienvorlage auf eine Masterfolie\">Anwenden einer Folienvorlage auf eine Masterfolie</link></variable>"
#: masterpage.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_id3154017\n"
"help.text"
msgid "Every slide in a presentation has exactly one master slide, also known as master page. A master slide determines the text formatting style for the title and outline and the background design for all slides that use this master slide."
-msgstr "Jede Folie in einer Präsentation hat exakt einen Folienmaster. Ein Folienmaster legt die Textformatierung für den Titel und die Gliederung fest und das Hintergrunddesign für alle Folien, die diesen Folienmaster verwenden."
+msgstr "Jede Folie in einer Präsentation hat exakt eine Masterfolie. Eine Masterfolie legt die Textformatierung für den Titel und die Gliederung fest und das Hintergrunddesign für alle Folien, die diese Masterfolie verwenden."
#: masterpage.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/01.po b/source/de/helpcontent2/source/text/swriter/01.po
index 48131918b00..e98877a69f8 100644
--- a/source/de/helpcontent2/source/text/swriter/01.po
+++ b/source/de/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-03-13 04:53+0000\n"
+"PO-Revision-Date: 2019-05-18 03:56+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1552452782.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558151805.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -10334,7 +10334,7 @@ msgctxt ""
"par_id3152772\n"
"help.text"
msgid "<variable id=\"vorlg\"><ahelp hid=\"modules/swriter/ui/tocindexpage/addstylescb\">Includes the paragraph styles that you specify in the <emph>Assign Styles</emph> dialog as index entries. To select the paragraph styles that you want to include in the index, click the <emph>Assign Styles (...)</emph> button to the right of this box.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"vorlg\"><ahelp hid=\"modules/swriter/ui/tocindexpage/addstylescb\">Nimmt die Absatzvorlagen, die Sie im Dialog <emph>Vorlage zuweisen</emph> angeben, als Verzeichniseinträge auf. Um die im Verzeichnis zu berücksichtigenden Absatzvorlagen auszuwählen, klicken Sie auf die Schaltfläche <emph>Vorlage zuweisen (...)</emph> rechts neben diesem Feld.</ahelp></variable>"
#: 04120211.xhp
msgctxt ""
@@ -10342,7 +10342,7 @@ msgctxt ""
"par_id41550528154857\n"
"help.text"
msgid "You can include the Figure Index Heading or Bibliography Heading styles, as well as any other relevant heading style, to the Table of Contents."
-msgstr ""
+msgstr "Sie können für das Inhaltsverzeichnis die Überschrift-Vorlagen Abbildungsindex oder Literaturverzeichnis ebenso wie jede andere entsprechende Überschrift-Vorlage verwenden."
#: 04120211.xhp
msgctxt ""
@@ -10350,7 +10350,7 @@ msgctxt ""
"hd_id3149168\n"
"help.text"
msgid "Assign styles"
-msgstr "Vorlage zuweisen"
+msgstr "Vorlagen zuweisen"
#: 04120211.xhp
msgctxt ""
@@ -10358,7 +10358,7 @@ msgctxt ""
"par_id3145776\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Opens the <emph>Assign Styles</emph> dialog, where you can select the paragraph styles to include in the index. Choose the proper heading level on which the style will be included in the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Öffnet den Dialog <emph>Vorlagen zuweisen</emph>, in dem Sie in das Verzeichnis aufzunehmende Absatzvorlagen auswählen können. Wählen Sie die richtige Überschriftebene aus, für welche die Vorlage in dem Verzeichnis verwendet werden soll.</ahelp>"
#: 04120211.xhp
msgctxt ""
@@ -15534,7 +15534,7 @@ msgctxt ""
"par_idN10A8E\n"
"help.text"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Innerhalb der Textgrenzen halten"
#: 05060100.xhp
msgctxt ""
@@ -15550,7 +15550,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Keep inside text boundaries</emph> option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)."
-msgstr ""
+msgstr "Die Option <emph>Innerhalb der Textgrenzen halten</emph> ist standardmäßig aktiviert, wenn Sie ein Dokument öffnen, das mit einer Version von Writer älter als OpenOffice 2.0 erstellt wurde. Diese Option ist jedoch nicht beim Erstellen oder Öffnen von Dokumenten im Microsoft Word-Format (*.doc) aktiviert."
#: 05060100.xhp
msgctxt ""
@@ -18358,7 +18358,7 @@ msgctxt ""
"par_idN10944\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textorientation\">Select the orientation for the text in the cells.</ahelp> You can use the following formatting options to specify the orientation of text in table cells:"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textorientation\">Wählen Sie die Orientierung für den Text in den Zellen aus.</ahelp> Sie können folgende Formatierungsoptionen verwenden, um die Textorientierung in Tabellenzellen zu bestimmten:"
#: 05090300.xhp
msgctxt ""
@@ -18374,7 +18374,7 @@ msgctxt ""
"par_idN10968\n"
"help.text"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Vertikal (oben nach unten)"
#: 05090300.xhp
msgctxt ""
@@ -18390,7 +18390,7 @@ msgctxt ""
"par_idN10969\n"
"help.text"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Vertikal (unten nach oben)"
#: 05090300.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/guide.po b/source/de/helpcontent2/source/text/swriter/guide.po
index 56a83800304..9d7c16884f3 100644
--- a/source/de/helpcontent2/source/text/swriter/guide.po
+++ b/source/de/helpcontent2/source/text/swriter/guide.po
@@ -3,9 +3,9 @@ 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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-01-13 13:00+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-18 03:58+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1547384444.000000\n"
+"X-POOTLE-MTIME: 1558151930.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Klicken Sie in der Symbolleiste <emph>Standard</emph> auf das Symbol <emph>Navigator</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Symbol</alt></image>, um den <emph>Navigator</emph> aufzurufen."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "Klicken Sie im <emph>Navigator</emph> auf das Symbol <emph>Inhaltsansicht umschalten</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Symbol</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Klicken Sie auf eine Überschrift im <emph>Navigator</emph> und dann auf das Symbol <emph>Kapitel hoch</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Symbol</alt></image> beziehungsweise <emph>Kapitel runter</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Symbol</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Klicken Sie auf das Symbol <emph>Ebene erhöhen</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Symbol</alt></image> beziehungsweise <emph>Ebene verringern</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Symbol</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Klicken Sie auf das Symbol <emph>Angezeigte Überschriftenebenen</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Symbol</alt></image> und wählen Sie die gewünschte Anzahl aus der Liste."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
@@ -12230,7 +12230,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Regular Expressions in Text Searches"
-msgstr ""
+msgstr "Verwendung von regulären Ausdrücken bei der Textsuche"
#: search_regexp.xhp
msgctxt ""
@@ -12238,7 +12238,7 @@ msgctxt ""
"bm_id3150099\n"
"help.text"
msgid "<bookmark_value>wildcards, see regular expressions</bookmark_value><bookmark_value>searching; with regular expressions</bookmark_value><bookmark_value>regular expressions;searching</bookmark_value><bookmark_value>examples for regular expressions</bookmark_value><bookmark_value>characters;finding all</bookmark_value><bookmark_value>invisible characters;finding</bookmark_value><bookmark_value>paragraph marks;searching</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Platzhalter, siehe reguläre Ausdrücke</bookmark_value><bookmark_value>Suchen; mit regulären Ausdrücken</bookmark_value><bookmark_value>Reguläre Ausdrücke; Suchen</bookmark_value><bookmark_value>Beispiele für reguläre Ausdrücke</bookmark_value><bookmark_value>Zeichen; alle finden</bookmark_value><bookmark_value>Unsichtbare Zeichen; finden</bookmark_value><bookmark_value>Absatzmarkierungen; suchen</bookmark_value>"
#: search_regexp.xhp
msgctxt ""
@@ -12246,7 +12246,7 @@ msgctxt ""
"hd_id3150099\n"
"help.text"
msgid "<variable id=\"search_regexp\"><link href=\"text/swriter/guide/search_regexp.xhp\">Using Regular Expressions in Text Searches</link></variable>"
-msgstr ""
+msgstr "<variable id=\"search_regexp\"><link href=\"text/swriter/guide/search_regexp.xhp\">Verwenden von regulären Ausdrücken bei der Textsuche</link></variable>"
#: search_regexp.xhp
msgctxt ""
@@ -12254,7 +12254,7 @@ msgctxt ""
"par_id0509200916345516\n"
"help.text"
msgid "Regular expressions can be used to search for some unspecified or even invisible characters."
-msgstr ""
+msgstr "Reguläre Ausdrücke können verwendet werden, um nach nicht genau bestimmten oder unsichtbaren Zeichen zu suchen."
#: search_regexp.xhp
msgctxt ""
@@ -12262,7 +12262,7 @@ msgctxt ""
"par_id421554926388821\n"
"help.text"
msgid "Searching with regular expressions is different from searching with wildcards. %PRODUCTNAME Writer only supports searching with regular expressions."
-msgstr ""
+msgstr "Die Suche mir regulären Ausdrücken unterscheidet sich von der mit Platzhaltern. %PRODUCTNAME Writer unterstützt lediglich reguläre Ausdrücke bei der Suche."
#: search_regexp.xhp
msgctxt ""
@@ -12270,7 +12270,7 @@ msgctxt ""
"par_id3155182\n"
"help.text"
msgid "You can use regular expressions when you find and replace text in a document. For example, \"s.n\" finds \"sun\" and \"son\"."
-msgstr ""
+msgstr "Beim Suchen und Ersetzen von Text in einem Dokument können Sie reguläre Ausdrücke verwenden. Die Eingabe \"S.nne\" findet beispielsweise sowohl \"Sonne\" als auch \"Sinne\"."
#: search_regexp.xhp
msgctxt ""
@@ -12302,7 +12302,7 @@ msgctxt ""
"par_id3149843\n"
"help.text"
msgid "In the <item type=\"menuitem\">Find</item> box, type the search term and the regular expression(s) that you want to use in your search."
-msgstr ""
+msgstr "Geben Sie im Feld <item type=\"menuitem\">Suchen</item> den gewünschten Suchbegriff mit regulären Ausdrücken ein."
#: search_regexp.xhp
msgctxt ""
@@ -12326,7 +12326,7 @@ msgctxt ""
"par_id3149641\n"
"help.text"
msgid "The regular expression for a single character is a period (.)."
-msgstr ""
+msgstr "Der reguläre Ausdruck für einzelne Zeichen ist der Punkt (.)."
#: search_regexp.xhp
msgctxt ""
@@ -12334,7 +12334,7 @@ msgctxt ""
"par_id3153136\n"
"help.text"
msgid "The regular expression for zero or more occurrences of the previous character is an asterisk. For example: \"123*\" finds \"12\" \"123\", and \"1233\"."
-msgstr ""
+msgstr "Der reguläre Ausdruck für ein oder mehrere Vorkommen des vorherigen Zeichens ist ein Sternchen, so findet \"123*\" beispielsweise \"12\" \"123\" und \"1233\"."
#: search_regexp.xhp
msgctxt ""
@@ -12342,7 +12342,7 @@ msgctxt ""
"par_id3149609\n"
"help.text"
msgid "The regular expression combination to search for zero or more occurrences of any character is a period and asterisk (.*)."
-msgstr ""
+msgstr "Der reguläre Ausdruck für ein oder mehr Vorkommen eines beliebigen Zeichens ist ein Punkt gefolgt von einem Sternchen (.*)."
#: search_regexp.xhp
msgctxt ""
@@ -12350,7 +12350,7 @@ msgctxt ""
"par_id3149854\n"
"help.text"
msgid "The regular expression for the end of a paragraph is a dollar sign ($). The regular expression character combination for the start of a paragraph is a caret and a period (^.)."
-msgstr ""
+msgstr "Der reguläre Ausdruck für das letzte Zeichen am Absatzende ist ein Dollarzeichen ($). Die Kombination regulärer Ausdrücke für das erste Zeichen am Absatzbeginn ist ein Zirkumflex und ein Punkt (^.)."
#: search_regexp.xhp
msgctxt ""
@@ -12358,7 +12358,7 @@ msgctxt ""
"par_id0509200916345545\n"
"help.text"
msgid "The regular expression for a tab character is \\t."
-msgstr ""
+msgstr "Der reguläre Ausdruck für einen Tabulator ist \\t."
#: search_regexp.xhp
msgctxt ""
@@ -12374,7 +12374,7 @@ msgctxt ""
"par_id3149875\n"
"help.text"
msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of regular expressions\">List of regular expressions</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"Liste regulärer Ausdrücke\">Liste regulärer Ausdrücke</link>"
#: section_edit.xhp
msgctxt ""
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index a508f2b8959..729e6d704a5 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-28 14:02+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-26 04:43+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556460179.000000\n"
+"X-POOTLE-MTIME: 1558845795.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -7961,7 +7961,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Properties..."
-msgstr "~Einstellungen..."
+msgstr "~Eigenschaften..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8186,7 +8186,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Snap Guide..."
-msgstr "F~anglinien..."
+msgstr "F~angpunkt/-linie..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8375,7 +8375,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Master Page..."
-msgstr "Folienm~aster..."
+msgstr "M~asterfolie..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10427,7 +10427,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane"
-msgstr "Folienmasterbereich"
+msgstr "Bereich Folienmaster"
#: DrawWindowState.xcu
msgctxt ""
@@ -10436,7 +10436,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Page Master Pane (no selection)"
-msgstr "Folienmasterbereich (keine Auswahl)"
+msgstr "Bereich Folienmaster (keine Auswahl)"
#: DrawWindowState.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Tabellenvorlagen"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "~Weitere Felder"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Diagramm neu aufbauen"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "In Registern"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Gruppiert"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Satz auswählen"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/de/sc/messages.po b/source/de/sc/messages.po
index 22533974562..f49c80eadb8 100644
--- a/source/de/sc/messages.po
+++ b/source/de/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-07 04:10+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 03:13+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557202256.000000\n"
+"X-POOTLE-MTIME: 1559186032.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -3951,7 +3951,7 @@ msgstr "Art = 1 heißt Fälligkeit am Anfang einer Periode, Art = 0 am Ende."
#: sc/inc/scfuncs.hrc:450
msgctxt "SC_OPCODE_PMT"
msgid "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate."
-msgstr "Regelmäßige Zahlungen. Gibt die periodische Zahlung einer Jahresrente aus, die auf regelmäßigen Zahlungen und einen vorgegebenen periodischen Zinssatz basiert."
+msgstr "Regelmäßige Zahlungen. Gibt die periodische Zahlung einer Jahresrente aus, die auf regelmäßigen Zahlungen und einem vorgegebenen periodischen Zinssatz basiert."
#: sc/inc/scfuncs.hrc:451
msgctxt "SC_OPCODE_PMT"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(Exklusivzugriff)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "Keine benannten Bereiche im ausgewählten Dokument vorhanden"
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,13 +15775,13 @@ msgstr "Bedingte Formatierung verwalten"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Bereich"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
-msgstr ""
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Erste Bedingung"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Datenformular"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Schließen"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Neuer Datensatz"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Neu"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Löschen"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Wiederherstellen"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Vorheriger Datensatz"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Nächster _Datensatz"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Schließen"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Live-Datenströme"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Geben Sie die URL des Quelldokuments im lokalen Dateisystem oder im Internet hier ein."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Durchsuchen..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Datenbankbereich:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Datenquelle:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Zeichenkette suchen:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Quelldatenstrom"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Ergebnisse nach:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Eingabebereich auf tatsächlichen Dateninhalt zuschneiden"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Daten"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Spalten"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Zeilen"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Gruppiert nach"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervall:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parameter"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hilfe"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Datei"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Legt die Umrandung der ausgewählten Zellen fest."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Einzug vergrößern"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Einzug verkleinern"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Start"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Feld"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Einfügen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Einfügen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Layout"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objektausrichtung"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Layout"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistik"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Da_ten"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Daten"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Änderungen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Änderungen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ansicht"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ansicht"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Bild"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zeichnen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zeichnen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medien"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medien"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Drucken"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Drucken"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formular"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "E~xtras"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Suchergebnisse"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "_Diesen Dialog anzeigen"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "Sie können diesen Dialog unter Extras - Optionen... - LibreOffice Calc - Ansicht wieder aktivieren."
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Tabelle"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Zelle"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Inhalt"
@@ -22557,7 +22539,7 @@ msgstr "Formate einschließen"
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:76
msgctxt "sortoptionspage|naturalsort"
msgid "Enable natural sort"
-msgstr "Natürliche Sortierung aktivieren"
+msgstr "Natürliche Sortierung verwenden"
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:91
msgctxt "sortoptionspage|includenotes"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Glieder_ungssymbole"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "_Zusammenfassung der Suche"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Fenster"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Gitterlinien:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Farbe:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Anzeigen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Vor Zellhintergrund"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Verbergen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Seitenumbrüche"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "H_ilfslinien beim Bewegen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Optische Hilfen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Objekte/Bilder:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Diagramme:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Zei_chnungsobjekte:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Anzeigen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Verbergen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Anzeigen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Verbergen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Anzeigen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Ausblenden"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Tabellen s_ynchronisieren"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Maßstab"
diff --git a/source/de/scp2/source/activex.po b/source/de/scp2/source/activex.po
index 04f67e65b95..8e25ebd42a6 100644
--- a/source/de/scp2/source/activex.po
+++ b/source/de/scp2/source/activex.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-03-09 20:48+0100\n"
-"PO-Revision-Date: 2017-06-26 09:53+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2019-05-26 04:55+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1498470820.000000\n"
+"X-POOTLE-MTIME: 1558846558.000000\n"
#: module_activex.ulf
msgctxt ""
@@ -30,4 +30,4 @@ msgctxt ""
"STR_DESC_MODULE_OPTIONAL_ACTIVEXCONTROL\n"
"LngText.text"
msgid "Deprecated Component (see release notes) to enable Microsoft Internet Explorer to display %PRODUCTNAME documents."
-msgstr "Veraltete Komponente (siehe Release Notes) um im Microsoft Internet Explorer %PRODUCTNAME-Dokumente darzustellen."
+msgstr "Veraltete Komponente (siehe Versionshinweise) um im Microsoft Internet Explorer %PRODUCTNAME-Dokumente darzustellen."
diff --git a/source/de/scp2/source/ooo.po b/source/de/scp2/source/ooo.po
index 3c61cb228cb..3f4d86671d0 100644
--- a/source/de/scp2/source/ooo.po
+++ b/source/de/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-17 04:48+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-26 04:49+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1555476506.000000\n"
+"X-POOTLE-MTIME: 1558846187.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Dokument öffnen"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (abgesicherter Modus)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/de/scp2/source/winexplorerext.po b/source/de/scp2/source/winexplorerext.po
index b6bf0cb7c8c..000ce53109a 100644
--- a/source/de/scp2/source/winexplorerext.po
+++ b/source/de/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2017-11-20 10:06+0000\n"
"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.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: 1511172396.000000\n"
#: module_winexplorerext.ulf
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Ermöglicht dem Microsoft Windows Explorer, Informationen über %PRODUCTNAME-Dokumente anzuzeigen, wie beispielsweise Miniaturansichten."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/de/sd/messages.po b/source/de/sd/messages.po
index b7b1749c92b..c746685dfab 100644
--- a/source/de/sd/messages.po
+++ b/source/de/sd/messages.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-17 04:50+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-14 04:19+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555476641.000000\n"
+"X-POOTLE-MTIME: 1557807554.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -1648,12 +1648,12 @@ msgstr "Folienmaster:"
#: sd/inc/strings.hrc:289
msgctxt "STR_MASTERPAGE_NAME"
msgid "Master Page"
-msgstr "Folienmaster"
+msgstr "Masterfolie"
#: sd/inc/strings.hrc:290
msgctxt "STR_MASTERPAGE_LABEL"
msgid "Master Page:"
-msgstr "Folienmaster:"
+msgstr "Masterfolie:"
#: sd/inc/strings.hrc:291
msgctxt "STR_NOTES"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Klick, um Hyperlink zu öffnen:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Name für HTML-Design"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Datei"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hilfe"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Datei"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Feld"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Einfügen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Einfügen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Seite"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Seite"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Änderungen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Änderungen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ansicht"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ansicht"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "_Text"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "~Text"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabelle"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabelle"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Umwandeln"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Bild"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zeichnen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zeichnen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medien"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medien"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formular"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "E~xtras"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Formen anzeigen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Datei"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hilfe"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Datei"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Feld"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Einfügen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Einfügen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Folie"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "F~olie"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Bildschirmpräsentation"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Bildschirmpräsentation"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Änderungen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Änderungen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ansicht"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ansicht"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabelle"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabelle"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Umwandeln"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Bild"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zeichnen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zeichnen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medien"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medien"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formular"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "E~xtras"
@@ -5101,7 +5291,7 @@ msgstr "_Ansicht"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11590
msgctxt "notebookbar_groupedbar_full|oleB"
msgid "_Master Page"
-msgstr "_Folienmaster"
+msgstr "Master_folie"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11829
msgctxt "notebookbar_groupedbar_full|insertTextm"
diff --git a/source/de/sfx2/messages.po b/source/de/sfx2/messages.po
index 4902586f2d9..4e00e8717f0 100644
--- a/source/de/sfx2/messages.po
+++ b/source/de/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-17 04:51+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-26 04:53+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\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: 1555476686.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558846427.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " J: %1 M: %2 T: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Eigenschaft entfernen"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Der eingegebene Wert entspricht nicht dem festgelegten Typ.\n"
"Der Wert wird als Text gespeichert."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Vorlage existiert bereits. Überschreiben?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Zurück"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Der Name wird bereits für eine Vorlage verwendet."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Diese Vorlage existiert nicht."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Diese Vorlage kann nicht als Basisvorlage verwendet werden,\n"
"da eine Rekursion entstehen würde."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Dieser Name ist bereits der einer Standardvorlage.\n"
"Bitte einen anderen Namen vergeben."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Wenn Sie diese Vorlagen löschen, wird dem Text die Vorlage Standard zugewiesen.\n"
"Sollen die ausgewählten Vorlagen gelöscht werden?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Vorlagen in Verwendung: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Fehlerhafte Bestätigung des Kennwortes"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Senden"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Schriftart"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Vorschauen anzeigen"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Versionskommentar anzeigen"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(kein Name zugewiesen)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Vorlagenliste"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarchisch"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Gießkannenmodus"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Neue Vorlage aus Auswahl"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Vorlagen-Aktionen"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Vorlage aktualisieren"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Soll die Aufzeichnung wirklich abgebrochen werden? Alle bis zu diesem Punkt aufgezeichneten Schritte gehen damit verloren."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Aufzeichnung abbrechen"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Die Dokumentvorlagen werden jetzt für die erstmalige Benutzung einmal initialisiert."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Kein Standarddrucker gefunden.\n"
"Bitte wählen Sie einen Drucker aus und versuchen Sie es noch einmal."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Der Drucker konnte nicht gestartet werden.\n"
"Bitte überprüfen Sie Ihre Druckerkonfiguration."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Drucker bereits in Betrieb"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (Schreibgeschützt)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Sollen die geänderten Einstellungen in das Dokument\n"
"übernommen werden?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Sollen die geänderten Einstellungen in das\n"
"Dokument übernommen werden?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Sollen die geänderten Einstellungen in das Dokument\n"
"übernommen werden?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Das Dokument kann zur Zeit nicht geschlossen werden,\n"
"da noch ein Druckauftrag läuft."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Bitte überprüfen Sie die Einstellungen von %PRODUCTNAME oder Ihres E-Mail-Programms."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Der Fehlercode ist $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Fehler beim Versenden der Nachricht"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Das Dokument kann nicht bearbeitet werden, beispielsweise aufgrund fehlender Rechte. Möchten Sie stattdessen mit einer Kopie weiterarbeiten?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Sie können auch versuchen, die Sperrung zu ignorieren und die Datei zum Bearbeiten zu öffnen."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "~Kopie öffnen"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "Öff~nen"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (repariertes Dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Das Dokument wurde nicht vom Server abgemeldet."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Helfen Sie uns, %PRODUCTNAME noch besser zu machen!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Mitmachen"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Ihre Spenden unterstützen unsere weltweite Gemeinschaft."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Spenden"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Sie starten erstmals Version %PRODUCTVERSION von %PRODUCTNAME. Möchten Sie die Neuerungen kennenlernen?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Versionshinweise"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Das Dokument ist schreibgeschützt geöffnet."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Diese PDF-Datei ist schreibgeschützt geöffnet, um das Signieren der bestehenden Datei zu ermöglichen."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Die Klassifizierungs-Beschriftung dieses Dokuments ist %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Das Dokument muss klassifiziert sein, bevor die Zwischenablage eingefügt werden kann."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Dieses Dokument hat eine niedrigere Klassifizierungsebene als die Zwischenablage."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Ebene"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nationale Sicherheit:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Exportkontrolle:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Ausleihe"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Dokument bearbeiten"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Dokument signieren"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dieses Dokument hat eine ungültige Signatur."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Die Signatur ist gültig, aber das Dokument wurde geändert"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Die Dokumentsignatur ist OK, aber das Zertifikat konnten nicht verifiziert werden."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Die Signatur ist OK, aber das Dokument ist nur teilweise signiert."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Das Zertifikat kann nicht verifiziert werden, sodass das Dokument nur teilweise signiert ist."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dieses Dokument ist digital signiert und die Signatur ist gültig."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Signaturen anzeigen"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Fenster schließen"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Andocken"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Abdocken"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Weitere Optionen"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Seitenleiste schließen"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Einstellungen der Seitenleiste"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Anpassung"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Standard wiederherstellen"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Seitenleiste schließen"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bienenkorb"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blauer Verlauf"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blaupausen Plan"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Leuchtend blau"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klassisch rot"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Wald"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impressionen"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lichter"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Kräftiges grün"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Mitternachtsblau"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natur"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Stift"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavier"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Fortschritt"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sonnenuntergang"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Traditionell"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Lebendig"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resümee"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderner Geschäftsbrief serifenlos"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderner Geschäftsbrief mit Serifen"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Geschäftsbrief mit Logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Entfernen"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alle löschen"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Kennwortlänge"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Das Kennwort, welches Sie eingegeben haben, verursacht Kompatibilitätsprobleme. Bitte geben Sie ein Kennwort ein, dass kürzer als 52 Bytes oder länger als 55 Bytes ist."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Versionskommentar:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Name"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Art"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Wert"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Art"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ja"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nein"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Ei_genschaft hinzufügen"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Name"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Art"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Wert"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Adresse:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Typ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_Kennwort ändern..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Dokumentvorlage:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Eigenschaften von „%1“"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Allgemein "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Beschreibung"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Benutzerdefinierte Eigenschaften"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS-Eigenschaften"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Sicherheit"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Dieses Produkt wurde durch %OOOVENDOR erstellt, basierend auf OpenOffice.org, welches dem Copyright 2000, 2011 Oracle und/oder seinen Tochtergesellschaften unterliegt. %OOOVENDOR erkennt alle Gemeinschaftsmitglieder an, bitte sehen Sie unter http://de.libreoffice.org/about-us/credits/ für weitere Details nach."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/de/shell/messages.po b/source/de/shell/messages.po
new file mode 100644
index 00000000000..511883ddffc
--- /dev/null
+++ b/source/de/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-26 04:57+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558846669.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Dokument öffnen"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Sie öffnen Dokument\n"
+"\n"
+"%DOCNAME\n"
+"\n"
+"Möchten Sie dieses zur Ansicht oder zum Bearbeiten öffnen?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Ansicht"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Abbrechen"
diff --git a/source/de/starmath/messages.po b/source/de/starmath/messages.po
index b56d622fb8e..8846e22f3bc 100644
--- a/source/de/starmath/messages.po
+++ b/source/de/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-03-07 05:49+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Beispiele"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Normal"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiv"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Fett"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "schwarz"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blau"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "grün"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "rot"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grau"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "hellgrün"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "dunkelrot"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "dunkelblau"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliv"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lila"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silber"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "türkis"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "gelb"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "unsichtbar"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "Größe"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "Schriftart"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "links"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "zentriert"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "rechts"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Kommandos"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formel"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokument wird gespeichert..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formel"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FEHLER : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Unerwartetes Zeichen"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Unerwartete Zeichen"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' erwartet"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' erwartet"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' erwartet"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' erwartet"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Linkes und rechtes Symbol nicht übereinstimmend"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans' oder 'serif' erwartet"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' gefolgt von einem unerwarteten Zeichen"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Doppelte Ausrichtung ist nicht erlaubt"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Doppelte Tief-/Hochstellung ist nicht erlaubt"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' erwartet"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Zeichenfarbe erwartet"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' erwartet"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Inhalt"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formeltext"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Umrandung"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Größe"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Original~größe"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "An ~Seitengröße anpassen"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skaliert"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elemente"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/de/svtools/messages.po b/source/de/svtools/messages.po
index 2d1aaecc642..b792a55310b 100644
--- a/source/de/svtools/messages.po
+++ b/source/de/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-17 04:53+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-26 04:58+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555476822.000000\n"
+"X-POOTLE-MTIME: 1558846703.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Rückgängig: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Wiederherstellen: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Letzter ~Befehl: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Unformatierter Text"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Unformatierter Text (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap-Bild (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface-Metadatei (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME Zeichnung-Format"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView-Bitmap/Animation (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info vom Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape Lesezeichen"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star Server Format"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star Objekt Format"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet Objekt"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "PlugIn Objekt"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 Objekt"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 Objekt"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 Objekt"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 Objekt"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 Objekt"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Global 4.0 Objekt"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Global 5.0 Objekt"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw Objekt"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 Objekt"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 Objekt"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 Objekt"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc Objekt"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 Objekt"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 Objekt"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart Objekt"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 Objekt"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 Objekt"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage Objekt"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 Objekt"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 Objekt"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath Objekt"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 Objekt"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 Objekt"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint Objekt"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE Link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word Objekt"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet Objekt"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office Dokument Objekt"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes Dokument Info"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx Dokument"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 Objekt"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Bildobjekt"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer Objekt"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web Objekt"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Global Objekt"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw Objekt"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress Objekt"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc Objekt"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart Objekt"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math Objekt"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metafile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datenquellen Objekt"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datenquellen Tabelle"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL Abfrage"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 Dialog"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Hyperlink"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-Format ohne Kommentare"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % kann nicht eingefügt werden."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt aus Datei % kann nicht eingefügt werden."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Weitere Objekte"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Unbekannte Quelle"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Name"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Größe"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Änderungsdatum"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Inhaltstyp"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Zeile: %1, Spalte: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Typ: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Ordner"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Datei"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Leeres Feld"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumerisch"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Zeichensatz"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Wörterbuch"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonbuch"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonetisch (alphanumerisch zuerst)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonetisch (alphanumerisch zuletzt)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumerisch"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Wörterbuch"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonetisch (alphanumerisch zuerst, nach Silben gruppiert)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonetisch (alphanumerisch zuerst, nach Konsonanten gruppiert)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonetisch (alphanumerisch zuletzt, nach Silben gruppiert)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonetisch (alphanumerisch zuletzt, nach Konsonanten gruppiert)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Heute"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Keines"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Leicht"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Leicht Kursiv"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Standard"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiv"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Fett"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Fett Kursiv"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Extrafett"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Extrafett Kursiv"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Normal"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Fett Schräg"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Schmal"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Schmal Fett"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Schmal Fett Kursiv"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Schmal Fett Schräg"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Schmal Kursiv"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Schmal Schräg"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extraleicht"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extraleicht Kursiv"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Schräg"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Halbfett"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Halbfett Kursiv"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Für Ausdruck und Anzeige am Bildschirm wird die gleiche Schriftart verwendet."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Druckerschrift. Die Bildschirmanzeige kann etwas abweichen."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Dieser Schriftstil wird nachgebildet oder der am besten passende Stil wird verwendet."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Diese Schriftart ist nicht installiert. Die am besten passende vorhandene Schriftart wird benutzt."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Durchsuchen..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Zum Anfang"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Nach links"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Nach rechts"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Ans Ende"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Hinzufügen"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontales Lineal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertikales Lineal"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1Bit-Schwellenwert"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1Bit-Gedithert"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4Bit-Graustufen"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4Bit-Farben"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8Bit-Graustufen"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8Bit-Farben"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24Bit-Echtfarben"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Das Bild belegt ungefähr %1 KB an Arbeitsspeicher."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Das Bild belegt ungefähr %1 KB an Arbeitsspeicher, die Dateigröße beträgt %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Die Dateigröße beträgt %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Andere CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Bereit"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Angehalten"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Löschen anstehend"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ausgelastet"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialisieren"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Wartend"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Anlaufen"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Verarbeiten"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Drucke"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fehler"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Unbekannter Server"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papierstau"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Papiermangel"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuelle Papierzufuhr"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papierproblem"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/A aktiv"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Ausgabefach ist voll"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Niedriger Tonerstand"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Kein Toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Seitenverwurf"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Benutzerzugriff notwendig"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Zu wenig Arbeitsspeicher"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Abdeckung offen"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiesparmodus"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standarddrucker"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d Dokumente"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Fertigstellen"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Weiter >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Zurück"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Schritte"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<kein>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Firma"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Abteilung"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Vorname"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Name"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Straße"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "PLZ"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ort"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Position"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Anrede"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Kürzel"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Grußformel"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefon (privat)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefon (geschäftlich)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-Mail"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notiz"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Benutzer 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Benutzer 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Benutzer 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Benutzer 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Bundesland"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefon Büro"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Telefon Funk"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Handy"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefon andere"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Einladen"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME benötigt eine Java-Laufzeitumgebung (JRE), um diese Aufgabe durchführen zu können. Bitte installieren Sie eine JRE und starten Sie dann %PRODUCTNAME neu."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME benötigt eine %BITNESS-Bit Java Runtime Environment (JRE), um diese Aufgabe auszuführen. Bitte installieren Sie eine JRE und starten Sie %PRODUCTNAME neu."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME benötigt Oracles Java Development Kit (JDK) für macOS 10.10 oder höher, um diese Aufgabe auszuführen. Bitte installieren Sie es und starten Sie %PRODUCTNAME neu."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Die Konfiguration von %PRODUCTNAME wurde geändert. Wählen Sie unter %PRODUCTNAME - Einstellungen - %PRODUCTNAME - Erweitert diejenige Java-Laufzeitumgebung aus, die %PRODUCTNAME verwenden soll."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Die Konfiguration von %PRODUCTNAME wurde geändert. Wählen Sie unter Extras - Optionen... - %PRODUCTNAME - Erweitert diejenige Java-Laufzeitumgebung aus, die %PRODUCTNAME verwenden soll."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME erfordert eine Java-Laufzeitumgebung (JRE), um diese Aufgabe auszuführen. Die ausgewählte JRE ist defekt. Bitte wählen Sie eine andere Version aus oder installieren Sie eine neue JRE und wählen Sie diese unter %PRODUCTNAME - Einstellungen - %PRODUCTNAME - Erweitert aus."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME erfordert eine Java-Laufzeitumgebung (JRE), um diese Aufgabe auszuführen. Die ausgewählte JRE ist defekt. Bitte wählen Sie eine andere Version aus oder installieren Sie eine neue JRE und wählen Sie diese im Menü unter Extras - Optionen... - %PRODUCTNAME - Erweitert aus."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ist erforderlich"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE auswählen"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ist defekt"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Quellcode"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Lesezeichen-Datei"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Bilder"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigurationsdatei"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Anwendung"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Datenbank-Tabelle"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systemdatei"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word Dokument"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Hilfedatei"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-Dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archivdatei"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Protokolldatei"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Datenbank"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Globaldokument"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Zeichnung"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Textdatei"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Verknüpfung"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Vorlage"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel Dokument"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel Vorlage"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Stapelverarbeitungsdatei"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Datei"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Ordner"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Textdokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Tabellendokument"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Präsentation"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Zeichnung"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-Dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Globaldokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formel"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datenbank"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 Tabellendokumentvorlage"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 Zeichnungsvorlage"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 Präsentationsvorlage"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 Textdokumentvorlage"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokales Laufwerk"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskettenlaufwerk"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-Laufwerk"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Netzwerkverbindung"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint Dokument"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint Vorlage"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 Formel"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Diagramm"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Zeichnung"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Tabellendokument"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 Präsentation"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Textdokument"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 Globaldokument"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML Dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument Datenbank"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Zeichnung"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formel"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Globaldokument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument Präsentation"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Tabellendokument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Text"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Tabellendokumentvorlage"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Zeichnungsdokumentvorlage"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Präsentationsdokumentvorlage"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Textdokument Vorlage"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Extension"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell Rechtschreibprüfung"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen Bindestrich"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes Thesaurus"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Liste ignorierter Wörter"
@@ -4127,7 +4129,7 @@ msgstr "Ilokano"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Englisch (Sambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/de/svx/messages.po b/source/de/svx/messages.po
index 2cb115940ee..0748beec0c5 100644
--- a/source/de/svx/messages.po
+++ b/source/de/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-07 04:11+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-26 05:03+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557202303.000000\n"
+"X-POOTLE-MTIME: 1558847020.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Links-nach-rechts (vertikal)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Unten-nach-oben, links-nach-rechts (vertikal)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Teilnummer:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Textteil:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Lichtquelle 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Farbe Licht 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Farbe Licht 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Farbe Licht 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Farbe Licht 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Farbe Licht 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Farbe Licht 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Farbe Licht 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Farbe Licht 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Wählen Sie den relativen Abstand des Farbverlauf-Schattens senkrecht zum Zentrum. 50 % entspricht der Mitte."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Kontur-Editor"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Übernehmen"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Arbeitsfläche"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Auswählen"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rechteck"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Punkte bearbeiten"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Punkte verschieben"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Punkte einfügen"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Punkte löschen"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoKontur"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Rückgängig "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Wiederholen"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipette"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Farbtoleranz"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Fußzeile"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Verweissensitive Grafik-Editor"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Übernehmen"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Öffnen..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Speichern..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Schließen"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Auswählen"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rechteck"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Freihandpolygon"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Punkte bearbeiten"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Punkte verschieben"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Punkte einfügen"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Punkte löschen"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Rückgängig "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Wiederholen"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktiv"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Eigenschaften..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresse:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Rahmen:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Text:"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME läuft nun im abgesicherten Modus mit temporär deaktivierten Benutzereinstellungen und Extensions.\n"
+"\n"
+"Sie können eine oder mehrere der folgenden Änderungen an Ihrem Benutzerprofil vornehmen, um anschließend zum Arbeiten zu %PRODUCTNAME zurückzukehren."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/de/sw/messages.po b/source/de/sw/messages.po
index 2914df9073d..ed9f4ad3219 100644
--- a/source/de/sw/messages.po
+++ b/source/de/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-07 05:30+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-26 05:05+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557207004.000000\n"
+"X-POOTLE-MTIME: 1558847153.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,7 +3118,7 @@ msgid "Change object title of $1"
msgstr "Objekttitel für $1 ändern"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Objektbeschreibung für $1 ändern"
@@ -7679,7 +7679,7 @@ msgstr "Zeichen"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Standard"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hilfe"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Datei"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Einfügen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Einfügen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Layout"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Verweise"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "~Bezüge"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Änderungen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Aufzeichnen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ansicht"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ansicht"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabelle"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabelle"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Bild"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Bild"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zeichnen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zeichnen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medien"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medien"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Drucken"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Drucken"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Formular"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Formular"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "E~xtras"
@@ -12160,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Datei"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Datei"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Start"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Einfügen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Einfügen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Umlauf"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Layout"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Layout"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Querverweise"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "~Verweise"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Überprüfen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Änderungen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Ansicht"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Ansicht"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "_Tabelle"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tabelle"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Bild"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "~Bild"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Zeichnen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Zeichnen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Medien"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Medien"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Drucken"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Drucken"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "_Formular"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "~Formular"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Extras"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Extras"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12449,7 +12449,7 @@ msgstr "_Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "_Rahmen"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12659,7 +12659,7 @@ msgstr "_Medien"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13372,8 +13372,8 @@ msgstr "Wortabstände in Zeilen mit manuellem Zeilenumbruch im Blocksatz ausdehn
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Formular schützen"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Verzeichnis"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Vorschau"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Vorschau"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Typ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Einträge"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Vorlagen"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Spalten"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Hintergrund"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Vorschau"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "E_bene"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Typ"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Bearbeiten..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Typ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Inhaltsverzeichnis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Stichwortverzeichnis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Abbildungsverzeichnis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Tabellenverzeichnis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Benutzerdefiniert"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektverzeichnis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Literaturverzeichnis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Geschützt vor manuellen Änderungen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Typ und Titel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Für:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Gesamtes Dokument"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Kapitel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Auswerten bis Ebene:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Verzeichnis erstellen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Gliederung"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Verzeichnismarkierung"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabellen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Te_xtrahmen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Bilder"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-Objekte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Ebene aus Ursprungskapitel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Weitere Vorlagen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Vorlagen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Vorlagen zuweisen..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Beschriftungen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektnamen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorie:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Anzeigen:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Verweise"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorie und Nummer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Beschriftungstext"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Erzeugen aus"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Aus folgenden Objekten erzeugen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Klammern:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Einträge nummerieren"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Keine]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatierung der Einträge"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Zusammenfassen gleicher Einträge"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Zusammenfassen mit _f oder ff"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Zusammenfassen mit -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Groß- und Kleinschreibung"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Einträge automatisch groß schreiben"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Schlüssel als eigener Eintrag"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Konko_rdanzdatei"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Datei"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Optionen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Sprache:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Schlüsseltyp:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sortieren"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "E_benen"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "A_bsatzvorlage"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Standard"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Bearbeiten"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "A_usrichtung"
@@ -17336,7 +17336,7 @@ msgstr "Die Verbindung zur Datenquelle konnte nicht hergestellt werden. Überpr
#: sw/uiconfig/swriter/ui/warndatasourcedialog.ui:25
msgctxt "warndatasourcedialog|check"
msgid "Check Connection Settings..."
-msgstr "Verbindungs-Enstellungen überprüfen..."
+msgstr "Verbindungs-Einstellungen überprüfen..."
#: sw/uiconfig/swriter/ui/warnemaildialog.ui:7
#: sw/uiconfig/swriter/ui/warnemaildialog.ui:16
diff --git a/source/dgo/cui/messages.po b/source/dgo/cui/messages.po
index b4cb4ac1a8c..6634972c58d 100644
--- a/source/dgo/cui/messages.po
+++ b/source/dgo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1664,107 +1664,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "कोई बी बाडर सैट्ट नेईं करो"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "सिर्फ बाह्‌रला बाडर सैट्ट करो"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "बाह्‌रला बाडर ते आडियां लाइनां सैट्ट करो"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "बाह्‌रला बाडर ते सब्भै अंदरलियां लाइनां सैट्ट करो"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "अंदरलियें लाइनें गी बदले बिजन बाह्‌रला बाडर सैट्ट करो"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "सिर्फ डायगनल लाइनां सैट्ट करो"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "सभनें चौनें बाडरें गी सैट्ट करो"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "सिर्फ खब्बे ते सज्जे बाडर सैट्ट करो"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "सिर्फ थल्ले ते धुर उप्पर आह्‌ले बाडर सैट्ट करो"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "सिर्फ खब्बा बाडर सैट्ट करो"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "थल्ले ते धुर उप्पर आह्‌ले ते सब्भै अंदरलियां लाइनां बाडर सैट्ट"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "खब्बे ते सज्जे बाडर, ते सब्भै अंदरलियां लाइनां सैट्ट करो"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "कोई छौरा नेईं "
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "थल्लै सज्जै छौरा करो"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "धुर उप्पर सज्जै छौरा करो"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "थल्लै खब्बै छौरा करो"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "धुर उप्पर खब्बै छौरा करो"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1807,7 +1802,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1927,7 +1922,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2167,7 +2162,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2422,12 +2417,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2497,7 +2492,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2577,7 +2572,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2818,7 +2813,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3448,68 +3443,73 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME बारै "
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "मेरी वैब साइट"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME API "
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3634,19 +3634,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "~प्रतिस्थापत करो"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "~प्रतिस्थापत करो"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "चौड़ाई "
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4538,6 +4538,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "घट्टोघट्ट शब्द लंबाई"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5720,29 +5880,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "विशेशतां"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "चगाठ: "
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "नांऽ "
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9549,85 +9709,85 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "दस्तावेज नांऽ \\ वस्तुस्थितिः "
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ते"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "सिस्टम शुरू होने दरान %PRODUCTNAME लोड करो "
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray तुर्त-शुरूकर्ता गी असमर्थ करो"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11606,24 +11766,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12278,102 +12423,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13456,27 +13505,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/dgo/extensions/messages.po b/source/dgo/extensions/messages.po
index 39bbd6a25d1..6d685f580e0 100644
--- a/source/dgo/extensions/messages.po
+++ b/source/dgo/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3254,191 +3254,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr " %1 टेबल लेई स्तंभ खाका "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "छुट्टा नांऽ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "लेखक (0)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "प्रकाशक "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "ध्याऽ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "संपादक "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "किस्म"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "ब’रा "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "शीर्शक "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "सिरनामां "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "सफा(ए)... "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "संस्करण"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~पुस्तक शीर्शक "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "भाग"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "प्रकाशन-किस्म "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "संस्था"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "संस्थान "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "विश्वविद्यालय "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "रपोट दी किस्म "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "म्हीना "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "रसाला "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "संख्या "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "लड़ी "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "टीका "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "नोट"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "बरतूनी-परिभाशत खेतर 1 "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "बरतूनी-परिभाशत खेतर 2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "बरतूनी-परिभाशत खेतर 3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "बरतूनी-परिभाशत खेतर 4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "बरतूनी-परिभाशत खेतर 5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3623,31 +3623,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "नमीं डेटा किस्म लेई नांऽ टाइप करो:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "कड़ी खेतर (बहु․)"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "सुझाओ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "मास्टर फार्म दे मजूदा रकाड बारै तफसीली डेटा-प्रदर्शन लेई उपफार्म बरतोई सकदे न.एह् करने लेई ,तुस निश्चत करी सकदे ओ जे उप फार्म दे केह्‌ड़े स्तंभ मास्टर फार्म दे केह्‌ड़े स्तंभें कन्नै मेल खंदे न ."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "लेबल "
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
index 551038402ec..be93fdcbb22 100644
--- a/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23789,6 +23789,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26162,6 +26171,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26180,6 +26198,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/dgo/sc/messages.po b/source/dgo/sc/messages.po
index d09ce3d71da..19dfcb7974a 100644
--- a/source/dgo/sc/messages.po
+++ b/source/dgo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15686,6 +15686,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
#, fuzzy
msgctxt "subtotalgrppage|liststore1"
@@ -16264,12 +16269,12 @@ msgstr "सशर्त रूप-रचनाकरण "
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17574,90 +17579,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "~बंद करो "
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "नमां रकाड "
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "नमां"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "म्हेसो "
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "ब्हाल करो "
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "पिछला रकाड "
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "अगला रकाड "
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "~बंद करो "
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "यूआरएल"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "तपाश करो"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "डेटाबेस फलाऽ(बहु.) "
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19477,36 +19439,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "डेटा "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "स्तंभ "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "पंगताल "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "दे मताबक समूह् कीते दा:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "वक्फा"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "ध्रुवे"
@@ -19655,167 +19622,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22484,17 +22453,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24492,113 +24471,118 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~विंडो "
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Colour"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "दस्सो "
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "छपैलो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "सफा खंडन"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
#, fuzzy
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "लेंदे बेल्लै मार्गदर्शन करदा ऐ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "चार्ट(बहु.)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "चित्रकारी चीजां"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "दस्सो "
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "छपैलो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "दस्सो "
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "छपैलो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "दस्सो "
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "छपैलो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "चीजां"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/dgo/scp2/source/ooo.po b/source/dgo/scp2/source/ooo.po
index 18cd059a777..69dedb98e31 100644
--- a/source/dgo/scp2/source/ooo.po
+++ b/source/dgo/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "दस्तावेज खोह्‌ल्लो "
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/dgo/scp2/source/winexplorerext.po b/source/dgo/scp2/source/winexplorerext.po
index e4cd03363eb..c6073ef0467 100644
--- a/source/dgo/scp2/source/winexplorerext.po
+++ b/source/dgo/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 09:38+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2014-07-28 07:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1406531851.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "%PRODUCTNAME दस्तावेजें बारै जानकारी दस्सने लेई माइक्रोसाफ्ट विंडोज एक्सप्लोरर गी समर्थ करदा ऐ , जिॕयां के थंबनेल पूर्वद्रिश्श. "
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/dgo/sd/messages.po b/source/dgo/sd/messages.po
index 9bda5b18cbb..46797c73988 100644
--- a/source/dgo/sd/messages.po
+++ b/source/dgo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2653,6 +2653,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3134,164 +3139,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML डजैन गी नांऽ देओ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4782,160 +4972,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/dgo/sfx2/messages.po b/source/dgo/sfx2/messages.po
index 9c7dffef78a..5eba3fa46ce 100644
--- a/source/dgo/sfx2/messages.po
+++ b/source/dgo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,38 +919,33 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "विशेशता हटाओ"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "शैली पैह्‌लें शा मजूद ऐ. क्या ओवरराइट करी दित्ती जाऽ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~परतियै सैट्ट करो "
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "एह् नांऽ पैह्‌लें शा बरतून च ऐ. "
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "एह् शैली मजूद नेईं ऐ. "
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -960,7 +955,7 @@ msgstr ""
"एह् शैली अधार शैली दे रूपै च नेईं बरतोई सकदी \n"
" की जे इस कन्नै हवाला घड़ी-मुड़ी आई सकदा ऐ. "
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -969,7 +964,7 @@ msgstr ""
"नांऽ बिलानिर्देश शैली दे रूपै च पैह्‌लें शा मजूद ऐ. \n"
" किरपा करियै होर दूआ नांऽ तालो. "
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -977,97 +972,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "संचालक"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "दोशपूर्ण पासवर्ड दी पुश्टी"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "भेजो\t"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "फांट"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "सरूप टिप्पणी दा समावेश करो"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "हाइरार्किकल "
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "रूप-रचना अवस्था भरो "
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "चोन चा नमीं शैली "
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "शैलियें गी अपडेट करो (~U)"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "क्या तुस सच्चें रकाडिंग रद्द करना चांह्‌दे ओ ? इस बिंदु तगर रकाड होए दे कोई बी चरण गुआची सकदे न. "
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "रकाडिंग रद्द करो "
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "पैह्‌ली बारी इस्तेमाल लेई सच्चे मूल मुंढा शुरू होआ करदे न. "
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1076,7 +1071,7 @@ msgstr ""
"कोई बिलानिर्देश छापक नेईं लब्भा.\n"
" किरपा करियै छापक तालो ते परतियै कोशश करो. "
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1085,17 +1080,17 @@ msgstr ""
"छापक शुरू नेईं सकेआ.\n"
" किरपा करियै अपना छापक संरूपण जाचो. "
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "छापक मसरूफ "
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(सिर्फ पढ़न जोग) "
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"सफा नाप ते दिशा-विन्यास च तरमीम होई गेई ऐ. \n"
" क्या तुस क्रियाशील दस्तावेज च नमियां सैट्टिंगां बचाना चाह्‌गेओ ? "
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"सफा नाप च तरमीम होई गेई ऐ. \n"
" क्या क्रियाशील दस्तावेज च नमियां सैट्टिंगां बचानियां चाहि दियां ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1125,7 +1120,7 @@ msgstr ""
"सफा नाप ते दिशा-विन्यास च तरमीम होई गेई ऐ. \n"
" क्या तुस क्रियाशील दस्तावेज च नमियां सैट्टिंगां बचाना चाह्‌गेओ ? "
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1135,7 +1130,7 @@ msgstr ""
"दस्तावेजज बंद नेईं होई सकदा की जे a\n"
" छापा कम्म चला करदा ऐ. "
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1143,7 +1138,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1151,18 +1146,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "एह् प्रवेश दस्तावेज संपादत नेईं होई सकदा, मुमकन ऐ जे ऐसा पुज्ज अधिकारें दे लापता होने कारण ऐ. क्या तुस दस्तावेज दी इक नकल गी संपादत करना चांह्‌दे ओ? "
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1170,353 +1165,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "(मरम्तशुदा दस्तावेज) "
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "दस्तावेज दा संपादन करो"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "फाइल दस्तावेज "
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "डॉक करो"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "अनडाक करो"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "छंटाई विकल्प"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Customisation"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "हटाओ"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1892,32 +1897,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "सरूप टिप्पणी "
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "नांS"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "किस्म"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "मुल्ल"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "किस्म"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "हां"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "नेईं"
@@ -1927,17 +1917,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "नांS"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "किस्म"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "मुल्ल"
@@ -2078,19 +2068,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "स्थान: "
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "किस्म :"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "पासवर्ड बदलेआ"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2101,28 +2091,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "सधारण"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "विवरण"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "सुरक्षा"
@@ -2352,6 +2342,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/dgo/shell/messages.po b/source/dgo/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/dgo/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/dgo/starmath/messages.po b/source/dgo/starmath/messages.po
index f48ec3367d5..5662876b046 100644
--- a/source/dgo/starmath/messages.po
+++ b/source/dgo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:43+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1573,274 +1573,299 @@ msgid "Examples"
msgstr "उदाहरण"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "मानक"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "इटैलिक"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "मुट्टा "
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "काला"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "नीला"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "सैल्ला"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "सूहा"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "जैह्‌र-मौह्‌रा"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "गुलबासी"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "स्लेटी Grey"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "समां "
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "जामुनी"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "पीला"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "छपैलो"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "नाप "
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "फांट"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "खब्बा"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "केंदर"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "सज्जा"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "आदेश(बहु.)"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "फार्मूला"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "दस्तावेज बचा करदा ऐ... "
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION फार्मूला"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "गल्ती: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "अनअपेक्षत वर्ण "
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' अपेक्षत "
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' अपेक्षत "
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' अपेक्षत "
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' अपेक्षत "
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' अपेक्षत "
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "रंग लोड़दा ऐ"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' अपेक्षत "
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME API "
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "विशे-सूची "
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "शीर्शक "
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~फार्मूला इबारत "
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "बाडर (बहु.)"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "नाप "
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "मौलिक नाप "
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~सफे दे काबल करो "
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1913,6 +1938,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "तत्व"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/dgo/svtools/messages.po b/source/dgo/svtools/messages.po
index 5338ab4f039..b3af99f5643 100644
--- a/source/dgo/svtools/messages.po
+++ b/source/dgo/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1539 +15,1541 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195351.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "अनकीता करो: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "परतियै करो: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~दर्‌हाओ: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "बिन रूप-रचत इबारत "
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx अंदरूनी कड़ी शा वस्तुस्थिति जानकारी "
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "नैट्टस्केप सफा- चि'न्न "
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टार सर्वर रूप-रचना "
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टार चीज रूप-रचना "
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "ैप्लेट चीज "
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लग-इन चीज "
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "स्टार लेखक 3.0 चीज "
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "स्टार लेखक 4.0 चीज "
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "स्टार लेखक 5.0 चीज "
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "स्टार लेखक / वैब 4.0 चीज "
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "स्टार लेखक / वैब 5.0 चीज "
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "स्टार लेखक / मास्टर 4.0 चीज "
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "स्टार लेखक /मास्टर 5.0 चीज "
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "स्टार ड्रा चीज "
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "स्टार ड्रा 4.0 चीज "
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "स्टार इंप्रैस 5.0 चीज "
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "स्टार ड्रा 5.0 चीज "
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "स्टार कल्क चीज "
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "स्टार कल्क 4.0 चीज "
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "स्टार कल्क 5.0 चीज "
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "स्टार चार्ट चीज "
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "स्टार चार्ट 4.0 चीज "
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "स्टार चार्ट 5.0 चीज "
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "स्टार बिंब चीज "
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "स्टार बिंब 4.0 चीज "
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "स्टार बिंब 5.0 चीज "
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "स्टार स्हाब चीज "
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "स्टार स्हाब 4.0 चीज "
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "स्टार स्हाब 5.0 चीज "
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "स्टारचीज पेंट चीज "
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk "
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "माइक्रोसाफ्ट वर्ड चीज "
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "स्टार चगाठ सैट्ट चीज "
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "दफ्तरी दस्तावेज चीज "
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "नोट(बहु.)दस्तावेज जानकारी "
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx दस्तावेज "
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "स्टार चार्ट 5.0 चीज "
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ग्राफिक चीज "
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "विंडोज मैटाफाइल "
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "डेटा स्रोत चीज "
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "डेटा स्रोत टेबल"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQLपुच्छ "
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "कड़ी"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "बिजन टिप्पणियें HTMLरूप-रचना "
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "चीज % दा समावेश नेईं होई सकेआ ."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "फाइल % चा चीजा दा समावेश नेईं होई सकेआ ."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "होर चीजां "
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "अनजांता स्रोत "
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "नांऽ "
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "नाप "
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "तरीक तरमीमशुदा "
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "किस्म "
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बाइटां "
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "पंगताल: %1,स्तंभ : %2 "
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", किस्म: %1, URL: %2 "
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "फोल्डर "
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "फाइल "
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "खाल्ली खेतर"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "अल्फा न्यूमैरिक"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "नार्मल"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "वर्ण सैट्ट "
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश "
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिन्यीन "
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "छुहाका "
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "मूल तत्व"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "यूनिकोड "
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "ज़ुइन "
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "फोन पुस्तक "
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक पैह्‌ला) "
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक खीरला) "
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "अल्फा न्यूमैरिक"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश "
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिन्यीन "
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "मूल तत्व"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "छुहाका "
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "ज़ुइन "
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक पैह्‌ला, अक्खरें मताबक समूह् कीते दा) "
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक पैह्‌ला, व्यंजनें मताबक समूह् कीते दा) "
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक खीरला, अक्खरें मताबक समूह् कीते दा"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ध्वन्यात्मक (अल्फा न्यूमैरिक खीरला, व्यंजनें मताबक समूह् कीते दा) "
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "अज्ज "
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "कोई नेईं"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "फिक्का "
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "फिक्का इटैलिक "
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "नियमत "
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "इटैलिक"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "मुट्टा "
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "मुट्टा इटैलिक"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "काला "
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "काला इटैलिक "
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "पुस्तक "
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "संघना कीते दा"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "अद्ध-मुट्टा"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr " इ'यै फांट दौनें - थुआढ़े छापक ते परदे पर बरतोग."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "एह् इक छापक फांट ऐ. परदे दा बिंब बक्खरा होई सकदा ऐ."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "इस फांट शैली दी नकल होई जाग जां नेड़मीं मेल खंदी शैली बरतोग"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "एह् फांट प्रस्थापत नेईं ऐ. नेड़मां उपलब्ध फांट बरतोग. "
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "तपाश करो"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "चगाठ लेओ "
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "खब्बै लेओ "
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "सज्जै लेओ "
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "जमा"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr " आडा बाहेरै गी\t"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "खड़ोतमां फुट्टा"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr " 1 बिट थ्रैशोल्ड"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr " 2 बिट डिथरशुदा"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr " 4 बिट ग्रेमापक(बहु.)"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr " 4 बिट ग्रेमापक(बहु.)"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 बिट स्हेई रंग "
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "जवाब डाका पाओ/ डाक"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "छांटो"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "थम्मो "
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialising"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "बल्गा करदा ऐ"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "छपाई"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Off-line"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "गल्ती"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "सफा म्हेसो"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr " नाकाफी मैमरी "
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "बिलानिर्देश प्रिंटर"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "मेरा दस्तावेज "
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~मकाओ "
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "आगे > (~N)"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< पिच्छें "
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
#, fuzzy
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "~चरण(बहु.)"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "कंपनी "
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "विभाग "
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "पैह्‌ला नांऽ "
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "खीरी नांऽ "
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ग'ली"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "देश "
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ज़िप कोड "
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "शैह्‌र "
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "शीर्शक "
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "स्थिति "
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "सिरनामां फार्म"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "नांऽ दे पैह्‌ले अक्खर "
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "मानार्थ बंद "
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "टैलीफोन(घर) "
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "टैलीफोन (काम) "
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL "
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "नोट"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "बरतूनी 1 "
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "बरतूनी 2 "
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "बरतूनी 3 "
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "बरतूनी 4 "
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "(ID) "
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "रियासत "
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "टैलीफोन (दफ्तर) "
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजर "
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मोबाइल "
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "टैलीफोन – बाकी दुए "
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "कलंडर"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "साद्दा देओ "
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE लोड़दा "
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE चुनो "
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE दोशपूर्ण ऐ "
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "स्रोत कोड "
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "सफा-चि'न्न फाइल"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ग्राफिक(बहु.)"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "संरूपण फाइल"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "बरतून "
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "डेटाबेस टेबल "
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "सिस्टम फाइल"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word दस्तावेज "
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "मदद फाइल"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML दस्तावेज "
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "आर्काइव फाइल"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लाग फाइल"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "स्टार आफिस 5.0 सच्चा "
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 मास्टर दस्तावेज "
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "स्टार आफिस 5.0 सच्चा "
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "इबारत फाइल"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "कड़ी "
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "स्टार आफिस 5.0 सच्चा "
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "माइक्रोसाफ्ट ऐक्सैल दस्तावेज "
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "माइक्रोसाफ्ट ऐक्सैल सच्चा "
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "दस्ता फाइल"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "फाइल"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "फोल्डर"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "इबारत दस्तावेज "
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रैडशीट "
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रस्तुति "
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "चित्रकारी "
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML दस्तावेज "
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "मास्टर दस्तावेज "
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "फार्मूला "
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "डेटाबेस "
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "स्थानी ड्राइव "
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "डिस्क ड्राइव "
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ड्राइव "
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "नैट्टवर्क कनैक्शन "
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "माइक्रोसाफ्ट पावर पोआइंट दस्तावेज "
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "माइक्रोसाफ्ट पावर पोआइंट सच्चा "
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "माइक्रोसाफ्ट पावर पोआइंट शो"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "स्हाबML दस्तावेज "
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "खु'ल्ला दस्तावेज डेटाबेस "
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "खु'ल्ला दस्तावेज चित्रकारी "
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "खु'ल्ला दस्तावेज फार्मूला"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "खु'ल्ला दस्तावेज मास्टर दस्तावेज "
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "खु'ल्ला दस्तावेज प्रस्तुति "
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "खु'ल्ला दस्तावेज स्प्रैडशीट "
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "खु'ल्ला दस्तावेज इबारत "
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "खु'ल्ला दस्तावेज स्प्रैडशीट सच्चा "
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "खु'ल्ला दस्तावेज चित्रकारी सच्चा "
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "खु'ल्ला दस्तावेज प्रस्तुति सच्चा "
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "खु'ल्ला दस्तावेज इबारत सच्चा "
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME विस्तार"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/dgo/svx/messages.po b/source/dgo/svx/messages.po
index c4a19c3105a..ee349707d8c 100644
--- a/source/dgo/svx/messages.po
+++ b/source/dgo/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8105,6 +8105,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12655,88 +12660,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "आकृति संपादक "
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
#, fuzzy
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "लागू करो "
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "कम्म-थाह्‌र "
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "चुनो "
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "चकोन"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "अंडाकार वृत्त"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुज "
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr " संपादन-बिंदु\t"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr " बिंदु लेओ\t"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिंदुएं दा समावेश करो\t"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिंदु (बहु0) म्हेसो\t"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "स्वचलत आकृति"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "अनकीता करो "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "सूहा"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13078,124 +13088,118 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "पैरालेख"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "बिंब नक्शा संपादक "
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
#, fuzzy
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "लागू करो "
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "खोह्‌ल्लो... "
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "बचाओ... "
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "बंद करो "
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "चुनो "
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "चकोन"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "अंडाकार वृत्त"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुज "
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "मुक्तरूप बहुभुजFree-form Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr " संपादन-बिंदु\t"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr " बिंदु लेओ\t"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिंदुएं दा समावेश करो\t"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिंदु (बहु0) म्हेसो\t"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "अनकीता करो "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "सूहा"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "क्रियाशील"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "मैक्रो... "
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "विशेशतां:"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "सिरनामां: "
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr " चगाठ "
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/dgo/sw/messages.po b/source/dgo/sw/messages.po
index d8f43dd13a9..39729f00530 100644
--- a/source/dgo/sw/messages.po
+++ b/source/dgo/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:43+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dgo\n"
@@ -3194,9 +3194,9 @@ msgid "Change object title of $1"
msgstr "$1 दी वस्तु शीर्शक बदलो"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 दी वस्तु ब्यौरा बदलो"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12735,147 +12735,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12885,152 +12885,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14149,7 +14149,7 @@ msgstr "बरोबर दे पैह्‌रें च लकीरें
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17715,52 +17715,52 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "पूर्वद्रिश्श (~m)"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-#, fuzzy
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "पूर्वद्रिश्श"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
#, fuzzy
msgctxt "tocdialog|index"
msgid "Type"
msgstr "किस्म "
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "प्रविश्टियां"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "शैलियां "
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
#, fuzzy
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "स्तंभ "
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "पछौकड़"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+#, fuzzy
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "पूर्वद्रिश्श"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "स्तर "
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -18020,327 +18020,327 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr " संपादन करो...\t"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "शीर्शक "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "किस्म "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "विशे-सूची"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "वर्णात्मक इंडैक्स"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "टेबलें दी इंडैक्स"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "बरतूनी-परिभाशत"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "चीजें दा टेबल"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ग्रंथ-सूची"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "दस्ती तब्दीलियें शा संरक्षत"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
#, fuzzy
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "किस्म ते शीर्शक"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "फार्म"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "सारा दस्तावेज"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "ध्याऽ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
#, fuzzy
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "स्तर तगर मूल्यांकन करो"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "आउट-लाइन"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "टेबल"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "इबारत चगाठ "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ग्राफिक"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE चीज"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "स्रोत ध्याऽ चा स्तर बरतो."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "सशर्त शैलियां "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "शैलियां "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "शैलियां निर्दिश्ट करो"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "विकल्प(बहु.) "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "चीज नांऽ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "कैटेगरी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "प्रदर्शन"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "हवाले"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "कोटि ते नंबर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "सिरनांऽ इबारत"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
#, fuzzy
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "चा सिरजो"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
#, fuzzy
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "खॕलकी चीजें चा सिरजो"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "ब्रैकटां"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "कोई नेईं "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
#, fuzzy
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "प्रविश्टियें दी रूप-रचना"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "रलदी-मिलदी प्रविश्टियें दा मेल करो"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "कन्नै मेल करो -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "केस संवेदनशील"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "स्वचलत अक्खरें दा बड्डाकरण प्रविश्टियां"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "बक्खरी प्रविश्टियें दे तौरा पर कुंजियां"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "फाइल"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
#, fuzzy
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "विकल्प(बहु.) "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "भाशा "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "कुंजी किस्म "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "छांटो"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "स्तर "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "पैह्‌रा शैली"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "बिला निर्देश"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "संपादन"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/dsb/cui/messages.po b/source/dsb/cui/messages.po
index a3504f8d43c..f2d1b9b1563 100644
--- a/source/dsb/cui/messages.po
+++ b/source/dsb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-04-10 14:12+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1637,107 +1637,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Pšosym zapódajśo płaśiwu temowu adresu abo pytański wuraz."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Žeden ramik"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Jano wenkowny ramik"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Wenkowny ramik a horiconalne linije"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Wenkowny ramik a wšykne nutśikowne linje"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Wenkowny ramik bźez změny nutśikownych linijow"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Jano diagonalne linije"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Dopołny ramik"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Jano lěwa a pšawa kšoma"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Jano górny a dolny ramik"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Jano lěwy ramik"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Górna a dolna kšoma a wšykne nutśikowne linije"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Lěwa a pšawa kšoma a wšykne nutśikowne linije"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Bźez sni"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Seń napšawo dołojce chyśiś"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Seń napšawo górjejce chyśiś"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Seń nalěwo dołojce chyśiś"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Seń nalěwo górjejce chyśiś"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Signěrowany wót: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Wšykne dataje"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Zregistrěrowane datowe banki"
@@ -1780,7 +1775,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1900,7 +1895,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2140,7 +2135,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2395,12 +2390,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2470,7 +2465,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2550,7 +2545,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2791,7 +2786,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3375,66 +3370,71 @@ msgid "About %PRODUCTNAME"
msgstr "Wó %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Pśi_noski"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Websedło"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID zestajanki: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Narodna šema: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Rěc wužywarskego pówjercha. $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Glejśo protokol: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME jo moderny lažko wužywajobny programowy paket wótwórjonego žrědła za tekstowe pśeźěłowanje, tabelowu kalkulaciju, prezentacije a wěcej."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 pśinosujuce k LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice na OpenOffice.org bazěrujo."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME jo wót LibreOffice wótwóźony, kótaryž na OpenOffice.org bazěrujo."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Toś to wózjawjenje jo se stajiło wót %OOOVENDOR k dispozicji."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://dsb.libreoffice.org/about-us/credits/"
@@ -3549,17 +3549,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Wu_měniś"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Wumě_niś"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Z:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Jano _tekst"
@@ -4379,6 +4379,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimalna słowna dłujkosć"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5489,27 +5649,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Kakosći"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Wobłu_k:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Mě:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternatiwny _tekst:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Wopisanje:"
@@ -9018,80 +9178,80 @@ msgstr "Wuskokujuce wokno „Pomoc offline njeinstalěrowana“ pokazaś"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoc"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Dialogi %PRODUCTNAME wužywaś"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogi wócyniś/składowaś"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Dialogi %PRODUCTNAME wužywaś"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Śišćarske dialogi"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Śišćanje _status \"dokument změnjony\" staja"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentowy status"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretěrowaś ako lěta mjazy "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Lěto (dwuměstnowe)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Wužywańske daty gromaźiś a na załožbu The Document Foundation pósłaś"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomoc pśi pólěpšanju %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME za systemowy start zacytaś"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Malsny startowak zmóžniś"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Malsny startowak %PRODUCTNAME"
@@ -10964,25 +11124,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Pśedinstalěrowana drastwa"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Swójska drastwa"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Drastwu Firefox zacytaś"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Abo wubjeŕśo drastwy zainstalěrowane pśez rozšyrjenja:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Drastwy Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11609,102 +11754,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Wěstotne nastajenja"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Drastwu Firefox wubraś"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Pytański wuraz abo adresa"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ka_tegorija"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Zespominanje"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Pśicyny"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film a telewizija"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Dowol"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Muzika"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Pśiroda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Druge"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Scenerija"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Lětne case"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Jadnobarwny"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Websedła"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Pśedstajone"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12711,27 +12760,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/dsb/extensions/messages.po b/source/dsb/extensions/messages.po
index 2cacd21823a..4e764283f56 100644
--- a/source/dsb/extensions/messages.po
+++ b/source/dsb/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-10 13:46+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554904016.000000\n"
#: extensions/inc/command.hrc:29
@@ -3092,162 +3092,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Pśirědowanje słupow za tabelu „%1“"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Krotke mě"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Awtory"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Wudawaŕ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Kapitel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Wudawaŕ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Typ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Lěto"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Ti_tel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dresa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "B_oki"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Wu_daśe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Titel knigłow"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Zwězk"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Typ pu_blikacije"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zacija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_ucija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uniw_ersita"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Typ _rozpšawy"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mjasec"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Casopis"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Num_er"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_rije"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Pś_ipisk"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Notica"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Swójske pólo _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Swójske pólo _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Swójske pólo _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Swójske pólo _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Swójske pólo _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Mjenja słupow"
@@ -3422,27 +3422,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Zapódajśo mě za nowy datowy typ:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Póla zwězaś"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Naraźiś"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Pódformulary daju se wužywaś, aby nadrobne daty wó aktualnej datowej sajźbje głownego formulara zwobraznili. Za to móžośo pódaś, kótare słupy pódformulara kótarym słupam głownego formulara wótpowěduju."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "pomjenjenje"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "pomjenjenje"
diff --git a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
index 050939664ac..c6ae56f122f 100644
--- a/source/dsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dsb/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 17:37+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 07:16+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557682651.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558595767.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -23399,6 +23399,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Dalšne póla"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Diagram napóraś"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25688,6 +25697,15 @@ msgstr "W rejtarkach"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25706,6 +25724,15 @@ msgstr "Kupki"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/dsb/sc/messages.po b/source/dsb/sc/messages.po
index fa9a5b0a49d..5d263555a17 100644
--- a/source/dsb/sc/messages.po
+++ b/source/dsb/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 17:38+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 07:23+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557682701.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558596228.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15224,6 +15224,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ekskluziwny pśistup)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "We wubranem dokumenśe pomjenjone wobcerki njejsu k dispoziciji."
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15777,14 +15782,14 @@ msgstr "Wuměnjone formatěrowanje zastojaś"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr "Prědne wuměnjenje"
-
-#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
msgid "Range"
msgstr "Wobcerk"
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Prědne wuměnjenje"
+
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
msgid "Add"
@@ -17000,81 +17005,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Datowy formular"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Zacyniś"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nowa datowa sajźba"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nowy"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Wu_lašowaś"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Wót_nowiś"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Pjerwjejšna datowa sajźba"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Pś_iduca datowa sajźba"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Zacyniś"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Datowe tšugi live"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Zapódajśo URL žrědłowego dokumenta w lokalnem datajowem systemje abo w interneśe."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Pśepytaś…"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Wobcerk datoweje banki:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Póbitowaŕ datow:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Znamuškowy rjeśazk pytaś:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Tšuga žrědłowych datow"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18790,32 +18755,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Wuslědki do:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Zapódawański wobcerk na aktualne datowe wopśimjeśe přirězaś"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Daty"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Słupy"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Smužki"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Ku kupce zestajony pó"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interwal:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametry"
@@ -18955,167 +18925,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Pomoc"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Dataja"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Pódajśo ramiki wubranych celow."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Zasunjenje pówětšyś"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Zasunjenje pómjeńšyś"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Start"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Pó_lo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasajźiś"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasajźiś"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "W_ugótowanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objektowe wusměrjenje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "W~ugótowanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistika"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Daty"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Daty"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Pśeglědanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Pśeglědanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Naglěd"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Naglěd"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresliś"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresliś"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ś_išćaś"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Ś~išćaś"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nastroje"
@@ -21596,17 +21568,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Pytańske wuslědki"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "_Toś ten dialog pokazaś"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "Zmóžniśo dialog w Rědy > Nastajenja > Calc > Naglěd znowego"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Tabela"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Cela"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Wopśimjeśe"
@@ -23476,107 +23458,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Rozrědowańske symbole"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "Zespomi_nanje wó pytanju"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Wokno"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Kśidnowe linije:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Barwa:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Pokazaś"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Na barwojtych celach pokazaś"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Schowaś"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Ła_manja boka"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Po_mocne linije pśi gibanju"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Wizuelne pomocne srědki"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Objekty/wobraze:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Diagramy:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Kresleńske objekty:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Pokazaś"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Schowaś"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Pokazaś"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Schowaś"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Pokazaś"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Schowaś"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekty"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Tabele syn_chronizěrowaś"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Měritko"
diff --git a/source/dsb/scp2/source/ooo.po b/source/dsb/scp2/source/ooo.po
index 6b89caef305..6f187ecf6fd 100644
--- a/source/dsb/scp2/source/ooo.po
+++ b/source/dsb/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-10 13:33+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-23 07:16+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1554903226.000000\n"
+"X-POOTLE-MTIME: 1558595783.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -34,6 +34,14 @@ msgstr "Dokument wócyniś"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (wěsty modus)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/dsb/scp2/source/winexplorerext.po b/source/dsb/scp2/source/winexplorerext.po
index cfbaac1289f..1eed1df3a1d 100644
--- a/source/dsb/scp2/source/winexplorerext.po
+++ b/source/dsb/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-08-22 20:51+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1534971064.000000\n"
#: module_winexplorerext.ulf
@@ -28,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Zmóžnja Microsoft Windows Explorer informacije wó dokumentach %PRODUCTNAME pokazaś, na pśikład naglědy miniaturkow."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/dsb/sd/messages.po b/source/dsb/sd/messages.po
index 0da129dfc9f..1e8be964681 100644
--- a/source/dsb/sd/messages.po
+++ b/source/dsb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-10 13:40+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2582,6 +2582,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Klikniśo, aby wótkaz wócynił: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3037,164 +3042,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Mě HTML-designa"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Dataja"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Pomoc"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Dataja"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Pó_lo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasajźiś"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasajźiś"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Bok"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Bok"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Pśeglědanje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Pśeglědanje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Naglěd"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Naglěd"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertěrowaś"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresliś"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresliś"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Rědy"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4582,160 +4772,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Formy pokazaś"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Dataja"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Pomoc"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Dataja"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Pó_lo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasajźiś"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasajźiś"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Folija"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "Fo~lija"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Prezentacija"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Prezentacija"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Pśeglědanje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Pśeglědanje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Naglěd"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Naglěd"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertěrowaś"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresliś"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresliś"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Rědy"
diff --git a/source/dsb/sfx2/messages.po b/source/dsb/sfx2/messages.po
index acb00b7f86d..b8e93c41bbb 100644
--- a/source/dsb/sfx2/messages.po
+++ b/source/dsb/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-10 13:34+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 07:20+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1554903268.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558596028.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -918,11 +918,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " L: %1 M: %2 Ź: %3 G: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Kakosć wótwónoźeś"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -931,27 +926,27 @@ msgstr ""
"Zapódana gódnota pódanemu typoju njewótpowědujo.\n"
"Gódnota buźo se ako tekst składowaś."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Pśedłoga južo eksistěrujo. Pśepisaś?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Slědk stajiś"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Toś to mě se južo wužywa."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Toś ta pśedłoga njeeksistěrujo."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -960,7 +955,7 @@ msgstr ""
"Toś ta pśedłoga njedajo se ako bazowa pśedłoga wužywaś,\n"
"dokulaž rekursija by nastała."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -969,7 +964,7 @@ msgstr ""
"Mě južo ako standardna pśedłoga eksistěrujo.\n"
"Pšosym wubjeŕśo druge mě."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -980,92 +975,92 @@ msgstr ""
"Jolic toś te pśedłogi wulašujośo, se tekstoju nadrědowana pśedłoga pśipokažo.\n"
"Cośo toś te pśedłogi wulašowaśz?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Wužyte pśedłogi: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Nawigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Zmólne wobkšuśenje grónidła"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Pósłaś"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Pismo"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Pśeglědy pokazaś"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Wersijowy komentar pokazaś"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(žedno mě nastajone)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lisćina pśedłogow"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarchiski"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Rozlewański modus"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nowa pśedłoga z wuběrka"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Stilowe akcije"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Pśedłogu aktualizěrowaś"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Cośo nagraśe napšawdu pśetergnuś? Wšykne kšace nagrate do togo se zgubiju."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Nagraśe pśetergnuś"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Pśedłogi se rowno za prědne wužywanje inicializěruju."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1074,7 +1069,7 @@ msgstr ""
"Standardny śišćak njejo se namakał.\n"
"Pšosym wubjeŕśo śišćak a wopytajśo hyšći raz."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1083,17 +1078,17 @@ msgstr ""
"Śišćak njedajo se startowaś.\n"
"Pšosym pśeglědajśo konfiguraciju swójogo śišćaka."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Śišćak južo źěła"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (jano za cytanje)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"Cośo nowe nastajenja w aktiwnem\n"
"dokumenśe składowaś?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"Cośo nowe nastajenja w aktiwnem\n"
"dokumenśe składowaś?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1126,7 +1121,7 @@ msgstr ""
"Cośo nowe nastajenja w aktiwnem\n"
"dokumenśe składowaś?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1135,7 +1130,7 @@ msgstr ""
"Dokument njedajo se zacyniś, dokulaž\n"
"śišćarski nadawk se runje pśewjeźo."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,7 +1140,7 @@ msgstr ""
"Pšosym pśeglědajśo nastajenja %PRODUCTNAME abo nastajenja wašogo e-mailowego programa."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1156,17 +1151,17 @@ msgstr ""
"\n"
"Zmólkowy kod jo $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Zmólka pśi słanju mejlki"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Toś ten dokument njedajo se wobźěłaś, snaź felujucych pšawow dla. Cośo kopiju dokumenta wobźěłowaś?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1177,349 +1172,359 @@ msgstr ""
"\n"
"Móžośo teke zastajenje ignorěrowaś a dataju za wobźěłowanje wócyniś."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "~Kopiju wócyniś"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "Wó~cyniś"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (pórěźony dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Toś ten dokument njejo se wótzjawił wót serwera."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Pomagajśo nam, %PRODUCTNAME pólěpšyś!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Cyńśo sobu"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Waše dary naše zgromaźeństwo pó cełem swěśe pódpěraju."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Pósćiś"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Wužywaśo wersiju %PRODUCTVERSION %PRODUCTNAME prědny raz. Cośo zgóniś, co jo nowe?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Wersijowe informacije"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Toś ten dokument jo jano za cytanje wócynjony."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Toś ten PDF jo jano za cytanje wócynjony, aby se signěrowanje eksistěrujuceje dataje zmóžniło."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Pópisanje klasifikacije toś togo dokumenta jo %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Toś ten dokument musy se klasificěrowaś, nježli až wopśimjeśe z mjazywótkłada dajo se zasajźiś."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Toś ten dokument ma nišu klasifikacisku rowninu ako wopśimjeśe mjazywótkłada."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Rownina"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Narodna wěstota:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Eksportowa kontrola:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Wopytanje"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Dokument wobźěłaś"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Dokument signěrowaś"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Toś ten dokument ma njepłaśiwu signaturu."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Signatura jo była płaśiwa, ale dokument jo se změnił"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Signatura jo w pórědku, ale certifikat njedajo se pśeglědowaś."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Signatura jo w pórědku, ale dokument jo jano signěrowany pó źělach."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Certifikat njedajo se wobkšuśiś a dokument jo jano pó źělach signěrowany."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dokument jo digitalnje signěrowany a signatura jo płaśiwa."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Signatury pokazaś"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Wokno zacyniś"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Pśidokowaś"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Wótdokowaś"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Dalšne nastajenja"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Bocnicu zacyniś"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Nastajenja bocnice"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Pśiměrjenje"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Standard wótnowiś"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Bocnicu zacyniś"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Pcołkowy kóš"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Módra kśiwanka"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Módropawsowe plany"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Swětłomódry"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klasiska cerwjeń"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Gólny ptašk"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracija"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Swětła"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Intensiwna zeleń"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Połnocna módrina"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Pśirodna ilustracija"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pisak"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klawěr"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Póstup"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Schowanje słyńca"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradicionelny"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Žywy"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Žywjenjoběg"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Tabelariski žywjenjoběg"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderny"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderny wobchodowy list bźez serifow"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderny wobchodowy list ze serifami"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Wizitna kórtka z logom"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Wótwónoźeś"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Wšykno lašowaś"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Dłujkosć gronidła"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Gronidło, kótarež sćo zapódał, problemy za zgromadne źěło zawinujo. Pšosym zapódajśo gronidło, kótarež jo krotše ako 52 bajtow abo dlejše ako 55 bajtow."
@@ -1864,32 +1869,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Wersijowy komentar:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Mě"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Typ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Gódnota"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Typ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Jo"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ně"
@@ -1899,17 +1889,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "_Kakosć pśidaś"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Mě"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Typ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Gódnota"
@@ -2039,17 +2029,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Městno:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Typ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_Gronidło změniś"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Pśedłoga:"
@@ -2059,27 +2049,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Kakosći “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Powšykne "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Wopisanje"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Swójske kakosći"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS-kakosći"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Wěstota"
@@ -2302,6 +2292,26 @@ msgstr ""
"\n"
"Toś ten produkt jo se napórał wót %OOOVENDOR, na zakłaźe OpenOffice.org, kótaryž copyrightoju 2000, 2011 Oracle a/abo jogo wótnožkam pódlažy. %OOOVENDOR pśipóznawa wšych cłonkow zgromaźeństwa, glejśo pšosym http://dsb.libreoffice.org/about-us/credits/ za dalšne drobnostki."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/dsb/shell/messages.po b/source/dsb/shell/messages.po
new file mode 100644
index 00000000000..45e2fa28dc6
--- /dev/null
+++ b/source/dsb/shell/messages.po
@@ -0,0 +1,51 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-23 07:19+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: dsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558595966.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Dokument wócyniś"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Wócynjaśo dokument.\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Cośo jen wócyniś, aby se jen woglědał abo wobźěłał?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Woglědaś"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Wobźěłaś"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Pśetergnuś"
diff --git a/source/dsb/starmath/messages.po b/source/dsb/starmath/messages.po
index 173f03688d4..da30e00c015 100644
--- a/source/dsb/starmath/messages.po
+++ b/source/dsb/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-06 19:56+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1651,261 +1651,286 @@ msgid "Examples"
msgstr "Pśikłady"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiwny"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Tucny"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "carny"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "módry"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "zeleny"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "cerwjeny"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "šery"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "swětłozeleny"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "cerwjenobruny"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "śamnomódry"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliwnozeleny"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lylowy"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "slobro"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "zelenomódry"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "žołty"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "schowaś"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "wjelikosć"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "pismo"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "nalěwo"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centrěrowany"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "napšawo"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Pśikaze"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokument se składujo..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ZMÓLKA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Njewócakane znamuško"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Njewócakane znamuško"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' se wócakujo"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'{' se wócakujo"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' se wócakujo"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' se wócakujo"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Lěwy a pšawy symbol njejstej jadnakej"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans' abo 'serif' se wócakuju"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' slědowany wót njewócakanego znamuška"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dwójne wusměrjenje njejo dowólone"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dwójne górjejstajenje/dołojstajenje njejo dowólone"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' wócakany"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Barwa trěbna"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' wócakane"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Wopśimjeśe"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formulowy tekst"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Ramiki"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Wjelikosć"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "O~riginalna wjelikosć"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Wjelikosći ~boka pśiměriś"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalěrowanje"
@@ -1970,6 +1995,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementy"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/dsb/svtools/messages.po b/source/dsb/svtools/messages.po
index 6883790a4c2..b881a5c19d6 100644
--- a/source/dsb/svtools/messages.po
+++ b/source/dsb/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-12 17:38+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,1521 +12,1523 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557682737.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Anulěrowaś: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Wó~spjetowaś: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Wóspjetowaś: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Njeformatěrowany tekst"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Njeformatěrowany tekst (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Wobraz bitmap (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Format kreslankow %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitmap/animacija StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statusowe informacije wót Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Wótkaz %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Cytańske znamje Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Serwerowy format Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Objektowy format Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objekt Applet"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objekt Tykac"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objekt StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objekt StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objekt StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objekt StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objekt StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objekt StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objekt StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objekt StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objekt StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objekt StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objekt StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objekt StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objekt StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objekt StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objekt StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objekt StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objekt StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objekt StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objekt StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objekt StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objekt StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objekt StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objekt StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objekt Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objekt StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objekt Dokument Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informacije dokumenta Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokument"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Wobrazowy objekt"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objekt OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objekt OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objekt OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objekt OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objekt OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objekt OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows MetaFile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objekt datowych žrědłow"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabela datowych žrědłow"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-wótpšašowanje"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialog OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Wótkaz"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-format bźez komentarow"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % njedajo se zasajźiś."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt z dataje % njedajo se zasajźiś."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Dalšne objekty"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Njeznate žrědło"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Mě"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Wjelikosć"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Datum změny"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Typ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajty"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Smužka: %1, słup: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Typ: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Zarědnik"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Dataja"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Prozne pólo"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeriski"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normalny"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Znamuškowa sajźba"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Słownik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Smuga"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Dźujin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonowe knigły"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetiski (alfanumeriske ako prědne)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetiski (alfanumeriske ako slědne)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeriski"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Słownik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Smuga"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Dźujin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetiski (alfanumeriske ako prědne, zrědowane pó złožkach)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetiski (alfanumeriske ako prědne, zrědowane pó konsonantach)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetiski (alfanumeriske ako slědne, zrědowane pó złožkach)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetiski (alfanumeriske ako slědne, zrědowane pó konsonantach)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Źinsa"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Žeden"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lažki"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Lažko kursiwny"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normalny"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiwny"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Tucny"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Tucny kursiwny"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Carny"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Carny kursiwny"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Knigły"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Tucny nakósny"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Wuski"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Wuski tucny"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Wuski tucny kursiwny"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Wuski tucny nakósny"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Wuski kursiwny"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Wuski nakósny"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Wjelgin lažki"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Wjelgin lažki kursiwny"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Nakósny"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Połtucny"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Połtucny kursiwny"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "To samske pismo buźo se na wašom śišćaku a wašej wobrazowce wužywaś."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "To jo pismo śišćaka. Naglěd na wobrazowce móžo se wótchyliś."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Toś ten pismowy stil se similěrujo abo nejbliša pśigódna stil buźo se wužywaś."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Toś to pismo njejo zainstalěrowane. Nejbliše k dispoziciji stojece pismo buźo se wužywaś."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Pśepytaś..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "K zachopjeńkoju"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Nalěwo"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Napšawo"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Ku kóńcoju"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Pśidaś"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horicontalny lineal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Wertikalny lineal"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bitowy prog"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit rozdrosćeny"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bitowe stopnje šerosći"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bitowa barwa"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bitowe stopnje šerosći"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bitowa barwa"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bitowa cysta barwa"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Wobraz něźi %1 KB składa trjeba."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Wobraz něźi %1 KB składa trjeba, datajowa wjelikosć jo %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Datajowa wjelikosć jo %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Druge CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Gótowo"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Zastajone"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Wulašowanje caka"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Wuśěžony"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicializacija"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Cakajucy"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Rozgrěwanje"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Pśeźěłowanje"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Śišćanje"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Zmólka"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Njeznaty serwer"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zaprěśe papjery"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nic dosć papjery"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuelne dodawanje"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem z papjeru"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Z/W aktiwne"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Wudawański fach połny"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Mało tonera"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Žeden toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Bok lašowaś"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Pśistup wužywarja trěbny"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Pśemało składa"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Pókšyśe wótwórjone"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiju žarjecy modus"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standardny śišćak"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumentow"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Dokóńcyś"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Dalej >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Slěd~k"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Kšace"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<žeden>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Pśedewześe"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Wótźělenje"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Pśedmě"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Familijowe mě"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Droga"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Kraj"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "PL"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Město"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pozicija"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Gronjenje"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciale"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Póstrowna formula"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefon: Priwatny"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefon: Słužbny"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notica"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Wužywaŕ 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Wužywaŕ 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Wužywaŕ 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Wužywaŕ 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Zwězkowy kraj"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefon: běrow"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobilny telefon"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefon: druge"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendaŕ"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Pśepšosyś"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME trjeba wokolinu běžnego casa Java (JRE), aby toś ten nadawk wuwjadł. Pšosym instalěrujśo JRE a startujśo %PRODUCTNAME znowego."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME trjeba %BITNESS-bitowu wokolinu běžnego casa Java (JRE), aby toś ten nadawk wuwjadł. Pšosym instalěrujśo JRE a startujśo %PRODUCTNAME znowego."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME se na Mac OS 10.10 abo nowšem Java Development Kit (JDK) Oracle pomina, aby toś ten nadawk wuwjadł. Pšosym instalěrujśo jen a startujśo %PRODUCTNAME znowego."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracija %PRODUCTNAME jo se změniła. Wubjeŕśo pód %PRODUCTNAME - Nastajenja - %PRODUCTNAME - Rozšyrjone wokolinu běžnego casa Java, kótaruž %PRODUCTNAME ma wužywaś."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracija %PRODUCTNAME jo se změniła. Wubjeŕśo Rědy - Nastajenja - %PRODUCTNAME - Rozšyrjone wokolinu běžnego casa, kótaruž %PRODUCTNAME ma wužywaś."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME se wokolinu běžnego casa Java (JRE) pomina, aby toś ten nadawk wuwjadł. Wubrana wokolina běžnego casa jo wobškóźona. Pšosym wubjeŕśo drugu wersiju abo instalěrujśo nowu wokolinu běžnego casa a wubjeŕśo ju pód %PRODUCTNAME - Nastajenja - %PRODUCTNAME - Rozšyrjone."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME se wokolinu běžnego casa Java (JRE) pomina, aby toś ten nadawk wuwjadł. Wubrana wokolina běžnego casa jo wobškóźona. Pšosym wubjeŕśo drugu wersiju abo instalěrujśo nowu wokolinu běžnego casa a wubjeŕśo ju pód Rědy - Nastajenja - %PRODUCTNAME - Rozšyrjone."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE trěbny"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE wubraś"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE jo defektny"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Žrědłowy kod"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Dataja cytańskich znamjenjow"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Wobraze"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfiguraciska dataja"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Nałoženje"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabela datoweje banki"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systemowa dataja"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dokument MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Dataja pomocy"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archiwna dataja"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Protokolowa dataja"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Datowa banka StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Globalny dokument StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Wobraz StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstowa dataja"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Wótkaz"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Pśedłoga StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Dokument MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Pśedłoga MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Štaplowa dataja"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Dataja"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Zarědnik"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstowy dokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Tabelowy dokument"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentacija"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Kreslanka"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Globalny dokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datowa banka"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Pśedłoga tabelowego dokumenta OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Pśedłoga kreslanki OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Pśedłoga prezentacije OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Pśedłoga tekstowego dokumenta OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokalne běgadło"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disketnik"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-běgadło"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Seśowy zwisk"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Dokument MS Powerpoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Pśedłoga MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Prezentacija MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Formula OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagram OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Kreslanka OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Tabelowy dokument OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Prezentacija OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Tekstowy dokument OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Globalny dokument OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument datowa banka"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument kreslanka"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument formula"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument globalny dokument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument prezentacija"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument tabelowy dokument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument tekst"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument pśedłoga tabelowego dokumenta"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument pśedłoga kreslanki"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument pśedłoga prezentacije"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument pśedłoga tekstowego dokumenta"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Kóńcowka %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Pšawopisna kontrola Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Źělenje złožkow Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Tezawrus Mythes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lisćina ignorěrowanych słowow"
diff --git a/source/dsb/svx/messages.po b/source/dsb/svx/messages.po
index 602e337ed0f..70e168175e4 100644
--- a/source/dsb/svx/messages.po
+++ b/source/dsb/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 17:44+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 07:17+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557683095.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558595864.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7919,6 +7919,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Wótlěwa napšawo (wertikalnje)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Wót dołojce górjej, wótlěwa napšawo (wertikalny)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12186,82 +12191,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Pódajśo procentowu sajźbu wertikalnego wótchylenja wót srjeźišća za stil sni barwnego pśeběga. 50% jo wertikalne srjejźišćo."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Konturowy editor"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Nałožyś"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Źěłowa płonina"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Wuběrk"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Pšawokut"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Dypki wobźěłaś"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Dypki pśesunuś"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Dypki zasajźiś"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Dypki wulašowaś"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Awtomatiska kontura"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Anulěrowaś "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Wóspjetowaś"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Barwna toleranca"
@@ -12572,112 +12582,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Nogowa smužka"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor wobrazowych kórtow"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Nałožyś"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Wócyniś..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Składowaś..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Zacyniś"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Wuběrk"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Pšawokut"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Lichorucny polygon"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Dypki wobźěłaś"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Dypki pśesunuś"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Dypki zasajźiś"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Dypki wulašowaś"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Anulěrowaś "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Wóspjetowaś"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktiwny"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Kakosći..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresa:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Wobłuk:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekst:"
diff --git a/source/dsb/sw/messages.po b/source/dsb/sw/messages.po
index aeb634fe9c2..629b1049675 100644
--- a/source/dsb/sw/messages.po
+++ b/source/dsb/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 17:41+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-23 07:17+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557682881.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558595878.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3129,7 +3129,7 @@ msgid "Change object title of $1"
msgstr "Titel objekta $1 změniś"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Wopisanje objekta $1 změniś"
@@ -12021,147 +12021,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Pomoc"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Dataja"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasajźiś"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasajźiś"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "W_ugótowanje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "W~ugótowanje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referen_ce"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referen~ce"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Pśeglědanje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Pśeglědanje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Naglěd"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Naglěd"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Kresliś"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Kresliś"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ś_išćaś"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Ś~išćaś"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Rědy"
@@ -12171,152 +12171,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Dataja"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "~Dataja"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasajźiś"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "~Zasajźiś"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Woběg"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Wugótowanje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "W~ugótowanje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referen_ce"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr "Referen~ce"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Pśeglědanje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr "~Pśeglědanje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Pokazaś"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "~Naglěd"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abela"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Wobraz"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "K_resliś"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Kresliś"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Medije"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Medije"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Śišćaś"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Ś~išćaś"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rědy"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "~Rědy"
@@ -13383,8 +13383,8 @@ msgstr "Słowne wótkłony w smužkach z manuelnymi smužkowymi łamanjami w blo
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Formular šćitaś"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16664,47 +16664,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Zapis wopśimjeśa, gronidłowy zapis abo zapis literatury"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Pśeglěd"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Pśeglěd"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Typ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Zapiski"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Pśedłogi"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Słupy"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Slězyna"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Pśeglěd"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Rownina"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Typ"
@@ -16934,302 +16934,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Wo_bźěłaś..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Typ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Zapis wopśimjeśa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Gronidłowy zapis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Zapis wobrazow"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Zapis tabelow"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Swójski"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tabela objektow"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Zapis literatury"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Pśeśiwo manuelnym změnam šćitany"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Typ a titel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Za:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Ceły dokument"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Kapitel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Wugódnośiś až do rowniny:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Gronidłowy zapis abo zapis wopśimjeśa napóraś"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Wobceŕ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Zapisowe marki"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabele"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Te_kstowe wobłuki"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Wobraze"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objekty"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Rowninu ze žrědłowego kapitla wužywaś"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Dalšne pśedłogi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Pś_edłogi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Pśedłogi pśipokazaś..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Pópisanja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektowe mjenja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorija:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Pokazaś:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Reference"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorija a numer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Pópisański tekst"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Napóraś z"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Ze slědujucych objektow napóraś"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Spinki:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Zapiski numerěrowaś"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[žeden]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatěrowanje zapiskow"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Identiske zapiski zjadnośiś"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "I_dentiske zapiski ze _b abo bb zjadnośiś"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Zjadnośiś z -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Na wjelikopisanje źiwaś"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Zapiski awtomatiski z wjelikim pismikom"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Kluce ako separatne zapiski"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Konkordancna dataja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Dataja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Nastajenja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Rěc:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Klucowy typ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sortěrowaś"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Rowniny"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Wót_stawkowe pśedłogi"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Standard"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Wo_bźěłaś"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Pśipokazanje"
diff --git a/source/dz/cui/messages.po b/source/dz/cui/messages.po
index c1d2215c4ea..645338001e0 100644
--- a/source/dz/cui/messages.po
+++ b/source/dz/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1662,107 +1662,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "གྱིབ་མ་མེད་"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1805,7 +1800,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1925,7 +1920,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2165,7 +2160,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2420,12 +2415,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2495,7 +2490,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2575,7 +2570,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2816,7 +2811,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3438,68 +3433,73 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME གི་སྐོར་ལས།"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ངི་གི་ཝེབ་ས་ཁོངས།"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3624,19 +3624,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "ཚབ་བཙུགས།(~R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "ཚབ་བཙུགས།(~R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "རྒྱ་ཚད།"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4508,6 +4508,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5694,29 +5854,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "རྒྱུ་དངོས།"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "གཞི་ཁྲམ:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "མིང་།"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9492,86 +9652,86 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "གྲོགས་རམ།"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ཌའི་ལོགསི།"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ཌའི་ལོགསི།"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document Name\tStatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "དང་།"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME འགོ་བཙུགས་རིམ་ལུགས་སྐབས་ མངོན་གསལ་འབད།"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "རིམ་ལུགས་ཤོག་སྣོད་ཀུའིཀ་སི་ཊ་ཊར་ ལྕོགས་མིན་བཟོ་"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11542,24 +11702,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12224,102 +12369,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13394,27 +13443,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/dz/extensions/messages.po b/source/dz/extensions/messages.po
index 95833a8224e..1ba366017f6 100644
--- a/source/dz/extensions/messages.po
+++ b/source/dz/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3247,191 +3247,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "ཐིག་ཁྲམ་ %1 གི་དོན་ལུ་ ཀེར་ཐིག་སྒྲིག་བཀོད།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "མིང་ཐུང་ཀུ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "རྩོམ་པ་པོ་(ཚུ་)།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "དཔེ་བསྐྲུན་པ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "ལེའུ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "ཞུན་དགཔ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "དབྱེ་བ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "ལོ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "མགོ་མིང་།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "ཁ་བྱང་།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ཨའི་ཨེསི་བི་ཨེན།(~I)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "ཤོག་ལེབ་(ཚུ་)།(~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "དཔར་ཐེངས།(~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "ཀི་དེབ་མགོ་མིང་།(~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "སྐད་ཤུགས།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "དེབ་བསྐྲུན་གྱི་དབྱེ་བ།(~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "ཚོགས་ལྡེ།(~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "སྤེལ་ཁང་།(~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "གཙུག་ལག་སློབ་ཁང་།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "སྙན་ཞུའི་དབྱེ་བ།(~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "ཟླཝ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "གསར་དེབ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "ཨང་གྲངས།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "རྒྱུན་རིམ།(~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "མཆན་འགྲེལ།(~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "དྲན་འཛིན།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "ཡུ་ཨར་ཨེལ།"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་པའི་ས་སྒོ་ ༡(~1)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་པའི་ས་སྒོ་ ༢(~2)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་པའི་ས་སྒོ་ ༣(~3)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་པའི་ས་སྒོ་ ༤(~4)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོད་པའི་ས་སྒོ་ ༥(~5)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3613,31 +3613,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "འབྲེལ་ལམ་ས་སྒོ་ཚུ།"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "བསམ་འཆར་བཀོད།"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "འབྲི་ཤོག་ཡན་ལག་ཚུ་ འབྲི་ཤོག་ཨམ་གྱི་ད་ལྟོའི་དྲན་ཐོའི་སྐོར་ལས་ རྒྱས་བཤད་ཅན་གྱི་གནད་སྡུད་བཀྲམ་སྟོན་འབད་ནི་གི་དོན་ལུ་ ལག་ལེན་འཐབ་བཏུབ། དེ་འབད་ནི་གི་དོན་ལུ་ ཁྱོད་ཀྱིས་འབྲི་ཤོག་ཡན་ལག་ནང་གྱི་ཀེར་ཐིག་ཚུ་ག་ཅི་རང་ འབྲི་ཤོག་ཨམ་ནང་གྱི་ཀེར་ཐིག་ཚུ་དང་ མཐུན་སྒྲིག་ཡོདཔ་ཨིན་ན་ གསལ་བཀོད་འབད་བཏུབ།"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ཁ་ཡིག"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/dz/helpcontent2/source/auxiliary.po b/source/dz/helpcontent2/source/auxiliary.po
index a2ac642a04b..c9171bbc990 100644
--- a/source/dz/helpcontent2/source/auxiliary.po
+++ b/source/dz/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "ག་ཆས་ཕྲ་རིང་ཚུ།"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "དཀར་ཆག་ཚུ།"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "ག་ཆས་ཕྲ་རིང་ཚུ།"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,17 +699,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/dz/helpcontent2/source/text/sbasic/guide.po b/source/dz/helpcontent2/source/text/sbasic/guide.po
index cfe3ede13ac..6281db74686 100644
--- a/source/dz/helpcontent2/source/text/sbasic/guide.po
+++ b/source/dz/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "ལས་རིམ་ཨང་རྟགས་དང་གཅིག་ཁར་ཌའི་ལོག་ཁ་ཕྱེ་དོ།"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>ཚད་གཞི་ཚུ་དང་ཌའི་ལོག་་ཚུ; སོར་སྟོན།</bookmark_value><bookmark_value>ཌའི་ལོགསི་;ལག་ལེན་འཐབ་འདི་ལས་རིམ་ཨང་རྟགས་སྟོན་ནིའི་དོན་ལུ། (དཔེར་ན)</bookmark_value><bookmark_value>དཔེར་དེ་ཚུ་; ལས་རིམ་ཨང་རྟགས་ལག་ལེན་་འཐབ་སྦེ་ཌའི་ལོག་སྟོན་དོ</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/sbasic/python.po b/source/dz/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/dz/helpcontent2/source/text/sbasic/python.po
+++ b/source/dz/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/dz/helpcontent2/source/text/sbasic/shared.po b/source/dz/helpcontent2/source/text/sbasic/shared.po
index 51deb0646c2..d38259d9cea 100644
--- a/source/dz/helpcontent2/source/text/sbasic/shared.po
+++ b/source/dz/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME གཞི་རིམ་འགྲོགས་རམ</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/sbasic/shared/03.po b/source/dz/helpcontent2/source/text/sbasic/shared/03.po
index bd906385682..5f15c9c1570 100644
--- a/source/dz/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/dz/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/dz/helpcontent2/source/text/scalc/01.po b/source/dz/helpcontent2/source/text/scalc/01.po
index 3f0c210415d..ca942b609f5 100644
--- a/source/dz/helpcontent2/source/text/scalc/01.po
+++ b/source/dz/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\"> ནང་ན་གནད་སྡུད་ཤོམ་ཏེ་ཡོད་པའི་ ཁྱོད་ཀྱིས་ བཙུགས་དགོཔ་འདོད་པའི་ཡིག་སྣོད་ག་ཡོད་འཚོལ། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\"> ཁྱོད་ཀྱིས་བཙུགས་ནི་ཨིན་པའི་ ཐིག་ཁྲམ་ཡང་ན་གནད་སྡུད་ཁྱབ་ཚད་ངེས་འཛིན་འབད། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\"> ཁྱབ་ཚད་གཅིག་བསྡོམས་ཚུའི་སྒྲོམ་ནང་ཐོ་བཀོད་འབད་ཡོད་པའི་ <emph>ནང་ཐིག་ཁྱབ་ཚད་ཚུ་དང་གཅིག་ཁར་གཅིག་ཁར་བསྡོམས་དགོ་མནོ་མི་ </emph> ནང་ཐིག་ཁྱབ་ཚད་གསལ་བཀོད་འབདཝ་ཨིན། ཤོག་ལེབ་ནང་ལུ་ ནང་ཐིག་ཁྱབ་ཚད་སེལ་འཐུ་འབད་བཞིནམ་ལས་ <emph> ཁ་སྐོང་བརྐྱབ་ </emph> ཨེབ་གཏང་། <emph> ཁྱོད་ཀྱིས་ འབྱུང་ཁུངས་གནད་སྡུད་ཁྱབ་ཚད་ཐོ་ཡིག་ལས་ </emph> སྔ་གོང་ནས་ངེས་འཛིན་འབད་ཡོད་པའི་ནང་ཐིག་གི་མིང་གཅིག་ཡང་སེལ་འཐུ་འབད་བཏུབ་ཨིན། </ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/schart/00.po b/source/dz/helpcontent2/source/text/schart/00.po
index ed101bff695..176becdc45d 100644
--- a/source/dz/helpcontent2/source/text/schart/00.po
+++ b/source/dz/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/dz/helpcontent2/source/text/shared/00.po b/source/dz/helpcontent2/source/text/shared/00.po
index 9941a0987e0..2d16bbdb7a5 100644
--- a/source/dz/helpcontent2/source/text/shared/00.po
+++ b/source/dz/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/dz/helpcontent2/source/text/shared/01.po b/source/dz/helpcontent2/source/text/shared/01.po
index ef2f1567cc4..432e4086c55 100644
--- a/source/dz/helpcontent2/source/text/shared/01.po
+++ b/source/dz/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/dz/helpcontent2/source/text/shared/02.po b/source/dz/helpcontent2/source/text/shared/02.po
index 47f25aab03b..074eb790785 100644
--- a/source/dz/helpcontent2/source/text/shared/02.po
+++ b/source/dz/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/dz/helpcontent2/source/text/shared/guide.po b/source/dz/helpcontent2/source/text/shared/guide.po
index c61edde3706..e5f7e1f8bd4 100644
--- a/source/dz/helpcontent2/source/text/shared/guide.po
+++ b/source/dz/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/dz/helpcontent2/source/text/shared/optionen.po b/source/dz/helpcontent2/source/text/shared/optionen.po
index 7da68da2c70..a32f05d61f1 100644
--- a/source/dz/helpcontent2/source/text/shared/optionen.po
+++ b/source/dz/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/dz/helpcontent2/source/text/simpress/01.po b/source/dz/helpcontent2/source/text/simpress/01.po
index 25d320a9fbf..e4a9667977d 100644
--- a/source/dz/helpcontent2/source/text/simpress/01.po
+++ b/source/dz/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/dz/helpcontent2/source/text/swriter/guide.po b/source/dz/helpcontent2/source/text/swriter/guide.po
index ef387d53339..17551ebae60 100644
--- a/source/dz/helpcontent2/source/text/swriter/guide.po
+++ b/source/dz/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "<emph>ཚད་ལྡན་ཕྲ་རིང་</emph>གུ་ལུ་ <emph> འགྲུལ་བསྐྱོད་</emph> ངོས་དཔར་ <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id5211883\">ངོས་དཔར་</alt></image> འདི་ <emph>Navigator</emph>ཁ་ཕྱེ་ནིའི་དོན་ལས་ཨེབ་གཏང་།"
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
index 049195e519b..04617fa071b 100644
--- a/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23741,6 +23741,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26110,6 +26119,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26128,6 +26146,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/dz/sc/messages.po b/source/dz/sc/messages.po
index 366fcc48619..80d3bd53de5 100644
--- a/source/dz/sc/messages.po
+++ b/source/dz/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15772,6 +15772,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
#, fuzzy
msgctxt "subtotalgrppage|liststore1"
@@ -16342,12 +16347,12 @@ msgstr "གནས་སྟངས་ཅན་གྱི་ཐོག་ལས་ར
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17649,90 +17654,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "ཁ་བསྡམ།(~C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "སྒྲ་བཟུང་ གསརཔ།"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "གསརཔ།"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "བཏོན་གཏང་།"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "སོར་ཆུད།"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "ཧེ་མམ་གྱི་ སྒྲ་བཟུང་།"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "ཤུལ་མམ་གྱི་ སྒྲ་བཟུང་།"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "ཁ་བསྡམ།(~C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "ཡུ་ཨཱར་ཨེལ།"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "བརྡ་འཚོལ།"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "གནད་སྡུད་གཞི་རྟེན་གྱི་ཁྱབ་ཚད།"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19545,36 +19507,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "གནད་སྡུད།"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "ཀེར་ཐིག"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "གྲལ་ཐིག"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "གིས་སྡེ་བཟོ་བ།: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "བར་མཚམས།"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19722,167 +19689,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22518,17 +22487,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24518,111 +24497,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "སྒོ་སྒྲིག(~W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "སྟོན།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "སྦ་བཞག"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "ཤོག་ལེབ་མཚམས།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "དཔེ་རིས།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "དངོས་པོ་ཚུ་འབྲི་དོ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "སྟོན།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "སྦ་བཞག"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "སྟོན།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "སྦ་བཞག"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "སྟོན།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "སྦ་བཞག"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "དངོས་པོ་ཚུ།"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/dz/scp2/source/ooo.po b/source/dz/scp2/source/ooo.po
index 27ad64395da..3e34e00fbd3 100644
--- a/source/dz/scp2/source/ooo.po
+++ b/source/dz/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "ཡིག་ཆ་ ཁ་ཕྱེ།"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/dz/scp2/source/winexplorerext.po b/source/dz/scp2/source/winexplorerext.po
index a3ca0801170..0cb8943d801 100644
--- a/source/dz/scp2/source/winexplorerext.po
+++ b/source/dz/scp2/source/winexplorerext.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 19:34+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: dz\n"
@@ -12,8 +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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369350390.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "%PRODUCTNAME ཡིག་ཆ་ཚུ་གི་ བསྐོར་ལས་བརྡ་དོན་སྟོན་ཏེ་ མའི་ཀོརོ་སོཕཊ་ སྒོ་སྒྲིག་ཐབས་འཚོལ་ཚུ་ ལྕོགས་ཅན་བཟོ་འོང་ འདི་ཡང་ ཐམབ་ནེལ་ པིརི་ཝིཝསི་ཟེར་མི་བཟུམ་ཨིན།"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/dz/sd/messages.po b/source/dz/sd/messages.po
index f0af522c188..9a09d58ccc5 100644
--- a/source/dz/sd/messages.po
+++ b/source/dz/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2651,6 +2651,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3135,164 +3140,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4781,160 +4971,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/dz/sfx2/messages.po b/source/dz/sfx2/messages.po
index 718de3b620a..a5dfbf0c345 100644
--- a/source/dz/sfx2/messages.po
+++ b/source/dz/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -910,39 +910,34 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ཡིག་སྣོད་འདི་ཧེ་མ་ལས་ཡོདཔ་ཨིན། ཚབ་སྲུང་འབད་ནི་ཨིན་ན?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "སླར་སྒྲིག(~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "འ་ནི་མིང་འདི་ ཧེ་མ་ལས་རང་ལག་ལེན་ འཐབ་སྟེ་ཡོད།"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "བཟོ་རྣམ་འདི་ གནས་ཏེ་མེད།"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -950,7 +945,7 @@ msgid ""
"because it would result in a recursive reference."
msgstr "མཇུག་ལུ་གྲུབ་འབྲས་འདི་ སླར་འབྱུང་གཞི་བསྟུན་ལུ་ཐུག་ནི་ཨིནམ་ལས་བརྟེན་ འ་ནི་ བཟོ་རྣམ་འདི་ གཞི་རྩའི་བཟོ་རྣམ་འབད་ལག་ལེན་འཐབ་མི་བཏུབ་པས།"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -959,7 +954,7 @@ msgstr ""
"མིང་འདི་ཧེ་མ་ལས་རང་ སྔོན་སྒྲིག་བཟོ་རྣམ་ནང་ གནས་ཏེ་ཡོད།\n"
" མིང་གཞན་གཅིག་ གདམ་ཁ་བརྐྱབ་གནང་།"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -967,98 +962,98 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "འགྲུལ་བསྐྱོདཔ།"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "སྐྱོན་ཅན་ཆོག་ཡིག་ངེས་དཔྱད།"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "གཏང་།(~d)"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "ཐོན་རིམ་བསམ་བཀོད་བཙུགས།"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "བཟོ་རྣམ་ཚུ།"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "སྡེ་རིམ་བཞིན།"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "རྩ་སྒྲིག་ ཐབས་ལམ་བཀང་།"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "སེལ་འཐུ་ནང་ལས་ བཟོ་རྣམ་གསརཔ།"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "བཟོ་རྣམ་ དུས་མཐུན་བཟོ།"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "ཁྱོད་ ཐད་རེ་འབའ་རེ་ སྒྲ་བཟུང་འདི་ ཆ་མེད་གཏང་ནི་ཨིན་ན? ད་ལྟོ་ཚུན་ཚོད་ སྒྲ་བཟུང་འབད་ཡོད་པའི་ རིམ་པ་ཚུ་ བརླག་སྟོར་ཞུགས་འོང་།"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "སྒྲ་བཟུང་ ཆ་མེད་གཏང་།"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ཊེམ་པེལེཊིསི་ དེ་ཚུ་ འགོ་དང་པ་ ལག་ལེན་འཐབ་ནི་དོན་ལུ་ གཞི་བཙུགས་འབད་དེ་ཡོད།"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1067,7 +1062,7 @@ msgstr ""
"དཔར་འཕྲུལ་སྔོན་སྒྲིག་ འཚོལ་མ་འཐོབ་ཨིན་པས།\n"
"དཔར་འཕྲུལ་ གཅིག་ གདམ་ཏེ་ ལོག་སྟེ་རང་འབད་རྩོལ་བསྐྱེད་གནང་།"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1076,17 +1071,17 @@ msgstr ""
"དཔར་འཕྲུལ་ འགོ་བཙུགས་མི་ཚུགས་པས།\n"
"དཔར་འཕྲུལ་ རིམ་སྒྲིག་ ཞིབ་དཔྱད་འབད་གནང་།"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "དཔར་འཕྲུལ་ ཁོམ་མེད།"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ལྷག་ནི་-ཙམ།)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1097,7 +1092,7 @@ msgstr ""
"\n"
" ཤུགས་ལྡན་ཡིག་ཆ་ནང་ལུ་ སྒྲིག་སྟངས་གསརཔ་འདི་ སྲུང་བཞག་འབད་ནི་ཨིན་ན?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1108,7 +1103,7 @@ msgstr ""
"སྒྲིག་སྟངས་གསརཔ་འདི་ ཤུགས་ལྡན་ཡིག་ཆ་ནང་ལུ་ སྲུང་བཞག་\n"
"འབད་དགོས་པས་ག?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1119,7 +1114,7 @@ msgstr ""
"\n"
" ཤུགས་ལྡན་ཡིག་ཆ་ནང་ལུ་ སྒྲིག་སྟངས་གསརཔ་ཚུ་ སྲུང་བཞག་འབད་ནི་ཨིན་ན?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1129,7 +1124,7 @@ msgstr ""
" དཔར་བསྐྲུན་གྱི་ལཱ་གཅིག་ \n"
"འབད་ཡོདཔ་ལས་བརྟེན་ ཡིག་ཆ་འདི་ ཁ་བསྡམས་མི་བཏུབ་པས།"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1137,7 +1132,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,18 +1140,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ཡིག་ཆ་འདི་ ཞུན་དག་འབད་མི་བཏུབ་པས་ དེ་ཡང་ འཛུལ་སྤྱོད་འབད་ནི་དབང་ཆ་ཚུ་ བརླག་སྟོར་ཞུགས་ཡོདཔ་ལས་ བརྟེན་འོང་སྲིད། ཡིག་ཆ་འདི་གི་ འདྲ་བཤུས་གཅིག་ ཞུན་དག་འབད་ནི་ཨིན་ན?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1164,353 +1159,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "(ཡིག་ཆ་ ཉམས་བཅོས་འབད་འབདཝ།)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ཡིག་ཆ་ཞུན་དག་འབད།"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ཡིག་སྣོད་ཡིག་ཆ།"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "གདམ་ཁ་ཚུ་ཧེང་བཀལ།(~O)"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "སྲོལ་སྒྲིག་བསྒུལ་བཟོ་..."
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "རྩ་བསྐྲད་གཏང་།"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1871,36 +1876,19 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "ཐོན་རིམ་བསམ་བཀོད།"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-#, fuzzy
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "མིང་"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-#, fuzzy
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "དབྱེ་བ།"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "བེ་ལུ།"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
#, fuzzy
msgctxt "cmisline|type"
msgid "Type"
msgstr "དབྱེ་བ།"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
#, fuzzy
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "བཏུབ།"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
#, fuzzy
msgctxt "cmisline|no"
msgid "No"
@@ -1911,19 +1899,19 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
#, fuzzy
msgctxt "custominfopage|name"
msgid "Name"
msgstr "མིང་"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
#, fuzzy
msgctxt "custominfopage|type"
msgid "Type"
msgstr "དབྱེ་བ།"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "བེ་ལུ།"
@@ -2064,19 +2052,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "གནས་ཁོངས།"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "དབྱེ་བ།"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "ཆོག་ཡིག་ བསྒྱུར་བཅོས་འབད་་་་(~P)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2087,29 +2075,29 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "ཡོངས་ཁྱབ།"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
#, fuzzy
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "འགྲེལ་བཤད།"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2335,6 +2323,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/dz/shell/messages.po b/source/dz/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/dz/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/dz/starmath/messages.po b/source/dz/starmath/messages.po
index d2e179ab886..17d8992d08e 100644
--- a/source/dz/starmath/messages.po
+++ b/source/dz/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1674,278 +1674,303 @@ msgid "Examples"
msgstr "དཔེར་བརྗོད།"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "ཚད་ལྡན།"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ཨའི་ཊ་ལིཀ། "
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "རྒྱགས་པ།"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "གནགཔོ།"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ཧོནམ།"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "ལྗང་ཁུ།"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "དམར་སྨུག།"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "སྐྱ་ཐལ།"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "དུས་ཚོད།"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "སེརཔོ།"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "སྦ་བཞག"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "སིན།"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "ཡིག་གཟུགས།"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "གཡོན།"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "དབུས།"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "གཡས།"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "བརྡ་བཀོད་ཚུ།"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "མན་ངག"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ཡིག་ཆ་སྲུང་བཞག"
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION མན་ངག"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "འཛོལ་བ: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "རེ་བ་མེད་པའི་ཡིག་འབྲུ།"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "རེ་བ་བཀོད་ཡོདཔ།'{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "རེ་བ་བཀོད་ཡོདཔ།'}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "རེ་བ་བཀོད་ཡོདཔ།'('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "རེ་བ་བཀོད་ཡོདཔ།')' "
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "རེ་བ་བཀོད་ཡོདཔ།'#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "ཚོས་གཞི་དགོས་མཁོ་ཡོདཔ།"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'གཡས' རེ་བ་བཀོད་ཡོདཔ། "
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME ཀེལ་སི།"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ནང་དོན་ཚུ།"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "མགོ་མིང་།"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "མན་ངག་གི་ཚིག་ཡིག(~F)"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "མཐའ་མཚམས་ཚུ།"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "ཚད།"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "ཚད་ངོ་མ།(~r)"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ཤོག་ལེབ་ནང་ལུ་ཚུད་ཚད་འབད།(~F)"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2019,6 +2044,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "རྒྱུ་རྫས།"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/dz/svtools/messages.po b/source/dz/svtools/messages.po
index 388dc702ad5..a611a42b418 100644
--- a/source/dz/svtools/messages.po
+++ b/source/dz/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1538 +16,1540 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195366.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "འབད་བཤོལ།:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "ལོག་འབད།(~d)"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~ཡང་བསྐྱར།"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "རྩ་སྒྲིག་འབད་མ་ཚར་བའི་ ཚིག་ཡིག།"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "ཨེསི་ ཝི ཨེགསི་ ནང་འཁོད་འབྲེལ་ལམ་ལས་ གནས་ཚད་བརྡ་དོན།"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "ནེཊི་སིཀེཔ་ དེབ་རྟགས།"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "སིཊར་ སར་བར་ རྩ་སྒྲིག།"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "སིཊར་ དངོས་ཕོ་ རྩ་སྒྲིག།"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "ཨེཔ་ལེཊི་ དངོས་པོ།"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "པ་ལག་ཨིན དངོས་པོ།"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "སིཊར་ རའི་ཊར ༣.༠ དངོས་པོ།"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "སིཊར་ རའི་ཊར ༤.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "སིཊར་ རའི་ཊར་ ༥.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "སིཊར་ རའི་ཊར/ཝེབ་ ༤.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "སིཊར་ རའི་ཊར/ཝེབ་ ༥.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "སིཊར་ རའི་ཊར/ཨམ་ ༤.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "སིཊར་ རའི་ཊར་/ཨམ་༥.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "སིཊར་ འབྲི་ནའི་ དངོས་"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "སིཊར་ཌཱ་ ༤.༠་ དངོས་པོ།"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "སིཊར་ཨིམ་པེ་རེསི་ ༥.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "སིཊར་ཌཱ་ ༥.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "སིཊར་ཀེལཀི་ དངོས་པོ།"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "སིཊར་ཀེལཀི་ ༤.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "སིཊར་ཀེལཀི་ ༥.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "སིཊར་ཅརཊི་ དངོས་པོ།"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "སིཊར་ཅརཊི་ ༤.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "སིཊར་ཅརཊི་ ༥.༠་ དངོས་པོ།"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "སིཊར་ཨི་མིཇི་ དངོས་པོ།"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "སིཊར་ཨི་མེཇི་ ༤.༠་ དངོས་པོ།"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "སིཊར་ཨི་མེཇི་ ༥.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "སིཊར་མེཏ་ དངོས་པོ།"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "སིཊར་མེཏ་ ༤.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "སིཊར་མིཊ་ ༥.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "སིཊར་ཨོབ་ཇིཀཊི་ ཚོན་གྱི་དངོས་པོ།"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "སི་ལིཀ།"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "མའི་ཀོརོ་སོཕཊི་ མིང་ཚིག་ དངོས་པོ།"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "སིཊར་ ཕེརེམ་སིཊི་ དངོས་པོ།"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ཡིག་ཚང་ ཡིག་ཆ་ དངོས་པོ།"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "དྲན་འཛིན་ ཡིག་ཆ་ དངོས་པོ།"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "ཨེས་ཨེཕ་ཨེགསི་ ཡིག་ཆ།"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "སིཊར་ཅརཊི་ ༥.༠་དངོས་པོ།"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ཚད་རིས་ དངོས་ཕོ།"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "ཝིན་ཌོསི་ མེ་ཊ་ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "གནད་སྡུད་ འབྱུང་ཁུངས་ དངོས་པོ།"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "གནད་སྡུད་ འབྱུང་ཁུངས་ ཐིག་ཁྲམ།"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "ཨེསི་ཀིའུ་ཨེལ འདྲི་དཔྱད།"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "འབྲེལ་ལམ།"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "བསམ་བཀོད་མེད་པའི་ ཨེཆ་ཊི་ཨེམ་ཨེལ་ རྩ་སྒྲིག།"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "དངོས་པོ་%་ འདི་བཙུགས་མ་ཚུགས།"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ཡིག་སྣོད་%ལས་ དངོས་པོ་ བཙུགས་མ་ཚུགས།"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "དངོས་པོ་ཐེབས་ཚུ།"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "མ་ཤེས་པའི་ འབྱུང་ཁུངས།"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "མིང་།"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "ཚད།"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "ལེགས་བཅོས་གྲུབ་པའི་ཚས་གྲངས།"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "དབྱེ་བ།"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "བཱའིཊིསི།"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ཀེ་བི།"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "ཨེམ་བི།"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ཇི་བི།"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "གྲལ་ཐིག་: %1 ཀེར་ཐིག་: %2 །"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ",དབྱེ་བ་: %1 ཡུ་ཨར་ཨེལ་: %2 །"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "སྣོད་འཛིན།"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ཡིག་སྣོད་སྟོངམ།"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ཀ་ཁ་ཨང་ཡིག།"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "སྤྱིར་བཏང་།"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ཡིག་འབྲུའི་ཆ་ཚན།"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "ཚིག་མཛོད།"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "པིན་ཡིན།"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "སིཊོཀ།"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "རེ་ཌི་ཀཱལ།"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ཡུ་ནི་ཀོཌི།"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "ཞུ་ཡིན།"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "བརྒྱུད་འཕྲིན་ཀི་དེབ།"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "སྒྲ་རྟགས།(ཀ་ཁའི་ཨང་ཡིག་དང་པ།)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "སྒྲ་རྟགས (ཀ་ཁའི་ཨང་ཡིག་མཇུག་མམ།)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ཀ་ཁའི་ཨང་ཡིག།"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "ཚིག་མཛོད།"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "པིན་ཡིན།"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "རེ་ཌི་ཀཱལ།"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "སིཊོཀ།"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "ཞུ་ཡིན།"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "སྒྲ་རྟགས་(ཀ་ཁའི་ཨང་ཡིག་དང་པ ཚེག་ཁྱིམ་ཚུ་གིས་སྡེ་ཚན་བཟོ་བཟོཝ།)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "སྒྲ་རྟགས་(ཀ་ཁའི་ཨང་ཡིག་དང་པ་ གསལ་བྱེད་ཚུ་གིས་སྡེ་ཚན་བཟོ་བཟོཝ།)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "སྒྲ་རྟགས་(ཀ་ཁའི་ཨང་ཡིག་མཇུག་མམ ཚེག་ཁྱིམ་་ཚུ་གིས་ སྡེ་ཚན་བཟོ་བཟོཝ།)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "སྒྲ་རྟགས་(ཀ་ཁའི་ཨང་མཇུག་མམ་ གསལ་བྱེད་ཚུ་གིས་ སྡེ་ཚན་བཟོ་བཟོཝ།)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ད་རིས།"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "ཅི་མེད།"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ཡང་བ།"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ཡང་བའི་ ཨའི་ཊ་ལིཀ། "
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "དུས་རྒྱུན།"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "གཡས་གཡོ།"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "རྒྱགས་པ།"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "རྒྱགས་པ་གཡས་གཡོ།"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "གནགཔོ།"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "གཡས་གཡོ་ གནགཔོ།"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ཀི་དེབ།"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "སྲབ་དམ།"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "དཔར་འཕྲུལ་དང་ཁྱོད་ཀྱི་ གསལ་གཞི་ནང་ལུ་ འ་ནི་ཡིག་གཟུགས་གཅིགཕ་འདི་ ལག་ལེན་འཐབ་བཏུབ།"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "འ་ནི་འདི་དཔར་འཕྲུལ་ ཡིག་གཟུགས་ཨིན། གསལ་གཞི་ གཟུགས་བརྙན་འདི་ སོ་སོ་འགྱུར་འོང་།"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "འ་ནི་ཡིག་གཟུགས་ཀྱི་ བཟོ་རྣམ་འདི་ མཚུངས་བཟོ་འབད་འོང་ ཡང་ན་ཐག་ཉེ་ཤོས་ཀྱི་ མཐུན་སྒྲིག་འབད་མི་བཟོ་རྣམ་ཅིག་ ལག་ལེན་འཐབ་འོང་།"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "འ་ནི་ཡིག་གཟུགས་འདི་ གཞི་བཙུགས་མ་འབད། ཐག་ཉེ་ཤོས་ ཐོབ་ཚུགས་ཕའི་ཡིག་གཟུགས་ཅིག་ ལག་ལེན་འཐབ་འོང་།"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "བརྡ་འཚོལ།"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "གྲལ་ཐིག་མར་སྤོ་བཤུད་འབད"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "གཡོན་ལུ་་ལུ་སྤོ།"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "གཡས་ལུ་སྤོ།"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "མར་སྤོ།"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ཁ་སྐོང་རྐྱབས།"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "ཐད་སྙོམས་ཕྱི་ཁར།"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ཀེར་ཕྲེང་སྦེ་ཡོད་མི་ ཐིག་ཤིང་།"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "ཐེརེཤ་ཧཱོལ་ བིཊི་༡།"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "བིཊི་༡་ སྤར་ཡོདཔ།"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "སྐྱ་ཐལ་ཆ་ཚད་ བིཊི་༤།"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "སྐྱ་ཐལ་ཆ་ཚད་ བིཊི་༤།"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "ཚོས་གཞི་ བདེན་པ་ བིཊི་༢༤།"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "གླ་ཆ།"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "དབྱེ་སེལ།"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ཐེམ།"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "གཞི་བཙུགས་འབད་དོ།..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "བསྒུག་དོ།"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "འཛོལ་བ།"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ཤོག་ལེབ་བཏོན་གཏང་།(~e)"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "དྲན་ཚད་མ་ལངམ།"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "མིང་ཚིག་ཡིག་ཆ་ཚུ།"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "མཇུག་བསྡུ།(~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "ཤུལ་མམ།>(~N)"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<<རྒྱབ།(~K)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "རིམ་པ་ཚུ།"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ཚོང་སྡེ།"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "ལས་ཁུངས།"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "མགོ་མིང་།"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "མཇུག་མིང་།"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ཁྲོམ་ལམ།"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "རྒྱལ་ཁབ།"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "གནས་ཨང་།"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "གྲོང་སྡེ།"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "གོ་གནས།"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "གནས་ས།"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ཁ་བྱང་བྲིས་ཤོག།"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "མིང་རྟགས་བསྡུས་པ།"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "བསྟོད་བསྔགས་ མཇུག།"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "བརྒྱུད་འཕྲིན: ཁྱིམ།"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "བརྒྱུད་འཕྲིན:ལཱ་ས།"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "ཡུ་ཨར་ཨེལ"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "དྲན་འཛིན།"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ལག་ལེན་པ་ ༡།"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ལག་ལེན་པ་ ༢།"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ལག་ལེན་པ་ ༣།"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ལག་ལེན་པ་ ༤།"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ཨའི་ཌི།"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "མངའ་སྡེ།"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "བརྒྱུད་འཕྲིན:ཡིག་ཚང་།"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "པེ་ཇར།"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "འགྲུལ་འཕྲིན།"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "བརྒྱད་འཕྲིན:གཞན།"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ཟླ་ཐོ།"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "འགྲོན་བརྡ་འབད།"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "ཇེ་ཨར་ཨི་ དགོས་མཁོ་ཡོདཔ།"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "ཇེ་ཨར་ཨི་ སེལ་འཐུ་འབད།"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "ཇེ་ཨར་ཨི་ སྐྱོན་ཅན་ཨིན་པས།"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "འབྱུང་ཁུངས་ཀྱི་ཨང་རྟགས།"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "དེབ་རྟགས་ཀྱི་ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ཚད་རིས།"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "རིམ་སྒྲིག་ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "གློག་རིམ།"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "གནད་སྡུད་གཞི་རྟེན་གྱི་ཐིག་ཁྲམ།"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "རིམ་ལུགས་ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "ཨེམ་ཨེསི་མིང་ཚིག་གི་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "གྲོག་རམ་ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ཡིག་མཛོད་ཀྱི་ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "དྲན་དེབ་ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "སི་ཊར་ཡིག་ཚང་ ༥་༠ ཊིམ་པེལེཊི།"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "སི་ཊར་རའི་ཊར་ ༤.༠/༥.༠ ཡིག་ཆ་ཨམ།"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "སི་ཊར་ཡིག་ཚང་ ༥་༠ ཊིམ་པེལེཊི།"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ཚིག་ཡིག་གི་ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "འབྲེལ་ལམ།"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "སི་ཊར་ཡིག་ཚང་ ༥་༠ ཊིམ་པེལེཊི།"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "ཨེམ་ཨེསི་ ཨེགསི་སེལ་ ཡིག་ཆ།"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "ཨེམ་ཨེསི་ ཨེགསི་སེལ་ ཊེམ་པེལེཊི།"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "རུ་ཚན་གྱི་ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ཡིག་སྣོད།"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "སྣོད་འཛིན།"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ཚིག་ཡིག་གི་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ཤོག་ཁྲམ།"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "གསལ་སྟོན།"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "པར་རིས།"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "ཨེཆ་ཊི་ཨེམ་ཨེལ་ཡིག་ཆ།"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ཡིག་ཆ་ཨམ།"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "མན་ངག"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "གནས་སྡུད་གཞི་རྟེན།"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ཉེ་གནས་ཀྱི་འདྲེན་འཕྲུལ།"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ཌིསིཀ་གི་འདྲེན་འཕྲུལ།"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "སི་ཌི་-ཨར་ཨོ་ཨེམ འདྲེན་འཕྲུལ།"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "ཡོངས་འབྲེལ་གྱི་མཐུད་ལམ།"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "ཨེམ་ཨེསི་ པ་ཝར་པོའིནཊི་ ཡིག་ཆ།"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "ཨེམ་ཨེསི་ པ་ཝར་པོའིནཊི་ ཊེམ་པེལེཊི།"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "ཨེམ་ཨེསི་ པ་ཝར་པོའིནཊི་ སྟོན།"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "ཨང་རྩིས་ཨེམ་ཨེལ་ ཡིག་ཆ།"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ གནད་སྡུད་གཞི་རྟེན།"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ པར་རིས།"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ མན་ངག"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ ཡིག་ཆ་ཨམ།"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ གསལ་སྟོན།"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ ཤོག་ཁྲམ།"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ ཚིག་ཡིག"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ ཤོག་ཁྲམ་གྱི་ཊེམ་པེལེཊི།"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ པར་རིས་ཀྱི་ཊེམ་པེལེཊི།"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ གསལ་སྟོན་གྱི་ཊེམ་པེལེཊི།"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ཨོ་པན་ཌོ་ཀུ་མེནཊི་ ཚིག་ཡིག་གི་ཊེམ་པེལེཊི།"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME རྒྱ་བསྐྱེད་"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/dz/svx/messages.po b/source/dz/svx/messages.po
index c0353aa3393..77863d24ece 100644
--- a/source/dz/svx/messages.po
+++ b/source/dz/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8087,6 +8087,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12615,88 +12620,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "བུར་གཞོང་ཞུན་དག་འབད།"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "འཇུག་སྤྱོད་འབད།"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "ལཱ་གི་ས་སྒོ།"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
#, fuzzy
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "སེལ་འཐུ་འབད།"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "གྲུ་བཞི་ནར་མོ།"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "སྒོང་དབྱིབས།"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "ཟུར་མང་དབྱིབས།"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ཡིག་ཚད་ཞུན་དག་རྐྱབས།"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ཡིག་ཚད་ སྤོ་བཤུད་འབད།"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ཡིག་ཚད་་བཙུགས།"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ཡིག་ཚད་བཏོན་གཏང་།"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "རང་བཞིན་བུར་གཞོང་།"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "འབད་བཤོལ།"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "དམརཔོ།"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13040,125 +13050,119 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "མཇུག་ཡིག"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "གཟུགས་སྙན་གྱི་ས་ཁྲ་ཞུན་དག་འབད།"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "འཇུག་སྤྱོད་འབད།"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "ཁ་ཕྱེ..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "སྲུངས..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "ཁ་བསྡམ།"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
#, fuzzy
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "སེལ་འཐུ་འབད།"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "གྲུ་བཞི་ནར་མོ།"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "སྒོང་དབྱིབས།"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "ཟུར་མང་དབྱིབས།"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "ཟུར་མང་དབྱིབས་ཀྱི་རྣམ་པ་དེལཝ།"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ཡིག་ཚད་ཞུན་དག་རྐྱབས།"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ཡིག་ཚད་ སྤོ་བཤུད་འབད།"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ཡིག་ཚད་་བཙུགས།"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ཡིག་ཚད་བཏོན་གཏང་།"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "འབད་བཤོལ།"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "དམརཔོ།"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "ཤུགས་ལྡན།"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "མེཀ་རོ..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "རྒྱུ་དངོས་ཚུ།"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "ཁ་བྱང་:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "གཞི་ཁྲམ།"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/dz/sw/messages.po b/source/dz/sw/messages.po
index 070bc987a48..6d58733a7cd 100644
--- a/source/dz/sw/messages.po
+++ b/source/dz/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3271,7 +3271,7 @@ msgid "Change object title of $1"
msgstr "%O གི་དངོས་པོའི་གོ་རིམ་ བསྒྱུར་བཅོས་འབད།"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12807,147 +12807,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12957,152 +12957,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14222,7 +14222,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17771,50 +17771,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "སྔོན་ལྟ།"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "སྔོན་ལྟ།"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "དབྱེ་བ།"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "ཐོ་བཀོད།(_E)"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "བཟོ་རྣམ་ཚུ།"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "ཀེར་ཐིག་ཚུ།"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "རྒྱབ་གཞི།"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "སྔོན་ལྟ།"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "གནས་རིམ།"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -18059,326 +18059,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "ཞུན་དག"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "མགོ་མིང་:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "དབྱེ་བ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "ཐིག་ཁྲམ་གྱི་ནང་དོན་ཚུ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "ལག་ལེན་པ་-ངེས་འཛིན་འབད་ཡོདཔ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "དེབ་ཐོ་ ༡།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "འབྲི་ཤོག"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "ཡིག་ཆ་ཧྲིལ་བུར།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "ལེའུ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "མཐའ་ཐིག"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "ཐིག་ཁྲམ་ཚུ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "ཚིག་ཡིག་གཞི་ཁྲམ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ཚད་རིས་ཚུ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "ཨོ་ཨེལ་ཨི་ དངོས་པོ་ཚུ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "གནས་སྟངས་དང་འབྲེལ་བའི་བཟོ་རྣམ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "བཟོ་རྣམ་ཚུ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "གདམ་ཁ་ཚུ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "དངོས་པོའི་མིང་།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "དབྱེ་རིམ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "བཀྲམ་སྟོན།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "གཞི་བསྟུན་ཚུ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "དབྱེ་རིམ་དང་ཨང་།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "དཔར་བཤད་ཚིག་ཡིག"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "གུག་ཤད་ཚུ།(~B)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[None]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ཡིག་སྣོད།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
#, fuzzy
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "གདམ་ཁ་ཚུ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "སྐད་ཡིག"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "ལྡེ་མིག་གི་དབྱེ་བ།"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "དབྱེ་སེལ།"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "གནས་རིམ།"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(དོན་མཚམས་བཟོ་རྣམ: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "སྔོན་སྒྲིག།"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "ཞུན་དག།"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/el/cui/messages.po b/source/el/cui/messages.po
index da4845a42c3..4f6fbcd38ac 100644
--- a/source/el/cui/messages.po
+++ b/source/el/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-05-03 08:33+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Παρακαλούμε, εισάγετε έγκυρη διεύθυνση θέματος ή όρο αναζήτησης."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "H API των θεμάτων του Mozilla είναι προς το παρόν μη διαθέσιμη."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Ορισμός χωρίς περιγράμματα"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Ορισμός εξωτερικού περιγράμματος μόνο"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Ορισμός εξωτερικών περιγραμμάτων και οριζόντιων γραμμών"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Ορισμός εξωτερικού περιγράμματος και όλων των εσωτερικών γραμμών"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Ορισμός εξωτερικού περιγράμματος χωρίς αλλαγή εσωτερικών γραμμών"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Ορισμός μόνο διαγωνίων γραμμών"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Ορισμός και των τεσσάρων περιγραμμάτων"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Ορισμός μόνο αριστερών και δεξιών περιγραμμάτων"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Ορισμός μόνο πάνω και κάτω περιγραμμάτων"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Μόνο αριστερό περίγραμμα"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Καθορισμός πάνω και κάτω περιγραμμάτων, και όλων των εσωτερικών γραμμών"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Ορισμός αριστερού και δεξιού περιγράμματος και όλων των εσωτερικών γραμμών"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Χωρίς σκιά"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Σκιά προς τα κάτω δεξιά"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Σκιά προς τα πάνω δεξιά"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Σκιά προς τα κάτω αριστερά"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Σκιά προς τα πάνω αριστερά"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Υπογράφτηκε από: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Όλα τα αρχεία"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Καταχωρημένες βάσεις δεδομένων"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Σχετικά με το %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Μ_νείες"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Ιστοσελίδα"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Αναγνωριστικό δόμησης: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Τοπικό: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Γλώσσα διεπαφής: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Δείτε ημερολόγιο: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME είναι μια σύγχρονη, εύχρηστη, σειρά παραγωγικότητας ανοιχτού λογισμικού για επεξεργασία κειμένου, υπολογιστικών φύλλων, παρουσιάσεων κλπ."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Πνευματικά δικαιώματα © 2000–2019 συντελεστών LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "Το LibreOffice βασίστηκε στο OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "Το %PRODUCTNAME κατάγεται από το LibreOffice που βασίστηκε στο OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Αυτή η έκδοση παρέχεται από τον %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Α_ντικατάσταση"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Αντικατά_σταση"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Με:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Μόνο κείμενο"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Ελάχιστο μήκος λέξης"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Ιδιότητες"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Π_λαίσιο:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Ό_νομα:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Εναλλακτικό _κείμενο:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Περιγραφή:"
@@ -9019,80 +9179,80 @@ msgstr "Εμφάνιση αναδυόμενου \"Δεν έχει εγκατασ
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Βοήθεια"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Χρήση διαλόγων του %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Διάλογοι Άνοιγμα/Αποθήκευση"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "_Χρήση διαλόγων του %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Διάλογοι εκτύπωσης"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Η εκτύπωση ορίζει την κατάσταση \"τροποποιημένο έγγραφο\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Κατάσταση εγγράφου"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Να ερμηνεύεται ως χρόνια μεταξύ "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "και "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Έτος (δύο ψηφία)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Συλλογή δεδομένων χρήσης και αποστολή της στη Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Βοηθήστε στη βελτίωση του %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Φόρτωση του %PRODUCTNAME κατά την εκκίνηση του συστήματος"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Ενεργοποίηση γρήγορης εκκίνησης περιοχής ειδοποιήσεων"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Γρήγορη έναρξη του %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Προεγκατεστημένο θέμα"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Προσωπικό θέμα"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Φόρτωση θέματος Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Ή, επιλογή από τα εγκατεστημένα θέματα μέσω επεκτάσεων:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Θέματα Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Επιλογές ασφαλείας"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Επιλογή θέματος Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Αναζήτηση όρου ή διεύθυνσης"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "_Κατηγορία:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Περίληψη"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Θέματα"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Τρόπος"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Ταινία και τηλεόραση"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh (Κόκκινη αλεπού)"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Διακοπές"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Μουσική"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Φύση"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Άλλο"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Τοπίο"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Εποχιακός"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Συμπαγής"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Αθλητικά"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Ιστότοποι"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Εμφάνιση"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/el/extensions/messages.po b/source/el/extensions/messages.po
index 2372b5014d2..5a5e28718c1 100644
--- a/source/el/extensions/messages.po
+++ b/source/el/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-19 13:47+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@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: 1555681646.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Διάταξη στήλης για τον πίνακα “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Σύν_τομο όνομα"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Συγγραφείς"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Εκ_δότης"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Κε_φάλαιο"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Εκδότης"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Τύπος"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Έ_τος"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Τίτ_λος"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "_Διεύθυνση"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Σε_λίδες"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Έ_κδοση"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Τίτλος _βιβλίου"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Τόμος"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Τύ_πος έκδοσης"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Ορ_γανισμός"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Ί_δρυμα"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "_Πανεπιστήμιο"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Τύπος ανα_φοράς"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Μήνας"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Πε_ριοδικό"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Αρι_θμός"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Σει_ρά"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Σ_χόλιο"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Σ_ημείωση"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Προσαρμοσμένο πεδίο _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Προσαρμοσμένο πεδίο _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Προσαρμοσμένο πεδίο _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Προσαρμοσμένο πεδίο _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Προσαρμοσμένο πεδίο _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Ονόματα στηλών"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Δώστε ένα όνομα για το νέο τύπο δεδομένων:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Σύνδεση πεδίων"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Πρόταση"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Μπορούν να χρησιμοποιηθούν υποφόρμες για την εμφάνιση λεπτομερών δεδομένων σχετικά με την τρέχουσα εγγραφή της κύριας φόρμας. Για να γίνει αυτό, θα πρέπει να καθορίσετε ποιες στήλες της υποφόρμας ταιριάζουν με ποιες στήλες της κύριας φόρμας."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ετικέτα"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "ετικέτα"
diff --git a/source/el/helpcontent2/source/auxiliary.po b/source/el/helpcontent2/source/auxiliary.po
index 543f9ba514d..e7b06ed3388 100644
--- a/source/el/helpcontent2/source/auxiliary.po
+++ b/source/el/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-22 19:53+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@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: 1555962820.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Γενικές Πληροφορίες"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Παρουσιάσεις και σχεδιάσεις (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Γραμμές εργαλείων"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Σχέδια (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Μενού"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Γραμμές εργαλείων"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Αντικείμενα, γραφικά και ψηφιογραφίες"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Ομάδες και στρώσεις"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Κείμενο σε παρουσιάσεις και σχέδια"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/sbasic/guide.po b/source/el/helpcontent2/source/text/sbasic/guide.po
index e8d28f84b8d..9aebb572ef2 100644
--- a/source/el/helpcontent2/source/text/sbasic/guide.po
+++ b/source/el/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-26 05:46+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
@@ -169,6 +169,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Σύγκριση της Access2Base με VBA Microsoft Access"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -518,16 +542,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Άνοιγμα διαλόγου με κώδικα προγράμματος"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>εναλλαγή αρθρώματος/διαλόγου</bookmark_value><bookmark_value>διάλογοι;χρήση κωδικού προγράμματος για την εμφάνιση (παράδειγμα)</bookmark_value><bookmark_value>παραδείγματα; εμφάνιση διαλόγου χρησιμοποιώντας κώδικα προγράμματος</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/sbasic/python.po b/source/el/helpcontent2/source/text/sbasic/python.po
index 35758fd7a4d..20f3d94043e 100644
--- a/source/el/helpcontent2/source/text/sbasic/python.po
+++ b/source/el/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-22 19:55+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: Άνοιγμα διαλόγου"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,8 +93,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
-msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Άνοιγμα διαλόγου σε Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Λειτουργικό;isLinux</bookmark_value><bookmark_value>Λειτουργικό;isMacOsX</bookmark_value><bookmark_value>Λειτουργικό;isWindows</bookmark_value><bookmark_value>Λειτουργικό;ComputerName</bookmark_value><bookmark_value>Λειτουργικό;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "Στο %PRODUCTNAME Basic λείπει η εγγενής αναγνώριση Mac OS X ενώ η ιδιότητα ComputerName είναι διαθέσιμη αποκλειστικά για Windows. Οι κλήσεις Basic στις μακροεντολές Python βοηθούν στην παράκαμψη τέτοιων περιορισμών."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr "Χρήση αρθρώματος κλάσης Basic:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/el/helpcontent2/source/text/sbasic/shared.po b/source/el/helpcontent2/source/text/sbasic/shared.po
index 359f11d5fe7..54e41800fef 100644
--- a/source/el/helpcontent2/source/text/sbasic/shared.po
+++ b/source/el/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-08 14:46+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Βοήθεια για το $[officename] Basic\">Βοήθεια για το %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/sbasic/shared/03.po b/source/el/helpcontent2/source/text/sbasic/shared/03.po
index 3dfac4dbe08..aba6fe1c8bb 100644
--- a/source/el/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/el/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-06 08:35+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@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: 1549442158.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Συναρτήσεις και υπορουτίνες για έλεγχο
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/el/helpcontent2/source/text/scalc/01.po b/source/el/helpcontent2/source/text/scalc/01.po
index a43b6697542..87fc9492bab 100644
--- a/source/el/helpcontent2/source/text/scalc/01.po
+++ b/source/el/helpcontent2/source/text/scalc/01.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-22 20:24+0000\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
+"PO-Revision-Date: 2019-05-29 09:09+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1555964684.000000\n"
+"X-POOTLE-MTIME: 1559120985.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -6359,7 +6359,7 @@ msgctxt ""
"bm_id3159147\n"
"help.text"
msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ετήσια καθαρά επιτόκια</bookmark_value><bookmark_value>υπολογισμός; ετήσια καθαρά επιτόκια</bookmark_value><bookmark_value>καθαρά ετήσια επιτόκια</bookmark_value><bookmark_value>συνάρτηση EFFECTIVE</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -6367,7 +6367,7 @@ msgctxt ""
"hd_id3159147\n"
"help.text"
msgid "EFFECT"
-msgstr ""
+msgstr "EFFECT"
#: 04060103.xhp
msgctxt ""
@@ -6391,7 +6391,7 @@ msgctxt ""
"par_id3148805\n"
"help.text"
msgid "EFFECT(Nom; P)"
-msgstr ""
+msgstr "EFFECTIVE(Nom; P)"
#: 04060103.xhp
msgctxt ""
@@ -6423,7 +6423,7 @@ msgctxt ""
"par_id3150772\n"
"help.text"
msgid "<item type=\"input\">=EFFECT(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
-msgstr ""
+msgstr "<item type=\"input\">=EFFECT(9,75%;4)</item> = 10,11%. Ο ετήσιος πραγματικός τόκος είναι κατά συνέπεια 10,11%."
#: 04060103.xhp
msgctxt ""
@@ -40950,8 +40950,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Εντοπίστε το αρχείο που περιέχει τα δεδομένα που επιθυμείτε να εισάγετε.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Ανοίξτε έναν διάλογο αρχείου για να εντοπίσετε το αρχείο που περιέχει τα δεδομένα που επιθυμείτε να εισάγετε.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -40982,8 +40982,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Εισάγετε το URL ή το όνομα αρχείου που περιέχει τα δεδομένα που θέλετε να εισάγετε και έπειτα πατήστε Enter (εισαγωγή).</ahelp> Μόνο τότε το URL θα ζητηθεί από το δίκτυο ή το σύστημα αρχείου."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Εισάγετε το URL ή το όνομα του αρχείου που περιέχει τα δεδομένα που θέλετε να εισάγετε και έπειτα πατήστε Enter.</ahelp> Εναλλακτικά, πατήστε το πλήκτρο <emph>Περιήγηση</emph> για να επιλέξετε το όνομα του αρχείου από έναν διάλογο αρχείου που ανοίγει. Μόνο τότε θα αναζητηθεί το URL από το δίκτυο ή το σύστημα των αρχείων."
#: 04090000.xhp
msgctxt ""
@@ -41006,8 +41006,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Επιλέξτε τον πίνακα ή την περιοχή δεδομένων που επιθυμείτε να εισάγετε.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Επιλέξτε τον πίνακα ή την περιοχή δεδομένων που θέλετε να εισάγετε.</ahelp> Εάν το επιλεγμένο έγγραφο Calc ή Excel δεν περιέχει επώνυμη περιοχή, τα δεδομένα του υπολογιστικού φύλλου δεν μπορούν να εισαχθούν και το πλήκτρο <emph>Εντάξει</emph> θα παραμείνει ανενεργό."
#: 04090000.xhp
msgctxt ""
@@ -44567,7 +44567,7 @@ msgctxt ""
"par_id315475855\n"
"help.text"
msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document, including Add-In functions. The hard recalculation correctly recalculates all formula cells."
-msgstr ""
+msgstr "Πατήστε Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 για επανυπολογισμό όλων των τύπων στο έγγραφο, συμπεριλαμβανομένων των πρόσθετων συναρτήσεων. Ο αναγκαστικός επανυπολογισμός επανυπολογίζει σωστά όλα τα κελιά τύπων."
#: 06080000.xhp
msgctxt ""
@@ -46294,8 +46294,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Καθορίζει την περιοχή κελιών που επιθυμείτε να ενοποιηθούν με τις περιοχές κελιών που βρίσκονται σε έναν κατάλογο στο πεδίο <emph>Περιοχές ενοποίησης </emph>. Επιλέξτε μία περιοχή κελιών σε ένα φύλλο, και ύστερα πατήστε στο κουμπί <emph>Προσθήκη</emph>. Μπορείτε επίσης να επιλέξετε το όνομα του προκαθορισμένου κελιού από τον κατάλογο <emph>Περιοχή προέλευσης δεδομένων </emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Καθορίζει την περιοχή κελιών που επιθυμείτε να ενοποιηθούν με τις περιοχές κελιών που βρίσκονται στο πλαίσιο <emph>Περιοχές ενοποίησης</emph>. Επιλέξτε μία περιοχή κελιών σε ένα φύλλο και ύστερα πατήστε το <emph>Προσθήκη</emph>. Μπορείτε επίσης να επιλέξετε το όνομα του προκαθορισμένου κελιού από τον κατάλογο <emph>Περιοχή προέλευσης δεδομένων </emph>.</ahelp>"
#: 12070000.xhp
msgctxt ""
@@ -51559,7 +51559,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CONCAT function"
-msgstr ""
+msgstr "Συνάρτηση CONCAT"
#: func_concat.xhp
msgctxt ""
@@ -51567,7 +51567,7 @@ msgctxt ""
"bm_id741556228031712\n"
"help.text"
msgid "<bookmark_value>CONCAT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Συνάρτηση CONCAT</bookmark_value>"
#: func_concat.xhp
msgctxt ""
@@ -51575,7 +51575,7 @@ msgctxt ""
"hd_id471556226436779\n"
"help.text"
msgid "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51583,7 +51583,7 @@ msgctxt ""
"par_id891556226436781\n"
"help.text"
msgid "<variable id=\"concatfunction\"><ahelp hid=\".\">Concatenates one or more strings</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunction\"><ahelp hid=\".\">Συνενώνει μία ή περισσότερες συμβολοσειρές</ahelp></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51591,7 +51591,7 @@ msgctxt ""
"par_id701556226865876\n"
"help.text"
msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M."
-msgstr ""
+msgstr "Το CONCAT είναι μια βελτίωση του CONCATENATE, επειδή το CONCAT δέχεται επίσης περιοχές ως ορίσματα, όπως B2:E5, K:K ή K:M."
#: func_concat.xhp
msgctxt ""
@@ -51599,7 +51599,7 @@ msgctxt ""
"par_id461556226873963\n"
"help.text"
msgid "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate."
-msgstr ""
+msgstr "Όταν χρησιμοποιούνται περιοχές, τα κελιά διατρέχονται γραμμή-γραμμή (από πάνω προς τα κάτω) για να συνενωθούν."
#: func_concat.xhp
msgctxt ""
@@ -51607,7 +51607,7 @@ msgctxt ""
"par_id911556226813411\n"
"help.text"
msgid "CONCAT( string1[, string2][, …] )"
-msgstr ""
+msgstr "CONCAT( συμβολοσειρά1[, συμβολοσειρά2][, …] )"
#: func_concat.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/schart/00.po b/source/el/helpcontent2/source/text/schart/00.po
index e28bd9b4608..9aa489899a4 100644
--- a/source/el/helpcontent2/source/text/schart/00.po
+++ b/source/el/helpcontent2/source/text/schart/00.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-02-04 15:45+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-28 09:46+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1549295148.000000\n"
+"X-POOTLE-MTIME: 1559036805.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Στον διάλογο τύπου διαγράμματος μιας γραμμής διαγράμματος ή διαγράμματος ΧΥ εμφανίζει γραμμές, επιλογή εξομάλυνσης στον πτυσσόμενο τύπο γραμμών, έπειτα πατήστε το κουμπί ιδιοτήτων.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr "<variable id=\"smlp\">Στο διάλογο τύπου διαγράμματος ενός γραμμικού διαγράμματος ή ενός διαγράμματος ΧΥ που εμφανίζει γραμμές, επιλέξτε εξομάλυνση στον πτυσσόμενο τύπο γραμμών, έπειτα πατήστε στο πλήκτρο ιδιοτήτων.</variable>"
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">Στον διάλογο τύπου διαγράμματος ενός διαγράμματος γραμμής ή ΧΥ που εμφανίζει γραμμές, επιλέξτε σταδιακά στον πτυσσόμενο τύπο γραμμών, έπειτα πατήστε το κουμπί ιδιότητες.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr "<variable id=\"stlp\">Στο διάλογο τύπου διαγράμματος ενός γραμμικού διαγράμματος ή ενός διαγράμματος ΧΥ που εμφανίζει γραμμές, επιλέξτε σταδιακά στον πτυσσόμενο τύπο γραμμών, έπειτα πατήστε το πλήκτρο ιδιοτήτων.</variable>"
diff --git a/source/el/helpcontent2/source/text/sdraw.po b/source/el/helpcontent2/source/text/sdraw.po
index d100c0555a8..5fe2fdfa767 100644
--- a/source/el/helpcontent2/source/text/sdraw.po
+++ b/source/el/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-09 04:02+0000\n"
+"PO-Revision-Date: 2019-05-16 12:09+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557374521.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558008542.000000\n"
#: main0000.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Εισαγωγή"
#: main_insert.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id3148797\n"
"help.text"
msgid "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insert</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_insert.xhp\" name=\"Εισαγωγή\">Εισαγωγή</link>"
#: main_insert.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
-msgstr ""
+msgstr "Αυτό το μενού σας επιτρέπει να εισάγετε στοιχεία όπως γραφικά και οδηγούς, σε έγγραφα Draw."
#: main_insert.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Στρώση\">Στρώση</link>"
#: main_insert.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"hd_id3147397\n"
"help.text"
msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Εισαγωγή σημείου/γραμμής συγκράτησης\">Εισαγωγή σημείου/γραμμής συγκράτησης</link>"
#: main_insert.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"hd_id0915200910361385\n"
"help.text"
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Σχόλιο\">Σχόλιο</link>"
#: main_insert.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Ειδικός χαρακτήρας\">Ειδικός χαρακτήρας</link>"
#: main_insert.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id3150749\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Yπερσύνδεσμος\">Yπερσύνδεσμος</link>"
#: main_insert.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"hd_id3156385\n"
"help.text"
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Πίνακας\">Πίνακας</link>"
#: main_insert.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"hd_id3147003\n"
"help.text"
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Διάγραμμα\">Διάγραμμα</link>"
#: main_insert.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id0302200904020595\n"
"help.text"
msgid "Inserts a chart."
-msgstr ""
+msgstr "Εισάγει ένα διάγραμμα."
#: main_insert.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Αιωρούμενο πλαίσιο\">Αιωρούμενο πλαίσιο</link>"
#: main_insert.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"Αρχείο\">Αρχείο</link>"
#: main_page.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Σελίδα"
#: main_page.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"hd_id41556822227733\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Σελίδα</link>"
#: main_page.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id771556822318420\n"
"help.text"
msgid "This menu provides page management and navigation commands."
-msgstr ""
+msgstr "Αυτό το μενού παρέχει εντολές διαχείρισης σελίδων και πλοήγησης."
#: main_page.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"hd_id131556822326832\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"Νέα σελίδα\">Νέα σελίδα</link>"
#: main_page.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"hd_id3155091\n"
"help.text"
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Ιδιότητες\">Ιδιότητες</link>"
#: main_tools.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/sdraw/00.po b/source/el/helpcontent2/source/text/sdraw/00.po
index 64139d4913e..c3a1bf526bf 100644
--- a/source/el/helpcontent2/source/text/sdraw/00.po
+++ b/source/el/helpcontent2/source/text/sdraw/00.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 20:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-16 12:18+0000\n"
+"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494360342.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558009098.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Menu"
-msgstr ""
+msgstr "Μενού σελίδας"
#: page_menu.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Επιλέξτε <emph>Σελίδα - Ιδιότητες</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Επιλέξτε <emph>Σελίδα - Ιδιότητες</emph> και έπειτα πατήστε στην καρτέλα <emph>Σελίδα</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Επιλέξτε <emph>Σελίδα - Ιδιότητες</emph> και έπειτα πατήστε στην καρτέλα <emph>Παρασκήνιο</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Page - Master Page</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Επιλέξτε <emph>Σελίδα - Κύρια σελίδα</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <emph>Page - New Page</emph>"
-msgstr ""
+msgstr "Επιλέξτε <emph>Σελίδα - Νέα σελίδα</emph>"
#: page_menu.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id1001556823044677\n"
"help.text"
msgid "On the <emph>Insert</emph> bar, click"
-msgstr ""
+msgstr "Στη γραμμή <emph>Εισαγωγή</emph>, πατήστε"
#: page_menu.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id351556823072396\n"
"help.text"
msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Εικονίδιο</alt></image>"
#: page_menu.xhp
msgctxt ""
@@ -102,4 +102,4 @@ msgctxt ""
"par_id831556823072396\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Νέα σελίδα"
diff --git a/source/el/helpcontent2/source/text/sdraw/01.po b/source/el/helpcontent2/source/text/sdraw/01.po
index b4d3de211c4..59dd06d8078 100644
--- a/source/el/helpcontent2/source/text/sdraw/01.po
+++ b/source/el/helpcontent2/source/text/sdraw/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 20:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-16 12:20+0000\n"
+"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494360342.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558009218.000000\n"
#: new_page.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Νέα σελίδα"
#: new_page.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3150202\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"Νέα σελίδα\">Νέα σελίδα</link>"
#: new_page.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3152988\n"
"help.text"
msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
-msgstr ""
+msgstr "<variable id=\"seitetext\">Εισάγει μια κενή σελίδα μετά την επιλεγμένη σελίδα.</variable>"
#: page_properties.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Σελίδα"
#: page_properties.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"hd_id231556821873595\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Σελίδα"
#: page_properties.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id571556821811542\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Καθορίζει τον προσανατολισμό, τα περιθώρια, το παρασκήνιο και άλλες επιλογές διάταξης της σελίδας.</ahelp></variable>"
#: page_properties.xhp
msgctxt ""
@@ -70,4 +70,4 @@ msgctxt ""
"par_id691556822054550\n"
"help.text"
msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Για να αλλάξετε το παρασκήνιο σε όλες τις σελίδες του ενεργού αρχείου, επιλέξτε ένα παρασκήνιο, πατήστε <emph>Εντάξει</emph> και ύστερα στο <emph>Ναι</emph> στον διάλογο <emph>Ρυθμίσεις σελίδας</emph>."
diff --git a/source/el/helpcontent2/source/text/shared/00.po b/source/el/helpcontent2/source/text/shared/00.po
index c892ff2c471..1240c44cbbd 100644
--- a/source/el/helpcontent2/source/text/shared/00.po
+++ b/source/el/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-10 14:01+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\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-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1557496868.000000\n"
@@ -7564,14 +7564,6 @@ msgstr "<variable id=\"advanced\">Επιλέξτε <switchinline select=\"sys\">
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Επιλέξτε <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Προτιμήσεις</emph></caseinline><defaultinline><emph>Εργαλεία - Επιλογές</emph></defaultinline></switchinline><emph> - $[officename] - Εξατομίκευση</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/el/helpcontent2/source/text/shared/01.po b/source/el/helpcontent2/source/text/shared/01.po
index 1802ac31779..1ec10443ca4 100644
--- a/source/el/helpcontent2/source/text/shared/01.po
+++ b/source/el/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-10 14:18+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\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-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1557497904.000000\n"
@@ -6252,6 +6252,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/el/helpcontent2/source/text/shared/02.po b/source/el/helpcontent2/source/text/shared/02.po
index 5cefd15af86..fe6ff6fa6b0 100644
--- a/source/el/helpcontent2/source/text/shared/02.po
+++ b/source/el/helpcontent2/source/text/shared/02.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-30 20:34+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-28 09:42+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1548880473.000000\n"
+"X-POOTLE-MTIME: 1559036528.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -3838,7 +3838,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Καθορίζει εάν η επιλογή κειμένου σε ένα στοιχείο ελέγχου παραμένει επιλεγμένη όταν η εστίαση δεν βρίσκεται πλέον στο στοιχείο ελέγχου.</ahelp> Εάν ρυθμίσετε την <emph>Απόκρυψη επιλογής</emph> σε \"Όχι\", το επιλεγμένο κείμενο παραμένει επιλεγμένο όταν η εστίαση δεν βρίσκεται πλέον στο στοιχείο ελέγχου που εμπεριέχει το κείμενο."
#: 01170101.xhp
diff --git a/source/el/helpcontent2/source/text/shared/guide.po b/source/el/helpcontent2/source/text/shared/guide.po
index d804d101199..72d598d91ce 100644
--- a/source/el/helpcontent2/source/text/shared/guide.po
+++ b/source/el/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 17:00+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-20 06:46+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1557680458.000000\n"
+"X-POOTLE-MTIME: 1558334792.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3071,7 +3071,7 @@ msgctxt ""
"par_id00tablehead\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\"><variable visibility=\"hidden\" id=\"filtername\">Filter name</variable><variable visibility=\"hidden\" id=\"mediatype\">Media type</variable><variable visibility=\"hidden\" id=\"fileextensions\">File name extensions</variable></ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\"><variable visibility=\"hidden\" id=\"όνομααρχείου\">Όνομα αρχείου</variable><variable visibility=\"hidden\" id=\"τύποςμέσου\">Τύπος μέσου</variable><variable visibility=\"hidden\" id=\"επεκτάσειςαρχείου\">Όνομα επεκτάσεων αρχείου</variable></ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\"><variable visibility=\"hidden\" id=\"filtername\">Όνομα αρχείου</variable><variable visibility=\"hidden\" id=\"mediatype\">Τύπος μέσου</variable><variable visibility=\"hidden\" id=\"fileextensions\">Όνομα επεκτάσεων αρχείου</variable></ahelp>"
#: convertfilters.xhp
msgctxt ""
@@ -3095,15 +3095,7 @@ msgctxt ""
"par_writer0\n"
"help.text"
msgid "AbiWord Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
+msgstr "Έγγραφο AbiWord"
#: convertfilters.xhp
msgctxt ""
@@ -3111,15 +3103,7 @@ msgctxt ""
"par_writer3\n"
"help.text"
msgid "Apple Pages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
+msgstr "Σελίδες Apple"
#: convertfilters.xhp
msgctxt ""
@@ -3127,15 +3111,7 @@ msgctxt ""
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
+msgstr "BroadBand eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3143,15 +3119,7 @@ msgctxt ""
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/Έγγραφο AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -3159,15 +3127,7 @@ msgctxt ""
"par_writer12\n"
"help.text"
msgid "EPUB Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
+msgstr "Έγγραφο EPUB"
#: convertfilters.xhp
msgctxt ""
@@ -3175,15 +3135,7 @@ msgctxt ""
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
+msgstr "FictionBook 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -3191,15 +3143,7 @@ msgctxt ""
"par_writer18\n"
"help.text"
msgid "HTML Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
+msgstr "Έγγραφο HTML"
#: convertfilters.xhp
msgctxt ""
@@ -3207,15 +3151,7 @@ msgctxt ""
"par_writer21\n"
"help.text"
msgid "HTML Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
+msgstr "Έγγραφο HTML"
#: convertfilters.xhp
msgctxt ""
@@ -3223,15 +3159,7 @@ msgctxt ""
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
+msgstr "Hangul WP 97"
#: convertfilters.xhp
msgctxt ""
@@ -3239,7 +3167,7 @@ msgctxt ""
"par_writer27\n"
"help.text"
msgid "Help content"
-msgstr ""
+msgstr "Περιεχόμενο βοήθειας"
#: convertfilters.xhp
msgctxt ""
@@ -3247,7 +3175,7 @@ msgctxt ""
"par_writer28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -3255,7 +3183,7 @@ msgctxt ""
"par_writer30\n"
"help.text"
msgid "Legacy Mac Text Document"
-msgstr ""
+msgstr "Παλιό έγγραφο κειμένου Mac"
#: convertfilters.xhp
msgctxt ""
@@ -3263,7 +3191,7 @@ msgctxt ""
"par_writer31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -3271,7 +3199,7 @@ msgctxt ""
"par_writer33\n"
"help.text"
msgid "Legacy StarOffice Text Document"
-msgstr ""
+msgstr "Παλιό έγγραφο κειμένου StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -3279,7 +3207,7 @@ msgctxt ""
"par_writer34\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -3287,15 +3215,7 @@ msgctxt ""
"par_writer36\n"
"help.text"
msgid "LotusWordPro Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
+msgstr "Έγγραφο LotusWordPro"
#: convertfilters.xhp
msgctxt ""
@@ -3303,15 +3223,7 @@ msgctxt ""
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Πρότυπο MS Word 95"
#: convertfilters.xhp
msgctxt ""
@@ -3319,15 +3231,7 @@ msgctxt ""
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
+msgstr "Έγγραφο MacWrite"
#: convertfilters.xhp
msgctxt ""
@@ -3335,7 +3239,7 @@ msgctxt ""
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
-msgstr ""
+msgstr "Mariner Write Mac Classic v1.6 - v3.5"
#: convertfilters.xhp
msgctxt ""
@@ -3343,15 +3247,7 @@ msgctxt ""
"par_writer48\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -3359,15 +3255,7 @@ msgctxt ""
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -3375,15 +3263,7 @@ msgctxt ""
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -3391,15 +3271,7 @@ msgctxt ""
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft WinWord 1/2/5"
#: convertfilters.xhp
msgctxt ""
@@ -3407,15 +3279,7 @@ msgctxt ""
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3423,15 +3287,7 @@ msgctxt ""
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 95"
#: convertfilters.xhp
msgctxt ""
@@ -3439,7 +3295,7 @@ msgctxt ""
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
-msgstr ""
+msgstr "Microsoft Word για DOS"
#: convertfilters.xhp
msgctxt ""
@@ -3447,7 +3303,7 @@ msgctxt ""
"par_writer67\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -3455,15 +3311,7 @@ msgctxt ""
"par_writer69\n"
"help.text"
msgid "Microsoft Word for Mac (v1 - v5)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word for Mac (v1 - v5)"
#: convertfilters.xhp
msgctxt ""
@@ -3471,15 +3319,7 @@ msgctxt ""
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Έγγραφο Microsoft Works"
#: convertfilters.xhp
msgctxt ""
@@ -3487,15 +3327,7 @@ msgctxt ""
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works για έγγραφο Mac (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -3503,15 +3335,7 @@ msgctxt ""
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
+msgstr "Microsoft Write"
#: convertfilters.xhp
msgctxt ""
@@ -3519,15 +3343,7 @@ msgctxt ""
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
+msgstr "Έγγραφο κειμένου Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -3535,15 +3351,7 @@ msgctxt ""
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
+msgstr "Πρότυπο κειμένου Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -3551,15 +3359,7 @@ msgctxt ""
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
+msgstr "Κείμενο OpenDocument (απλό XML)"
#: convertfilters.xhp
msgctxt ""
@@ -3567,15 +3367,7 @@ msgctxt ""
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "Έγγραφο κειμένου του OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -3583,15 +3375,7 @@ msgctxt ""
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "Έγγραφο κειμένου του OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -3599,15 +3383,7 @@ msgctxt ""
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "Έγγραφο κειμένου του OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -3615,15 +3391,7 @@ msgctxt ""
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Φορητή μορφή εγγράφου"
#: convertfilters.xhp
msgctxt ""
@@ -3631,15 +3399,7 @@ msgctxt ""
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Φορητή μορφή εγγράφου"
#: convertfilters.xhp
msgctxt ""
@@ -3647,15 +3407,7 @@ msgctxt ""
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Φορητή μορφή εγγράφου"
#: convertfilters.xhp
msgctxt ""
@@ -3663,15 +3415,7 @@ msgctxt ""
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
+msgstr "Έγγραφο κειμένου Palm"
#: convertfilters.xhp
msgctxt ""
@@ -3679,15 +3423,7 @@ msgctxt ""
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
+msgstr "PalmDoc eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3695,15 +3431,7 @@ msgctxt ""
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
+msgstr "Plucker eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3711,15 +3439,7 @@ msgctxt ""
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Μορφή εμπλουτισμένου κειμένου"
#: convertfilters.xhp
msgctxt ""
@@ -3727,15 +3447,7 @@ msgctxt ""
"par_writer120\n"
"help.text"
msgid "T602 Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
+msgstr "Έγγραφο T602"
#: convertfilters.xhp
msgctxt ""
@@ -3743,7 +3455,7 @@ msgctxt ""
"par_writer123\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Κείμενο"
#: convertfilters.xhp
msgctxt ""
@@ -3751,7 +3463,7 @@ msgctxt ""
"par_writer124\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "κείμενο/απλό"
#: convertfilters.xhp
msgctxt ""
@@ -3759,7 +3471,7 @@ msgctxt ""
"par_writer126\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Κείμενο"
#: convertfilters.xhp
msgctxt ""
@@ -3767,7 +3479,7 @@ msgctxt ""
"par_writer127\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "κείμενο/απλό"
#: convertfilters.xhp
msgctxt ""
@@ -3775,7 +3487,7 @@ msgctxt ""
"par_writer129\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Κείμενο"
#: convertfilters.xhp
msgctxt ""
@@ -3783,7 +3495,7 @@ msgctxt ""
"par_writer130\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "κείμενο/απλό"
#: convertfilters.xhp
msgctxt ""
@@ -3791,15 +3503,7 @@ msgctxt ""
"par_writer132\n"
"help.text"
msgid "Word 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -3807,15 +3511,7 @@ msgctxt ""
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Πρότυπο Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -3823,15 +3519,7 @@ msgctxt ""
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
@@ -3839,15 +3527,7 @@ msgctxt ""
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Πρότυπο Word 97–2000"
#: convertfilters.xhp
msgctxt ""
@@ -3855,15 +3535,7 @@ msgctxt ""
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -3871,15 +3543,7 @@ msgctxt ""
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
+msgstr "Έγγραφο WordPerfect"
#: convertfilters.xhp
msgctxt ""
@@ -3887,7 +3551,7 @@ msgctxt ""
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
-msgstr ""
+msgstr "Έγγραφο WriteNow"
#: convertfilters.xhp
msgctxt ""
@@ -3895,15 +3559,7 @@ msgctxt ""
"par_writer153\n"
"help.text"
msgid "Writer 6.0 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
+msgstr "Κύριο έγγραφο Writer 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3911,15 +3567,7 @@ msgctxt ""
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
+msgstr "Πρότυπο Writer 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3927,15 +3575,7 @@ msgctxt ""
"par_writer159\n"
"help.text"
msgid "Writer 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
+msgstr "Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3943,15 +3583,7 @@ msgctxt ""
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
+msgstr "Κύριο έγγραφο Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3959,15 +3591,7 @@ msgctxt ""
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
+msgstr "Πρότυπο κυρίου εγγράφου Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3975,15 +3599,7 @@ msgctxt ""
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
+msgstr "Πρότυπο Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3991,7 +3607,7 @@ msgctxt ""
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
-msgstr ""
+msgstr "Writer Layout Dump"
#: convertfilters.xhp
msgctxt ""
@@ -3999,7 +3615,7 @@ msgctxt ""
"par_writer172\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4007,15 +3623,7 @@ msgctxt ""
"par_writer174\n"
"help.text"
msgid "Writer/Web 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
+msgstr "Πρότυπο Writer/Web 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4023,15 +3631,7 @@ msgctxt ""
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
+msgstr "Πρότυπο Writer/Web 8"
#: convertfilters.xhp
msgctxt ""
@@ -4055,15 +3655,7 @@ msgctxt ""
"par_calc0\n"
"help.text"
msgid "Apple Numbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
+msgstr "Αριθμοί Apple"
#: convertfilters.xhp
msgctxt ""
@@ -4071,15 +3663,7 @@ msgctxt ""
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
+msgstr "Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4087,15 +3671,7 @@ msgctxt ""
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
+msgstr "Πρότυπο Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4103,15 +3679,7 @@ msgctxt ""
"par_calc9\n"
"help.text"
msgid "Calc 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
+msgstr "Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -4119,15 +3687,7 @@ msgctxt ""
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
+msgstr "Πρότυπο Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -4135,15 +3695,7 @@ msgctxt ""
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Έγγραφο ClarisResolve"
#: convertfilters.xhp
msgctxt ""
@@ -4151,15 +3703,7 @@ msgctxt ""
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/Έγγραφο AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -4167,7 +3711,7 @@ msgctxt ""
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
-msgstr ""
+msgstr "Μορφή ανταλλαγής δεδομένων"
#: convertfilters.xhp
msgctxt ""
@@ -4175,7 +3719,7 @@ msgctxt ""
"par_calc22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4183,15 +3727,7 @@ msgctxt ""
"par_calc24\n"
"help.text"
msgid "Excel 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Excel 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4199,15 +3735,7 @@ msgctxt ""
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Πρότυπο Excel 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4215,15 +3743,7 @@ msgctxt ""
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Πρότυπο Excel 97–2000"
#: convertfilters.xhp
msgctxt ""
@@ -4231,15 +3751,7 @@ msgctxt ""
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Excel 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -4247,15 +3759,7 @@ msgctxt ""
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
+msgstr "Υπολογιστικό φύλλο Gnumeric"
#: convertfilters.xhp
msgctxt ""
@@ -4263,7 +3767,7 @@ msgctxt ""
"par_calc39\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "Έγγραφο HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4271,7 +3775,7 @@ msgctxt ""
"par_calc40\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "κείμενο/html"
#: convertfilters.xhp
msgctxt ""
@@ -4279,7 +3783,7 @@ msgctxt ""
"par_calc42\n"
"help.text"
msgid "HTML Table"
-msgstr ""
+msgstr "Πίνακας HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4287,7 +3791,7 @@ msgctxt ""
"par_calc43\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "κείμενο/html"
#: convertfilters.xhp
msgctxt ""
@@ -4295,7 +3799,7 @@ msgctxt ""
"par_calc45\n"
"help.text"
msgid "Legacy Mac Database"
-msgstr ""
+msgstr "Παλιά βάση δεδομένων Mac"
#: convertfilters.xhp
msgctxt ""
@@ -4303,7 +3807,7 @@ msgctxt ""
"par_calc46\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4311,7 +3815,7 @@ msgctxt ""
"par_calc48\n"
"help.text"
msgid "Legacy Mac Spreadsheet"
-msgstr ""
+msgstr "Παλιό υπολογιστικό φύλλο Mac"
#: convertfilters.xhp
msgctxt ""
@@ -4319,7 +3823,7 @@ msgctxt ""
"par_calc49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4327,7 +3831,7 @@ msgctxt ""
"par_calc51\n"
"help.text"
msgid "Legacy StarOffice Spreadsheet"
-msgstr ""
+msgstr "Παλιό υπολογιστικό φύλλο StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -4335,7 +3839,7 @@ msgctxt ""
"par_calc52\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4343,15 +3847,7 @@ msgctxt ""
"par_calc54\n"
"help.text"
msgid "Lotus"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
+msgstr "Lotus"
#: convertfilters.xhp
msgctxt ""
@@ -4359,7 +3855,7 @@ msgctxt ""
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
-msgstr ""
+msgstr "Lotus Wk1-Wk3"
#: convertfilters.xhp
msgctxt ""
@@ -4367,7 +3863,7 @@ msgctxt ""
"par_calc58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4375,15 +3871,7 @@ msgctxt ""
"par_calc60\n"
"help.text"
msgid "MS Excel 4.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Πρότυπο MS Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -4391,15 +3879,7 @@ msgctxt ""
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Πρότυπο MS Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -4407,15 +3887,7 @@ msgctxt ""
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Πρότυπο MS Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -4423,7 +3895,7 @@ msgctxt ""
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr ""
+msgstr "Microsoft Excel 2007 Δυαδικό"
#: convertfilters.xhp
msgctxt ""
@@ -4431,7 +3903,7 @@ msgctxt ""
"par_calc70\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4439,15 +3911,7 @@ msgctxt ""
"par_calc72\n"
"help.text"
msgid "Microsoft Excel 2007-2016 VBA XML"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
+msgstr "Microsoft Excel 2007-2016 VBA XML"
#: convertfilters.xhp
msgctxt ""
@@ -4455,15 +3919,7 @@ msgctxt ""
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -4471,15 +3927,7 @@ msgctxt ""
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -4487,15 +3935,7 @@ msgctxt ""
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -4503,7 +3943,7 @@ msgctxt ""
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: convertfilters.xhp
msgctxt ""
@@ -4511,7 +3951,7 @@ msgctxt ""
"par_calc85\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4519,7 +3959,7 @@ msgctxt ""
"par_calc87\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Έγγραφο Microsoft Works"
#: convertfilters.xhp
msgctxt ""
@@ -4527,7 +3967,7 @@ msgctxt ""
"par_calc88\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4535,15 +3975,7 @@ msgctxt ""
"par_calc90\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works για έγγραφο Mac (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -4551,15 +3983,7 @@ msgctxt ""
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Υπολογιστικό φύλλο Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4567,15 +3991,7 @@ msgctxt ""
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Πρότυπο υπολογιστικού φύλλου Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4583,15 +3999,7 @@ msgctxt ""
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
+msgstr "Υπολογιστικό φύλλο OpenDocument (απλό XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4599,15 +4007,7 @@ msgctxt ""
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Φορητή μορφή εγγράφου"
#: convertfilters.xhp
msgctxt ""
@@ -4615,7 +4015,7 @@ msgctxt ""
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
-msgstr ""
+msgstr "Quattro Pro 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4623,7 +4023,7 @@ msgctxt ""
"par_calc106\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4631,7 +4031,7 @@ msgctxt ""
"par_calc108\n"
"help.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "Έγγραφο QuattroPro"
#: convertfilters.xhp
msgctxt ""
@@ -4639,7 +4039,7 @@ msgctxt ""
"par_calc109\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4647,15 +4047,7 @@ msgctxt ""
"par_calc111\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Μορφή εμπλουτισμένου κειμένου"
#: convertfilters.xhp
msgctxt ""
@@ -4663,7 +4055,7 @@ msgctxt ""
"par_calc114\n"
"help.text"
msgid "SYLK"
-msgstr ""
+msgstr "SYLK"
#: convertfilters.xhp
msgctxt ""
@@ -4671,7 +4063,7 @@ msgctxt ""
"par_calc115\n"
"help.text"
msgid "text/spreadsheet"
-msgstr ""
+msgstr "κείμενο/υπολογιστικό φύλλο"
#: convertfilters.xhp
msgctxt ""
@@ -4679,7 +4071,7 @@ msgctxt ""
"par_calc117\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Κείμενο"
#: convertfilters.xhp
msgctxt ""
@@ -4687,7 +4079,7 @@ msgctxt ""
"par_calc118\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "κείμενο/απλό"
#: convertfilters.xhp
msgctxt ""
@@ -4695,7 +4087,7 @@ msgctxt ""
"par_calc120\n"
"help.text"
msgid "dBASE"
-msgstr ""
+msgstr "dBASE"
#: convertfilters.xhp
msgctxt ""
@@ -4703,7 +4095,7 @@ msgctxt ""
"par_calc121\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4727,15 +4119,7 @@ msgctxt ""
"par_impress0\n"
"help.text"
msgid "Apple Keynote"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
+msgstr "Apple Keynote"
#: convertfilters.xhp
msgctxt ""
@@ -4743,15 +4127,7 @@ msgctxt ""
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Έγγραφο ClarisWorks/Παρουσίαση AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -4759,15 +4135,7 @@ msgctxt ""
"par_impress6\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4775,15 +4143,7 @@ msgctxt ""
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
+msgstr "Πρότυπο Impress 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4791,15 +4151,7 @@ msgctxt ""
"par_impress12\n"
"help.text"
msgid "Impress 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
+msgstr "Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4807,15 +4159,7 @@ msgctxt ""
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
+msgstr "Πρότυπο Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4823,7 +4167,7 @@ msgctxt ""
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
-msgstr ""
+msgstr "Παλιά παρουσίαση Mac"
#: convertfilters.xhp
msgctxt ""
@@ -4831,7 +4175,7 @@ msgctxt ""
"par_impress19\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4839,7 +4183,7 @@ msgctxt ""
"par_impress21\n"
"help.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Παλιά παρουσίαση του StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -4847,7 +4191,7 @@ msgctxt ""
"par_impress22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4855,7 +4199,7 @@ msgctxt ""
"par_impress24\n"
"help.text"
msgid "Microsoft PowerPoint 1-4"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4"
#: convertfilters.xhp
msgctxt ""
@@ -4863,7 +4207,7 @@ msgctxt ""
"par_impress25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -4871,15 +4215,7 @@ msgctxt ""
"par_impress27\n"
"help.text"
msgid "Office Open XML Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "Παρουσίαση Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4887,15 +4223,7 @@ msgctxt ""
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "Αυτόματη αναπαραγωγή παρουσίασης Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4903,15 +4231,7 @@ msgctxt ""
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "Πρότυπο παρουσίασης Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4919,15 +4239,7 @@ msgctxt ""
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
+msgstr "Παρουσίαση OpenDocument (απλό XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4935,15 +4247,7 @@ msgctxt ""
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "Σχεδίαση OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -4951,15 +4255,7 @@ msgctxt ""
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
+msgstr "Παρουσίαση του OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -4967,15 +4263,7 @@ msgctxt ""
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Φορητή μορφή εγγράφου"
#: convertfilters.xhp
msgctxt ""
@@ -4983,15 +4271,7 @@ msgctxt ""
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4999,15 +4279,7 @@ msgctxt ""
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -5015,15 +4287,7 @@ msgctxt ""
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "Πρότυπο PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -5031,15 +4295,7 @@ msgctxt ""
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
+msgstr "PowerPoint 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
@@ -5047,15 +4303,7 @@ msgctxt ""
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "Πρότυπο PowerPoint 97–2000"
#: convertfilters.xhp
msgctxt ""
@@ -5063,15 +4311,7 @@ msgctxt ""
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -5079,15 +4319,7 @@ msgctxt ""
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -5111,15 +4343,7 @@ msgctxt ""
"par_draw0\n"
"help.text"
msgid "Adobe PageMaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
+msgstr "Adobe PageMaker"
#: convertfilters.xhp
msgctxt ""
@@ -5127,15 +4351,7 @@ msgctxt ""
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
+msgstr "Adobe/Macromedia Freehand"
#: convertfilters.xhp
msgctxt ""
@@ -5143,15 +4359,7 @@ msgctxt ""
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/Έγγραφο AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -5159,15 +4367,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "Corel Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
+msgstr "Corel Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5175,15 +4375,7 @@ msgctxt ""
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
+msgstr "Ανταλλαγή παρουσίασης Corel"
#: convertfilters.xhp
msgctxt ""
@@ -5191,15 +4383,7 @@ msgctxt ""
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
+msgstr "Πρότυπο Draw 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -5207,15 +4391,7 @@ msgctxt ""
"par_draw18\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -5223,15 +4399,7 @@ msgctxt ""
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
+msgstr "Πρότυπο Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -5239,7 +4407,7 @@ msgctxt ""
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
-msgstr ""
+msgstr "Παλιά ψηφιογραφία Mac"
#: convertfilters.xhp
msgctxt ""
@@ -5247,7 +4415,7 @@ msgctxt ""
"par_draw25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -5255,7 +4423,7 @@ msgctxt ""
"par_draw27\n"
"help.text"
msgid "Legacy Mac Drawing"
-msgstr ""
+msgstr "Παλιά σχεδίαση Mac"
#: convertfilters.xhp
msgctxt ""
@@ -5263,7 +4431,7 @@ msgctxt ""
"par_draw28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -5271,7 +4439,7 @@ msgctxt ""
"par_draw30\n"
"help.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Παλαιά σχεδίαση StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -5279,7 +4447,7 @@ msgctxt ""
"par_draw31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -5287,15 +4455,7 @@ msgctxt ""
"par_draw33\n"
"help.text"
msgid "Microsoft Publisher 2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
+msgstr "Microsoft Publisher 2003"
#: convertfilters.xhp
msgctxt ""
@@ -5303,15 +4463,7 @@ msgctxt ""
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
+msgstr "Microsoft Visio"
#: convertfilters.xhp
msgctxt ""
@@ -5319,15 +4471,7 @@ msgctxt ""
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
+msgstr "Σχέδιο OpenDocument (απλό XML)"
#: convertfilters.xhp
msgctxt ""
@@ -5335,15 +4479,7 @@ msgctxt ""
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "Σχεδίαση OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -5351,15 +4487,7 @@ msgctxt ""
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Φορητή μορφή εγγράφου"
#: convertfilters.xhp
msgctxt ""
@@ -5367,7 +4495,7 @@ msgctxt ""
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
-msgstr ""
+msgstr "QuarkXPress"
#: convertfilters.xhp
msgctxt ""
@@ -5375,7 +4503,7 @@ msgctxt ""
"par_draw49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -5383,15 +4511,7 @@ msgctxt ""
"par_draw51\n"
"help.text"
msgid "WordPerfect Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
+msgstr "Γραφικά WordPerfect"
#: convertfilters.xhp
msgctxt ""
@@ -5399,7 +4519,7 @@ msgctxt ""
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Σχεδίαση"
#: convertfilters.xhp
msgctxt ""
@@ -5407,7 +4527,7 @@ msgctxt ""
"par_draw55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -5431,15 +4551,7 @@ msgctxt ""
"par_math0\n"
"help.text"
msgid "Math 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
+msgstr "Math 8"
#: convertfilters.xhp
msgctxt ""
@@ -5447,15 +4559,7 @@ msgctxt ""
"par_math3\n"
"help.text"
msgid "MathML 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
+msgstr "MathML 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -5463,7 +4567,7 @@ msgctxt ""
"par_math6\n"
"help.text"
msgid "MathType3.x"
-msgstr ""
+msgstr "MathType3.x"
#: convertfilters.xhp
msgctxt ""
@@ -5471,7 +4575,7 @@ msgctxt ""
"par_math7\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -5479,15 +4583,7 @@ msgctxt ""
"par_math9\n"
"help.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
+msgstr "Τύπος του OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -5495,15 +4591,7 @@ msgctxt ""
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Φορητή μορφή εγγράφου"
#: convertfilters.xhp
msgctxt ""
@@ -5511,7 +4599,7 @@ msgctxt ""
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>μετατροπή εγγράφου γραμμής εντολών; φίλτρα για BASE</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -5519,7 +4607,7 @@ msgctxt ""
"hd_000base\n"
"help.text"
msgid "Filters for BASE"
-msgstr ""
+msgstr "Φίλτρα για BASE"
#: convertfilters.xhp
msgctxt ""
@@ -5527,15 +4615,7 @@ msgctxt ""
"par_base0\n"
"help.text"
msgid "OpenDocument Database"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
+msgstr "Βάση δεδομένων του OpenDocument"
#: convertfilters.xhp
msgctxt ""
@@ -5543,7 +4623,7 @@ msgctxt ""
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>μετατροπή εγγράφου γραμμής εντολών; φίλτρα για GRAPHICFILTER</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -5551,7 +4631,7 @@ msgctxt ""
"hd_000graphicfilter\n"
"help.text"
msgid "Filters for GRAPHICFILTER"
-msgstr ""
+msgstr "Φίλτρα για GRAPHICFILTER"
#: convertfilters.xhp
msgctxt ""
@@ -5559,15 +4639,7 @@ msgctxt ""
"par_graphicfilter0\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP - Ψηφιογραφία Windows"
#: convertfilters.xhp
msgctxt ""
@@ -5575,15 +4647,7 @@ msgctxt ""
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP - Ψηφιογραφία Windows"
#: convertfilters.xhp
msgctxt ""
@@ -5591,15 +4655,7 @@ msgctxt ""
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
+msgstr "CGM - Μετα-αρχείο γραφικών υπολογιστή"
#: convertfilters.xhp
msgctxt ""
@@ -5607,15 +4663,7 @@ msgctxt ""
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
+msgstr "DXF - AutoCAD Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -5623,15 +4671,7 @@ msgctxt ""
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF - Βελτιωμένο μετα-αρχείο"
#: convertfilters.xhp
msgctxt ""
@@ -5639,15 +4679,7 @@ msgctxt ""
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF - Βελτιωμένο μετα-αρχείο"
#: convertfilters.xhp
msgctxt ""
@@ -5655,15 +4687,7 @@ msgctxt ""
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS - Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5671,15 +4695,7 @@ msgctxt ""
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS - Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5687,15 +4703,7 @@ msgctxt ""
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Ανταλλαγή γραφικών"
#: convertfilters.xhp
msgctxt ""
@@ -5703,15 +4711,7 @@ msgctxt ""
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Ανταλλαγή γραφικών"
#: convertfilters.xhp
msgctxt ""
@@ -5719,7 +4719,7 @@ msgctxt ""
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5727,7 +4727,7 @@ msgctxt ""
"par_graphicfilter31\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "κείμενο/html"
#: convertfilters.xhp
msgctxt ""
@@ -5735,7 +4735,7 @@ msgctxt ""
"par_graphicfilter33\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5743,7 +4743,7 @@ msgctxt ""
"par_graphicfilter34\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "κείμενο/html"
#: convertfilters.xhp
msgctxt ""
@@ -5751,15 +4751,7 @@ msgctxt ""
"par_graphicfilter36\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5767,15 +4759,7 @@ msgctxt ""
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5783,15 +4767,7 @@ msgctxt ""
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5799,15 +4775,7 @@ msgctxt ""
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET - Μετα-αρχείο OS/2"
#: convertfilters.xhp
msgctxt ""
@@ -5815,15 +4783,7 @@ msgctxt ""
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET - Μετα-αρχείο OS/2"
#: convertfilters.xhp
msgctxt ""
@@ -5831,15 +4791,7 @@ msgctxt ""
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
+msgstr "MOV - Μορφή αρχείου QuickTime"
#: convertfilters.xhp
msgctxt ""
@@ -5847,7 +4799,7 @@ msgctxt ""
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5855,7 +4807,7 @@ msgctxt ""
"par_graphicfilter55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -5863,7 +4815,7 @@ msgctxt ""
"par_graphicfilter57\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5871,7 +4823,7 @@ msgctxt ""
"par_graphicfilter58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Κανένα"
#: convertfilters.xhp
msgctxt ""
@@ -5879,15 +4831,7 @@ msgctxt ""
"par_graphicfilter60\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5895,15 +4839,7 @@ msgctxt ""
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5911,15 +4847,7 @@ msgctxt ""
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base"
#: convertfilters.xhp
msgctxt ""
@@ -5927,15 +4855,7 @@ msgctxt ""
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base16"
#: convertfilters.xhp
msgctxt ""
@@ -5943,15 +4863,7 @@ msgctxt ""
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base4"
#: convertfilters.xhp
msgctxt ""
@@ -5959,15 +4871,7 @@ msgctxt ""
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -5975,15 +4879,7 @@ msgctxt ""
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -5991,15 +4887,7 @@ msgctxt ""
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
+msgstr "PCX - Zsoft Paintbrush"
#: convertfilters.xhp
msgctxt ""
@@ -6007,15 +4895,7 @@ msgctxt ""
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -6023,15 +4903,7 @@ msgctxt ""
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -6039,15 +4911,7 @@ msgctxt ""
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Φορητά γραφικά δικτύου"
#: convertfilters.xhp
msgctxt ""
@@ -6055,15 +4919,7 @@ msgctxt ""
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Φορητά γραφικά δικτύου"
#: convertfilters.xhp
msgctxt ""
@@ -6071,15 +4927,7 @@ msgctxt ""
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Φορητά γραφικά δικτύου"
#: convertfilters.xhp
msgctxt ""
@@ -6087,15 +4935,7 @@ msgctxt ""
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Φορητά γραφικά δικτύου"
#: convertfilters.xhp
msgctxt ""
@@ -6103,15 +4943,7 @@ msgctxt ""
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM - Φορητό Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -6119,15 +4951,7 @@ msgctxt ""
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM - Φορητό Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -6135,15 +4959,7 @@ msgctxt ""
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
+msgstr "PSD - Adobe Photoshop"
#: convertfilters.xhp
msgctxt ""
@@ -6151,15 +4967,7 @@ msgctxt ""
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -6167,15 +4975,7 @@ msgctxt ""
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -6183,15 +4983,7 @@ msgctxt ""
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Κλιμακώσιμα διανυσματικά γραφικά"
#: convertfilters.xhp
msgctxt ""
@@ -6199,15 +4991,7 @@ msgctxt ""
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Κλιμακώσιμα διανυσματικά γραφικά"
#: convertfilters.xhp
msgctxt ""
@@ -6215,15 +4999,7 @@ msgctxt ""
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Κλιμακώσιμα διανυσματικά γραφικά"
#: convertfilters.xhp
msgctxt ""
@@ -6231,15 +5007,7 @@ msgctxt ""
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Κλιμακώσιμα διανυσματικά γραφικά"
#: convertfilters.xhp
msgctxt ""
@@ -6247,15 +5015,7 @@ msgctxt ""
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Κλιμακώσιμα διανυσματικά γραφικά Draw"
#: convertfilters.xhp
msgctxt ""
@@ -6263,15 +5023,7 @@ msgctxt ""
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Κλιμακώσιμα διανυσματικά γραφικά Draw"
#: convertfilters.xhp
msgctxt ""
@@ -6279,15 +5031,7 @@ msgctxt ""
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
+msgstr "SVM - StarView Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -6295,15 +5039,7 @@ msgctxt ""
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
+msgstr "SVM - StarView Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -6311,15 +5047,7 @@ msgctxt ""
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
+msgstr "TGA - Truevision Targa"
#: convertfilters.xhp
msgctxt ""
@@ -6327,15 +5055,7 @@ msgctxt ""
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
+msgstr "TIFF - Μορφή αρχείων εικόνων με ετικέτες"
#: convertfilters.xhp
msgctxt ""
@@ -6343,15 +5063,7 @@ msgctxt ""
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
+msgstr "TIFF - Μορφή αρχείων εικόνων με ετικέτες"
#: convertfilters.xhp
msgctxt ""
@@ -6359,15 +5071,7 @@ msgctxt ""
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
+msgstr "WMF - Μετα-αρχείο Windows"
#: convertfilters.xhp
msgctxt ""
@@ -6375,15 +5079,7 @@ msgctxt ""
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
+msgstr "WMF - Μετα-αρχείο Windows"
#: convertfilters.xhp
msgctxt ""
@@ -6391,15 +5087,7 @@ msgctxt ""
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
+msgstr "XBM - X Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -6407,15 +5095,7 @@ msgctxt ""
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: convertfilters.xhp
msgctxt ""
@@ -6423,15 +5103,7 @@ msgctxt ""
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: copy_drawfunctions.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared/optionen.po b/source/el/helpcontent2/source/text/shared/optionen.po
index 3dc45a8d881..3fb4cdbc3fa 100644
--- a/source/el/helpcontent2/source/text/shared/optionen.po
+++ b/source/el/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-14 06:56+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\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-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1550127385.000000\n"
@@ -14785,182 +14785,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "Για περισσότερες πληροφορίες για το OpenCL, επισκεφτείτε τον <link href=\"https://www.khronos.org/opencl/\">ιστότοπο του OpenCL</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Εξατομίκευση"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>θέματα;επιλογές ρύθμισης</bookmark_value> <bookmark_value>επιλογές ρύθμισης;θέματα</bookmark_value> <bookmark_value>εξατομίκευση;θέματα Mozilla Firefox</bookmark_value> <bookmark_value>πρόσωπα;εξατομίκευση</bookmark_value> <bookmark_value>εξατομίκευση;πρόσωπα</bookmark_value> <bookmark_value>θέματα Mozilla Firefox;εξατομίκευση</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Εξατομίκευση</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Μπορείτε να προσαρμόσετε το %PRODUCTNAME με τα ίδια διαθέσιμα θέματα του Mozilla Firefox. Η γραμμή μενού και οι γραμμές εργαλείων που βρίσκονται πάνω και κάτω στο παράθυρο θα εμφανίζουν το επιλεγμένο θέμα στο παρασκήνιο."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Τα θέματα του Mozilla Firefox είναι διαθέσιμα στον ιστότοπο του Mozilla στην παρακάτω διεύθυνση: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Οποιοδήποτε θέμα συμβατό με το Mozilla Firefox θα δουλέψει με το %PRODUCTNAME. Όμως, δεν θα δώσει καλά οπτικά αποτελέσματα κάθε θέμα.—αν η εικόνα είναι πολύ απασχολημένη, θα μπορούσε να ανακατευτεί με την αναγνωσιμότητα των εικονιδίων και των μενού."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Θέματα Firefox:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Οι ακόλουθες επιλογές είναι διαθέσιμες:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Προεπιλεγμένη εμφάνιση, χωρίς χρήση θεμάτων"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Το παρασκήνιο των γραμμών εργαλείων κληρονομεί τις ρυθμίσεις παρασκηνίου του περιβάλλοντος της επιφάνειας εργασίας.</ahelp> Αυτή είναι η προεπιλεγμένη ρύθμιση για το %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Προεγκατεστημένο θέμα"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Επιλέξτε αυτήν την επιλογή για να χρησιμοποιήσετε ένα από τα προεγκατεστημένα θέματα.</ahelp> Πέρα από τις προεπιλεγμένες επιλογές, ο διαχειριστής του συστήματός σας μπορεί να έχει προσθέσει ένα προσαρμοσμένο θέμα κατά την εγκατάσταση του %PRODUCTNAME. Αυτή η επιλογή θα το εμφανίσει."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Προσωπικό θέμα"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Επιλέξτε αυτήν την επιλογή για να ανοίξετε τον διάλογο “Επιλογής θέματος του Firefox” και επιλέξτε το δικό σας.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Διάλογος επιλογής θέματος του Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Αυτός ο διάλογος σας επιτρέπει να εγκαταστήσετε ένα ειδικό θέμα ή σας δίνει μια βιαστική ματιά σε άλλα συναρπαστικά θέματα από τον ιστότοπο θεμάτων του Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Αναζήτηση"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Δώστε έναν όρο αναζήτησης για αναζήτηση θεμάτων από τα πρόσθετα του Mozilla, ή επικολλήστε τη διεύθυνση ενός θέματος για να ανακτήσετε απευθείας ένα συγκεκριμένο θέμα.</ahelp> Για να πάρετε τη διεύθυνση, χρησιμοποιήστε τον πλοηγητή σας για να περιηγηθείτε στην ιστοσελίδα του θέματος και αντιγράψτε την εμφανιζόμενη URL στη γραμμή διευθύνσεων. Έπειτα, επικολλήστε την στο πλαίσιο αναζήτησης του διαλόγου. Πατήστε <item type=\"menuitem\">Αναζήτηση</item> ή πατήστε <item type=\"keycode\">Εισαγωγή</item> για να το κατεβάσετε και να το εγκαταστήσετε στο %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Αναζήτηση θεμάτων κατά κατηγορία"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Εμφανίζει μια τυχαία επιλογή από εννέα θέματα με βάση τις εμφανιζόμενες κατηγορίες στα πλήκτρα.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Πατήστε σε ένα από τα πέντε πλήκτρα για να εμφανιστεί στην περιοχή εικόνων κάτω από μια τυχαία επιλογή εννέα θεμάτων που αντιστοιχούν στην κατηγορία που υποδεικνύεται από το πλήκτρο."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Για να επιλέξετε ένα από τα εμφανιζόμενα θέματα, πατήστε στην εικόνα του και πατήστε <item type=\"menuitem\">Εντάξει</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/el/helpcontent2/source/text/simpress.po b/source/el/helpcontent2/source/text/simpress.po
index a7abeafbc95..91622d61f64 100644
--- a/source/el/helpcontent2/source/text/simpress.po
+++ b/source/el/helpcontent2/source/text/simpress.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-08 07:06+0000\n"
+"PO-Revision-Date: 2019-05-16 12:00+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557299199.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558008035.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Νέα διαφάνεια\">Νέα διαφάνεια</link>"
#: main_slide.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"hd_id551556824896520\n"
"help.text"
msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Ιδιότητες\">Ιδιότητες</link>"
#: main_tools.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/simpress/00.po b/source/el/helpcontent2/source/text/simpress/00.po
index 988bee757cc..e8460642547 100644
--- a/source/el/helpcontent2/source/text/simpress/00.po
+++ b/source/el/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-22 20:08+0000\n"
+"PO-Revision-Date: 2019-05-16 12:11+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555963703.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558008671.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <emph>Slide - New Slide</emph>"
-msgstr ""
+msgstr "Επιλέξτε <emph>Διαφάνεια - Νέα διαφάνεια</emph>"
#: slide_menu.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3685251\n"
"help.text"
msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Εικονίδιο</alt></image>"
#: slide_menu.xhp
msgctxt ""
@@ -1310,4 +1310,4 @@ msgctxt ""
"par_id7354512\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Νέα διαφάνεια"
diff --git a/source/el/helpcontent2/source/text/simpress/01.po b/source/el/helpcontent2/source/text/simpress/01.po
index a7ea4bb3174..19c832a5077 100644
--- a/source/el/helpcontent2/source/text/simpress/01.po
+++ b/source/el/helpcontent2/source/text/simpress/01.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-08 07:07+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-28 09:41+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1557299266.000000\n"
+"X-POOTLE-MTIME: 1559036480.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -1351,7 +1351,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Διαφάνεια\">Διαφάνεια</link>"
#: 03070000.xhp
msgctxt ""
@@ -8159,7 +8159,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Νέα διαφάνεια"
#: new_slide.xhp
msgctxt ""
@@ -8167,7 +8167,7 @@ msgctxt ""
"bm_id3159155\n"
"help.text"
msgid "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>εισαγωγή; διαφάνειες</bookmark_value><bookmark_value>διαφάνειες; εισαγωγή</bookmark_value>"
#: new_slide.xhp
msgctxt ""
@@ -8175,15 +8175,15 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Νέα διαφάνεια\">Νέα διαφάνεια</link>"
#: new_slide.xhp
msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
-msgstr ""
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
+msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Εισάγει μια διαφάνεια μετά την τρέχουσα επιλεγμένη διαφάνεια.</ahelp></variable>"
#: remoteconnections.xhp
msgctxt ""
@@ -8327,7 +8327,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Διαφάνεια"
#: slide_properties.xhp
msgctxt ""
@@ -8335,7 +8335,7 @@ msgctxt ""
"hd_id3149379\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Διαφάνεια"
#: slide_properties.xhp
msgctxt ""
@@ -8343,7 +8343,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Sets slide orientation, slide margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Καθορίζει τον προσανατολισμό, τα περιθώρια, το παρασκήνιο και άλλες επιλογές διάταξης της διαφάνειας.</ahelp></variable>"
#: slide_properties.xhp
msgctxt ""
@@ -8351,7 +8351,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "To change the background of all of the slides in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Για να αλλάξετε το παρασκήνιο σε όλες τις διαφάνειες του ενεργού αρχείου, επιλέξτε ένα παρασκήνιο, πατήστε <emph>Εντάξει</emph> και ύστερα στο <emph>Ναι</emph> στον διάλογο <emph>Ρυθμίσεις σελίδας</emph>."
#: slidesorter.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/simpress/02.po b/source/el/helpcontent2/source/text/simpress/02.po
index 6e586fb11a3..6f53d8bf2ef 100644
--- a/source/el/helpcontent2/source/text/simpress/02.po
+++ b/source/el/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2017-11-07 15:06+0000\n"
+"PO-Revision-Date: 2019-05-16 12:15+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510067215.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558008947.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"hd_id3149028\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Διαφάνεια\">Διαφάνεια</link>"
#: 10110000.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/smath/01.po b/source/el/helpcontent2/source/text/smath/01.po
index b332b235619..6895b25ce35 100644
--- a/source/el/helpcontent2/source/text/smath/01.po
+++ b/source/el/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-02-06 08:33+0000\n"
+"PO-Revision-Date: 2019-05-28 09:49+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1549442006.000000\n"
+"X-POOTLE-MTIME: 1559036979.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -2638,7 +2638,7 @@ msgctxt ""
"par_idN10507\n"
"help.text"
msgid "<image id=\"img_id3154023\" src=\"media/helpimg/starmath/fu21521.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154023\">Area Hyperbolic Sine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154023\" src=\"media/helpimg/starmath/fu21521.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154023\">Εικονίδιο για το υπερβολικό ημίτονο περιοχής</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_idN1053A\n"
"help.text"
msgid "<image id=\"img_id3149602\" src=\"media/helpimg/starmath/fu21522.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149602\">Area Hyperbolic Cosine Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149602\" src=\"media/helpimg/starmath/fu21522.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3149602\">Εικονίδιο υπερβολικού συνημιτόνου περιοχής</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"par_idN10573\n"
"help.text"
msgid "<image id=\"img_id3155342\" src=\"media/helpimg/starmath/fu21523.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155342\">Area Hyperbolic Tangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155342\" src=\"media/helpimg/starmath/fu21523.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3155342\">Εικονίδιο υπερβολικής εφαπτομένης περιοχής</alt></image>"
#: 03090400.xhp
msgctxt ""
@@ -2710,7 +2710,7 @@ msgctxt ""
"par_idN105AC\n"
"help.text"
msgid "<image id=\"img_id3150842\" src=\"media/helpimg/starmath/fu21524.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150842\">Area Hyperbolic Cotangent Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150842\" src=\"media/helpimg/starmath/fu21524.svg\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3150842\">Εικονίδιο υπερβολικής συνεφαπτομένης περιοχής</alt></image>"
#: 03090400.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter/01.po b/source/el/helpcontent2/source/text/swriter/01.po
index 30d36e811f0..95cc244be64 100644
--- a/source/el/helpcontent2/source/text/swriter/01.po
+++ b/source/el/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-22 20:04+0000\n"
+"PO-Revision-Date: 2019-05-16 12:10+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1555963476.000000\n"
+"X-POOTLE-MTIME: 1558008619.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -15535,7 +15535,7 @@ msgctxt ""
"par_idN10A8E\n"
"help.text"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Διατήρηση μέσα στα όρια του κειμένου"
#: 05060100.xhp
msgctxt ""
@@ -15551,7 +15551,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Keep inside text boundaries</emph> option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)."
-msgstr ""
+msgstr "Από προεπιλογή, η επιλογή <emph>Διατήρηση στα όρια του κειμένου</emph> επιλέγεται όταν ανοίγετε ένα έγγραφο που δημιουργήθηκε σε μια έκδοση του Writer παλιότερη από το OpenOffice.org 2.0. Όμως, αυτή η επιλογή δεν επιλέγεται όταν δημιουργείτε ένα έγγραφο ή όταν ανοίγετε ένα έγγραφο σε μορφή Microsoft Word (*.doc)."
#: 05060100.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter/guide.po b/source/el/helpcontent2/source/text/swriter/guide.po
index 716632461e2..401ce8c7584 100644
--- a/source/el/helpcontent2/source/text/swriter/guide.po
+++ b/source/el/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-09 04:17+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\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-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1557375423.000000\n"
@@ -230,16 +230,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Στην <emph>Βασική γραμμή</emph>, πατήστε στο εικονίδιο <emph> Περιήγηση</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Εικονίδιο</alt></image> για να ανοίξετε την <emph>Περιήγηση</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "Στην <emph>Περιήγηση</emph>, πατήστε στο εικονίδιο <emph>Προβολή περιεχομένου</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\"></alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -262,8 +262,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Πατήστε μια επικεφαλίδα στον κατάλογο <emph>Περιήγηση</emph> και μετά πατήστε στο εικονίδιο <emph>Προβιβασμός κεφαλαίου</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\"></alt></image> ή στο εικονίδιο <emph>Υποβιβασμός κεφαλαίου</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\"></alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -294,8 +294,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Πατήστε στο εικονίδιο <emph>Προβιβασμός επιπέδου</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\"> </alt></image> ή στο <emph>Υποβιβασμός επιπέδου</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\"></alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -310,8 +310,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Πατήστε στο εικονίδιο <emph>Εμφανιζόμενα επίπεδα επικεφαλίδων</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\"></alt></image> και μετά επιλέξτε έναν αριθμό από τον κατάλογο."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
index c7a223fc92a..c982d80f056 100644
--- a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/el/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-08 06:42+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 09:39+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1557297732.000000\n"
+"X-POOTLE-MTIME: 1559036377.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -18872,7 +18872,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Τεχνοτροπίες πίνακα"
#: GenericCommands.xcu
msgctxt ""
@@ -23401,6 +23401,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Περισσότερα πεδία"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Αναδημιουργία του διαγράμματος"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25690,6 +25699,15 @@ msgstr "Με καρτέλες"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25708,6 +25726,15 @@ msgstr "Ομαδοποιημένη γραμμή"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28736,7 +28763,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Επιλογή πρότασης"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/el/sc/messages.po b/source/el/sc/messages.po
index 17888509c65..678ca824c99 100644
--- a/source/el/sc/messages.po
+++ b/source/el/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-08 06:45+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 09:37+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1557297959.000000\n"
+"X-POOTLE-MTIME: 1559036229.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(αποκλειστική πρόσβαση)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "Δεν υπάρχουν διαθέσιμες επώνυμες περιοχές στο επιλεγμένο έγγραφο"
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,13 +15775,13 @@ msgstr "Διαχείριση μορφοποίησης υπό όρους"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Περιοχή"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
-msgstr ""
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Πρώτη συνθήκη"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Φόρμα δεδομένων"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Κλείσιμο"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Δημιουργία εγγραφής"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "Δη_μιουργία"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Διαγραφή"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Επαναφορά"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Προηγούμενη εγγραφή"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Επό_μενη εγγραφή"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Κλείσιμο"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Ζωντανές ροές δεδομένων"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Εισάγετε το URL του εγγράφου προέλευσης στο τοπικό σύστημα αρχείων ή διαδικτύου εδώ."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Εξερεύνηση..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Περιοχές βάσης δεδομένων:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Πάροχος δεδομένων:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Συμβολοσειρά αναζήτησης:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Ροή πηγής"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Αποτελέσματα στο:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Περικοπή της περιοχής εισόδου στο ενεργό περιεχόμενο δεδομένων"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Δεδομένα"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Στήλες"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Γραμμές"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Ομαδοποίηση κατά"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Διάστημα:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Παράμετροι"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Βοήθεια"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "Α~ρχείο"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Ορισμός των περιγραμμάτων των επιλεγμένων κελιών."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Αύξηση εσοχής"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Μείωση εσοχής"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Α_ρχή"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "Α~ρχή (Home)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Πε_δίο"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Ε_ισαγωγή"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Εισαγωγή"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Διάταξη"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Στοίχιση αντικειμένου"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Διάταξη"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Στατιστικά"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Δεδομένα"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Δεδομένα"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Επι_θεώρηση"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Επι~θεώρηση"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Προ_βολή"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Προβολή"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ει_κόνα"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ει~κόνα"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Σ_χέδιο"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Σ~χέδιο"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "Α_ντικείμενο"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "Α~ντικείμενο"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Μέσα"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Μέσα"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ε_κτύπωση"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Εκ~τύπωση"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Φόρμα"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Φόρμα"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Εργαλεία"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ε~ργαλεία"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Αποτελέσματα αναζήτησης"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "_Να εμφανιστεί αυτός ο διάλογος"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "Επανεργοποίηση του διαλόγου στο Εργαλεία > Επιλογές > Calc > Προβολή"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Φύλλο"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Κελί"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Περιεχόμενο"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Σύμβολα _διάρθρωσης"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "Περίληψη στη_ν αναζήτηση"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Παράθυρο"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Γραμμές πλέ_γματος:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Χρώμα:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Εμφάνιση"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Εμφάνιση σε χρωματιστά κελιά"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Απόκρυψη"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Αλλαγές _σελίδων"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Βοηθητικές γραμμές _κατά τη μετακίνηση"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Οπτική βοήθεια"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Α_ντικείμενα/Εικόνες:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Δια_γράμματα:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Αν_τικείμενα σχεδίασης:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Εμφάνιση"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Απόκρυψη"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Εμφάνιση"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Απόκρυψη"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Εμφάνιση"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Απόκρυψη"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Αντικείμενα"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Σ_υγχρονισμός φύλλων"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Εστίαση"
diff --git a/source/el/scp2/source/ooo.po b/source/el/scp2/source/ooo.po
index e0288c63a92..2f868a05f29 100644
--- a/source/el/scp2/source/ooo.po
+++ b/source/el/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-21 18:52+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-28 09:33+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1555872771.000000\n"
+"X-POOTLE-MTIME: 1559035995.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Άνοιγμα Εγγράφου"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (Ασφαλής λειτουργία)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/el/scp2/source/winexplorerext.po b/source/el/scp2/source/winexplorerext.po
index 54054b1723a..00b04f9de65 100644
--- a/source/el/scp2/source/winexplorerext.po
+++ b/source/el/scp2/source/winexplorerext.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-01-01 21:28+0000\n"
-"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:09+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1357075726.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369350590.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Επιτρέπει στον Microsoft Windows Explorer να προβάλλει πληροφορίες για έγγραφα του %PRODUCTNAME , όπως προεπισκοπήσεις μικρογραφίας."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/el/sd/messages.po b/source/el/sd/messages.po
index 9d99e139d1a..bdcc1dd05f7 100644
--- a/source/el/sd/messages.po
+++ b/source/el/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-21 18:55+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Πάτημα για άνοιγμα υπερσυνδέσμου: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Όνομα σχεδίου HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "Α_ρχείο"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Βοήθεια"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Αρχείο"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Α_ρχή"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Α~ρχή (Home)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Πε_δίο"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Ε_ισαγωγή"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Ε~ισαγωγή"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Σελίδα"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Σελίδα"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Επι_θεώρηση"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Επι~θεώρηση"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Προ_βολή"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Προβολή"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "Κεί_μενο"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "Κεί~μενο"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Πίνακας"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Πίνακας"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Μετατροπή"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ει_κόνα"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ει~κόνα"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Σ_χέδιο"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Σ~χέδιο"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Α_ντικείμενο"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Α~ντικείμενο"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Μέσα"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Μέσα"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Φόρμα"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Φόρμα"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Εργαλεία"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ε~ργαλεία"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Εμφάνιση σχημάτων"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "Α_ρχείο"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Βοήθεια"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Αρχείο"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Α_ρχή"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Α_ρχή (Home)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Πε_δίο"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Ε_ισαγωγή"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Ε~ισαγωγή"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Διαφάνεια"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "~Διαφάνεια"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Προβολή _παρουσίασης"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Προβολή παρουσίασης"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Επι_θεώρηση"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Επι~θεώρηση"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Προ_βολή"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Προβολή"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Πίνακας"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Πίνακας"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Μετατροπή"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ει_κόνα"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ει~κόνα"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Σ_χέδιο"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Σχέδιο"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Α_ντικείμενο"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Α~ντικείμενο"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Μέσα"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Μέσα"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Φόρμα"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Φόρμα"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Εργαλεία"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ε~ργαλεία"
diff --git a/source/el/sfx2/messages.po b/source/el/sfx2/messages.po
index e90d94ce530..2169e19787e 100644
--- a/source/el/sfx2/messages.po
+++ b/source/el/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-21 18:56+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 09:32+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1555872964.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559035969.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Ε: %1 Μ: %2 Η: %3 Ω: %4 Λ: %5 Δ: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Αφαίρεση ιδιότητας"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Η τιμή που εισήχθη δεν ταιριάζει με τον συγκεκριμένο τύπο.\n"
"Η τιμή θα αποθηκευτεί ως κείμενο."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Η τεχνοτροπία υπάρχει ήδη. Να αντικατασταθεί;"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Επανα~φορά"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Το όνομα αυτό χρησιμοποιείται ήδη."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Αυτή η τεχνοτροπία δεν υπάρχει."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Αδύνατη η χρήση αυτής της τεχνοτροπίας ως βάσης τεχνοτροπίας,\n"
"επειδή μπορεί να καταλήξει σε κυκλική αναφορά."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Το όνομα αυτό υπάρχει ήδη ως προεπιλεγμένη τεχνοτροπία.\n"
"Παρακαλώ επιλέξτε άλλο όνομα."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Αν διαγράψετε αυτές τις τεχνοτροπίες, το κείμενο θα μετατραπεί στην γονική τεχνοτροπία.\n"
"Θέλετε ακόμα να διαγράψετε αυτές τις τεχνοτροπίες;\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Τεχνοτροπίες σε χρήση:"
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Περιήγηση"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Εσφαλμένη επιβεβαίωση του κωδικού πρόσβασης"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Αποστολή"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Γραμματοσειρά"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Εμφάνιση προεπισκοπήσεων"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Προβολή σχολίου έκδοσης"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(δεν έχει οριστεί όνομα)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Λίστα τεχνοτροπιών"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Ιεραρχικά"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Λειτουργία μορφοποίησης γεμίσματος"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Νέα τεχνοτροπία από επιλογή"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Ενέργειες τεχνοτροπιών"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Ενημέρωση τεχνοτροπίας"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Θέλετε πραγματικά να ακυρώσετε την καταχώριση; Όλα τα βήματα που καταχωρίστηκαν μέχρι τώρα θα χαθούν."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Ακύρωση εγγραφής"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Τα πρότυπα αρχικοποιούνται για να χρησιμοποιηθούν για πρώτη φορά."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Δεν βρέθηκε προεπιλεγμένος εκτυπωτής.\n"
"Παρακαλώ επιλέξτε έναν εκτυπωτή και προσπαθήστε ξανά."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Αδύνατη η έναρξη του εκτυπωτή.\n"
"Παρακαλώ ελέγξτε τις ρυθμίσεις του εκτυπωτή."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Ο εκτυπωτής είναι απασχολημένος"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (μόνο για ανάγνωση)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Θέλετε να αποθηκευτούν οι νέες \n"
"ρυθμίσεις στο τρέχον έγγραφο;"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Να αποθηκευτούν οι νέες ρυθμίσεις\n"
"στο ενεργό έγγραφο;"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Θέλετε να αποθηκευτούν οι νέες \n"
"ρυθμίσεις στο τρέχον έγγραφο;"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Αδύνατο το κλείσιμο του εγγράφου\n"
"επειδή εκτελείται μια εργασία εκτύπωσης."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Ελέγξτε τις ρυθμίσεις του %PRODUCTNAME ή του προγράμματος ηλ. ταχυδρομείου."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Κωδικός σφάλματος $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Σφάλμα κατά την αποστολή του μηνύματος"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Αδυναμία επεξεργασίας αυτού του εγγράφου, πιθανόν λόγω έλλειψης δικαιωμάτων πρόσβασης. Θέλετε να επεξεργαστείτε ένα αντίγραφο του εγγράφου;"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Μπορείτε επίσης να προσπαθήσετε να αγνοήσετε το κλείδωμα και να ανοίξετε το αρχείο για επεξεργασία."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Άνοιγμα αντι~γράφου"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "Άν~οιγμα"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (επιδιορθωμένο έγγραφο)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Το έγγραφο δεν ελέγχθηκε στην έξοδο στον διακομιστή."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Βοηθήστε μας να κάνουμε το %PRODUCTNAME ακόμα καλύτερο!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Συμμετοχή"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Οι δωρεές σας υποστηρίζουν την παγκόσμια κοινότητά μας."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Δωρεά"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Εκτελείτε την έκδοση %PRODUCTVERSION του %PRODUCTNAME για πρώτη φορά. Θέλετε να μάθετε τι νέο υπάρχει;"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Σημειώσεις έκδοσης"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Αυτό το έγγραφο είναι ανοικτό μόνο για ανάγνωση."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Αυτό το PDF είναι ανοικτό σε κατάσταση μόνο για ανάγνωση για να επιτρέψει την υπογραφή του υπάρχοντος αρχείου."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Η ετικέτα διαβάθμισης αυτού του εγγράφου είναι %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Αυτό το έγγραφο πρέπει να διαβαθμιστεί πριν να μπορέσει να επικολληθεί το πρόχειρο."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Αυτό το έγγραφο έχει ένα χαμηλότερο επίπεδο διαβάθμισης από το πρόχειρο."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Επίπεδο"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Εθνική ασφάλεια:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Εξαγωγή στοιχείου ελέγχου:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Ανάληψη ελέγχου"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Επεξεργασία εγγράφου"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Υπογραφή εγγράφου"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Αυτό το έγγραφο έχει άκυρη υπογραφή."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Η υπογραφή ήταν έγκυρη, αλλά το έγγραφο έχει τροποποιηθεί"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Η υπογραφή είναι εντάξει, αλλά το πιστοποιητικό δεν μπόρεσε να επικυρωθεί."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Η υπογραφή είναι εντάξει, αλλά το έγγραφο είναι μόνο μερικώς υπογεγραμμένο."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Το πιστοποιητικό δεν μπόρεσε να επικυρωθεί και το έγγραφο είναι μερικώς υπογεγραμμένο."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Αυτό το έγγραφο είναι ψηφιακά υπογεγραμμένο και η υπογραφή είναι έγκυρη."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Εμφάνιση υπογραφών"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Κλείσιμο παραθύρου"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Προσάρτηση"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Αποπροσάρτηση"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Περισσότερες επιλογές"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Κλείσιμο προσαρτημένης πλευρικής στήλης"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Ρυθμίσεις πλευρικής στήλης"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Προσαρμογή"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Επαναφορά προεπιλογής"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Κλείσιμο πλευρικής στήλης"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Αλιζαρίνη"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Μελίσσι"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Γαλάζια καμπύλη"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Γαλάζια σχέδια"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Ανοιχτό γαλάζιο"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Κλασικό κόκκινο"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Εστίαση"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Πουλί δάσους"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Εντώπωση"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Έμπνευση"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Φώτα"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Πράσινο χλόης"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Μητρόπολη"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Γαλάζιο του μεσονυκτίου"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Φυσική εικόνα"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Μολύβι"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Πιάνο"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Χαρτοφύλακας"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Πρόοδος"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Δύση"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Εποχής"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Ζωηρό"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Βιογραφικό"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Προεπιλογή"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Σύγχρονο"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Σύγχρονη επαγγελματική επιστολή χωρίς πατούρα"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Σύγχρονη επαγγελματική επιστολή με πατούρα"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Επαγγελματική κάρτα με λογότυπο"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Αφαίρεση"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Καθαρισμός όλων"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Μήκος κωδικού πρόσβασης"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Ο κωδικός πρόσβασης που έχετε εισάγει προκαλεί προβλήματα διαλειτουργικότητας. Παρακαλούμε, εισάγετε κωδικό πρόσβασης που είναι μικρότερος από 52 ψηφιολέξεις (bytes), ή μεγαλύτερος από 55 ψηφιολέξεις."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Σχόλιο έκδοσης:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Όνομα"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Τύπος"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Τιμή"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Τύπος"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ναι"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Όχι"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Προσθήκη _ιδιότητας"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Όνομα"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Τύπος"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Τιμή"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Τοποθεσία:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Τύπος:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Αλλαγή _κωδικού πρόσβασης"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Πρότυπο:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Ιδιότητες του “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Γενικά"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Περιγραφή"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Προσαρμοσμένες ιδιότητες"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Ιδιότητες CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Ασφάλεια"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Αυτό το προϊόν δημιουργήθηκε από τον %OOOVENDOR, με βάση το OpenOffice.org, που είναι πνευματικά δικαιώματα 2000, 2011 της Oracle και/ή των θυγατρικών της. Ο %OOOVENDOR αναγνωρίζει όλα τα μέλη της κοινότητας, παρακαλούμε δείτε http://www.libreoffice.org/ για περισσότερες λεπτομέρειες."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/el/shell/messages.po b/source/el/shell/messages.po
new file mode 100644
index 00000000000..be11da488db
--- /dev/null
+++ b/source/el/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-28 09:31+0000\n"
+"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: el\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559035892.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Άνοιγμα εγγράφου"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Ανοίγετε το έγγραφο\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Θέλετε να το ανοίξετε για προβολή ή επεξεργασία;"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Προβολή"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Επεξεργασία"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Ακύρωση"
diff --git a/source/el/starmath/messages.po b/source/el/starmath/messages.po
index ff4bd8f0510..58cbbf76cef 100644
--- a/source/el/starmath/messages.po
+++ b/source/el/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Παραδείγματα"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Προεπιλογή"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Πλάγια γραφή"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Έντονη γραφή"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "μαύρο"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "γαλάζιο"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "πράσινο"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "κόκκινο"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "κυανό"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "ματζέντα"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "γκρίζο"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "λεμονί"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "καστανέρυθρο"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ναυτικό"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "λαδί"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "πορφυρό"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "αργυρό"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "γαλαζοπράσινο"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "κίτρινο"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "απόκρυψη"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "μέγεθος"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "γραμματοσειρά"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "αριστερά"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "κέντρο"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "δεξιά"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Εντολές"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Τύπος"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Αποθήκευση εγγράφου..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Τύπος του %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ΣΦΑΛΜΑ : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Αναπάντεχος χαρακτήρας"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Αναπάντεχο αναγνωριστικό"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' αναμένεται"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' αναμένεται"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' αναμένεται"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' αναμένεται"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Ασυμφωνία αριστερού και δεξιού συμβόλου"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "αναμενόταν 'fixed', 'sans', ή 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "το 'size' ακολουθείται από αναπάντεχο διακριτικό"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Δεν επιτρέπεται διπλή στοίχιση"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Δεν επιτρέπονται διπλοί εκθέτες/δείκτες"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' αναμένεται"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Απαιτείται χρώμα"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Αναμένεται 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Περιεχόμενα"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Τίτλος"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Κείμενο ~τύπου"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Περι~γράμματα"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Μέγεθος"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Αρ~χικό μέγεθος"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Προσαρμογή στη ~σελίδα"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Κλιμάκωση"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Στοιχεία"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/el/svtools/messages.po b/source/el/svtools/messages.po
index 49b63312de4..84546b62cb1 100644
--- a/source/el/svtools/messages.po
+++ b/source/el/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-21 18:59+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-16 11:56+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555873198.000000\n"
+"X-POOTLE-MTIME: 1558007760.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Αναίρεση: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Ακύ~ρωση αναίρεσης: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Ε~πανάληψη: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Αμορφοποίητο κείμενο"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Μη μορφοποιημένο κείμενο (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Ψηφιογραφική εικόνα (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Μετα-αρχείο διεπαφής συσκευής γραφικών (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Μορφοποίηση πλούσιου κειμένου (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Μορφοποίηση πλούσιου κειμένου (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Μορφή σχεδίασης του %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Ψηφιογραφία/κίνηση StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Πληροφορίες κατάστασης από εσωτερική σύνδεση Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Σύνδεσμος %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Σελιδοδείκτης του Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Μορφή εξυπηρετητή star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Μορφή αντικειμένου star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Αντικείμενο μικροεφαρμογής"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Αντικείμενο πρόσθετου"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Αντικείμενο του StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Αντικείμενο του StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Αντικείμενο του StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Αντικείμενο του StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Αντικείμενο του StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Αντικείμενο του StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Αντικείμενο του StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Αντικείμενο του StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Αντικείμενο του StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Αντικείμενο του StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Αντικείμενο του StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Αντικείμενο του StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Αντικείμενο του StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Αντικείμενο του StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Αντικείμενο του StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Αντικείμενο του StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Αντικείμενο του StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Αντικείμενο του StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Αντικείμενο του StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Αντικείμενο του StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Αντικείμενο του StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Αντικείμενο του StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Αντικείμενο του StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Αντικείμενο του StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Γλώσσα σήμανσης υπερκειμένου (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Γυμνή γλώσσα σήμανσης υπερκειμένου (Απλό HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Μορφή ανταλλαγής δυαδικών Microsoft Excel 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Μορφή ανταλλαγής δυαδικών Microsoft Excel 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Δυναμική ανταλλαγή δεδομένων (σύνδεσμος DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Μορφή ανταλλαγής δεδομένων (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Αντικείμενο του Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Αντικείμενο του StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Αντικείμενο εγγράφου του Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Πληροφορίες εγγράφου σημειώσεων"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Έγγραφο Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Αντικείμενο του StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Αντικείμενο γραφικού"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Αντικείμενο Writer OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Writer OpenOffice.org 1.0/αντικείμενο ιστού"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Writer OpenOffice.org 1.0/κύριο αντικείμενο"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Αντικείμενο Draw OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Αντικείμενο Impress OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Αντικείμενο Calc OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Αντικείμενο Chart OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Αντικείμενο Math OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Μετααρχείο των Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Προέλευση δεδομένων αντικειμένου"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Πίνακας προέλευσης δεδομένων"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Ερώτημα SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Διάλογος OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Σύνδεσμος"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Μορφοποίηση HTML χωρίς σχόλια"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Φορητά γραφικά δικτύου (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Αδυναμία εισαγωγής του αντικειμένου %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Αδυναμία προσθήκης του αντικειμένου από το αρχείο %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Επιπλέον αντικείμενα"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Άγνωστη προέλευση"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Όνομα"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Μέγεθος"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Ημερομηνία τροποποίησης"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Τύπος"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Ψηφιολέξεις"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Γραμμή: %1, στήλη: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Τύπος: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Φάκελος"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Αρχείο"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Κενό πεδίο"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Συμβολοσειρά"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Κανονικά"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Σύνολο χαρακτήρων"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Λεξικό"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Τηλεφωνικός κατάλογος"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Φωνητικό (πρώτα αλφαριθμητικό)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Φωνητικό (τελευταίο αλφαριθμητικό)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Συμβολοσειρά"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Λεξικό"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Φωνητικό (συμβολοσειρά πρώτα, ομαδοποιημένο κατά συλλαβές)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Φωνητικό (συμβολοσειρά πρώτα, ομαδοποιημένο κατά σύμφωνα)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Φωνητικό (συμβολοσειρά πρώτα, ομαδοποιημένο κατά συλλαβές)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Φωνητικό (συμβολοσειρά πρώτα, ομαδοποιημένο κατά σύμφωνα)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Σήμερα"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Κανένα"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Λεπτό"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Πλάγια λεπτά"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Κανονικά"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Πλάγια"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Έντονα"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Πλάγια έντονα"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Μαύρο"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Πλάγια μαύρα"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Κανονικά"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Λοξά έντονα"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Συμπυκνωμένα"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Συμπυκνωμένα έντονα"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Συμπυκνωμένα έντονα πλάγια"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Συμπυκνωμένα έντονα λοξά"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Συμπυκνωμένα πλάγια"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Συμπυκνωμένα λοξά"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Πολύ λεπτά (ExtraLight)"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Πολύ λεπτά πλάγια"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Λοξά"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Ημιέντονα"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Ημιέντονα πλάγια"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Η ίδια γραμματοσειρά θα χρησιμοποιηθεί και από τον εκτυπωτή σας και από την οθόνη σας."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Αυτή είναι γραμματοσειρά εκτυπωτή. Η απεικόνισή στη οθόνη μπορεί να είναι διαφορετική."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Θα προσομοιωθεί αυτή η τεχνοτροπία γραμματοσειράς ή θα χρησιμοποιηθεί η τεχνοτροπία που ταιριάζει περισσότερο."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Η γραμματοσειρά δεν έχει εγκατασταθεί. Θα χρησιμοποιηθεί η πλησιέστερη διαθέσιμη γραμματοσειρά."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Αναζήτηση..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Μετακίνηση στην αρχή"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Μετακίνηση αριστερά"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Προς τα δεξιά"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Μετακίνηση στο τέλος"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Προσθήκη"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Οριζόντιος χάρακας"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Κάθετος χάρακας"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Κατώφλι 1 δυαδικού"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Πρόσμιξη 1 δυαδικού"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Διαβάθμιση γκρίζου 4 δυαδικών"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Χρώμα 4 δυαδικών"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Διαβάθμιση γκρίζου 8 δυαδικών"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Χρώμα 8 δυαδικών"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Φυσικό χρώμα 24 δυαδικών"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Η εικόνα χρειάζεται περίπου %1 KB μνήμης."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Η εικόνα χρειάζεται περίπου %1 KB μνήμης, το μέγεθος του αρχείου είναι %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Το μέγεθος του αρχείου είναι %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "οικοδεσπότης"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "θύρα"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Άλλα CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Έτοιμο"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Διακοπή"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Εκκρεμής διαγραφή"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Απασχολημένο"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Αρχικοποίηση"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Αναμονή"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Προετοιμασία"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Επεξεργασία"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Γίνεται εκτύπωση"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Αποσυνδεμένο"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Σφάλμα"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Άγνωστος εξυπηρετητής"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Φράξιμο χαρτιού"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Έλλειψη χαρτιού"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Χειροκίνητος εφοδιασμός χαρτιού"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Πρόβλημα με το χαρτί"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Είσοδος/έξοδος ενεργές"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Το τμήμα εξαγωγής είναι πλήρες"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Χαμηλή στάθμη του γραφίτη"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Δεν υπάρχει γραφίτης"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Διαγραφή σελίδας"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Αναγκαία η παρέμβαση του χρήστη"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ανεπαρκής μνήμη"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Κάλυμμα ανοιχτό"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Κατάσταση εξοικονόμησης ενέργειας"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Προεπιλεγμένος εκτυπωτής"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d έγγραφα"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Τέ~λος"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Επόμενο >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Προηγούμενο"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Βήματα"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<κανένα>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Εταιρία"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Τμήμα"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Όνομα"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Επώνυμο"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Οδός"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Χώρα"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Τ.Κ."
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Πόλη"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Τίτλος"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Θέση"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Προσφώνηση"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Αρχικά"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Προσφώνηση τέλους"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Τηλέφωνο κατοικίας"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Τηλέφωνο εργασίας"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Φαξ"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Ηλ. αλληλογραφία"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Σημείωση"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Χρήστης 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Χρήστης 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Χρήστης 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Χρήστης 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Αναγνωριστικό"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Νομός"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Τηλέφωνο γραφείου"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Βομβητής"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Κινητό"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Διάφορα τηλέφωνα"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Ημερολόγιο"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Πρόσκληση"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Το %PRODUCTNAME απαιτεί ένα περιβάλλον χρόνου εκτέλεσης Java (JRE) για να εκτελέσει αυτή την εργασία. Παρακαλούμε, εγκαταστήστε ένα JRE και επανεκκινήστε το %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Το %PRODUCTNAME απαιτεί ένα περιβάλλον χρόνου εκτέλεσης %BITNESS-bit Java (JRE) για να εκτελέσει αυτήν την ενέργεια. Παρακαλούμε, εγκαταστήστε ένα JRE και επανεκκινήστε το %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "Το %PRODUCTNAME απαιτεί Oracle's Java Development Kit (JDK) σε Mac OS X 10.10 ή νεότερο για να εκτελέσει αυτήν την εργασία. Παρακαλούμε, εγκαταστήστε το και επανεκκινήστε το %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Η διαμόρφωση του %PRODUCTNAME έχει αλλαχθεί. Στο %PRODUCTNAME - Προτιμήσεις - %PRODUCTNAME - Προχωρημένα, επιλέξτε το περιβάλλον χρόνου εκτέλεσης Java που θέλετε να χρησιμοποιηθεί από το %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Η διαμόρφωση του %PRODUCTNAME έχει αλλαχθεί. Στο Εργαλεία - Επιλογές - %PRODUCTNAME - Προχωρημένα, επιλέξτε το περιβάλλον χρόνου εκτέλεσης Java που θέλετε να χρησιμοποιηθεί από το %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Το %PRODUCTNAME απαιτεί ένα περιβάλλον χρόνου εκτέλεσης Java (JRE) για να εκτελέσει αυτήν την εργασία. Το επιλεγμένο JRE είναι ελαττωματικό. Παρακαλούμε επιλέξτε μια άλλη έκδοση ή εγκαταστήστε ένα νέο JRE και επιλέξτε το στο %PRODUCTNAME - Προτιμήσεις - %PRODUCTNAME - Προχωρημένα."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Το %PRODUCTNAME απαιτεί ένα περιβάλλον χρόνου εκτέλεσης Java (JRE) για να εκτελέσει αυτήν την εργασία. Το επιλεγμένο JRE είναι ελαττωματικό. Παρακαλούμε επιλέξτε μια άλλη έκδοση ή εγκαταστήστε ένα νέο JRE και επιλέξτε το στο Εργαλεία - Επιλογές - %PRODUCTNAME - Προχωρημένα."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Απαιτείται JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Επιλογή JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Το JRE είναι προβληματικό"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Πηγαίος κώδικας"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Αρχείο σελιδοδείκτη"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Γραφικά"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Αρχείο διαμόρφωσης"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Εφαρμογή"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Πίνακας βάσης δεδομένων"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Αρχείο συστήματος"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Έγγραφο του MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Αρχείο βοήθειας"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Έγγραφο HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Αρχείο αρχειοθήκης"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Αρχείο καταγραφής"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Βάση δεδομένων StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Κύριο έγγραφο StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Εικόνα StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Αρχείο κειμένου"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Σύνδεση"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Πρότυπο StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Έγγραφο του MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Πρότυπο MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Αρχείο δέσμης"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Αρχείο"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Φάκελος"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Έγγραφο κειμένου"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Υπολογιστικό φύλλο"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Παρουσίαση"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Σχεδίαση"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Έγγραφο HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Πρωτεύον έγγραφο"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Τύπος"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Βάση δεδομένων"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Πρότυπο υπολογιστικό φύλλο OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Πρότυπο σχεδίου του OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Πρότυπο παρουσίασης OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Πρότυπο εγγράφου κειμένου του OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Τοπικός δίσκος"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Μονάδα δίσκου"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Μονάδα CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Σύνδεση δικτύου"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Έγγραφο του MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Πρότυπο MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Προβολή του MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Τύπος OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Διάγραμμα OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Σχέδιο του OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Υπολογιστικό φύλλο του OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Παρουσίαση του OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Έγγραφο κειμένου του OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Κύριο έγγραφο του OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Έγγραφο του MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Βάση δεδομένων του OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Σχεδίαση του OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Τύπος του OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Κύριο έγγραφο του OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Παρουσίαση του OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Υπολογιστικό φύλλο του OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Κείμενο του OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Πρότυπο υπολογιστικού φύλλου του OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Πρότυπο σχεδίασης του OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Πρότυπο παρουσίασης του OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Πρότυπο κειμένου του OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Επέκταση του %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Ορθογραφικός έλεγχος Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Συλλαβιστής Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Θησαυρός Mythes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Κατάλογος από λέξεις που αγνοήθηκαν"
@@ -4127,7 +4129,7 @@ msgstr "Ιλόκο"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Αγγλικά (Ζάμπια)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/el/svx/messages.po b/source/el/svx/messages.po
index 6d43c330d47..601278c0138 100644
--- a/source/el/svx/messages.po
+++ b/source/el/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 16:43+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 09:29+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1557679392.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559035796.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Αριστερά-προς-δεξιά (κατακόρυφα)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Από κάτω προς τα πάνω, από αριστερά προς τα δεξιά (κατακόρυφα)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Αριθμός υλικού:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Τμήμα κειμένου:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Πηγή φωτισμού 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Χρώμα φωτός 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Χρώμα φωτός 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Χρώμα φωτός 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Χρώμα φωτός 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Χρώμα φωτός 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Χρώμα φωτός 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Χρώμα φωτός 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Χρώμα φωτός 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Ορίστε το ποσοστό κάθετης μετατόπισης από το κέντρο για την τεχνοτροπία σκίασης διαβάθμισης. 50% είναι το κάθετο κέντρο."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Επεξεργαστής περιγράμματος"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Εφαρμογή"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Χώρος εργασίας"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Επιλογή"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Ορθογώνιο"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Έλλειψη"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Πολύγωνο"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Επεξεργασία σημείων"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Μετακίνηση σημείων"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Εισαγωγή σημείων"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Διαγραφή σημείων"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Αυτόματο περίγραμμα"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Αναίρεση "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Ακύρωση αναίρεσης"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Σιφώνιο"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Ανοχή χρώματος"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Υποσέλιδο"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Επεξεργαστής ImageMap"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Εφαρμογή"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Άνοιγμα..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Αποθήκευση..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Κλείσιμο"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Επιλογή"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Ορθογώνιο"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Έλλειψη"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Πολύγωνο"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Πολύγωνο ελεύθερης σχεδίασης"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Επεξεργασία σημείων"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Μετακίνηση σημείων"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Εισαγωγή σημείων"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Διαγραφή σημείων"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Αναίρεση "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Κόκκινο"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Ενεργό"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Μακροεντολή..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Ιδιότητες..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Διεύθυνση:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Πλαίσιο:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Κείμενο:"
diff --git a/source/el/sw/messages.po b/source/el/sw/messages.po
index e1e9cc41262..cab2cb8af2a 100644
--- a/source/el/sw/messages.po
+++ b/source/el/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 16:39+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-28 09:25+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\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: 1557679144.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559035547.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Αλλαγή τίτλου αντικειμένου από $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Αλλαγή περιγραφής αντικειμένου από $1"
+msgstr "Αλλαγή περιγραφής αντικειμένου του $1"
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -6113,7 +6113,7 @@ msgstr "Μορφοποίηση υποσέλιδου..."
#: sw/inc/strings.hrc:1210
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
-msgstr ""
+msgstr "Μη αιωρούμενος πίνακας"
#: sw/inc/strings.hrc:1212
msgctxt "STR_GRFILTER_OPENERROR"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Βοήθεια"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Αρχείο"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Α_ρχή"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Α~ρχή (Home)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Ε_ισαγωγή"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Ε~ισαγωγή"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Διάταξη"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Διάταξη"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Α_ναφορές"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Πα~ραπομπές"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Επι_θεώρηση"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Επι~θεώρηση"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Προ_βολή"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Προβολή"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Πίνακας"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Πίνακας"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ει_κόνα"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ει~κόνα"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Σ_χέδιο"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Σ~χέδιο"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Α_ντικείμενο"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Α~ντικείμενο"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Μέσα"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Μέσα"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ε_κτύπωση"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Ε~κτύπωση"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Φόρμα"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Φόρμα"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Εργαλεία"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Ε~ργαλεία"
@@ -12160,152 +12160,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "Α_ρχείο"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "Α~ρχείο"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "Α_ρχική οθόνη"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr "Αρ~χή"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Ε_ισαγωγή"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "~Εισαγωγή"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Αναδίπλωση"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Διάταξη"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "~Διάταξη"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Παραπομπές"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr "Πα~ραπομπές"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Ε_πιθεώρηση"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Επι~θεώρηση"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "Προ_βολή"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "~Προβολή"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Πί_νακας"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr "~Πίνακας"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Εικόνα"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Ει~κόνα"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Σ_χέδιο"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Σχέδιο"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Αντικείμενο"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "Α~ντικείμενο"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Μέσα"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Μέσα"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Εκτύπωση"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Ε~κτύπωση"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "_Φόρμα"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "~Φόρμα"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Εργαλεία"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Ε~ργαλεία"
@@ -13372,8 +13372,8 @@ msgstr "Να επεκτείνεται η απόσταση λέξεων σε γρ
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Μορφή προστασίας"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Πίνακας περιεχομένων, ευρετήριο ή βιβλιογραφία"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Προεπισκόπηση"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Προεπισκόπηση"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Τύπος"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Καταχωρίσεις"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Τεχνοτροπίες"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Στήλες"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Παρασκήνιο"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Προεπισκόπηση"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Επίπε_δο"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Τύπος"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Επεξεργασία..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Τίτλος:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Τύπος:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Πίνακας περιεχομένων"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Αλφαβητικό ευρετήριο"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Πίνακας εικόνων"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Ευρετήριο πινάκων"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Καθορισμένο από τον χρήστη"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Πίνακας αντικειμένων"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Βιβλιογραφία"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Προστασία έναντι χειροκίνητων αλλαγών"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Τύπος και τίτλος"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Για:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Ολόκληρο το έγγραφο"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Κεφάλαιο"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Αξιολόγηση μέχρι το επίπεδο:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Δημιουργία ευρετηρίου ή πίνακα περιεχομένων"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Διάρθρωση"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Επισημάνσεις ε_υρετηρίου"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Πίνακες"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Πλαίσια κει_μένου"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Γραφικά"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Αντικείμενα OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Χρήση επιπέδου από το κεφάλαιο προέλευσης"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Πρόσθετες τεχνοτροπίες"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Τεχνοτροπίες"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Απόδοση τεχνοτροπιών..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Τίτλοι"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Ονόματα αντικειμένου"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Κατηγορία:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Εμφάνιση:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Παραπομπές"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Κατηγορία και αριθμός"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Κείμενο τίτλου"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Δημιουργία από"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Δημιουργία από τα ακόλουθα αντικείμενα"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Α_γκύλες:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Καταχωρίσεις αρι_θμού"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[κανένα]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Μορφοποίηση των καταχωρίσεων"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Συνδυασμός όμοιων καταχωρίσεων"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Συνδυασμός όμοιων καταχωρίσεων με p ή με _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Συνδυασμός με -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Διάκριση πεζών/κεφαλαίων"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Αυτόματη κεφαλαιοποίηση των καταχωρίσεων"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Κλειδιά ως ξεχωριστές καταχωρίσεις"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Αρχείο τα_ξινόμησης"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Αρχείο"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Επιλογές"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Γλώσσα:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Τύπος κλειδιού:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ταξινόμηση"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Επίπεδα"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Τεχνοτροπίες παραγράφου"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Προεπι_λογή"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Επεξεργασία"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Ανάθεση"
diff --git a/source/en-GB/cui/messages.po b/source/en-GB/cui/messages.po
index 955adab7a24..55474c06232 100644
--- a/source/en-GB/cui/messages.po
+++ b/source/en-GB/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-04-08 17:12+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Please enter a valid theme address or a search term."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Set No Borders"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Set Outer Border Only"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Set Outer Border and Horizontal Lines"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Set Outer Border and All Inner Lines"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Set Outer Border Without Changing Inner Lines"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Set Diagonal Lines Only"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Set All Four Borders"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Set Left and Right Borders Only"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Set Top and Bottom Borders Only"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Set Left Border Only"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Set Top and Bottom Borders and All Inner Lines"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Set Left and Right Borders and All Inner Lines"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "No Shadow"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Cast Shadow to Bottom Right"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Cast Shadow to Top Right"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Cast Shadow to Bottom Left"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Cast Shadow to Top Left"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Signed by: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "All files"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Registered Databases"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "About %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Cre_dits"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Website"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Locale: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "UI-Language: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "See Log: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 LibreOffice contributors."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice was based on OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "This release was supplied by %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Replace"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Repla_ce"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_With:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Text only"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimal Word Length"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Properties"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "F_rame:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Name:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternative _text:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Description:"
@@ -9019,80 +9179,80 @@ msgstr "Show \"No offline help installed\" pop-up"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save Dialogue Boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print Dialogue Boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printing sets \"document modified\" status"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document Status"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpret as years between "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Year (Two Digits)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Collect usage data and send it to The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help Improve %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Load %PRODUCTNAME during system start-up"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Enable systray Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Preinstalled Theme"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Own Theme"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Load Firefox theme"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Or, select from the Themes installed via extensions:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox Themes"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Security Options"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Select Firefox Theme"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Search term or address"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ca_tegory:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstract"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Causes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Fashion"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film and TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Holiday"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Music"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Nature"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Other"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Scenery"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Seasonal"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Solid"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sports"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Websites"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Featured"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/en-GB/extensions/messages.po b/source/en-GB/extensions/messages.po
index 27e090839e0..40f4c1acbc4 100644
--- a/source/en-GB/extensions/messages.po
+++ b/source/en-GB/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-08 17:13+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1554743586.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Column Layout for Table “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Short name"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Author(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Publisher"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Chapter"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Year"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tit_le"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_ddress"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pa_ge(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_ition"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Book title"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Publication t_ype"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organisation"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_ution"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versity"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Type of re_port"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Month"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Journal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Numb_er"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_ries"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Ann_otation"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Note"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "User-defined field _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "User-defined field _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "User-defined field _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "User-defined field _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "User-defined field _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Column Names"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Type a name for the new data type:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Link fields"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suggest"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "label"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "label"
diff --git a/source/en-GB/helpcontent2/source/auxiliary.po b/source/en-GB/helpcontent2/source/auxiliary.po
index bfcb3249494..e84905b6eb4 100644
--- a/source/en-GB/helpcontent2/source/auxiliary.po
+++ b/source/en-GB/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-08 17:22+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1554744158.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "General Information"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Toolbars"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Drawings (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menus"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Toolbars"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objects, Graphics and Bitmaps"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Groups and Layers"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Text in Presentations and Drawings"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/guide.po b/source/en-GB/helpcontent2/source/text/sbasic/guide.po
index a307a3e1925..7dca194590d 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/guide.po
+++ b/source/en-GB/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-07 22:12+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Compare Access2Base with Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Opening a Dialog With Program Code"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/python.po b/source/en-GB/helpcontent2/source/text/sbasic/python.po
index 241b90099dc..939b4bcaac6 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/python.po
+++ b/source/en-GB/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-20 09:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,8 +93,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
-msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr "Using a Basic classmodule:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/shared.po b/source/en-GB/helpcontent2/source/text/sbasic/shared.po
index 1f491952c91..9e801cd6300 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/shared.po
+++ b/source/en-GB/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-20 09:40+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po b/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po
index 5b51343397c..8891b4e138b 100644
--- a/source/en-GB/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/en-GB/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-03 21:17+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1549228678.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Functions and subroutines for module control."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/en-GB/helpcontent2/source/text/scalc/01.po b/source/en-GB/helpcontent2/source/text/scalc/01.po
index 9cf2e673b90..b269950a8eb 100644
--- a/source/en-GB/helpcontent2/source/text/scalc/01.po
+++ b/source/en-GB/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-04-10 09:08+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges</emph> box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range</emph> list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/schart/00.po b/source/en-GB/helpcontent2/source/text/schart/00.po
index a5117347aaf..880d525bc48 100644
--- a/source/en-GB/helpcontent2/source/text/schart/00.po
+++ b/source/en-GB/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-18 21:20+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1547846419.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">In the Chart Type dialogue box of a Line chart or X-Y chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">In the Chart Type dialogue box of a Line chart or X-Y chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/00.po b/source/en-GB/helpcontent2/source/text/shared/00.po
index 0dcc00f73a3..a461560fe07 100644
--- a/source/en-GB/helpcontent2/source/text/shared/00.po
+++ b/source/en-GB/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-10 09:10+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Choose <switchinline select=\"sys\"><caseinlin
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalisation</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/en-GB/helpcontent2/source/text/shared/01.po b/source/en-GB/helpcontent2/source/text/shared/01.po
index 1347ee8a30e..0f804264bed 100644
--- a/source/en-GB/helpcontent2/source/text/shared/01.po
+++ b/source/en-GB/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-10 09:12+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1554887579.000000\n"
#: 01010000.xhp
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/en-GB/helpcontent2/source/text/shared/02.po b/source/en-GB/helpcontent2/source/text/shared/02.po
index 5df76f50a8c..e46f09296ca 100644
--- a/source/en-GB/helpcontent2/source/text/shared/02.po
+++ b/source/en-GB/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-03 12:07+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1549195671.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/guide.po b/source/en-GB/helpcontent2/source/text/shared/guide.po
index a2b90e1d31e..5ffca582efc 100644
--- a/source/en-GB/helpcontent2/source/text/shared/guide.po
+++ b/source/en-GB/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-10 09:15+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/en-GB/helpcontent2/source/text/shared/optionen.po b/source/en-GB/helpcontent2/source/text/shared/optionen.po
index 3c6b07f309e..bd7bb05dd19 100644
--- a/source/en-GB/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-GB/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-13 22:15+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1550096140.000000\n"
#: 01000000.xhp
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalisation"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalisation;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalisation</bookmark_value> <bookmark_value>personalisation;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalisation</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalisation</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "You can personalise your %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar, and the toolbars docked in the top and bottom of the window will display the chosen theme in their background."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Firefox Themes:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "The following options are available:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Default look, do not use themes"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Preinstalled theme"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Own theme"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialogue box and pick your own.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Select Firefox Theme dialogue box"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "This dialogue box allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Search"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialogue’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Exploring themes by category"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/en-GB/helpcontent2/source/text/simpress/01.po b/source/en-GB/helpcontent2/source/text/simpress/01.po
index 05d2f0bbf55..e5578a1b971 100644
--- a/source/en-GB/helpcontent2/source/text/simpress/01.po
+++ b/source/en-GB/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-09 16:05+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/en-GB/helpcontent2/source/text/swriter/guide.po b/source/en-GB/helpcontent2/source/text/swriter/guide.po
index af51eebd6dc..44c4b3853a8 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-GB/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-13 09:07+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
index 61b6c6f4023..521528b7aba 100644
--- a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-08 17:22+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "More Fields"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Tabbed"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Groupedbar"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/en-GB/sc/messages.po b/source/en-GB/sc/messages.po
index 213804325da..a4bd6bfa23a 100644
--- a/source/en-GB/sc/messages.po
+++ b/source/en-GB/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-08 17:18+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(exclusive access)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,12 +15775,12 @@ msgstr "Manage Conditional Formatting"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Data Form"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Close"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "New Record"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_New"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Delete"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restore"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Previous Record"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Ne_xt Record"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Close"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Live Data Streams"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Enter the URL of the source document in the local file system or Internet here."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Browse..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Database Range:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Data Provider:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Search String:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Source Stream"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Results to:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Columns"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rows"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Grouped by"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parameters"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~File"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Specify the borders of the selected cells."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Increase Indent"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Decrease Indent"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Home"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fiel_d"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insert"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insert"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Layout"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Object Align"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Layout"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistics"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Review"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Review"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_View"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~View"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Object"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Object"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Print"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Print"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tools"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tools"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Search Results"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Sheet"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Cell"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Content"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Outline symbols"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Window"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Grid lines:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Colour:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Show"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Show on coloured cells"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Hide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Page breaks"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Helplines _while moving"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Visual Aids"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jects/Images:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Cha_rts:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Drawing objects:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Show"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Hide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Show"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Hide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Show"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Hide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objects"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_ynchronise sheets"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoom"
diff --git a/source/en-GB/scp2/source/ooo.po b/source/en-GB/scp2/source/ooo.po
index 1f82e934338..713d26d02bf 100644
--- a/source/en-GB/scp2/source/ooo.po
+++ b/source/en-GB/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-08 17:18+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1554743893.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Open Document"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/en-GB/scp2/source/winexplorerext.po b/source/en-GB/scp2/source/winexplorerext.po
index a168b3f2d88..6864ec6715d 100644
--- a/source/en-GB/scp2/source/winexplorerext.po
+++ b/source/en-GB/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 10:54+0200\n"
-"Last-Translator: Stuart <stuart.swales.croftnuisk@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 07:12+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369379529.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/en-GB/sd/messages.po b/source/en-GB/sd/messages.po
index 8fd2ad7def9..6bcf5707696 100644
--- a/source/en-GB/sd/messages.po
+++ b/source/en-GB/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-08 17:18+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Click to open hyperlink: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Name HTML Design"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_File"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~File"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Home"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fiel_d"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insert"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insert"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Page"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Page"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Review"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Review"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_View"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~View"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_ext"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~ext"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Table"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Table"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convert"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Object"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Object"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tools"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tools"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Show Shapes"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_File"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~File"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Home"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fiel_d"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insert"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insert"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "S_lide"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "S~lide"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Slide Show"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Slide Show"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Review"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Review"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_View"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~View"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Table"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Table"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convert"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Object"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Object"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tools"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tools"
diff --git a/source/en-GB/sfx2/messages.po b/source/en-GB/sfx2/messages.po
index 3f3cab4a5fb..34cb80eba6e 100644
--- a/source/en-GB/sfx2/messages.po
+++ b/source/en-GB/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-08 17:18+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@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: 1554743935.000000\n"
#: include/sfx2/strings.hrc:25
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Remove Property"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Style already exists. Overwrite?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Reset"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "This name is already in use."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "This Style does not exist."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Name already exists as a default Style.\n"
"Please choose another name."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"If you delete these styles, text will revert to the parent style.\n"
"Do you still wish to delete these styles?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Styles in use: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Faulty password confirmation"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Send"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Font"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Show previews"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "View Version Comment"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(no name set)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Style List"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarchical"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Fill Format Mode"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "New Style from Selection"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Styles actions"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Update Style"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Cancel Recording"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "The templates are being initialised for first-time usage."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"No default printer found.\n"
"Please choose a printer and try again."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Could not start printer.\n"
"Please check your printer configuration."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Printer busy"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (read-only)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Would you like to save the new settings in the\n"
"active document?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Should the new settings be saved\n"
"in the active document?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Would you like to save the new settings in the\n"
"active document?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"The document cannot be closed because a\n"
" print job is being carried out."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Please check the %PRODUCTNAME settings or your email program settings."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Error code is $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Error sending mail"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"You can also try to ignore the lock and open the file for editing."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Open ~Copy"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Open"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (repaired document)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "This document is not checked out on the server."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Help us make %PRODUCTNAME even better!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Get involved"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Your donations support our worldwide community."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Donate"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "This document is open in read-only mode."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "This PDF is open in read-only mode to allow signing the existing file."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "The classification label of this document is %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "This document must be classified before the clipboard can be pasted."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "This document has a lower classification level than the clipboard."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Level"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "National Security:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Export Control:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Check Out"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Edit Document"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Sign Document"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "This document has an invalid signature."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "The signature was valid, but the document has been modified"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "The signature is OK, but the certificate could not be validated."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "The signature is OK, but the document is only partially signed."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "The certificate could not be validated and the document is only partially signed."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "This document is digitally signed and the signature is valid."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Show Signatures"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Close Pane"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Dock"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Undock"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "More Options"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Close Sidebar Deck"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Sidebar Settings"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Customisation"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restore Default"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Close Sidebar"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Beehive"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blue Curve"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blueprint Plans"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Bright Blue"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Classy Red"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Forestbird"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lights"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Lush Green"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Midnightblue"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Nature Illustration"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pencil"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progress"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sunset"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivid"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resume"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Default"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modern business letter sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modern business letter serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Businesscard with logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Remove"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Clear All"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Password length"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Version comment:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Name"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Type"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Value"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Yes"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "No"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Add _Property"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Name"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Value"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Location:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Type:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Change _Password"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Template:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Properties of “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "General "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Description"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Custom Properties"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS Properties"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Security"
@@ -2303,6 +2293,26 @@ msgstr ""
"\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."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/en-GB/shell/messages.po b/source/en-GB/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/en-GB/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/en-GB/starmath/messages.po b/source/en-GB/starmath/messages.po
index 700b60bdb61..f6a879eee27 100644
--- a/source/en-GB/starmath/messages.po
+++ b/source/en-GB/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Examples"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Italic"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Bold"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "black"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blue"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "green"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "red"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grey"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lime"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "maroon"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "navy"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olive"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purple"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silver"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "teal"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "yellow"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "hide"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "size"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "left"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "right"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Commands"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Saving document..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Unexpected character"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Unexpected token"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' expected"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' expected"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' expected"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' expected"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Left and right symbols mismatched"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', or 'serif' expected"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' followed by an unexpected token"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Double aligning is not allowed"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Double sub/superscripts is not allowed"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' expected"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Colour required"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' expected"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contents"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Title"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formula text"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~orders"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Size"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "O~riginal size"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Fit to ~page"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Scaling"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elements"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/en-GB/svtools/messages.po b/source/en-GB/svtools/messages.po
index 614cce1568a..3cc89983434 100644
--- a/source/en-GB/svtools/messages.po
+++ b/source/en-GB/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-08 17:19+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554743951.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Undo: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Re~do: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repeat: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Unformatted text"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Unformatted text (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap Image (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME drawing format"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmap/animation (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info from Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape Bookmark"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server format"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star object format"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet object"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Plug-in object"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 object"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 object"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 object"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 object"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 object"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 object"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 object"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw object"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 object"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 object"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 object"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc object"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 object"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 object"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart object"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 object"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage object"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 object"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 object"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath object"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 object"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 object"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint object"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word object"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet object"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office document object"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes document info"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx document"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Graphic object"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer object"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web object"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master object"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw object"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress object"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc object"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart object"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math object"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metafile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Data source object"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Data source table"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL query"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dialog"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Link"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML format without comments"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Object % could not be inserted."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Object from file % could not be inserted."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Further objects"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Unknown source"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Name"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Size"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Date modified"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Type"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Row: %1, Column: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Type: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Folder"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "File"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Empty Field"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Character set"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionary"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Phone book"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonetic (alphanumeric first)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonetic (alphanumeric last)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionary"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonetic (alphanumeric first, grouped by syllables)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonetic (alphanumeric first, grouped by consonants)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonetic (alphanumeric last, grouped by syllables)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonetic (alphanumeric last, grouped by consonants)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Today"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "None"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Light"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Light Italic"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Regular"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Italic"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Bold"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Bold Italic"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Black"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Black Italic"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Book"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Bold Oblique"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensed"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensed Bold"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensed Bold Italic"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensed Bold Oblique"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensed Italic"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensed Oblique"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "ExtraLight"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "ExtraLight Italic"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblique"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semibold"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semibold Italic"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "The same font will be used on both your printer and your screen."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "This is a printer font. The screen image may differ."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "This font style will be simulated or the closest matching style will be used."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "This font has not been installed. The closest available font will be used."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Browse..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Move To Home"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Move Left"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Move Right"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Move To End"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Add"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontal Ruler"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertical Ruler"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit threshold"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit dithered"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bit greyscale"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bit colour"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bit greyscale"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bit colour"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bit true colour"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "The image needs about %1 KB of memory."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "The image needs about %1 KB of memory, the file size is %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "The file size is %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Other CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Ready"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Paused"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Pending deletion"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Busy"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialising"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Waiting"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Warming up"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Processing"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Printing"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Off-line"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Unknown Server"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paper jam"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Not enough paper"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manual feed"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Paper problem"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O active"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Output bin full"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner low"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "No toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Delete Page"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "User intervention necessary"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Insufficient memory"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Cover open"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Power save mode"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Default printer"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Finish"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Next >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Bac~k"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Steps"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Company"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Department"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Forename"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Surname"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Street"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Country"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postcode"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Post town"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Title"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Position"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Addr. Form"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initials"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Complimentary close"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: Home"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: Work"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Email"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Note"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "User 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "User 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "User 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "User 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "County"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: Office"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobile"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: Other"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendar"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invite"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE Required"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Select JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE is Defective"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Source code"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Bookmark file"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Graphics"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Configuration file"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Application"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Database table"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "System file"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Microsoft Word document"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Help file"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML document"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archive file"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Log file"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice Database"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Master Document"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Image"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Text file"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Link"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Template"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Microsoft Excel document"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Microsoft Excel template"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch file"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "File"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Folder"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Text Document"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Spreadsheet"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentation"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Drawing"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML document"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Master document"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Database"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 Spreadsheet Template"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 Drawing Template"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 Presentation Template"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 Text Document Template"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Local drive"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disc drive"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM drive"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Network connection"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Microsoft PowerPoint Document"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Microsoft PowerPoint Template"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Microsoft PowerPoint Show"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 Formula"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Drawing"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Spreadsheet"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 Presentation"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Text Document"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 Master Document"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML Document"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument Database"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Drawing"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formula"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Master Document"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument Presentation"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Spreadsheet"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Text"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Spreadsheet Template"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Drawing Template"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Presentation Template"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Text Template"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Extension"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell SpellChecker"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen Hyphenator"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes Thesaurus"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "List of Ignored Words"
diff --git a/source/en-GB/svx/messages.po b/source/en-GB/svx/messages.po
index ce346ec7779..aa675e06eac 100644
--- a/source/en-GB/svx/messages.po
+++ b/source/en-GB/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-08 17:19+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Left-to-right (vertical)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Specify the vertical offset percentage from the centre for the gradient shading style. 50% is the vertical centre."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Contour Editor"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Apply"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Workspace"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Select"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Edit Points"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Move Points"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insert Points"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Delete Points"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoContour"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Undo "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Redo"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipette"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Colour Tolerance"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Footer"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ImageMap Editor"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Apply"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Open..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Save..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Close"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Select"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Freeform Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Edit Points"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Move Points"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insert Points"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Delete Points"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Undo "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Redo"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Active"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Properties..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Address:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Frame:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Text:"
diff --git a/source/en-GB/sw/messages.po b/source/en-GB/sw/messages.po
index 5a1c26bc251..f22f4a14f42 100644
--- a/source/en-GB/sw/messages.po
+++ b/source/en-GB/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-04-08 17:21+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Change object title of $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Change object description of $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~File"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Home"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insert"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insert"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Layout"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Reference_s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Reference~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Review"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Review"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_View"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~View"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Table"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Table"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Draw"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Draw"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Object"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Object"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Print"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Print"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tools"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Tools"
@@ -12160,152 +12160,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_File"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Insert"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Wrap"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Layout"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Reference_s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Review"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_View"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_able"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Image"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "D_raw"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Object"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Print"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tools"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13372,8 +13372,8 @@ msgstr "Expand word space on lines with manual line breaks in justified paragrap
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Table of Contents, Index or Bibliography"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Preview"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Preview"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Type"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entries"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Styles"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Columns"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Background"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Preview"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Level"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Type"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Edit..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Title:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Type:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Table of Contents"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Alphabetical Index"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Table of Figures"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Index of Tables"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "User-defined"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Table of Objects"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliography"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protected against manual changes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Type and Title"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "For:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Entire document"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Chapter"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evaluate up to level:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Create Index or Table of Contents"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Outline"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Inde_x marks"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tables"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Te_xt frames"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Graphics"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE objects"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Use level from source chapter"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Additional styles"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Styl_es"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Assign styles..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Captions"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Object names"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Category:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Display:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "References"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Category and Number"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Caption Text"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Create From"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Create From the Following Objects"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Brackets:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Number entries"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[none]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatting of the Entries"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Combine identical entries"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Combine identical entries with p or _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Combine with -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Case-sensitive"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "AutoCapitalise entries"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Keys as separate entries"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Concordance file"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_File"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Options"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Language:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Key type:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sort"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Levels"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Paragraph _Styles"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Default"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Edit"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Assignment"
diff --git a/source/en-ZA/cui/messages.po b/source/en-ZA/cui/messages.po
index 4152f588dcb..4612e06c2c0 100644
--- a/source/en-ZA/cui/messages.po
+++ b/source/en-ZA/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1664,107 +1664,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Set No Borders"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Set Outer Border Only"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Set Outer Border and Horizontal Lines"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Set Outer Border and All Inner Lines"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Set Outer Border Without Changing Inner Lines"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Set Diagonal Lines Only"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Set All Four Borders"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Set Left and Right Borders Only"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Set Top and Bottom Borders Only"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Set Left Border Only"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Set Top and Bottom Borders, and All Inner Lines"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Set Left and Right Borders, and All Inner Lines"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "No Shadow"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Cast Shadow to Bottom Right"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Cast Shadow to Top Right"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Cast Shadow to Bottom Left"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Cast Shadow to Top Left"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1807,7 +1802,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1927,7 +1922,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2167,7 +2162,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2422,12 +2417,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2497,7 +2492,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2577,7 +2572,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2818,7 +2813,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3450,68 +3445,73 @@ msgid "About %PRODUCTNAME"
msgstr "About %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "myWebsite"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3636,19 +3636,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Replace"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Replace"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Width"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4518,6 +4518,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5694,29 +5854,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Properties"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Frame:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Name"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9504,86 +9664,86 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME Dialogues"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME Dialogues"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document Name\tStatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Load %PRODUCTNAME During System Start-Up"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Disable systray Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11547,24 +11707,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12229,102 +12374,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13397,27 +13446,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/en-ZA/extensions/messages.po b/source/en-ZA/extensions/messages.po
index 9c52e30798f..2a40c9318f0 100644
--- a/source/en-ZA/extensions/messages.po
+++ b/source/en-ZA/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3240,191 +3240,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Column Layout for Table %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Short name"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Author(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Publisher"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Chapter"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Year"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Title"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Address"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pa~ge(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed~ition"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~Book title"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Publication t~ype"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi~sation"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit~ution"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "University"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Type of re~port"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Month"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Journal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Number"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se~ries"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Ann~otation"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Note"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "User-defined field ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "User-defined field ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "User-defined field ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "User-defined field ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "User-defined field ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3606,31 +3606,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Link fields"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suggest"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Label"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/en-ZA/helpcontent2/source/auxiliary.po b/source/en-ZA/helpcontent2/source/auxiliary.po
index 423af8bc8e9..7284e4e53ac 100644
--- a/source/en-ZA/helpcontent2/source/auxiliary.po
+++ b/source/en-ZA/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "Toolbars"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menus"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Toolbars"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,17 +699,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/guide.po b/source/en-ZA/helpcontent2/source/text/sbasic/guide.po
index 9dcc2512e36..532b40d7995 100644
--- a/source/en-ZA/helpcontent2/source/text/sbasic/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Opening a Dialogue With Program Code"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>module/dialogue toggle</bookmark_value><bookmark_value>dialogues;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialogue using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/python.po b/source/en-ZA/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/en-ZA/helpcontent2/source/text/sbasic/python.po
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
index 780935ec63f..20f2a38f3e5 100644
--- a/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po b/source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po
index b86e29b5103..aa235ae8f15 100644
--- a/source/en-ZA/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/en-ZA/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/en-ZA/helpcontent2/source/text/scalc/01.po b/source/en-ZA/helpcontent2/source/text/scalc/01.po
index 6ac4b686ac6..e66189959ef 100644
--- a/source/en-ZA/helpcontent2/source/text/scalc/01.po
+++ b/source/en-ZA/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/schart/00.po b/source/en-ZA/helpcontent2/source/text/schart/00.po
index 1092d2e9b5c..ca72f41cd31 100644
--- a/source/en-ZA/helpcontent2/source/text/schart/00.po
+++ b/source/en-ZA/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/00.po b/source/en-ZA/helpcontent2/source/text/shared/00.po
index a9a685dc629..a24dd3017b4 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/00.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/en-ZA/helpcontent2/source/text/shared/01.po b/source/en-ZA/helpcontent2/source/text/shared/01.po
index bcc4486302b..e582215ff4a 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/01.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/en-ZA/helpcontent2/source/text/shared/02.po b/source/en-ZA/helpcontent2/source/text/shared/02.po
index 446fbf7ce53..ccbcc2f8ef1 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/02.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/shared/guide.po b/source/en-ZA/helpcontent2/source/text/shared/guide.po
index e17a44de466..e52442b9922 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/en-ZA/helpcontent2/source/text/shared/optionen.po b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
index 9e6b1650b2e..5051698c415 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/en-ZA/helpcontent2/source/text/simpress/01.po b/source/en-ZA/helpcontent2/source/text/simpress/01.po
index 7fc11ede625..fab9ee8c97a 100644
--- a/source/en-ZA/helpcontent2/source/text/simpress/01.po
+++ b/source/en-ZA/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/guide.po b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
index 8e396d14fb6..3533107acf5 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "On the <emph>Standard Bar</emph>, click the<emph> Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
index 796f2050278..51efc8884eb 100644
--- a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23732,6 +23732,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26102,6 +26111,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26120,6 +26138,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/en-ZA/sc/messages.po b/source/en-ZA/sc/messages.po
index 5e92d8b4017..1e3dfb2de95 100644
--- a/source/en-ZA/sc/messages.po
+++ b/source/en-ZA/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15639,6 +15639,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16211,12 +16216,12 @@ msgstr "Conditional Formatting"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17523,90 +17528,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "~Close"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "New Record"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "New"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Delete"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Restore"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Previous Record"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Next Record"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "~Close"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Browse..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Database Ranges"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19411,36 +19373,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Column"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Row"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Grouped by: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19587,167 +19554,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22388,17 +22357,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24394,111 +24373,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~Window"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Show"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Hide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Pagebreak"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Charts"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Drawing objects"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Show"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Hide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Show"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Hide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Show"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Hide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objects"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoom"
diff --git a/source/en-ZA/scp2/source/ooo.po b/source/en-ZA/scp2/source/ooo.po
index f329f2b2175..c987d103533 100644
--- a/source/en-ZA/scp2/source/ooo.po
+++ b/source/en-ZA/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Open Document"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/en-ZA/scp2/source/winexplorerext.po b/source/en-ZA/scp2/source/winexplorerext.po
index 91791cbecc8..c2bdce09d55 100644
--- a/source/en-ZA/scp2/source/winexplorerext.po
+++ b/source/en-ZA/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 21:56+0200\n"
-"Last-Translator: dwayne <dwayne@translate.org.za>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:13+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_ZA\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369350824.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/en-ZA/sd/messages.po b/source/en-ZA/sd/messages.po
index 114105ac792..efdca76b736 100644
--- a/source/en-ZA/sd/messages.po
+++ b/source/en-ZA/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2636,6 +2636,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3112,164 +3117,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4757,160 +4947,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/en-ZA/sfx2/messages.po b/source/en-ZA/sfx2/messages.po
index ddf9930b4fb..06178461ebb 100644
--- a/source/en-ZA/sfx2/messages.po
+++ b/source/en-ZA/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -910,11 +910,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Remove Property"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -924,28 +919,28 @@ msgstr ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "The file already exists. Overwrite?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Reset"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "This name is already in use."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "This Style does not exist."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -955,7 +950,7 @@ msgstr ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -964,7 +959,7 @@ msgstr ""
"Name already exists as a default Style.\n"
"Please choose another name."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -972,97 +967,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Faulty password confirmation"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Send"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Font"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Insert Version Comment"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Styles"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarchical"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Fill Format Mode"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "New Style from Selection"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "~Update Styles"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Cancel Recording"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "The templates are being initialised for first-time usage."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1071,7 +1066,7 @@ msgstr ""
"No default printer found.\n"
"Please choose a printer and try again."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1080,17 +1075,17 @@ msgstr ""
"Could not start printer.\n"
"Please check your printer configuration."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Printer busy"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (read-only)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1101,7 +1096,7 @@ msgstr ""
"Would you like to save the new settings in the\n"
"active document?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1112,7 +1107,7 @@ msgstr ""
"Should the new settings be saved\n"
"in the active document?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1123,7 +1118,7 @@ msgstr ""
"Would you like to save the new settings in the\n"
"active document?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1133,7 +1128,7 @@ msgstr ""
"The document cannot be closed because a\n"
" print job is being carried out."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1141,7 +1136,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1149,18 +1144,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1168,353 +1163,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (repaired document)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Edit document"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "File Document"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Dock"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Undock"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "More ~Options"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Custom Animation"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Remove"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1887,32 +1892,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Version comment"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Name"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Type"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Value"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Yes"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "No"
@@ -1922,17 +1912,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Name"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Value"
@@ -2072,19 +2062,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Location:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Type:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Change ~Password..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2095,28 +2085,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "General"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Description"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2342,6 +2332,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/en-ZA/shell/messages.po b/source/en-ZA/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/en-ZA/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/en-ZA/starmath/messages.po b/source/en-ZA/starmath/messages.po
index 73a2c2c1c56..99120570e7f 100644
--- a/source/en-ZA/starmath/messages.po
+++ b/source/en-ZA/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1672,278 +1672,303 @@ msgid "Examples"
msgstr "Example"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Italic"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Bold"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "black"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Blue"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Green"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "Cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "Magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Grey"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Time"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "Yellow"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Hide"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "Size"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Font"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "left"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Centre"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "right"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Commands"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Saving document..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Unexpected character"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' expected"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' expected"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' expected"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' expected"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' expected"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Colour required"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' expected"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contents"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Title"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formula text"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Borders"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Size"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Original size"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Fit to page"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2016,6 +2041,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "element"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/en-ZA/svtools/messages.po b/source/en-ZA/svtools/messages.po
index dbc41807c52..a8b9f091f1c 100644
--- a/source/en-ZA/svtools/messages.po
+++ b/source/en-ZA/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1539 +16,1541 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195396.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Undo: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Re~do: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repeat: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Unformatted text"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info from Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape Bookmark"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server format"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star object format"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet object"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Plug-in object"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 object"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 object"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 object"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 object"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 object"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 object"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 object"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw object"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 object"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 object"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 object"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc object"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 object"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 object"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart object"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 object"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage object"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 object"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 object"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath object"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 object"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 object"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint object"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word object"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet object"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office document object"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes document info"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx document"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Graphic object"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metafile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Data source object"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Data source table"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL query"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Link"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML format without comments"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Object % could not be inserted."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Object from file % could not be inserted."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Further objects"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Unknown source"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Name"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Size"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Date modified"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Type"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Row: %1, Column: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Type: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Folder"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "File"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Empty Field"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Character set"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionary"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Phone book"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonetic (alphanumeric first)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonetic (alphanumeric last)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumeric"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionary"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonetic (alphanumeric first, grouped by syllables)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonetic (alphanumeric first, grouped by consonants)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonetic (alphanumeric last, grouped by syllables)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonetic (alphanumeric last, grouped by consonants)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Today"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "None"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Light"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Light Italic"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Regular"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Italic"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Bold"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Bold Italic"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Black"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Black Italic"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Book"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensed"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "semi bold"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "The same font will be used on both your printer and your screen."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "This is a printer font. The screen image may differ."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "This font style will be simulated or the closest matching style will be used."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "This font has not been installed. The closest available font will be used."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Browse..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Move Comment"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Move Left"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Move Right"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Move down"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Add"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontal out"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertical Ruler"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit threshold"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit dithered"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bit greyscale"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
#, fuzzy
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bit colour"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bit greyscale"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
#, fuzzy
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bit colour"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bit true colour"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "The file size is %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Cost"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Sort"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pause"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialising..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Waiting"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "D~elete Page"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Insufficient memory."
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Default printer"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Word documents"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Finish"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Next >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Bac~k"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Steps"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Company"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Department"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "First name"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Surname"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Street"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Country"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postal Code"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "City"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Title"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Position"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Addr. Form"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initials"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Complimentary close"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: Home"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: Work"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Note"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "User 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "User 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "User 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "User 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Province"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: Office"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Cellphone"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: Other"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendar"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invite"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE Required"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Select JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE is Defective"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Source code"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Bookmark file"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Graphics"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Configuration file"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Application"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Database table"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "System file"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word document"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Help file"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML document"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archive file"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Log file"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 Template"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Master Document"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 Template"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Text file"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Link"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Template"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel document"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel template"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch file"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "File"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Folder"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Text Document"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Spreadsheet"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentation"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Drawing"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML document"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Master document"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Database"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Local drive"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk drive"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM drive"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Network connection"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint Document"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint Template"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML Document"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument Database"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Drawing"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formula"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Master Document"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument Presentation"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Spreadsheet"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Text"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Spreadsheet Template"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Drawing Template"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Presentation Template"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Text Template"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Extension"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/en-ZA/svx/messages.po b/source/en-ZA/svx/messages.po
index cfee369a562..93ec39952a4 100644
--- a/source/en-ZA/svx/messages.po
+++ b/source/en-ZA/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8064,6 +8064,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12600,87 +12605,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Contour Editor"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Apply"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Workspace"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Select"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Edit Points"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Move Points"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insert Points"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Delete Points"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoContour"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Undo "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Red"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13018,123 +13028,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Footer"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ImageMap Editor"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Apply"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Open..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Save..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Close"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Select"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Freeform Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Edit Points"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Move Points"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insert Points"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Delete Points"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Undo "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Red"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Active"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Properties: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Address:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Frame"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/en-ZA/sw/messages.po b/source/en-ZA/sw/messages.po
index ba4f624dcca..86b714ffe53 100644
--- a/source/en-ZA/sw/messages.po
+++ b/source/en-ZA/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3219,9 +3219,9 @@ msgid "Change object title of $1"
msgstr "Change object title of $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Change object description of $1"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12712,147 +12712,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12862,152 +12862,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14119,7 +14119,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17656,50 +17656,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Preview"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Preview"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Type"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "~Entries"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Styles"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Columns"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Background"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Preview"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Level"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17944,325 +17944,325 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Edit..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Title:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Type"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Table Contents"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "User Defined"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliography 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Form"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~Entire document"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Chapter"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Outline"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tables"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Text frames"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Graphics"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE objects"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Conditional Styles"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Styles"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Options"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Object name"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Category"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Display"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "References"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Category and Number"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Caption Text"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Brackets"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[None]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "File"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Options"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Language"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Key type"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sort"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Level"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(Paragraph Style: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Default"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Edit"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/eo/basctl/messages.po b/source/eo/basctl/messages.po
index 5d821dc0b43..be7db745741 100644
--- a/source/eo/basctl/messages.po
+++ b/source/eo/basctl/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-01-31 02:30+0000\n"
+"PO-Revision-Date: 2019-05-19 03:58+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1548901803.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558238281.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -425,22 +425,22 @@ msgstr "Paĝoj:"
#: basctl/inc/strings.hrc:101
msgctxt "RID_STR_PRINTDLG_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "Ĉiuj paĝoj"
#: basctl/inc/strings.hrc:102
msgctxt "RID_STR_PRINTDLG_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "Paĝoj:"
#: basctl/inc/strings.hrc:103
msgctxt "RID_STR_PRINTDLG_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "Paraj paĝoj"
#: basctl/inc/strings.hrc:104
msgctxt "RID_STR_PRINTDLG_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "Neparaj paĝoj"
#: basctl/inc/strings.hrc:105
msgctxt "RID_STR_CHOOSE"
@@ -551,12 +551,12 @@ msgstr "Redakti"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:363
msgctxt "basicmacrodialog|delete"
msgid "_Delete"
-msgstr ""
+msgstr "Forigi"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:377
msgctxt "basicmacrodialog|new"
msgid "_New"
-msgstr ""
+msgstr "Nova"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:391
msgctxt "basicmacrodialog|organize"
diff --git a/source/eo/cui/messages.po b/source/eo/cui/messages.po
index dd80a34a973..f16fd3925c2 100644
--- a/source/eo/cui/messages.po
+++ b/source/eo/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-03-09 20:33+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-19 05:33+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\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: 1552163608.000000\n"
+"X-POOTLE-MTIME: 1558244026.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Bonvolu enigi validan temadreson aŭ serĉotan termon."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Ne meti borderojn"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Ŝalti nur eksteran borderon"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Ŝalti eksteran borderon kaj horizontalajn liniojn"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Ŝalti eksteran borderon kaj ĉiujn enajn liniojn"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Ŝalti eksteran borderon neŝanĝante enajn liniojn"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Ŝalti nur diagonalajn liniojn"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Ŝalti la kvar borderojn"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Ŝalti nur la maldekstran kaj dekstran borderojn"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Ŝalti nur supran kaj malsupran borderojn"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Ŝalti nur maldekstran borderon"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Ŝalti supran kaj malsupran borderojn kaj ĉiujn enajn liniojn"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Ŝalti maldekstran kaj dekstran borderojn kaj ĉiujn enajn liniojn"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Sen ombro"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Ombrigi malsupren dekstren"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Ombrigi supren dekstren"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Ombrigi malsupren maldekstren"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Ombrigi supren maldekstren"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Subskribis: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Ĉiuj dosieroj"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Pri %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Agnoskoj"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Retejo"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Lokaĵo: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Interfaca lingvo: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Vidi protokolon: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME estas moderna, facile uzebla, libera oficeja programaro por tekstverkado, kalkultabeloj, prezentaĵoj, kaj pli."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Kopirajto © 2000 - 2019 LibreOffice-kontribuintoj."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice estas bazita sur OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME estas derivaĵo de LibreOffice kiu estas bazita sur OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Ĉi tiun eldonon liveris %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Anstataŭigi"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Anstataŭigi"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Per:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Nur teksto"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimuma vortlongo"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Atributoj"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Kadro:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Nomo:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternativa teksto:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Priskribo:"
@@ -9019,80 +9179,80 @@ msgstr "Vidigi ŝprucfenestron \"Eksterreta helpo ne instalita\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Helpo"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Uzi %PRODUCTNAME-dialogojn"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Malfermi/Konservi dialogojn"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Uzi dialogojn de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Presaj dialogoj"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Preso agordas staton \"dokumento modifita\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumenta stato"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpreti kiel jarojn inter "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "kaj "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jaro (du ciferoj)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kolekti uzinformon kaj sendi ĝin al The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Helpi plibonigi je %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Ŝargi je %PRODUCTNAME dum sistemstarto"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Enŝalti sistempletan Rapidstartilon"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Rapidstartilo"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Antaŭinstalita etoso"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Propra etoso"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Ŝargi Firefox-temon"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Aŭ, elekti el la etosoj instalitaj per aldonaĵoj:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Etosoj de Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Sekureca agordaro"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Elekti Firefox-etoso"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Serĉa termino aŭ adreso"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Kategorio:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstraktismo"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Kaŭzoj"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Modo"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Filmo kaj televido"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Ferio"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Muziko"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Naturo"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Alia"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Pejzaĝo"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Sezona"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Solida"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sporto"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Retejoj"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Elstarigita"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/eo/dbaccess/messages.po b/source/eo/dbaccess/messages.po
index fb3ba20b612..a3b44241a16 100644
--- a/source/eo/dbaccess/messages.po
+++ b/source/eo/dbaccess/messages.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: 2019-04-24 18:25+0200\n"
-"PO-Revision-Date: 2019-01-31 02:35+0000\n"
+"PO-Revision-Date: 2019-05-19 03:57+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1548902127.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558238250.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1597,7 +1597,7 @@ msgstr "Eraro dum kreado"
#: dbaccess/inc/strings.hrc:341
msgctxt "STR_UNEXPECTED_ERROR"
msgid "An error occurred. The operation could not be performed."
-msgstr ""
+msgstr "Eraro okazis. La operacio ne povis esti plenumita."
#: dbaccess/inc/strings.hrc:342
msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
diff --git a/source/eo/extensions/messages.po b/source/eo/extensions/messages.po
index 7eb1bf66c21..2e3d1d9d698 100644
--- a/source/eo/extensions/messages.po
+++ b/source/eo/extensions/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-03-08 20:26+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-19 03:56+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\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: 1552076788.000000\n"
+"X-POOTLE-MTIME: 1558238214.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -1718,62 +1718,62 @@ msgstr "(Apriora)"
#: extensions/inc/strings.hrc:244
msgctxt "RID_STR_URL"
msgid "URL"
-msgstr ""
+msgstr "URL"
#: extensions/inc/strings.hrc:245
msgctxt "RID_STR_SELECTIONMODEL"
msgid "Selection Type"
-msgstr ""
+msgstr "Tipo de elektaĵo"
#: extensions/inc/strings.hrc:246
msgctxt "RID_STR_USEGRIDLINE"
msgid "Use grid line"
-msgstr ""
+msgstr "Uzi kradliniojn"
#: extensions/inc/strings.hrc:247
msgctxt "RID_STR_GRIDLINECOLOR"
msgid "Grid line color"
-msgstr ""
+msgstr "Koloro de kradlinio"
#: extensions/inc/strings.hrc:248
msgctxt "RID_STR_SHOWCOLUMNHEADER"
msgid "Show column header"
-msgstr ""
+msgstr "Vidigi kolumnan titolon"
#: extensions/inc/strings.hrc:249
msgctxt "RID_STR_SHOWROWHEADER"
msgid "Show row header"
-msgstr ""
+msgstr "Vidigi vican titolon"
#: extensions/inc/strings.hrc:250
msgctxt "RID_STR_HEADERBACKGROUNDCOLOR"
msgid "Header background color"
-msgstr ""
+msgstr "Fona koloro de la paĝokapo"
#: extensions/inc/strings.hrc:251
msgctxt "RID_STR_HEADERTEXTCOLOR"
msgid "Header text color"
-msgstr ""
+msgstr "Teksta koloro de la paĝokapo"
#: extensions/inc/strings.hrc:252
msgctxt "RID_STR_ACTIVESELECTIONBACKGROUNDCOLOR"
msgid "Active selection background color"
-msgstr ""
+msgstr "Fona koloro de la aktiva elektaĵo"
#: extensions/inc/strings.hrc:253
msgctxt "ID_STR_ACTIVESELECTIONTEXTCOLOR"
msgid "Active selection text color"
-msgstr ""
+msgstr "Teksta koloro de la aktiva elektaĵo"
#: extensions/inc/strings.hrc:254
msgctxt "RID_STR_INACTIVESELECTIONBACKGROUNDCOLOR"
msgid "Inactive selection background color"
-msgstr ""
+msgstr "Fona koloro de la neaktiva elektaĵo"
#: extensions/inc/strings.hrc:255
msgctxt "RID_STR_INACTIVESELECTIONTEXTCOLOR"
msgid "Inactive selection text color"
-msgstr ""
+msgstr "Teksta koloro de la neaktiva elektaĵo"
#: extensions/inc/strings.hrc:256
msgctxt "RID_STR_STANDARD"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Kolumna aranĝo por tabelo %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Mallonga nomo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Aŭtoro(j)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Eldonisto"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Ĉapitro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Redaktinto"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Tipo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Jaro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Titolo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Adreso"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Paĝo(j)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Eldono"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Titolo de libro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volumo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Eldona tipo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organizo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Institucio"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Universitato"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tipo de raporto"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Monato"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Gazeto"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Numero"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Serio"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Prinoto"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Noto"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Propre difinita kampo _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Propre difinita kampo _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Propre difinita kampo _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Propre difinita kampo _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Propre difinita kampo _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Kolumnaj nomoj"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Tajpu nomon por la nova datuma tipo:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Ligi kampojn"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Proponi"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Subformularoj estas uzeblaj por vidigi detalajn datumojn pri la aktuala rikordo de la ĉefa formularo. Por fari tion, specifu kiuj kolumnoj en la subformularo kongruas kun kiuj kolumnoj en la ĉefa formularo."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etikedo"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etikedo"
diff --git a/source/eo/filter/messages.po b/source/eo/filter/messages.po
index fde9f8cbcac..ee2410e3b97 100644
--- a/source/eo/filter/messages.po
+++ b/source/eo/filter/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2017-11-22 16:15+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-19 03:51+0000\n"
+"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511367303.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558237894.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_UNKNOWN_APPLICATION"
@@ -423,12 +423,12 @@ msgstr "Faciligas redakti ĉi tiun PDF en %PRODUCTNAME"
#: filter/uiconfig/ui/pdfgeneralpage.ui:466
msgctxt "pdfgeneralpage|pdfa"
msgid "Archive P_DF/A-2b (ISO 19005-2)"
-msgstr ""
+msgstr "Arĥivo P_DF/A-2b (ISO 19005-2)"
#: filter/uiconfig/ui/pdfgeneralpage.ui:470
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
msgid "Creates an ISO 19005-2 compliant PDF file, ideal for long-term document preservation"
-msgstr ""
+msgstr "Kreas PDF-dosieron kongruan kun ISO 19005-2, idealan por longdaŭra dokumenta konservado"
#: filter/uiconfig/ui/pdfgeneralpage.ui:482
msgctxt "pdfgeneralpage|tagged"
@@ -493,7 +493,7 @@ msgstr "Eksporti lokokupilojn"
#: filter/uiconfig/ui/pdfgeneralpage.ui:609
msgctxt "pdfgeneralpage|comments"
msgid "_Comments as PDF annotations"
-msgstr ""
+msgstr "Komentoj kiel PDF-prinotaĵoj"
#: filter/uiconfig/ui/pdfgeneralpage.ui:624
msgctxt "pdfgeneralpage|emptypages"
@@ -1023,12 +1023,12 @@ msgstr "XML-filtrilaj agordoj"
#: filter/uiconfig/ui/xmlfiltersettings.ui:103
msgctxt "xmlfiltersettings|header_name"
msgid "Name"
-msgstr ""
+msgstr "Nomo"
#: filter/uiconfig/ui/xmlfiltersettings.ui:116
msgctxt "xmlfiltersettings|header_type"
msgid "Type"
-msgstr ""
+msgstr "Tipo"
#: filter/uiconfig/ui/xmlfiltersettings.ui:144
msgctxt "xmlfiltersettings|new"
diff --git a/source/eo/helpcontent2/source/auxiliary.po b/source/eo/helpcontent2/source/auxiliary.po
index 98376a421ee..5008f020e2a 100644
--- a/source/eo/helpcontent2/source/auxiliary.po
+++ b/source/eo/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-11 20:04+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Ĝenerala informo"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Prezentaĵoj kaj desegnaĵoj (Prezentilo/Desegnilo)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Ilobretoj"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Desegnaĵoj (%PRODUCTNAME-Desegnilo)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menuoj"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Ilobretoj"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objektoj, grafikoj, kaj bitbildoj"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupoj kaj tavoloj"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Teksto en prezentaĵoj kaj desegnaĵoj"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/sbasic/guide.po b/source/eo/helpcontent2/source/text/sbasic/guide.po
index d4a0895bb6c..f167b64fe33 100644
--- a/source/eo/helpcontent2/source/text/sbasic/guide.po
+++ b/source/eo/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-07 20:44+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Komparu Access2Base kun Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,15 +541,15 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Malfermi dialogon per programa kodo"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
msgstr ""
#: show_dialog.xhp
diff --git a/source/eo/helpcontent2/source/text/sbasic/python.po b/source/eo/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/eo/helpcontent2/source/text/sbasic/python.po
+++ b/source/eo/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/eo/helpcontent2/source/text/sbasic/shared.po b/source/eo/helpcontent2/source/text/sbasic/shared.po
index 72ba0fc16f3..e4031825814 100644
--- a/source/eo/helpcontent2/source/text/sbasic/shared.po
+++ b/source/eo/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">Helpo de %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/sbasic/shared/03.po b/source/eo/helpcontent2/source/text/sbasic/shared/03.po
index 5c71f289c10..e246beb3948 100644
--- a/source/eo/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/eo/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/eo/helpcontent2/source/text/scalc/01.po b/source/eo/helpcontent2/source/text/scalc/01.po
index 252d0842a7a..eb642efe051 100644
--- a/source/eo/helpcontent2/source/text/scalc/01.po
+++ b/source/eo/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-03-07 20:44+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Serĉi la dosieron kiu enhavas la datumojn enmetotajn.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Elektu la tabelon aŭ ĉelaron enmetotan.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Agordas la ĉelaron kunfandotan kun la ĉelarojn listigitajn en la kadro <emph>Kunfandotaj ĉelaroj </emph>. Elektu la ĉelaron en folio, kaj alklaku al <emph>Aldoni</emph>. Vi ankaŭ povas elekti la nomon de jam agordita ĉelaro el la listo <emph>Fonta datuma amplekso </emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/eo/helpcontent2/source/text/schart/00.po b/source/eo/helpcontent2/source/text/schart/00.po
index 67da9a13513..71ae5f9cf6a 100644
--- a/source/eo/helpcontent2/source/text/schart/00.po
+++ b/source/eo/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/eo/helpcontent2/source/text/shared/00.po b/source/eo/helpcontent2/source/text/shared/00.po
index 55c4a78e3fe..c2d9d5130ab 100644
--- a/source/eo/helpcontent2/source/text/shared/00.po
+++ b/source/eo/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-07 20:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/eo/helpcontent2/source/text/shared/01.po b/source/eo/helpcontent2/source/text/shared/01.po
index bb5756dfec0..e83508f9398 100644
--- a/source/eo/helpcontent2/source/text/shared/01.po
+++ b/source/eo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/eo/helpcontent2/source/text/shared/02.po b/source/eo/helpcontent2/source/text/shared/02.po
index c9e3b3aa008..47b6759aff2 100644
--- a/source/eo/helpcontent2/source/text/shared/02.po
+++ b/source/eo/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/eo/helpcontent2/source/text/shared/guide.po b/source/eo/helpcontent2/source/text/shared/guide.po
index f0a4cef2276..eb98e829ee4 100644
--- a/source/eo/helpcontent2/source/text/shared/guide.po
+++ b/source/eo/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-19 03:08+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/eo/helpcontent2/source/text/shared/optionen.po b/source/eo/helpcontent2/source/text/shared/optionen.po
index de72fa5439a..a27f87f4105 100644
--- a/source/eo/helpcontent2/source/text/shared/optionen.po
+++ b/source/eo/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-07 21:03+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1551992621.000000\n"
#: 01000000.xhp
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/eo/helpcontent2/source/text/simpress/01.po b/source/eo/helpcontent2/source/text/simpress/01.po
index 3507d4629c8..63388561746 100644
--- a/source/eo/helpcontent2/source/text/simpress/01.po
+++ b/source/eo/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/eo/helpcontent2/source/text/swriter/guide.po b/source/eo/helpcontent2/source/text/swriter/guide.po
index 9e7892f79fc..b9ff08e3435 100644
--- a/source/eo/helpcontent2/source/text/swriter/guide.po
+++ b/source/eo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-07 21:23+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "En la <emph>Ordinara breto</emph>, alklaku la bildsimbolon <emph>Navigilo</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Bildsimbolo</alt></image> por malfermi <emph>Navigilon</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "En <emph>Navigilo</emph>, alklaku la bildsimbolon <emph>Enhava vido</emph><image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Bildsimbolo</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Alklaku titolon en la listo <emph>Navigilo</emph>, kaj alklaku la bildsimbolon <emph>Movi Ĉapitron Supren</emph><image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Bildsimbolo</alt></image> aŭ <emph>Movi Ĉapitron Malsupren</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Bildsimbolo</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Alklaku la bildsimbolon <emph>Unu Nivelon Supren</emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\"></alt></image> aŭ bildsimbolon <emph>Unu Nivelon Malsupren </emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Bildsimbolo</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Alklaku la bildsimbolon <emph>Titolaj niveloj vidigotaj</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Bildsimbolo</alt></image>, kaj elektu numeron el la listo."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
index 6ccc09743a7..a53b0769921 100644
--- a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-05 23:25+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-19 03:49+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
"Language: eo\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: 1557098743.000000\n"
+"X-POOTLE-MTIME: 1558237793.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Tabelaj stiloj"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Pliaj kampoj"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Perfolia"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Grupa breto"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Elekti frazon"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/eo/sc/messages.po b/source/eo/sc/messages.po
index ad5ff71afa3..5c53ebf663e 100644
--- a/source/eo/sc/messages.po
+++ b/source/eo/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-05 23:13+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-19 03:49+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\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: 1557098039.000000\n"
+"X-POOTLE-MTIME: 1558237767.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(eksklusiva aliro)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,12 +15775,12 @@ msgstr "Agordi kondiĉan formatadon"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Amplekso"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Datuma formularo"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Fermi"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nova rikordo"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "Nova"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Forigi"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Restaŭri"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Antaŭa rikordo"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Sekva rikordo"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Fermi"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Fluoj de aktualaj datumoj"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "Retadreso:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Tajpu ĉi tie la URL-on de la fonta dokumento en la loka dosiersistemo aŭ interreto."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Foliumi..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Datumbaza amplekso"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Datumliveranto:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Serĉota ĉeno"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Fonta fluo"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Rezultoj al:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Datumoj"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolumnoj"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Vicoj"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Grupigitaj laŭ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervalo:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametroj"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Helpo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "Dosiero"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Agordi la borderojn de la elektitaj ĉeloj."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Pligrandigi krommarĝenon"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Malpligrandigi krommarĝenon"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hejmo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "Hejmo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Kampo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Enmeti"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Enmeti"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "Aranĝo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Ĝisrandigi objekton"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Aranĝo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "Statistikoj"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Datumoj"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "Datumoj"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Revidi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Revidi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vido"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "Vido"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bildo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bildo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Desegni"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Desegni"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "Objekto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "Objekto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Aŭdvidaĵoj"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Spektaĵoj"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Presi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Presi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formularo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formularo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Iloj"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Iloj"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Serĉaj rezultoj"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Folio"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Ĉelo"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Enhavo"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Konturaj simboloj"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Fenestro"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Kradlinioj:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "Koloro:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Vidigi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Vidigi en koloraj ĉeloj"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Kaŝi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Paĝosaltoj"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Helplinioj dum movado"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Vidaj helpoj"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Objektoj/bildoj:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diagramoj:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Desegnaĵaj objektoj:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Vidigi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Kaŝi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Vidigi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Kaŝi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Vidigi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Kaŝi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objektoj"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Sinkronigi foliojn"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zomi"
diff --git a/source/eo/scp2/source/ooo.po b/source/eo/scp2/source/ooo.po
index c11c0ba232b..a8bbc0669d3 100644
--- a/source/eo/scp2/source/ooo.po
+++ b/source/eo/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-05-05 22:45+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.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: 1557096348.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Malfermi dokumenton"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/eo/scp2/source/winexplorerext.po b/source/eo/scp2/source/winexplorerext.po
index 708f8f561cf..16cc50f1ba2 100644
--- a/source/eo/scp2/source/winexplorerext.po
+++ b/source/eo/scp2/source/winexplorerext.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 19:58+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -12,8 +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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369350949.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Ebligas al Microsoft Windows Explorer vidigi informojn pri dokumentoj de %PRODUCTNAME, ekzemple bildetojn."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/eo/sd/messages.po b/source/eo/sd/messages.po
index 250692b6763..0f6c2ddedb6 100644
--- a/source/eo/sd/messages.po
+++ b/source/eo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-05 22:45+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\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: 1557096327.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Klaki por malfermi hiperligilon:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nomi HTML-an skemon"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "Dosiero"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Helpo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "Dosiero"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hejmo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Hejmo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Kampo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Enmeti"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Enmeti"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "Paĝo"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "Paĝo"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Revidi"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Revidi"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vido"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "Vido"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "Teksto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "Teksto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tableo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "Tableo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverti"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bildo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bildo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Desegni"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Desegni"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Aŭdvidaĵoj"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Spektaĵoj"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formularo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formularo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Iloj"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Iloj"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Vidigi formojn"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "Dosiero"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Helpo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "Dosiero"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hejmo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Hejmo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Kampo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Enmeti"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Enmeti"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "Lumbildo"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "Lumbildo"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Vidigi prezentaĵon"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Prezentaĵo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Revidi"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Revidi"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vido"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "Vido"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tabelo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Tabelo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverti"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bildo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bildo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Desegni"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Desegni"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Spektaĵoj"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Spektaĵoj"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formularo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formularo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Iloj"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Iloj"
diff --git a/source/eo/sfx2/messages.po b/source/eo/sfx2/messages.po
index 3d556b7d15b..4c4ceb0f71c 100644
--- a/source/eo/sfx2/messages.po
+++ b/source/eo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-05 22:42+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\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: 1557096160.000000\n"
#: include/sfx2/strings.hrc:25
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "J: %1 M: %2 T: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Remove Property"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"La valoro enigita ne kongruas kun la agordita tipo.\n"
"Konservos la valoron kiel tekston."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "La stilo jam ekzistas. Ĉu anstataŭu?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Reagordi"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Tiu ĉi nomo estas jam uzata."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Tiu ĉi stilo ne ekzistas."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Tiu ĉi stilo ne uzeblas kiel baza stilo,\n"
"ĉar ĝi rezultigus rikuran referencon."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Nomo jam ekzistas kiel apriora stilo.\n"
"Bonvolu elekti alian nomon."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Se vi forigos ĉi tiujn stilojn, teksto ŝanĝiĝos al la patra stilo.\n"
"Ĉu vi vere volas forigi tiujn stilojn?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stiloj uzataj: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigilo"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Misa pasvorta konfirmo"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Sendi"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Tiparo"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Montri antaŭarigardon"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Vidigi versian komenton"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(neniu nomaro)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Listo de stiloj"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarkia"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Formatpleniga reĝimo"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nova stilo el elektaĵo"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Stilaj agoj"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Ĝisdatigi stilon"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Ĉu vi vere volas rezigni la registradon? Ĉiuj ĝisnunaj registraĵoj perdiĝos."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Eliri registradon"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "La ŝablonoj estas agordataj por unua uzo."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Ne trovis aprioran presilon.\n"
"Bonvolu elekti presilon kaj klopodu denove."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Ne povis komenci presilon.\n"
"Bonvolu kontroli la konfiguron de via presilo."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Presilo okupata"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (nurlega)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"La paĝaj grando kaj orientiĝo estas ŝanĝitaj.\n"
"Ĉu vi volas konservi la novajn agordojn en la aktuala dokumento?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"Ĉu la novaj agordaĵoj estu konservataj\n"
"en la aktiva dokumento?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1125,7 +1120,7 @@ msgstr ""
"La paĝaj grando kaj orientiĝo estas ŝanĝitaj.\n"
"Ĉu vi volas konservi la novajn agordojn en la aktuala dokumento?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1134,7 +1129,7 @@ msgstr ""
"La dokumento ne fermeblas ĉar presa\n"
"tasko estas plenumata."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,7 +1139,7 @@ msgstr ""
"Bonvolu kontroli la agordaron de %PRODUCTNAME aŭ de via retpoŝta programo."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1155,17 +1150,17 @@ msgstr ""
"\n"
"Erarkodo estas $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Eraro dum sendado de retmesaĝo"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Ne eblas redakti ĉi tiun dokumenton, eble pro manko de alirorajtoj. Ĉu vi volas redakti kopion de la dokumento?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1176,349 +1171,359 @@ msgstr ""
"\n"
"Vi ankaŭ povas provi ignori la ŝlosilon kaj malfermi la dosieron por redakti."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Malfermi kopion"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "Malfermi"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (riparita dokumento)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "La dokumento ne estas rezervita ĉe la servilo."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Helpu nin igi %PRODUCTNAME eĉ bli bona!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Kunhelpi"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Viaj donacoj subtenas nian tutmondan komunumon."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Donaci"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "La dokumento estas malfermita nurlege."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Ĉi tiu PDF estas malfermita nurlege por ebligi subskribi la ekzistantan dosieron."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "La klasifika etikedo de ĉi tiu dokumento estas %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Necesas klasifiki ĉi tiun dokumenton antaŭ ol eblas alglui la tondujon."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Ĉi tiu dokumento havas malpli altan klasifikan nivelon ol la tondujo."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Nivelo"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nacia Sekureco:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Eksporta regado:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Rezervi"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Redakti dokumenton"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Subskribi dokumenton"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "La dokumento havas nevalidan subskribon."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "La subskribo validas, sed la dokumento estas ŝanĝita"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "La subskribo estas en ordo, sed ne eblis validigi la atestilon."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "La subskribo estas en ordo, sed la dokumento estas nur parte subskribita."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Ne eblas validigi la atestilon kaj la dokumento estas nur parte subskribita."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "La dokumento estas cifere subskribita kaj la subskribo estas valida."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Vidigi subskribojn"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Fermi la panelon"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Doki"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Maldoki"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Pliaj agordoj"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Fermi la flankbretan dekon"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Agordaro de flanka breto"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Adapti"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restaŭri aprioran"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Fermi la flankan breton"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarino"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Abelujo"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blua kurbo"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blukopiaj planoj"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Helblua"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Ŝike ruĝa"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokuso"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Arbarbirdo"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Prezentilo"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiro"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lumoj"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Vibra verdo"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolo"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Noktomezblua"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura ilustraĵo"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Krajono"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Teko"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progreso"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sunsubiro"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Aĝo"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Brilega"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resumo"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Apriora"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderna"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderna komerca letero senserifa"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderna komerca letero serifa"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Vizitkarto kun bildo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Forigi"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Vakigi ĉion"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longo de pasvorto"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "La enigita de vi pasvorto kaŭzas problemojn pri kunfunkcipovo. Bonvolu enigi pasvorton malpli longan ol 52 bajtoj, aŭ pli longan ol 55 bajtoj."
@@ -1863,32 +1868,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Versia komento:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nomo"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipo"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valoro"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Jes"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ne"
@@ -1898,17 +1888,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Enmeti atributon"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nomo"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valoro"
@@ -2038,17 +2028,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Loko:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Tipo:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Ŝanĝi pasvorton"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Ŝablono:"
@@ -2058,27 +2048,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Atributoj de “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Ĝenerala "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Priskribo"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Propraj atributoj"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS-atributoj"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Sekureco"
@@ -2301,6 +2291,26 @@ msgstr ""
"\n"
"Ĉi tiun produkton kreis %OOOVENDOR, bazitan sur OpenOffice.org, kies Kopirajton 2000, 2011 posedas Oracle kaj ties filioj. %OOOVENDOR agnoskas ĉiujn komunumanojn. Bonvolu referi al http://www.libreoffice.org/ por pluaj detaloj."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/eo/shell/messages.po b/source/eo/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/eo/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/eo/starmath/messages.po b/source/eo/starmath/messages.po
index a2c2951d1ab..9514b5de80d 100644
--- a/source/eo/starmath/messages.po
+++ b/source/eo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Ekzemploj"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Normala"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiva"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Grasa"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "nigra"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blua"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verda"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "ruĝa"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cejana"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "malva"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "griza"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "limekolora"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "brunkarmezina"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "malhelblua"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olivkolora"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purpura"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "arĝenta"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "bluverda"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "flava"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "kaŝi"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "grando"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "tiparo"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "maldekstre"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dekstre"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Komandoj"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formulo"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Konservado de dokumento..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION formulo"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERARO: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Neatendita signo"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Neatendita ĵetono"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' atendita"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' atendita"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' atendita"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' atendita"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Dekstra kaj maldekstra simboloj miskongruas"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fiksita', 'sanserifa', aŭ 'serifa' atenditaj"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'grando' sekvita de neatendita ĵetono"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Duobla ĝisrandigo ne permesitas"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Duopaj (mal)altaj skriboj ne permesitas"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' atendita"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Koloro bezonata"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'DEKSTRA' atendita"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Enhavo"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Titolo"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Formula teksto"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Borderoj"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Grando"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Origina grando"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Adapti al paĝo"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Skaligi"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementoj"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/eo/svtools/messages.po b/source/eo/svtools/messages.po
index 6aad814058f..dbf0dd02dca 100644
--- a/source/eo/svtools/messages.po
+++ b/source/eo/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-05 22:42+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-19 03:59+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557096134.000000\n"
+"X-POOTLE-MTIME: 1558238350.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Malfari: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Refari: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Ripeti: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Neformatita teksto"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Neformatita teksto [TSV-Calc]"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitbildo (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metadosiero de grafikila interfaco (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Riĉa Teksto-Formo (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Riĉa Teksto-Formo (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formato de %PRODUCTNAME-Desegnilo"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitbildo/animacio de Starview (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Stata informo de Svx-interna ligilo"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME-ligilo (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape legosigno"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star servila formato"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star objekta formato"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Apleta objekto"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Kromaĵa objekto"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objekto de StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objekto StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objekto StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objekto StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objekto de StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objekto de StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objekto StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objekto StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objekto StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objekto StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objekto StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objekto de StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objekto de StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objekto StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objekto de StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objekto de StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objekto StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objekto StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objekto de StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objekto StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objekto de StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objekto de StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objekto StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objekto de StarPaint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HiperTeksta MarkoLingvo (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Simpla HiperTeksta MarkoLingvo (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Interŝanĝa formato de Microsoft Excel Binary 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Interŝanĝa formato de Microsoft Excel Binary 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dinamika datuminterŝanĝo (DDE-ligilo)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Datum-interŝanĝa formato (*.DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objekto Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objekto StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-dokumenta objekto"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Nota dokumenta informo"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokumento"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objekto StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafika objekto"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "objekto de OpenOffice.org Verkilo"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "objekto de OpenOffice.org 1.0 Verkilo/TTT"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "objekto de OpenOffice.org 1.0 Verkilo/ĉefa"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "objekto de OpenOffice.org Desegnilo"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "objekto de OpenOffice.org Prezentilo"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "objekto de OpenOffice.org Tabelilo"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "objekto de OpenOffice.org Diagramilo"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "objekto de OpenOffice.org Matematiko"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metadosiero de Vindozo"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datumfonta objekto"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datumfonta tabelo"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Informpeto SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "dialogo de OpenOffice.org"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Ligilo"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-a formato sen komentoj"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portebla reta grafiko (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekto % ne enmeteblas."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekto el dosiero % ne estas enmetebla."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Pliaj objektoj"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Nekonata fonto"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nomo"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Grando"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Dato modifita"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipo"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajtoj"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Vico: %1, Kolumno: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tipo: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Dosierujo"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Dosiero"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Malplena kampo"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Litercifera"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normala"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Signaro"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Vortaro"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinjina"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Streko"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radiko"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unikodo"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zujina"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonlibro"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetike (litercifere unue)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetike (litercifere laste)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Litercifera"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Vortaro"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinjina"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radiko"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Streko"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zujina"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetike (litercifere unue, arigite laŭ silaboj)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetike (litercifere unue, arigite laŭ konsonantoj)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetike (litercifere laste, arigite laŭ silaboj)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetike (litercifere laste arigite laŭ konsonantoj)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Hodiaŭ"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Neniu"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Malgrasa"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Malgrasa kursiva"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Regule"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiva"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Grasa"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Grasa kursiva"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Nigra"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Nigra kursiva"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Libro"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Grasa oblikva"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Densa"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Densa grasa"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Densa grasa kursiva"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Densa grasa oblikva"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Densa kursiva"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Densa oblikva"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Tre malpeza"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Tre malpeza kursiva"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblikva"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Duongrasa"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Duongrasa kursiva"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "La sama tiparo uzatos kaj en via presilo kaj sur via ekrano."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Tio ĉi estas presila tiparo. La ekrana bildo povas diferenci."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Tiu ĉi tipara stilo estos simulata aŭ la plej proksime responda stilo estos uzata."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Tiu ĉi tiparo ne estas instalita. La plej proksima tiparo uzatos."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Foliumi..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Movi hejmen"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Movi Maldekstren"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Movi Dekstren"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Movi al fino"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Aldoni"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontala mezurilo"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertikala mezurilo"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bita sojlo"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bita punktismo"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bita grizoskalo"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bita koloro"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bita grizoskalo"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bita koloro"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bitaj veraj koloroj"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "La bildo bezonas ĉirkaŭ %1 KB da memoro."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "La bildo bezonas ĉirkaŭ %1 KB da memoro. La dosiera grando estas %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "La dosiera grando estas %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "servilo"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "pordo"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Alia CMS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preta"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Dumpaŭze"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Forigo okazonta"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Okupata"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Pravalorizado"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Atendado"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Varmiĝado"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Traktado"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Presado"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Senkonekte"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Eraro"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Nekonata servilo"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paperŝtopiĝo"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ne sufiĉe da papero"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Mana nutrado"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Paperproblemo"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "En/Eligo aktiva"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Presaĵujo estas plena"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Malmulta inko"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Neniu farbopulvoro"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Forigi Paĝon"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Interveno de uzanto necesas"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Nesufiĉa memoro"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Kovrilo malfermita"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiŝpara reĝimo"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Apriora presilo"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d-dokumentoj"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Fini"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Sekva >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Retro"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Paŝoj"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<neniu>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Entrepreno"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Sekcio"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Persona nomo"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Familia nomo"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Strato"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Lando"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Poŝtkodo"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Urbo"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titolo"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pozicio"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adresa formularo"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicialoj"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Krome fermi"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: hejma"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: laboreja"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fakso"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Retpoŝto"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL "
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Noto"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Propra 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Propra 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Propra 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Propra 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Identigilo"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Ŝtato"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: oficeja"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Vokilo"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Poŝtelefono"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: alia"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendaro"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Inviti"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME bezonas Ĝavointerpretilon (JRE) por fari tiun taskon. Bonvolu instali je JRE kaj restartigi je %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME bezonas %BITNESS-bit-Ĝavan rultempan medion (JRE) por fari tiun taskon. Bonvolu instali je JRE kaj restartigi je %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME bezonas la Ĝavan programistan ilaron (JDK) de Oracle en MacOS 10.10 aŭ posta por plenumi ĉi tiun taskon. Bonvolu instali ĝin kaj restartigi je %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La %PRODUCTNAME-agordaro estas ŝanĝita. Ĉe menueroj %PRODUCTNAME - Preferoj - %PRODUCTNAME - Specialaj, elektu la Ĝavointerpretilon uzotan de %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La agordaro de %PRODUCTNAME estas ŝanĝita. Sub Iloj - Agordaĵoj - %PRODUCTNAME - Specialaj, elektu la Ĝavointerpretilon uzotan de %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME bezonas Ĝavointerpretilon (JRE) por plenumi la taskon. La elektita JRE estas difekta. Bonvolu elekti alian version aŭ instali novan JRE kaj elektu ĝin ĉe %PRODUCTNAME - Preferoj - %PRODUCTNAME - Specialaj."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME bezonas Ĝavointerpretilon (JRE) por plenumi ĉi tiun taskon. La elektita JRE estas difektita. Bonvolu elekti alian version aŭ instali novan JRE kaj elekti ĝin sub Iloj - Agordaĵoj - %PRODUCTNAME - Specialaj."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE bezonata"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Elekti je JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE estas difektita"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Fontkodo"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Legosigna dosiero"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafikaĵoj"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigura dosiero"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplikaĵo"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Datumbaza tabelo"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sistemdosiero"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-dokumento"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Helpa dosiero"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-a dokumento"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arkiva dosiero"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Protokolo"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Datumbazo de StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Ĉefa dokumento de StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Bildo de StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Teksta dosiero"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Ligo"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Ŝablono de StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel -dokumento"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel -ŝablono"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Skripto"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Dosiero"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Dosierujo"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Teksta dokumento"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Kalkultabelo"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentaĵo"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Desegnaĵo"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-a dokumento"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Ĉefa dokumento"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formulo"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datumbazo"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "ŝablono de OpenOffice.org 1.0 Tabelilo"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "ŝablono de OpenOffice.org 1.0 Desegnilo"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "ŝablono de OpenOffice.org 1.0 Prezentilo"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "ŝablono de OpenOffice.org teksta dokumento"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Loka diskingo"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskingo"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "KD-legilo"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Reta konekto"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-dokumento"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-ŝablono"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-prezentaĵo"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "formulo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "diagramo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "desegnaĵo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "kalkultabelo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "prezentaĵo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "teksta dokumento de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "ĉefa dokumento de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokumento"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Datumbazo de OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Desegnaĵo de OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Formulo de OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Ĉefa dokumento de OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Prezentaĵo de OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Kalkultabelo de OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Teksto de OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Kalkultabela ŝablono de OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Desegnaĵa ŝablono de OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Prezentaĵa ŝablono de OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Teksta ŝablono de OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Aldonaĵo de %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Literumada Kontrolo Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Vortdividi per Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Tezaŭro Mythes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Listo de malatentitaj vortoj"
@@ -4127,7 +4129,7 @@ msgstr ""
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Angla (Zambio)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/eo/svx/messages.po b/source/eo/svx/messages.po
index a0b23a5d692..109aa5c80af 100644
--- a/source/eo/svx/messages.po
+++ b/source/eo/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-05 22:37+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-19 05:32+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\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: 1557095857.000000\n"
+"X-POOTLE-MTIME: 1558243928.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "De maldekstro dekstren (vertikale)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Nombro de parto:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Parta teksto:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Lumfonto 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Lumo 1 koloro"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Lumo 2 koloro"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Lumo 3 koloro"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Lumo 4 koloro"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Lumo 5 koloro"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Lumo 6 koloro"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Lumo 7 koloro"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Lumo 8 koloro"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -11880,7 +11885,7 @@ msgstr "%PRODUCTNAME %PRODUCTVERSION dokumenta restaŭro"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:76
msgctxt "docrecoverysavedialog|label1"
msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "Pro eraro, %PRODUCTNAME fiaskis. Ĉiuj dosieroj, pri kiuj vi laboris, tuj konserviĝos. Ĉe la sekva lanĉo de %PRODUCTNAME, viaj dosieroj estos aŭtomate riparataj."
#: svx/uiconfig/ui/docrecoverysavedialog.ui:98
msgctxt "docrecoverysavedialog|label2"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Agordi la vertikalan deŝovan elcenton de la centro por la kolortransira kolorheleca stilo. 50% estas la vertikala centro."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Kontura redaktilo"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Apliki"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Laborspaco"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Elekti"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Ortangulo"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipso"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Plurangulo"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Redakti punktojn"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Movi punktojn"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Enmeti punktojn"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Forigi punktojn"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Aŭtomata konturo"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Malfari "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Refari"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeto"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Kolora tolero"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Paĝopiedo"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "BildoMapa redaktilo"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Apliki"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Malfermi..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Konservi..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Fermi"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Elekti"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Ortangulo"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipso"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Plurangulo"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Libermana plurangulo"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Redakti punktojn"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Movi punktojn"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Enmeti punktojn"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Forigi punktojn"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Malfari "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Refari"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktive"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makroo..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Atributoj..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adreso:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Kadro:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Teksto:"
@@ -13366,12 +13371,12 @@ msgstr "Komento"
#: svx/uiconfig/ui/redlineviewpage.ui:146
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Ŝanĝoj"
#: svx/uiconfig/ui/redlineviewpage.ui:245
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Ŝanĝoj"
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
@@ -13470,6 +13475,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME nun ruliĝas en sekura reĝimo, kiu portempe malŝaltas vian uzantoprofilon kaj kromprogramojn.\n"
+"\n"
+"Vi povos fari iujn el la sekvaj ŝanĝoj ĉe via uzantoprofilo por meti je %PRODUCTNAME en funkcianta stato."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
@@ -14009,7 +14017,7 @@ msgstr "Stilo de majusklo"
#: svx/uiconfig/ui/sidebarlists.ui:22
msgctxt "sidebarlists|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Buloj kaj numerado"
#: svx/uiconfig/ui/sidebarparagraph.ui:26
msgctxt "sidebarparagraph|numberbullet|tooltip_text"
diff --git a/source/eo/sw/messages.po b/source/eo/sw/messages.po
index ebac16298d6..50d00ee9246 100644
--- a/source/eo/sw/messages.po
+++ b/source/eo/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-05 22:08+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-19 03:48+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\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: 1557094094.000000\n"
+"X-POOTLE-MTIME: 1558237721.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Ŝanĝi titolon de objekt $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Ŝanĝi priskribon de objekto $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -7679,7 +7679,7 @@ msgstr "Signo"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "Normala"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Helpo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Dosiero"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hejmo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Hejmo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Enmeti"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Enmeti"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Aranĝo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Aranĝo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referencoj"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referencoj"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Revidi"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Revidi"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vido"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "Vido"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tabelo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Tabelo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Bildo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bildo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Desegni"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Desegni"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Spektaĵoj"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Spektaĵoj"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Presi"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Presi "
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Formularo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Formularo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Iloj"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Iloj"
@@ -12160,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "Dosiero"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "Dosiero"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "Hejmo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "Hejmo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Enmeti"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "Enmeti"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Ĉirkaŭfluo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Aranĝo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Aranĝo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referencoj"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Referencoj"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Kontroli"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Revizii"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "Vido"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "Vido"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Tabelo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "Tabelo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Bildo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Bildo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Desegni"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "Desegni"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "Objekto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "Aŭdvidaĵoj"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "Spektaĵo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Presi"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "Presi "
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Formularo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Formularo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Iloj"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Iloj"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12449,7 +12449,7 @@ msgstr "Objekto"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "Kadro"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12659,7 +12659,7 @@ msgstr "Spektaĵoj"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "Objekto"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13372,8 +13372,8 @@ msgstr "Etendigi intervortajn spacojn en linioj enhavantaj permanan linisalton e
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Protekti formularon"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Enhavolisto, indekso aŭ bibliografio"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Aspekto"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Antaŭvido"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Elementoj"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stiloj"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Kolumnoj"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fono"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Antaŭvido"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Nivelo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "Tipo"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Redakti..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Titolo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Tabelo de enhavo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Alfabeta indekso"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Tabelo de bildoj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Indekso de tabeloj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Propre difinita"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tabelo de objektoj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografio"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protektita kontraŭ permanaj ŝanĝoj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipo kaj titolo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Por:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Tuta dokumento"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Ĉapitro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Komputi ĝis la nivelo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Krei indekson aŭ enhavoliston"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Konturo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Indeksaj markoj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabeloj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Tekstaj kadroj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafikaĵoj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objektoj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Uzi nivelon de fonta ĉapitro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Pluaj stiloj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stiloj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Agordi stilojn..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Apudskriboj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektaj nomoj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorio:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Vidigi:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referencoj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorio kaj numero"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Apudskriba teksto"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Krei el"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Krei el la jenaj objektoj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Rondaj krampoj:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Numeri elementojn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[neniu]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatado de la elementoj:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Kunigi identajn elementojn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Kunigi identajn erojn kun p aŭ pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Kunigi kun -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Usklecodistinge"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Aŭtomate majuskligi elementojn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Ŝlosiloj kiel apartaj elementoj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Indeksodosiero"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Dosiero"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Agordaro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Lingvo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipo de ŝlosilo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ordigi"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Niveloj"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Alineaj stiloj"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Apriora"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Redakti"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Atribui"
diff --git a/source/es/cui/messages.po b/source/es/cui/messages.po
index bc7036e194b..cf446789fa9 100644
--- a/source/es/cui/messages.po
+++ b/source/es/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-07 10:28+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-31 14:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557224928.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559313934.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Proporcione una dirección de tema válida o un término de búsqueda."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "La API de temas de Mozilla no está disponible por ahora."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Sin bordes"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Solo borde exterior"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Borde exterior y líneas horizontales"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Borde exterior y todas las líneas interiores"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Borde exterior sin modificar las líneas interiores"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Solo líneas verticales"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Los cuatro bordes"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Solo bordes izquierdo y derecho"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Solo bordes superior e inferior"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Solo borde izquierdo"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Bordes inferior y superior y todas las líneas interiores"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Bordes izquierdo y derecho y todas las líneas interiores"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Sin sombra"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Proyectar sombra a la parte inferior derecha"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Proyectar sombra a la parte superior derecha"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Proyectar sombra a la parte inferior izquierda"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Proyectar sombra a la parte superior izquierda"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Firmado por: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Todos los archivos"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Bases de datos registradas"
@@ -1746,7 +1741,7 @@ msgstr "Bases de datos registradas"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME puede abrir y guardar archivos almacenados en servidores remotos por CMIS."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -2853,12 +2848,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:263
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
-msgstr ""
+msgstr "Ayuda de %PRODUCTNAME"
#: cui/inc/tipoftheday.hrc:264
msgctxt "STR_MORE_LINK"
msgid "More info"
-msgstr ""
+msgstr "Más información"
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Acerca de %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr "_Informe de novedades"
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Cré_ditos"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Sitio _web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Id. de compilación: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Configuración regional: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Idioma de IU: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Registro de cambios: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME es un paquete de productividad moderno, fácil de usar y de código abierto para procesar texto, hojas de cálculo, presentaciones y más."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "© 2000-2019 de los colaboradores de LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice se basó en OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME deriva de LibreOffice, que se basó en OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Versión suministrada por %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Reemplazar"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Reempla_zar"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Por:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Solo _texto"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Longitud mínima de palabra"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr "Galería"
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr "Numeración y viñetas"
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr "Nivel"
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr "Tipo:"
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr "Carácter:"
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr "Seleccionar…"
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr "Seleccionar imagen…"
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr "Anchura:"
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr "Altura:"
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr "Mantener proporciones"
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr "Antes:"
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr "Después:"
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr "Separador"
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr "Color:"
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr "Sangría:"
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr "Anchura:"
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr "Posición"
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr "Alineación"
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr "Diapositiva"
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr "Selección"
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr "Aplicar a patrón"
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr "Alcance"
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr "Propiedades"
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr "Previsualización"
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Propiedades"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Marco:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nombre:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Texto alternativo:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Descripción:"
@@ -9019,80 +9179,80 @@ msgstr "Mostrar alerta si la ayuda local no está instalada"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ayuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Usar los diálogos de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Cuadros de diálogo para abrir y guardar"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usar los _diálogos de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Cuadros de diálogo de impresión"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Considerar como _modificado el documento al imprimirlo"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estado del documento"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como años entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "y "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Año (dos dígitos)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recopilar datos de uso y enviarlos a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ayúdenos a mejorar %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME durante el inicio del sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar Inicio rápido en el área de notificación"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Inicio rápido de %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Tema preinstalado"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tema propio"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Cargar tema de Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "O bien, elija uno de los temas instalados desde extensiones:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Temas de Firefox"
+msgid "LibreOffice Themes"
+msgstr "Temas de LibreOffice"
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opciones de seguridad"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Seleccionar tema de Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Término de búsqueda o dirección"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ca_tegoría:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstractos"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Causas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Películas y televisión"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Días festivos"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Música"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Naturaleza"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Otros"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Paisajes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Estaciones"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Sólidos"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Deportes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Sitios web"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "En destaque"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr "_Mostrar consejos al inicio"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "Consejo _siguiente"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "¿Lo sabía?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Enlace"
diff --git a/source/es/extensions/messages.po b/source/es/extensions/messages.po
index 650c0e7a268..b8f9cbf3eef 100644
--- a/source/es/extensions/messages.po
+++ b/source/es/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-27 19:53+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1556394831.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Disposición de columnas de la tabla «%1»"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Nombre abre_viado"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autor(es)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "E_ditorial"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Capítulo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "A_ño"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Títu_lo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Di_rección"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pá_gina(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_ición"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Tít_ulo del libro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volumen"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Ti_po de publicación"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zación"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_ución"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versidad"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tipo de in_forme"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mes"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Perió_dico"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Núm_ero"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_rie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_otación"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Campo de usuario _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Campo de usuario _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Campo de usuario _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Campo de usuario _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Campo de usuario _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nombres de columnas"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Escriba el nombre del tipo de dato nuevo:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Enlazar campos"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Sugerir"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Se pueden utilizar los subformularios para mostrar datos detallados acerca del registro actual del patrón de formulario. Para hacer esto, especifique cuáles columnas del subformulario corresponderán con cuáles columnas del patrón de formulario."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiqueta"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiqueta"
diff --git a/source/es/helpcontent2/source/auxiliary.po b/source/es/helpcontent2/source/auxiliary.po
index 5a792549562..3e8179b0e51 100644
--- a/source/es/helpcontent2/source/auxiliary.po
+++ b/source/es/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-27 20:01+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1556395279.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Información general"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Presentaciones y Dibujos (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Barras de herramientas"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Dibujos (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menús"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Barras de herramientas"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objetos, imágenes y mapas de bits"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupos y capas"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Texto en presentaciones y dibujos"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/guide.po b/source/es/helpcontent2/source/text/sbasic/guide.po
index 3734db7fb63..2fc7be955ea 100644
--- a/source/es/helpcontent2/source/text/sbasic/guide.po
+++ b/source/es/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-27 20:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1556395325.000000\n"
#: access2base.xhp
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Comparación entre Access2Base y VBA de Microsoft Access"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Mostrar un diálogo usando código de programa"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>activar-desactivar modulo/diálogo</bookmark_value><bookmark_value>diálogos;usando código del programa para mostrar (ejemplo)</bookmark_value><bookmark_value>ejemplos;mostrando diálogo usando código del programa</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/python.po b/source/es/helpcontent2/source/text/sbasic/python.po
index 8aeee3f8286..1bfdb09983b 100644
--- a/source/es/helpcontent2/source/text/sbasic/python.po
+++ b/source/es/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-27 20:04+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: abrir un cuadro de diálogo"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value><bookmark_value>Platform;isMacOsX</bookmark_value><bookmark_value>Platform;isWindows</bookmark_value><bookmark_value>Platform;ComputerName</bookmark_value><bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr " %PRODUCTNAME Basic carece de reconocimiento nativo en Mac OS X, mientras que la propiedad ComputerName sólo está disponible para Windows. Las llamadas básicas a las macros de Python ayudan a superar estas limitaciones."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr "Mediante un módulo de clase de Basic:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
index 1b1a267f55c..731b5e06068 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-04-27 20:19+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-14 17:30+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556396344.000000\n"
+"X-POOTLE-MTIME: 1557855034.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -26158,7 +26158,7 @@ msgctxt ""
"par_id941552915528262\n"
"help.text"
msgid "When VBA support is enabled, %PRODUCTNAME Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, %PRODUCTNAME Basic functions may accept arguments and return values different of their VBA counterparts."
-msgstr ""
+msgstr "Cuando se activa la compatibilidad con VBA, los argumentos de las funciones y los valores de retorno en %PRODUCTNAME Basic son los mismos que sus homólogos de VBA. Cuando se desactiva la compatibilidad, las funciones de %PRODUCTNAME Basic pueden aceptar argumentos y valores de retorno distintos de los aceptados por sus homólogos de VBA."
#: 03103350.xhp
msgctxt ""
@@ -28022,7 +28022,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "<emph>Expression:</emph> a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value."
-msgstr ""
+msgstr "<emph>Expresión:</emph> una expresión numérica que representa un valor ASCII de 8 bits válido (0-255) o un valor Unicode de 16 bits."
#: 03120102.xhp
msgctxt ""
@@ -28030,7 +28030,7 @@ msgctxt ""
"par_id991552913928635\n"
"help.text"
msgid "When VBA compatibility mode is enabled (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expression</emph> is a numeric expression that represents a valid 8-bit ASCII value (0-255) only."
-msgstr ""
+msgstr "Cuando se activa el modo de compatibilidad con VBA (<link href=\"text/sbasic/shared/03103350.xhp\" name=\"vbasupport\"><literal>OPTION VBASUPPORT 1</literal></link>), <emph>Expresión</emph> es una expresión numérica que representa únicamente un valor ASCII de 8 bits válido (0-255)."
#: 03120102.xhp
msgctxt ""
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Ayuda de $[officename] Basic\">Ayuda de %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/03.po b/source/es/helpcontent2/source/text/sbasic/shared/03.po
index e11399a7757..84aa6fb8236 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-23 02:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1548211825.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Funciones y subrutinas para el control de módulos."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index 6d3a601cd44..f394e0f52ef 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-03-06 20:22+0000\n"
"Last-Translator: Mauricio Baeza <public@elmau.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Localice el archivo que contiene los datos que desee insertar.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Escriba el URL o el nombre de archivo que contenga los datos que quiera insertar y, a continuación, oprima Intro.</ahelp> Solo entonces, el URL se solicitará a la red o al sistema de archivos."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Seleccione la tabla o el área de datos que desee insertar.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Especifica el intervalo de datos que se desea consolidar con los intervalos listados en el cuadro <emph>Intervalos de consolidación</emph>. Seleccione un intervalo de celdas en una hoja y pulse en <emph>Añadir</emph>. También puede seleccionar un nombre de celda predefinido en la lista <emph>Intervalo de datos de origen</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/schart/00.po b/source/es/helpcontent2/source/text/schart/00.po
index 9a2c95d4768..3ac60c2eb79 100644
--- a/source/es/helpcontent2/source/text/schart/00.po
+++ b/source/es/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-09 04:32+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1549686740.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">En el diálogo Tipo de gráfico de un gráfico de líneas o XY con líneas, elija «Suave» en el cuadro combinado Tipo de líneas y, a continuación, pulse en el botón Propiedades.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">En el diálogo de Tipo de gráfico de un gráfico de líneas o XY con líneas, elija la opción «Líneas escalonadas» en el cuadro combinado, y luego pulse en el botón Propiedades.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/es/helpcontent2/source/text/shared/00.po b/source/es/helpcontent2/source/text/shared/00.po
index 86ad7e623d6..fc7561b1c33 100644
--- a/source/es/helpcontent2/source/text/shared/00.po
+++ b/source/es/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-07 10:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1557224374.000000\n"
#: 00000001.xhp
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Vaya a <switchinline select=\"sys\"><caseinlin
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Vaya a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ $[officename] ▸ Personalización</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 053025a3d18..80c2e0e07a3 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/helpcontent2/source/text/shared/01.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-02-28 22:11+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-14 17:15+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1551391871.000000\n"
+"X-POOTLE-MTIME: 1557854101.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Escriba un nombre de archivo o una ruta de acceso a un archivo.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_id61547286521877\n"
"help.text"
msgid "The following features are available in the dialog:"
-msgstr ""
+msgstr "El cuadro de diálogo brinda las prestaciones siguientes:"
#: 01020000.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"par_id3145367\n"
"help.text"
msgid "%PRODUCTNAME recognizes templates that are located in any folder from the following list:"
-msgstr ""
+msgstr "%PRODUCTNAME detecta las plantillas que se localicen en cualquiera de las carpetas siguientes:"
#: 01020000.xhp
msgctxt ""
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/es/helpcontent2/source/text/shared/02.po b/source/es/helpcontent2/source/text/shared/02.po
index f9da8f44f89..cb24e4eceb9 100644
--- a/source/es/helpcontent2/source/text/shared/02.po
+++ b/source/es/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-03 21:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1549229885.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Especifica si una selección de texto en un control permanece seleccionada cuando el control deja de estar activo.</ahelp> Si configura <emph>Ocultar selección</emph> como «No», el texto seleccionado permanece seleccionado cuando el control que contiene el texto deja de estar activo."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/guide.po b/source/es/helpcontent2/source/text/shared/guide.po
index adb8edbfead..d364bebdfbe 100644
--- a/source/es/helpcontent2/source/text/shared/guide.po
+++ b/source/es/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-15 05:20+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/es/helpcontent2/source/text/shared/optionen.po b/source/es/helpcontent2/source/text/shared/optionen.po
index 8dc97f20b40..1dab7c0d7ba 100644
--- a/source/es/helpcontent2/source/text/shared/optionen.po
+++ b/source/es/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-11 13:11+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1549890688.000000\n"
#: 01000000.xhp
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "Para obtener más información sobre OpenCL, visite <link href=\"https://www.khronos.org/opencl/\">su sitio web</link> (en inglés)"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalización"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>temas;establecer opciones</bookmark_value><bookmark_value>establecer opciones;temas</bookmark_value><bookmark_value>personalización;temas de Mozilla Firefox</bookmark_value><bookmark_value>personas;personalización</bookmark_value><bookmark_value>personalización;personas</bookmark_value><bookmark_value>temas de Mozilla Firefox;personalización</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalización</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Puede personalizar %PRODUCTNAME con los mismos temas que están disponibles para Mozilla Firefox. La barra de menús y las barras de herramientas situadas en los extremos superior e inferior mostrarán el tema que seleccione en el fondo."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Los temas de Mozilla Firefox están disponibles en el <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">sitio web de Mozilla</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Cualquier tema compatible con Firefox funcionará en %PRODUCTNAME. Sin embargo, no todos los diseños producirán resultados visuales adecuados: si el fondo contiene demasiados detalles, este puede interferir en la legibilidad de los menús y los iconos."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Temas de Firefox:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Dispone de las siguientes opciones:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Apariencia predeterminada; no utilizar temas"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">El fondo de las barras de herramientas corresponde a la configuración del entorno de escritorio.</ahelp> Esta es la opción predeterminada de %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Tema preinstalado"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Elija esta opción para utilizar uno de los temas preinstalados.</ahelp> Su administrador de sistemas también podría haber añadido un tema personalizado, complementario a las opciones predeterminadas, durante la instalación de %PRODUCTNAME; esta opción lo mostrará."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Tema propio"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Escoja esta opción para abrir el cuadro de diálogo «Seleccionar tema de Firefox» y elegir el que prefiera.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Cuadro de diálogo «Seleccionar tema de Firefox»"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Este cuadro de diálogo permite instalar un tema específico y le muestra algunos de los temas más atractivos del sitio web de temas de Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Búsqueda"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Proporcione un término para buscar temas en el sitio web de complementos de Mozilla, o bien, pegue la dirección de un tema concreto para recuperarlo directamente.</ahelp> Para obtener la dirección, utilice su navegador web para navegar a la página del tema y copie el URL mostrado en la barra de direcciones. A continuación, péguelo en el cuadro de búsqueda del cuadro de diálogo. Pulse <item type=\"menuitem\">Buscar</item> u oprima <item type=\"keycode\">Intro</item> para descargarlo e instalarlo en %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Explorar temas por categoría"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Muestra una elección aleatoria de nueve temas, basada en una de las categorías mostradas en los botones superiores.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Pulse en uno de los cinco botones para mostrar en el área de abajo una selección aleatoria de nueve temas que correspondan con la categoría del botón."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Para seleccionar uno de los temas mostrados, pulse en la imagen correspondiente y después en <item type=\"menuitem\">Aceptar</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/es/helpcontent2/source/text/simpress/01.po b/source/es/helpcontent2/source/text/simpress/01.po
index 84c55a3b6c2..3ffe73cd767 100644
--- a/source/es/helpcontent2/source/text/simpress/01.po
+++ b/source/es/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-12-12 16:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/es/helpcontent2/source/text/swriter/guide.po b/source/es/helpcontent2/source/text/swriter/guide.po
index f90871964e7..abd8dc266d0 100644
--- a/source/es/helpcontent2/source/text/swriter/guide.po
+++ b/source/es/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-09 21:33+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "En la barra <emph>Estándar</emph>, pulse en el icono del <emph>Navegador</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icono</alt></image> para abrir el <emph>Navegador</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "En el <emph>Navegador</emph>, pulse en el icono <emph>Vista de contenido</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icono</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Pulse en un título de la lista del <emph>Navegador</emph> y, a continuación, pulse en el botón <emph>Subir capítulo un nivel</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icono</alt></image> o <emph>Bajar capítulo un nivel</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icono</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Pulse en el icono <emph>Subir un nivel</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icono</alt></image> o <emph>Bajar un nivel</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icono</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Pulse en el icono <emph>Niveles de título mostrados</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icono</alt></image> y seleccione un número de la lista."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
index abfddb81589..fe3787d3fed 100644
--- a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-23 04:51+0000\n"
-"Last-Translator: Mauricio Baeza <public@elmau.net>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-15 05:09+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555995071.000000\n"
+"X-POOTLE-MTIME: 1557896944.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -4172,7 +4172,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 1"
-msgstr ""
+msgstr "Acento 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4181,7 +4181,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 1 Cell Style"
-msgstr ""
+msgstr "Estilo de celda Acento 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4199,7 +4199,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 2"
-msgstr ""
+msgstr "Acento 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4208,7 +4208,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 2 Cell Style"
-msgstr ""
+msgstr "Estilo de celda Acento 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4226,7 +4226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 3"
-msgstr ""
+msgstr "Acento 3"
#: CalcCommands.xcu
msgctxt ""
@@ -4235,7 +4235,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 3 Cell Style"
-msgstr ""
+msgstr "Estilo de celda Acento 3"
#: CalcCommands.xcu
msgctxt ""
@@ -4253,7 +4253,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 1"
-msgstr ""
+msgstr "Título 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 1 Cell Style"
-msgstr ""
+msgstr "Estilo de celda Título 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4280,7 +4280,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 2"
-msgstr ""
+msgstr "Título 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4289,7 +4289,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 2 Cell Style"
-msgstr ""
+msgstr "Estilo de celda Título 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Error"
-msgstr ""
+msgstr "Error"
#: CalcCommands.xcu
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Error Cell Style"
-msgstr ""
+msgstr "Estilo de celda Error"
#: CalcCommands.xcu
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Warning"
-msgstr ""
+msgstr "Alerta"
#: CalcCommands.xcu
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Warning Cell Style"
-msgstr ""
+msgstr "Estilo de celda Alerta"
#: CalcCommands.xcu
msgctxt ""
@@ -4442,7 +4442,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Footnote"
-msgstr ""
+msgstr "Nota al pie"
#: CalcCommands.xcu
msgctxt ""
@@ -4451,7 +4451,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Footnote Cell Style"
-msgstr ""
+msgstr "Estilo de celda Nota al pie"
#: CalcCommands.xcu
msgctxt ""
@@ -4469,7 +4469,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Note"
-msgstr ""
+msgstr "Nota"
#: CalcCommands.xcu
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Note Cell Style"
-msgstr ""
+msgstr "Estilo de celda Nota"
#: CalcWindowState.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Más campos"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "En pestañas"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Seleccionar oración"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/es/sc/messages.po b/source/es/sc/messages.po
index a03e0a4d733..8364fd2c64a 100644
--- a/source/es/sc/messages.po
+++ b/source/es/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-03-13 15:44+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-15 06:12+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1552491862.000000\n"
+"X-POOTLE-MTIME: 1557900729.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -13536,7 +13536,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:4125
msgctxt "SC_OPCODE_FOURIER"
msgid "Array"
-msgstr ""
+msgstr "Matriz"
#: sc/inc/scfuncs.hrc:4126
msgctxt "SC_OPCODE_FOURIER"
@@ -14831,12 +14831,12 @@ msgstr "Regresión"
#: sc/inc/strings.hrc:288
msgctxt "STR_FOURIER_ANALYSIS_UNDO_NAME"
msgid "Fourier Analysis"
-msgstr ""
+msgstr "Análisis de Fourier"
#: sc/inc/strings.hrc:289
msgctxt "STR_FOURIER_ANALYSIS"
msgid "Fourier Analysis"
-msgstr ""
+msgstr "Análisis de Fourier"
#. Common
#: sc/inc/strings.hrc:291
@@ -14927,12 +14927,12 @@ msgstr ""
#: sc/inc/strings.hrc:308
msgctxt "STR_MESSAGE_INVALID_INPUT_RANGE"
msgid "Input range is invalid."
-msgstr ""
+msgstr "El intervalo de entrada no es válido."
#: sc/inc/strings.hrc:309
msgctxt "STR_MESSAGE_INVALID_OUTPUT_ADDR"
msgid "Output address is not valid."
-msgstr ""
+msgstr "La dirección de salida no es válida."
#. RegressionDialog
#: sc/inc/strings.hrc:311
@@ -15132,57 +15132,57 @@ msgstr "z crítica bilateral"
#: sc/inc/strings.hrc:353
msgctxt "STR_FOURIER_TRANSFORM"
msgid "Fourier Transform"
-msgstr ""
+msgstr "Transformada de Fourier"
#: sc/inc/strings.hrc:354
msgctxt "STR_INVERSE_FOURIER_TRANSFORM"
msgid "Inverse Fourier Transform"
-msgstr ""
+msgstr "Transformada de Fourier inversa"
#: sc/inc/strings.hrc:355
msgctxt "STR_REAL_PART"
msgid "Real"
-msgstr ""
+msgstr "Real"
#: sc/inc/strings.hrc:356
msgctxt "STR_IMAGINARY_PART"
msgid "Imaginary"
-msgstr ""
+msgstr "Imaginaria"
#: sc/inc/strings.hrc:357
msgctxt "STR_MAGNITUDE_PART"
msgid "Magnitude"
-msgstr ""
+msgstr "Magnitud"
#: sc/inc/strings.hrc:358
msgctxt "STR_PHASE_PART"
msgid "Phase"
-msgstr ""
+msgstr "Fase"
#: sc/inc/strings.hrc:359
msgctxt "STR_MESSAGE_INVALID_NUMCOLS"
msgid "More than two columns selected in grouped by column mode."
-msgstr ""
+msgstr "Se seleccionaron más de dos columnas en el modo de agrupación por columnas."
#: sc/inc/strings.hrc:360
msgctxt "STR_MESSAGE_INVALID_NUMROWS"
msgid "More than two rows selected in grouped by row mode."
-msgstr ""
+msgstr "Se seleccionaron más de dos filas en el modo de agrupación por filas."
#: sc/inc/strings.hrc:361
msgctxt "STR_MESSAGE_NODATA_IN_RANGE"
msgid "No data in input range."
-msgstr ""
+msgstr "No hay datos en el intervalo de entrada."
#: sc/inc/strings.hrc:362
msgctxt "STR_MESSAGE_OUTPUT_TOO_LONG"
msgid "Output is too long to write into the sheet."
-msgstr ""
+msgstr "La salida es demasiado larga para guardarla en la hoja."
#: sc/inc/strings.hrc:363
msgctxt "STR_INPUT_DATA_RANGE"
msgid "Input data range"
-msgstr ""
+msgstr "Intervalo de datos de entrada"
#. infobar for allowing links to update or not
#: sc/inc/strings.hrc:365
@@ -15216,6 +15216,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(acceso exclusivo)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15534,27 +15539,27 @@ msgstr "Formato"
#: sc/uiconfig/scalc/ui/autoformattable.ui:270
msgctxt "autoformattable|numformatcb"
msgid "Number format"
-msgstr ""
+msgstr "Formato numérico"
#: sc/uiconfig/scalc/ui/autoformattable.ui:285
msgctxt "autoformattable|bordercb"
msgid "Borders"
-msgstr ""
+msgstr "Bordes"
#: sc/uiconfig/scalc/ui/autoformattable.ui:300
msgctxt "autoformattable|fontcb"
msgid "Font"
-msgstr ""
+msgstr "Tipo de letra"
#: sc/uiconfig/scalc/ui/autoformattable.ui:315
msgctxt "autoformattable|patterncb"
msgid "Pattern"
-msgstr ""
+msgstr "Patrón"
#: sc/uiconfig/scalc/ui/autoformattable.ui:330
msgctxt "autoformattable|alignmentcb"
msgid "Alignment"
-msgstr ""
+msgstr "Alineación"
#: sc/uiconfig/scalc/ui/autoformattable.ui:345
msgctxt "autoformattable|autofitcb"
@@ -15769,12 +15774,12 @@ msgstr "Gestionar formato condicional"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Intervalo"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16340,22 +16345,22 @@ msgstr "Hay cambios en conflicto en esta hoja de cálculo compartida. Estos conf
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:147
msgctxt "conflictsdialog|conflict"
msgid "Conflict"
-msgstr ""
+msgstr "Conflicto"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:161
msgctxt "conflictsdialog|author"
msgid "Author"
-msgstr ""
+msgstr "Autor"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:175
msgctxt "conflictsdialog|date"
msgid "Date"
-msgstr ""
+msgstr "Fecha"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:189
msgctxt "conflictsdialog|changes-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Cambios"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:207
msgctxt "conflictsdialog|keepmine"
@@ -16992,81 +16997,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulario de datos"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Cerrar"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Registro nuevo"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nuevo"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "E_liminar"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restaurar"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Registro _anterior"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Registro _siguiente"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Cerrar"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Flujos de datos en directo"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Inserte aquí el URL del documento de origen en el sistema de archivos local o en Internet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Examinar…"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Intervalo de base de datos:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Proveedor de datos:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Cadena de búsqueda:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Flujo de origen"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -17970,37 +17935,37 @@ msgstr "Contenido a números"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:15
msgctxt "fourieranalysisdialog|FourierAnalysisDialog"
msgid "Fourier Analysis"
-msgstr ""
+msgstr "Análisis de Fourier"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:111
msgctxt "fourieranalysisdialog|input-range-label"
msgid "Input range:"
-msgstr ""
+msgstr "Intervalo de entrada:"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:150
msgctxt "fourieranalysisdialog|output-range-label"
msgid "Results to:"
-msgstr ""
+msgstr "Resultados en:"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:187
msgctxt "fourieranalysisdialog|withlabels-check"
msgid "Input range has label"
-msgstr ""
+msgstr "El intervalo de entrada tiene etiqueta"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:211
msgctxt "fourieranalysisdialog|label1"
msgid "Data"
-msgstr ""
+msgstr "Datos"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:246
msgctxt "fourieranalysisdialog|groupedby-columns-radio"
msgid "_Columns"
-msgstr ""
+msgstr "_Columnas"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:262
msgctxt "fourieranalysisdialog|groupedby-rows-radio"
msgid "_Rows"
-msgstr ""
+msgstr "_Filas"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:284
msgctxt "fourieranalysisdialog|label2"
@@ -18025,7 +17990,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:386
msgctxt "fourieranalysisdialog|label3"
msgid "Options"
-msgstr ""
+msgstr "Opciones"
#: sc/uiconfig/scalc/ui/functionpanel.ui:45
msgctxt "functionpanel|insert|tooltip_text"
@@ -18485,17 +18450,17 @@ msgstr "_Pegar todo"
#: sc/uiconfig/scalc/ui/insertname.ui:131
msgctxt "insertname|STR_HEADER_NAME"
msgid "Name"
-msgstr ""
+msgstr "Nombre"
#: sc/uiconfig/scalc/ui/insertname.ui:144
msgctxt "insertname|STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
-msgstr ""
+msgstr "Intervalo o expresión de fórmula"
#: sc/uiconfig/scalc/ui/insertname.ui:157
msgctxt "insertname|STR_HEADER_SCOPE"
msgid "Scope"
-msgstr ""
+msgstr "Alcance"
#: sc/uiconfig/scalc/ui/insertsheet.ui:23
msgctxt "insertsheet|InsertSheetDialog"
@@ -18595,17 +18560,17 @@ msgstr "Gestionar nombres"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:127
msgctxt "managenamesdialog|name"
msgid "Name"
-msgstr ""
+msgstr "Nombre"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:140
msgctxt "managenamesdialog|expression"
msgid "Range or formula expression"
-msgstr ""
+msgstr "Intervalo o expresión de fórmula"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:153
msgctxt "managenamesdialog|scope"
msgid "Scope"
-msgstr ""
+msgstr "Alcance"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:183
msgctxt "managenamesdialog|info"
@@ -18782,32 +18747,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultados en:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Datos"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Columnas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Filas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Agrupados en"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervalo:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parámetros"
@@ -18947,167 +18917,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Ay_uda"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Archivo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Especifique los bordes de las celdas seleccionadas."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Aumentar sangría"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Disminuir sangría"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "I_nsertar"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "I~nsertar"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Disposición"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Disposición"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Da_tos"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "Da~tos"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Di_bujo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Di~bujo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objeto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Herramientas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Herramientas"
@@ -21592,20 +21564,30 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Resultados de la búsqueda"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
-msgstr ""
+msgstr "Hoja"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
-msgstr ""
+msgstr "Celda"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
-msgstr ""
+msgstr "Contenido"
#: sc/uiconfig/scalc/ui/selectdatasource.ui:8
msgctxt "selectdatasource|SelectDataSourceDialog"
@@ -23472,107 +23454,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Símb_olos del esquema"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Ventana"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Líneas de la _cuadrícula"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Color:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Mostrar en celdas coloreadas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Saltos de _página"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Líneas _guía al mover"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Auxiliares visuales"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jetos/imágenes:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diag_ramas:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Objetos de _dibujo:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objetos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_incronizar las hojas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Escala"
diff --git a/source/es/scp2/source/ooo.po b/source/es/scp2/source/ooo.po
index 4fe3a8279b2..42408d9ef71 100644
--- a/source/es/scp2/source/ooo.po
+++ b/source/es/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-10 15:28+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-31 15:17+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1554910116.000000\n"
+"X-POOTLE-MTIME: 1559315871.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Abrir documento"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (modo seguro)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/es/scp2/source/winexplorerext.po b/source/es/scp2/source/winexplorerext.po
index 843f5862e85..86a5d7056cb 100644
--- a/source/es/scp2/source/winexplorerext.po
+++ b/source/es/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-06-15 05:12+0200\n"
-"Last-Translator: Adolfo <fitoschido@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 07:16+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369379785.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permite que el Explorador de Microsoft Windows muestre información relativa a documentos de %PRODUCTNAME, como previsualizaciones en miniatura."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/es/sd/messages.po b/source/es/sd/messages.po
index 864ca9e0ee4..110af836282 100644
--- a/source/es/sd/messages.po
+++ b/source/es/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-21 18:16+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Pulse para seguir el hiperenlace:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nombre del diseño HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Archivo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Ay_uda"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Archivo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "I_nsertar"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "I~nsertar"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Página"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Página"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Di_bujo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Di~bujo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Herramientas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Herramientas"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4585,160 +4775,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Mostrar formas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Archivo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Ay_uda"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Archivo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insertar"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "I~nsertar"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Diapositiva"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "Diap~ositiva"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Pase de diapositivas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Pase de diapositivas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Di_bujo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Di~bujo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Herramientas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Herramientas"
diff --git a/source/es/sfx2/messages.po b/source/es/sfx2/messages.po
index 563f1e4ca25..c2de83a773a 100644
--- a/source/es/sfx2/messages.po
+++ b/source/es/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-10 15:28+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1554910092.000000\n"
#: include/sfx2/strings.hrc:25
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Quitar propiedad"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"El valor introducido no coincide con el tipo especificado.\n"
"El valor se almacenará como texto."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "El estilo ya existe. ¿Quiere sobrescribirlo?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Restablecer"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Este nombre ya está en uso."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Este estilo no existe."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Este estilo no puede utilizarse como estilo base\n"
"porque se crearía una referencia recursiva."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"El nombre ya existe como estilo predeterminado.\n"
"Elija otro nombre."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Si los elimina, el estilo del texto se revertirá al principal.\n"
"¿Confirma que quiere eliminar estos estilos?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Estilos en uso: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navegador"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Confirmación errónea de la contraseña"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Enviar"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Tipo de letra"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Mostrar previsualizaciones"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Ver comentario de la versión"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(no se estableció el nombre)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lista de estilos"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Jerárquico"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Modo de relleno de formato"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Estilo nuevo a partir de selección"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Acciones de estilos"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Actualizar estilo"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "¿Quiere realmente cancelar la grabación? Se perderán todos los pasos grabados hasta ahora."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Cancelar grabación"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Se están inicializando las plantillas para el primer uso."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"No se encontró ninguna impresora predeterminada.\n"
"Seleccione una e inténtelo de nuevo."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"No se puede iniciar la impresora.\n"
"Compruebe la configuración."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Impresora ocupada"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (solo lectura)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"¿Quiere aplicar los valores nuevos en el documento\n"
"actual?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"¿Quiere aplicar las modificaciones en el documento\n"
"actual?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"¿Quiere aplicar los valores nuevos en el documento\n"
"actual?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"El documento no se puede cerrar por ahora\n"
"ya que todavía se está imprimiendo."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Revise la configuración de %PRODUCTNAME o la del programa de correo electrónico."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"El código de error es $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Error al enviar correo"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Este documento no se puede editar, posiblemente porque no tiene derechos de acceso. ¿Quiere editar una copia del documento?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"También puede probar a ignorar el bloqueo y abrir el archivo para su edición."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Abrir ~copia"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Abrir"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (documento reparado)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Este documento no se desprotegió en el servidor."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "¡Ayúdenos a mejorar aún más %PRODUCTNAME!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Participar"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Sus donaciones apoyan nuestra comunidad internacional."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Donar"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Este documento se abrió en modo de solo lectura."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Este PDF está abierto en el modo de solo lectura para permitir firmar el archivo actual."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "La etiqueta de clasificación de este documento es «%1»."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Este documento debe clasificarse antes de que se pueda pegar desde el portapapeles."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Este documento tiene un nivel de clasificación menor que el del portapapeles."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Nivel"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Seguridad nacional:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Control de exportación:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Desproteger"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editar documento"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Firmar documento"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Este documento contiene una firma no válida."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "La firma era válida pero se modificó el documento"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "La firma es correcta, pero no se pudo validar el certificado."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "La firma es correcta, pero el documento se ha firmado solo parcialmente."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "No se pudo validar el certificado y el documento está firmado solo parcialmente."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Este documento está firmado digitalmente y la firma es válida."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Mostrar firmas"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Cerrar panel"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Anclar"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Desanclar"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Más opciones"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Minimizar barra lateral"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Configuración de barra lateral"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalización"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restablecer predeterminados"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Cerrar barra lateral"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarina"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Colmena"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Curva de azul"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cianotipo"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Azul brillante"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Bermellón sofisticado"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Foco"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Ave forestal"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impresión"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiración"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Luces"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verde frondoso"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Azul medianoche"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Naturaleza"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lápiz"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portafolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progreso"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Atardecer"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Retro"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vívido"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículo"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Predeterminada"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, tipografía sin gracias"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, tipografía con gracias"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Tarjeta de presentación con emblema"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Quitar"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Vaciar todo"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longitud de contraseña"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "La contraseña que ha proporcionado causa problemas de interoperatividad. Escriba una que sea menor que 52 bytes o mayor que 55 bytes."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Comentario sobre la versión:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nombre"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipo"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valor"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Sí"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "No"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Añadir _propiedad"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nombre"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valor"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Ubicación:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipo:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Cambiar _contraseña"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Plantilla:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Propiedades de «%1»"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "General "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descripción"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Propiedades personalizadas"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Propiedades de CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Seguridad"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Este producto fue creado por %OOOVENDOR. La base original fue OpenOffice.org, cuyos derechos de autor de 2000 a 2011 pertenecen a Oracle y/o sus afiliados. %OOOVENDOR reconoce a todos los miembros de la comunidad; para saber más visite http://www.libreoffice.org/."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/es/shell/messages.po b/source/es/shell/messages.po
new file mode 100644
index 00000000000..3367b7e4aa8
--- /dev/null
+++ b/source/es/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-31 15:23+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"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: 1559316182.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Abrir documento"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Está a punto de abrir el documento\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"¿Quiere abrirlo para visualizarlo o para modificarlo?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Ver"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Modificar"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Cancelar"
diff --git a/source/es/starmath/messages.po b/source/es/starmath/messages.po
index 5f0c65f1231..5878e1d3c9f 100644
--- a/source/es/starmath/messages.po
+++ b/source/es/starmath/messages.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-01-21 06:12+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 14:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1548051136.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559314550.000000\n"
#: starmath/inc/smmod.hrc:16
msgctxt "RID_UI_SYMBOLSET_NAMES"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Ejemplos"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr "Circunferencia"
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr "Equivalencia masa-energía"
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr "Teorema de Pitágoras"
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr "Una serie sencilla"
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr "Distribución de Gauss"
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estándar"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Itálica"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negrita"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "negro"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "azul"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "rojo"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cian"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lima"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "granate"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "azul marino"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "aceituna"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "púrpura"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "verde azulado"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "amarillo"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ocultar"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamaño"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "tipo de letra"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "izquierda"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centro"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "derecha"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Órdenes"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Guardando el documento..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula de %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Carácter no esperado"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Señal inesperada"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Se esperaba «{»"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Se esperaba «}»"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Se esperaba «(»"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Se esperaba «)»"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Los símbolos izquierdo y derecho son desiguales"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Se esperaba «fixed», «sans» o «serif»"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "«size» seguido de una señal inesperada"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "No se permite la alineación duplicada"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "No se permiten dobles sub- y superíndices"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Se esperaba «#»"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Se requiere un color"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Se esperaba «RIGHT»"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contenido"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Título"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Texto de ~fórmula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~ordes"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamaño"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamaño o~riginal"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ajustar a la ~página"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "E~scala"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementos"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr "Categorías de elementos"
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/es/svtools/messages.po b/source/es/svtools/messages.po
index 4589f0ec3aa..04cfcdd69d3 100644
--- a/source/es/svtools/messages.po
+++ b/source/es/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-10 15:27+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 14:51+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,1521 +13,1523 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554910060.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559314288.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Deshacer: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Re~hacer: "
+msgid "Redo: "
+msgstr "Rehacer: "
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repetir: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Texto sin formato"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Texto sin formato (TSV/Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imagen de mapa de bits (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metarchivo de interfaz de dispositivo gráfico (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Formato de texto enriquecido (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Formato de texto enriquecido (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formato de dibujo de %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Mapa de bits/animación de StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Información de estado de enlace interno de SVX"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Enlace de %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcador de Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formato de servidor Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formato de objeto Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objeto de miniaplicación"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objeto de complemento"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objeto de StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objeto de StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objeto de StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objeto de StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objeto de StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objeto de StarWriter/Global 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objeto de StarWriter/Global 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objeto de StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objeto de StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objeto de StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objeto de StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objeto de StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objeto de StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objeto de StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objeto de StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objeto de StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objeto de StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objeto de StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objeto de StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objeto de StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objeto de StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objeto de StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objeto de StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objeto de StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Lenguaje de marcación de hipertexto (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Lenguaje de marcación de hipertexto simplificado (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Formato binario de intercambio de Microsoft Excel 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Formato binario de intercambio de Microsoft Excel 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Intercambio dinámico de datos (enlace DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Formato de intercambio de datos (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objeto de Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objeto StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objeto de documento de Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Información de documento de Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documento Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objeto de StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objeto gráfico"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objeto de OpenOffice.org Writer 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objeto de OpenOffice.org Writer/Web 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objeto de OpenOffice.org Writer/Web 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objeto de OpenOffice.org Draw 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objeto de OpenOffice.org Impress 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objeto de OpenOffice.org Calc 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objeto de OpenOffice.org Chart 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objeto de OpenOffice.org Math 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metarchivo de Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objeto de origen de datos"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabla de origen de datos"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diálogo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Enlace"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formato HTML sin comentarios"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Gráfico de red portátil (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "No se pudo insertar el objeto %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "No se pudo insertar el objeto del archivo %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Otros objetos"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Origen desconocido"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nombre"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Tamaño"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Fecha de modificación"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipo"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "kB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Fila: %1, columna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tipo: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Carpeta"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Archivo"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Campo vacío"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Conjunto de caracteres"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionario"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trazo"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Listín telefónico"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonético (alfanumérico primero)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonético (alfanumérico por último)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionario"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trazo"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonético (alfanumérico primero, agrupado por sílabas)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonético (alfanumérico primero, agrupado por consonantes)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonético (alfanumérico por último, agrupado por sílabas)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonético (alfanumérico por último, agrupado por consonantes)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Hoy"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Ninguno"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Ligera"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Ligera itálica"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Itálica"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Negrita"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Negrita itálica"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Negra"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Negra itálica"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Libro"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Negrita oblicua"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensada"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensada negrita"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensada negrita itálica"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensada negrita oblicua"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensada itálica"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensada oblicua"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extraligera"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extraligera itálica"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblicua"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Seminegrita"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Seminegrita itálica"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Se usará el mismo tipo de letra en la impresora y en la pantalla."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Tipo de letra de la impresora. La imagen en pantalla podría ser distinta."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Se imitará este estilo de letra o se usará el más adecuado."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Este tipo de letra no está instalado. Se usará el tipo disponible más parecido."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Examinar…"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mover al inicio"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mover a la izquierda"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mover a la derecha"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mover al final"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Añadir"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regla horizontal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regla vertical"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Umbral de 1 bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Interpolación de 1 bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escala de grises de 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Color de 4 bits"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de grises de 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Color de 8 bits"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Color real de 24 bits"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "La imagen necesita aproximadamente %1 kB de memoria."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "La imagen necesita aproximadamente %1 kB de memoria; el tamaño del archivo es de %2 kB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "El tamaño del archivo es %1 kB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "servidor"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "puerto"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Otro servicio CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preparado"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Detenido"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Eliminación pendiente"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupado"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicializando"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "En espera"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Arrancando"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Procesando"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Imprimiendo"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Desconectado"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor desconocido"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Atasco de papel"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Falta de papel"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentación manual"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema de papel"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S activos"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "La papelera de salida está llena"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tóner bajo"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "No hay tóner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Eliminar página"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Se necesita que intervenga"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memoria insuficiente"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Abrir cubierta"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modo de ahorro energético"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impresora predeterminada"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documentos"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Finalizar"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Siguiente >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< A~nterior"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Pasos"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ninguno>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamento"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nombre(s)"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Apellido(s)"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Calle"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Código postal"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciudad"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Título"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posición"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tratamiento"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciales"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tratamiento"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Teléfono privado"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Teléfono trabajo"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Correo electrónico"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuario 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuario 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuario 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuario 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Id."
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provincia"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Teléfono trabajo"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Buscapersonas"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Móvil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Teléfono (otros)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendario"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invitar"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME necesita un entorno de ejecución de Java (JRE) para realizar esta tarea. Instale un JRE y reinicie %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME necesita un entorno de ejecución de Java (JRE) de %BITNESS bits para realizar esta tarea. Instale un JRE y reinicie %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "Para realizar esta tarea, %PRODUCTNAME necesita el Kit de Desarrollo de Java de Oracle (JDK) y macOS 10.10 o una versión más reciente. Instálelos y reinicie %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Se modificó la configuración de %PRODUCTNAME. En %PRODUCTNAME > Preferencias > %PRODUCTNAME > Avanzado, seleccione el entorno de ejecución de Java que quiera utilizar."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Se modificó la configuración de %PRODUCTNAME. En Herramientas > Opciones > %PRODUCTNAME > Avanzado, seleccione el entorno de ejecución de Java que quiera utilizar."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME necesita un entorno de ejecución de Java (JRE) para realizar esta tarea. El JRE seleccionado es defectuoso. Seleccione otra versión o instale un JRE nuevo y selecciónelo en %PRODUCTNAME > Preferencias > %PRODUCTNAME > Avanzado."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME necesita un entorno de ejecución de Java (JRE) para realizar esta tarea. El JRE seleccionado es defectuoso. Seleccione otra versión o instale un JRE nuevo y selecciónelo en Herramientas > Opciones > %PRODUCTNAME > Avanzado."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Se necesita un JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Seleccionar JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "El JRE es defectuoso"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Código fuente"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Archivo de marcadores"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Imágenes"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Archivo de configuración"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicación"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabla de base de datos"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Archivo del sistema"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documento de MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Archivo de ayuda"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archivador"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Archivo de registro"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de datos de StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Patrón de documento de StarWriter 4.0/5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imagen de StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Archivo de texto"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Enlace"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Plantillas de StarOffice 3.0-5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documento de MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Plantilla de MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Archivo de lotes"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Archivo"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Carpeta"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documento de texto"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Hoja de cálculo"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentación"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dibujo"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Patrón de documento"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de datos"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Plantilla de hoja de cálculo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Plantilla de dibujo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Plantilla de presentación de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Plantilla de documento de texto de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unidad local"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unidad de disco"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unidad de CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Conexión de red"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documento de MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Plantilla de MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Presentación autoejecutable de MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Gráfico de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dibujo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Hoja de cálculo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentación de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documento de texto de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Patrón de documento de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documento de MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de datos de OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dibujo de OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula de OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Patrón de documento de OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentación de OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Hoja de cálculo de OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Texto de OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Plantilla de hoja de cálculo de OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Plantilla de dibujo de OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Plantilla de presentación de OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Plantilla de texto de OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensión de %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Revisor ortográfico Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Divisor de palabras Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Diccionario de sinónimos MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lista de palabras ignoradas"
@@ -4127,7 +4129,7 @@ msgstr "Ilocano"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Inglés (Zambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
@@ -4672,7 +4674,7 @@ msgstr ""
#: svtools/uiconfig/ui/restartdialog.ui:265
msgctxt "restartdialog|reason_mscompatible_formsmenu"
msgid "For restructuring the Forms menu, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Reinicie %PRODUCTNAME para que se reestructure el menú Formulario."
#: svtools/uiconfig/ui/restartdialog.ui:280
msgctxt "restartdialog|label"
diff --git a/source/es/svx/messages.po b/source/es/svx/messages.po
index 67245a1edb5..a502c11e382 100644
--- a/source/es/svx/messages.po
+++ b/source/es/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-07 10:26+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-15 04:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557224811.000000\n"
+"X-POOTLE-MTIME: 1557892947.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7918,6 +7918,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "De izquierda a derecha (vertical)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -8780,37 +8785,37 @@ msgstr "Ninguno"
#: svx/inc/spacing.hrc:48
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Small (1/16\")"
-msgstr ""
+msgstr "Muy pequeño (1⁄16 in)"
#: svx/inc/spacing.hrc:49
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small (1/8\")"
-msgstr ""
+msgstr "Pequeño (1⁄8 in)"
#: svx/inc/spacing.hrc:50
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Small Medium (1/4\")"
-msgstr ""
+msgstr "Mediano reducido (1⁄4 in)"
#: svx/inc/spacing.hrc:51
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium (3/8\")"
-msgstr ""
+msgstr "Mediano (3⁄8 in)"
#: svx/inc/spacing.hrc:52
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Medium Large (1/2\")"
-msgstr ""
+msgstr "Mediano amplio (1⁄2 in)"
#: svx/inc/spacing.hrc:53
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Large (3/4\")"
-msgstr ""
+msgstr "Grande (3⁄4 in)"
#: svx/inc/spacing.hrc:54
msgctxt "RID_SVXSTRARY_MARGINS_INCH"
msgid "Extra Large (1\")"
-msgstr ""
+msgstr "Extragrande (1 in)"
#: svx/inc/spacing.hrc:61
msgctxt "RID_SVXSTRARY_MARGINS_CM"
@@ -10511,7 +10516,7 @@ msgstr "Número de parte:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Texto de parte:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11334,42 +11339,42 @@ msgstr "Fuente de luz 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Color de luz 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Color de luz 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Color de luz 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Color de luz 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Color de luz 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Color de luz 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Color de luz 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Color de luz 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12188,82 +12193,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Indique el porcentaje de desplazamiento vertical desde el centro para el estilo de sombreado del degradado. 50 % es el centro vertical."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor de contornos"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Área de trabajo"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Seleccionar"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rectángulo"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polígono"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Desplazar puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insertar puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Eliminar puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Contorno automático"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Deshacer"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Rehacer"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolerancia de color"
@@ -12575,112 +12585,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Pie de página"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor de mapa de imagen"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Abrir…"
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Guardar…"
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Cerrar"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Seleccionar"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rectángulo"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polígono"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Polígono de forma libre"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar puntos"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mover puntos"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insertar puntos"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Eliminar puntos"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Deshacer "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Rehacer"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Activo"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro…"
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Propiedades…"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Dirección:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Marco:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Texto:"
@@ -13477,6 +13482,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME está ejecutándose en modo seguro, que desactiva temporalmente la configuración y las extensiones de usuario.\n"
+"\n"
+"Puede realizar uno o más de los cambios siguientes en el perfil de usuario para restituir el funcionamiento de %PRODUCTNAME."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/es/sw/messages.po b/source/es/sw/messages.po
index e130383295c..c73c7c06c14 100644
--- a/source/es/sw/messages.po
+++ b/source/es/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-10 15:27+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-15 04:03+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554910052.000000\n"
+"X-POOTLE-MTIME: 1557893039.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Cambiar el título del objeto $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Cambiar la descripción del objeto $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -7020,7 +7020,7 @@ msgstr "Asigne los campos del origen de datos para que coincidan con los element
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:185
msgctxt "assignfieldsdialog|ST_ADDRESSELEMENT"
msgid "Address elements"
-msgstr ""
+msgstr "Elementos de la dirección"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:197
msgctxt "assignfieldsdialog|ST_PREVIEW"
@@ -7455,7 +7455,7 @@ msgstr "Número telefónico residencial"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:214
msgctxt "businessdatapage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Número de fax"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:231
msgctxt "businessdatapage|email-atkobject"
@@ -12011,147 +12011,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Ay_uda"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Archivo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insertar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insertar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposición"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Disposición"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referencia_s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referencia~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Di_bujo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Di~bujo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Herramientas"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Herramientas"
@@ -12161,152 +12161,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Archivo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Inicio"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Inicio"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Insertar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Ajuste"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Disposición"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referencia_s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisión"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "_Tabla"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Imagen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Di_bujo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Imprimir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Herramientas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13374,8 +13374,8 @@ msgstr "Ampliar espacio entre palabras en renglones de párrafos justificados co
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Proteger formulario"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16657,47 +16657,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Sumario, índice o bibliografía"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Previsualización"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Previsualización"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entradas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Estilos"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Columnas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fondo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Previsualización"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Nivel"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tipo"
@@ -16927,302 +16927,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Editar…"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Título:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Sumario"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Índice alfabético"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Índice de figuras"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Índice de tablas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Definido por el usuario"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Índice de objetos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografía"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protegido contra cambios manuales"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipo y título"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Para:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Todo el documento"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capítulo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evaluar hasta el nivel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Crear un índice o un sumario"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Esquema"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Marcas de índice"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tablas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Marcos de te_xto"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Imagen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Objetos OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Usar el nivel del capítulo de origen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Estilos _adicionales"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Estilos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Asignar estilos…"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Leyendas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Nombres de objetos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categoría:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Mostrar:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referencias"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categoría y número"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Texto de leyenda"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Crear a partir de"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Crear a partir de estos objetos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Paréntesis:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Entradas _numéricas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[ninguno]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formato de las entradas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Combinar entradas idénticas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Agrupar entradas idénticas con p. o _pp."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Combinar con -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Distinguir mayúsculas y minúsculas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Entradas con mayúsculas automáticas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Claves como entradas separadas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Archivo de _concordancia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Archivo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opciones"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Idioma:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipo de clave:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ordenar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Niveles"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "E_stilos de párrafo"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Predeterminado"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Editar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Asignación"
diff --git a/source/et/cui/messages.po b/source/et/cui/messages.po
index b7710df1992..06f56911d87 100644
--- a/source/et/cui/messages.po
+++ b/source/et/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Äärised puuduvad"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Ainult välised äärised"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Välised äärised ja horisontaaljooned"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Välised äärised ja kõik sisemised jooned"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Välised äärised sisemisi jooni muutmata"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Ainult diagonaalid"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Kõik neli äärist"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Ainult vasak ja parem ääris"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Ainult ülemine ja alumine ääris"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Ainult vasak ääris"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Ülemised ja alumised äärised ning kõik sisemised jooned"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Vasak- ja parempoolsed äärised ning kõik sisemised jooned"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Ilma varjuta"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Vari all paremal"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Vari üleval paremal"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Vari all vasakul"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Vari üleval vasakul"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME'i teave"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Tänuavaldused"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Veebileht"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Järgu ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Lokaat: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Põhjalik logi: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME on moodne ja hõlpsasti kasutatav avatud lähtekoodiga loometarkvara tekstitöötluse, tabelarvutuse, esitluste ja palju muu jaoks."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice põhineb OpenOffice.org-il."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME põhineb LibreOffice'il, mis omakorda põhineb OpenOffice.org-il."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Selle toote andis välja %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Asenda"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Asendatakse"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "sõnaga:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Ainult tekst"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimaalne sõna pikkus"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Omadused"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Paneel:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Nimi:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternatiivne tekst:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "Kirjeldus:"
@@ -9019,80 +9179,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Abi"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Kasutatakse %PRODUCTNAME'i dialooge"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Avamise/salvestamise dialoogid"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Kasutatakse %PRODUCTNAME'i dialooge"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Printimise dialoogid"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printimist loetakse dokumendi muutmiseks"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumendi olek"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Tõlgendatakse aastatena vahemikus "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ja "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Kahekohalised aastaarvud"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kasutusteabe kogumine ja The Document Foundationile edastamine"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "%PRODUCTNAME'i täiustamisele kaasaaitamine"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME laaditakse sisselogimisel mällu"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Kiirkäivitaja lubamine süsteemisalves"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME'i kiirkäivitaja"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Oma kujundus"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Võid valida ka laiendustena paigaldatud kujunduste hulgast:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefoxi kujundused"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Turvasätted"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Firefoxi kujundused"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/et/extensions/messages.po b/source/et/extensions/messages.po
index a6558e0102a..debd372ba80 100644
--- a/source/et/extensions/messages.po
+++ b/source/et/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Veergude paigutus tabelis „%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Lühinimi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Autor(id)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Kirjastaja"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Peatükk"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Toimetaja"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Tüüp"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Aasta"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Pealkiri"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Aa_dress"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_Leheküljed"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Redaktsioon"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Raamatu pealkiri"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Köide"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Avaldamistüüp"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organisatsioon"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "As_utus"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Ülikool"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Aruande tüüp"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Kuu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Ajakiri"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Number"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "See_ria"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Annotatsioon"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Märkus"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Kasutaja määratud _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Kasutaja määratud _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Kasutaja määratud _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Kasutaja määratud _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Kasutaja määratud _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Veergude nimed"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Sisesta uue andmetüübi nimi:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Väljade linkimine"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Soovita"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Alamvorme kasutatakse detailsemate andmete näitamiseks põhivormist valitud kirje kohta. Selleks pead määrama, millised alamvormi veerud vastavad põhivormi veergudele."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "silt"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "silt"
diff --git a/source/et/helpcontent2/source/auxiliary.po b/source/et/helpcontent2/source/auxiliary.po
index 204c909e8ce..6d4d3483dcc 100644
--- a/source/et/helpcontent2/source/auxiliary.po
+++ b/source/et/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Üldine teave"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "Tööriistaribad"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Joonistused (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menüüd"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Tööriistaribad"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objektid ja pildid"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Rühmad ja kihid"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Tekst esitlustes ja joonistustes"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/sbasic/guide.po b/source/et/helpcontent2/source/text/sbasic/guide.po
index 561f4bb40a0..7694898685e 100644
--- a/source/et/helpcontent2/source/text/sbasic/guide.po
+++ b/source/et/helpcontent2/source/text/sbasic/guide.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: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Programmi koodiga dialoogi avamine"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>moodulite ja dialoogide vahel lülitumine</bookmark_value><bookmark_value>dialoogid; kuvamise programmeerimine (näide)</bookmark_value><bookmark_value>näited; dialoogi kuvamise programmeerimine</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/sbasic/python.po b/source/et/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/et/helpcontent2/source/text/sbasic/python.po
+++ b/source/et/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/et/helpcontent2/source/text/sbasic/shared.po b/source/et/helpcontent2/source/text/sbasic/shared.po
index 02d3a8cc409..9c861ee41eb 100644
--- a/source/et/helpcontent2/source/text/sbasic/shared.po
+++ b/source/et/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] BASICu Abi\">%PRODUCTNAME BASICu Abi</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/sbasic/shared/03.po b/source/et/helpcontent2/source/text/sbasic/shared/03.po
index fcee34b81fe..c1337bb66a2 100644
--- a/source/et/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/et/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/et/helpcontent2/source/text/scalc/01.po b/source/et/helpcontent2/source/text/scalc/01.po
index 1b26d5ba6dc..6f4bd651fb6 100644
--- a/source/et/helpcontent2/source/text/scalc/01.po
+++ b/source/et/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Otsi üles fail, mis sisaldab andmeid, mida soovid lisada.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Vali tabel või andmevahemik, mida soovid lisada.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Määrab lahtrivahemiku, mida soovid väljal <emph>Konsolideeritavad vahemikud</emph> loetletud lahtrivahemikega konsolideerida. Vali lehel lahtrivahemik ja klõpsa siis nuppu <emph>Lisa</emph>. Samuti saad loendist <emph>Lähteandmete vahemik</emph> valida mõne eelnevalt määratud lahtri nime.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/schart/00.po b/source/et/helpcontent2/source/text/schart/00.po
index ff8cfe184da..16041ba43c5 100644
--- a/source/et/helpcontent2/source/text/schart/00.po
+++ b/source/et/helpcontent2/source/text/schart/00.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Vali joon- või joontega XY-diagrammi puhul diagrammi tüübi dialoogis joone tüübi väljal Sujuv ja klõpsa nupul Omadused.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">Vali joon- või joontega XY-diagrammi puhul diagrammi tüübi dialoogis joone tüübi väljal Astmeline ja klõpsa nupul Omadused.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/et/helpcontent2/source/text/shared/00.po b/source/et/helpcontent2/source/text/shared/00.po
index e4808273d45..10ad4480564 100644
--- a/source/et/helpcontent2/source/text/shared/00.po
+++ b/source/et/helpcontent2/source/text/shared/00.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/et/helpcontent2/source/text/shared/01.po b/source/et/helpcontent2/source/text/shared/01.po
index 7791c07c00c..db05c46dd44 100644
--- a/source/et/helpcontent2/source/text/shared/01.po
+++ b/source/et/helpcontent2/source/text/shared/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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/et/helpcontent2/source/text/shared/02.po b/source/et/helpcontent2/source/text/shared/02.po
index 99522b18528..d66015257d6 100644
--- a/source/et/helpcontent2/source/text/shared/02.po
+++ b/source/et/helpcontent2/source/text/shared/02.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/et/helpcontent2/source/text/shared/guide.po b/source/et/helpcontent2/source/text/shared/guide.po
index 136b47fb6c3..d9ae4d36a1a 100644
--- a/source/et/helpcontent2/source/text/shared/guide.po
+++ b/source/et/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/et/helpcontent2/source/text/shared/optionen.po b/source/et/helpcontent2/source/text/shared/optionen.po
index 989df61368f..befa9b1dc01 100644
--- a/source/et/helpcontent2/source/text/shared/optionen.po
+++ b/source/et/helpcontent2/source/text/shared/optionen.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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Eraldusvõime"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>võrguidentiteedi sätted</bookmark_value><bookmark_value>sätted; võrguidentiteet</bookmark_value><bookmark_value>ühississelogimise sätted</bookmark_value><bookmark_value>LDAP server; sisselogimise sätted</bookmark_value><bookmark_value>kaugsätted</bookmark_value><bookmark_value>sätete haldur</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/serverauthentication.xhp\">Serveris autentimine</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/et/helpcontent2/source/text/simpress/01.po b/source/et/helpcontent2/source/text/simpress/01.po
index 31cf66c4005..51e4fef9234 100644
--- a/source/et/helpcontent2/source/text/simpress/01.po
+++ b/source/et/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/et/helpcontent2/source/text/swriter/guide.po b/source/et/helpcontent2/source/text/swriter/guide.po
index 1a3a95bb7c8..82cc0133ed9 100644
--- a/source/et/helpcontent2/source/text/swriter/guide.po
+++ b/source/et/helpcontent2/source/text/swriter/guide.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: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Klõpsa <emph>standardtööriistariba</emph> ikoonil <emph> Navigaator</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\">Ikoon</alt></image> to open the <emph>Navigaator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po b/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
index 598b41db92e..98b3b28fe6e 100644
--- a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/et/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/et/sc/messages.po b/source/et/sc/messages.po
index 960ddee9ec3..7543f9b5177 100644
--- a/source/et/sc/messages.po
+++ b/source/et/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15208,6 +15208,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ainujuurdepääs)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15761,12 +15766,12 @@ msgstr "Tingimusliku vormindamise haldus"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16984,81 +16989,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Andmevorm"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Sulge"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Uus kirje"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Uus"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Kustuta"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Taasta"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Eelmine kirje"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Järgmine kirje"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Sulge"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Andmete otsevood"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Sisesta siia lähtedokumendi URL kohalikus failisüsteemis või Internetis."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Lehitse..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Andmebaasi vahemik:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Andmeallikas:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Otsitav string:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Lähtevoog"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18774,32 +18739,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Tulemid:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Andmed"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Veergude järgi"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Ridade järgi"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Rühmitamine"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervall:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parameetrid"
@@ -18939,167 +18909,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21580,17 +21552,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Otsingu tulemused"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23460,107 +23442,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Liigendussümbolid"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Aken"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Võrgustik:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "Värv:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Nähtaval"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Nähtaval, ka värvitud lahtrites"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Peidetud"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Leheküljepiirid"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Abijooned liigutamisel"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Abikuva"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Objektid ja pildid:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diagrammid:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Joonistusobjektid:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Nähtaval"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Peidetud"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Nähtaval"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Peidetud"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Nähtaval"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Peidetud"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objektid"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Lehtede sünkroonimine"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Suurendus"
diff --git a/source/et/scp2/source/ooo.po b/source/et/scp2/source/ooo.po
index 38dd8062012..0b1d29a45b6 100644
--- a/source/et/scp2/source/ooo.po
+++ b/source/et/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ooo.po\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -35,6 +35,14 @@ msgstr "Ava dokument"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/et/scp2/source/winexplorerext.po b/source/et/scp2/source/winexplorerext.po
index 5dc9caef3a0..e1267be32b5 100644
--- a/source/et/scp2/source/winexplorerext.po
+++ b/source/et/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 10:57+0200\n"
-"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:19+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369351196.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Võimaldab Microsoft Windows Exploreris kuvada teavet %PRODUCTNAME'i dokumentide kohta, näiteks pisipilte."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/et/sd/messages.po b/source/et/sd/messages.po
index f938e6dc870..4e4938f7d94 100644
--- a/source/et/sd/messages.po
+++ b/source/et/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML-kujunduse nimi"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Kujundite kuvamine"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/et/sfx2/messages.po b/source/et/sfx2/messages.po
index 0b90ef266f6..4949347561d 100644
--- a/source/et/sfx2/messages.po
+++ b/source/et/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " A: %1 K: %2 P: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Eemalda omadus"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Sisestatud väärtus ei vasta määratud tüübile.\n"
"Väärtus salvestatakse tekstina."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Stiil on juba olemas. Kas kirjutada see üle?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Lähtesta"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "See nimi on juba kasutusel."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Seda stiili pole olemas."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Malli pole võimalik kasutada baasmallina,\n"
"kuna võib tekkida rekursiivne viitamine."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Nimi on juba vaikestiilina olemas.\n"
"Palun vali mõni muu nimi."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Nende kustutamisel rakendub tekstile lingitud ülemstiil.\n"
"Kas soovid ikkagi valitud stiilid kustutada?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Kasutusel stiilid: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigaator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Vigane parooli kinnitus"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Saatmine"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Font"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Versiooni kommentaar"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(nime pole määratud)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Stiililoend"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarhiline"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Vorminduse valamisrežiim"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Uus stiil valikust"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Uuenda stiili"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Kas sa tõesti soovid salvestamist katkestada? Kõik selle hetkeni salvestatud sammud unustatakse."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Katkesta salvestamine"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Mallid initsialiseeritakse esmakordseks kasutamiseks."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Vaikimisi printerit ei leitud.\n"
"Palun vali printer ja proovi siis uuesti."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Printeri käivitamine ei õnnestunud.\n"
"Palun kontrolli printeri sätteid."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Printer on hõivatud"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (kirjutuskaitstud)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Kas salvestada uued sätted aktiivsesse\n"
"dokumenti?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Kas salvestada uued sätted aktiivsesse\n"
"dokumenti?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Kas salvestada uued sätted aktiivsesse\n"
"dokumenti?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Dokumenti pole võimalik sulgeda,\n"
"kuna prinditöö saatmine printerisse on lõpetamata."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,7 +1139,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1152,17 +1147,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Dokumenti ei saa redigeerimiseks avada, kuna arvatavasti pole sul piisavalt õigusi. Soovid sa redigeerida dokumendi koopiat?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1170,349 +1165,359 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (parandatud dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Dokument pole serverist tööversioonina alla laaditud."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dokument on avatud ainult lugemiseks."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "See PDF-fail on avatud kirjutuskaitstuna, et lubada algse dokumendi allkirjastamist."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Selle dokumendi klassifikatsioonisilt on %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Enne, kui lõikepuhvri sisu saab asetada, tuleb dokument klassifitseerida."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Sellel dokumendil on madalam klassifikatsioonitase kui lõikepuhvri sisul."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Riiklik julgeolek:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Ekspordikontroll:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Laadi tööversioon alla"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Muuda dokumenti"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Allkirjasta dokument"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dokumendil on kehtetu allkiri."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Allkiri oli korras, aga dokumenti on hiljem muudetud."
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Allkiri on korras, aga sertifikaati polnud võimalik valideerida."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Allkiri on korras, aga vaid osa dokumendist on allkirjastatud."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dokument on digitaalselt allkirjastatud ja allkiri kehtib."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Näita allkirju"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Sulge paneel"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Doki"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Doki lahti"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Rohkem sätteid"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sulge külgriba"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Külgriba seaded"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Kohandamine"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Taasta algseis"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Sulge külgriba"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alisariin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Meekärg"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Sinine laine"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Joonis"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Eresinine"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Elegantne punane"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fookuses"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Metsaserv"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiratsioon"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Valgushelk"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Mahlakas roheline"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropol"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Öösinine"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Kolm puud ja päike"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pliiats"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klaver"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfoolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progress"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Päikseloojang"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vanamoeline"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Erk"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "USA moodi CV"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Vaikimisi"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modernne"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modernne ärikiri (seriifideta kirjas)"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modernne ärikiri (seriifkirjas)"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Logoga visiitkaart"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Eemalda"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Kustuta kõik"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1857,32 +1862,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Versiooni kommentaar:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nimi"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tüüp"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Väärtus"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tüüp"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Jah"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ei"
@@ -1892,17 +1882,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Lisa omadus"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nimi"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tüüp"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Väärtus"
@@ -2032,17 +2022,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Asukoht:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Tüüp:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Muuda parooli..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Mall:"
@@ -2052,27 +2042,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Omadused: \"%1\""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Üldine "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Kirjeldus"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Kohandatud omadused"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS-i omadused"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Turvalisus"
@@ -2286,6 +2276,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/et/shell/messages.po b/source/et/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/et/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/et/starmath/messages.po b/source/et/starmath/messages.po
index 8d7d7bd07f1..9b5d94ee0cc 100644
--- a/source/et/starmath/messages.po
+++ b/source/et/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-08-05 18:20+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Näited"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standardne"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kaldkiri"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Paks"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "must"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "sinine"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "roheline"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "punane"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "tsüaan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "hall"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "laimiroheline"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "pruun"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "tumesinine"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliivroheline"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lilla"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "hõbedane"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "sinakasroheline"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "kollane"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "peidetud"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "suurus"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "vasakule"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "keskele"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "paremale"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Käsud"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Valem"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokumendi salvestamine..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION valem"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "VIGA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Sobimatu sümbol"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Sobimatu sümbol"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Oodati '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Oodati '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Oodati '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Oodati ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Vasak- ja parempoolne sümbol ei sobi kokku"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Oodati 'fixed', 'sans' või 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Sobimatu sümbol 'size' järel"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Topeltjoondus pole lubatud"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Topelt üla- või alaindeksid pole lubatud"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Oodati '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Värv on vajalik"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Oodati 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Sisu"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Tiitel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Valemi tekst"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Ää~rised"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Suurus"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Originaalsuurus"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Mahutatakse ~leheküljele"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skaleeritud"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elemendid"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/et/svtools/messages.po b/source/et/svtools/messages.po
index 6fc7e02d231..2a19c6fb984 100644
--- a/source/et/svtools/messages.po
+++ b/source/et/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195419.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Võta tagasi: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Tee uuesti: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Korda: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Vormindamata tekst"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Olekuinfo Svx siselingist"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape'i järjehoidja"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star serveri vorming"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star objekti vorming"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Apleti objekt"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Plugina objekt"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 objekt"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 objekt"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 objekt"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 objekt"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 objekt"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 objekt"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 objekt"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw' objekt"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 objekt"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 objekt"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 objekt"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc objekt"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 objekt"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 objekt"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart'i objekt"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 objekt"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage objekt"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 objekt"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 objekt"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath objekt"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 objekt"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 objekt"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint objekt"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word objekt"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet objekt"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office dokumendi objekt"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Märkmete dokumendi info"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokument"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Pildiobjekt"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writeri objekt"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writeri/veebi objekt"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writeri põhiobjekt"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw' objekt"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impressi objekt"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calci objekt"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Charti objekt"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Mathi objekt"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windowsi metafail"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Andmeallika objekt"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Andmeallika tabel"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-päring"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dialoog"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Link"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-vorming ilma kommentaarideta"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekti % lisamine ei õnnestunud."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekti lisamine failist % ei õnnestunud."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Muud objektid"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Tundmatu server"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nimi"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Suurus"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Viimati muudetud"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tüüp"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "baiti"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Rida: %1, veerg: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", tüüp: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Kaust"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fail"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Tühi väli"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Tärk"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Tavaline"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Märgistik"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Sõnastik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Joon"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefoniraamat"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foneetiline (tärgid alguses)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foneetiline (tärgid lõpus)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Tärk"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Sõnastik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Joon"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foneetiline (tärgid alguses, silpide järgi rühmitatud)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foneetiline (tärgid alguses, konsonantide järgi rühmitatud)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foneetiline (tärgid lõpus, silpide järgi rühmitatud)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foneetiline (tärgid lõpus, konsonantide järgi rühmitatud)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Täna"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Puudub"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Kerge"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Kerge kaldkiri"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Harilik"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kaldkiri"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Paks"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Paks kaldkiri"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Must"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Must kaldkiri"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Raamatukiri"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Paks viltukiri"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Tihendatud"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Tihendatud kaldkiri"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Tihendatud paks kaldkiri"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Tihendatud paks viltukiri"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Tihendatud kaldkiri"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Tihendatud viltukiri"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Väga kerge"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Väga kerge kaldkiri"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Viltukiri"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Poolpaks"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Poolpaks kaldkiri"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Sama fonti kasutatakse nii printeris kui ka ekraanil."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "See on printeri font. Ekraanilolev pilt võib erineda."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Seda fondistiili simuleeritakse või kasutatakse lähimat sobivat stiili."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "See font pole paigaldatud. Kasutatakse lähimat saadaolevat."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Lehitse..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Liiguta algusse"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Nihuta vasakule"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Nihuta paremale"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Liiguta lõppu"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Lisa"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Rõhtjoonlaud"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Püstjoonlaud"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bitine lävi"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bitine virvtoonimine"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bitised halltoonid"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bitised värvid"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bitised halltoonid"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bitised värvid"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bitised loomutruud värvid"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Pilt vajab umbes %1 KB mälu."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Pilt vajab umbes %1 KB mälu, faili suurus on %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Faili suurus on %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Muu CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Valmis"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Paus"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Kustutamise ootel"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Hõivatud"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Lähtestamine"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Ootel"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Soojenemine"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Töötlemine"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Printimine"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Ühenduseta"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Tõrge"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Tundmatu server"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paberiummistus"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Paberit pole piisavalt"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Käsitsisööt"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Paberiprobleem"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktiivne"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Väljastussalv on täis"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tooner on otsakorral"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Tooner on otsas"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Kustuta lehekülg"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Nõutav kasutaja sekkumine"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Mälu pole piisavalt"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Kaas on lahti"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiasäästurežiim"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Vaikimisi printer"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumenti"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Lõpeta"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Edasi >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Ta~gasi"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Sammud"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<puudub>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Ettevõte"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Osakond"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Eesnimi"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Perekonnanimi"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Tänav"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Riik"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Sihtnumber"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Linn"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Tiitel"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Ametikoht"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Kõnetlussõna"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initsiaalid"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Viisakas hüvastijätt"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Kodune telefon"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Töötelefon"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Märkus"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Kasutaja 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Kasutaja 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Kasutaja 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Kasutaja 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Maakond"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Kontoritelefon"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Peiler"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobiil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Muu telefon"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Küllakutse"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME vajab selle ülesande täitmiseks Java töökeskkonda (JRE). Palun paigalda mõni JRE ja käivita %PRODUCTNAME uuesti."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME'i seadistust on muudetud. Vali menüüst %PRODUCTNAME - Eelistused - %PRODUCTNAME - Edasijõudnuile ja vali Java töökeskkond, mida soovid %PRODUCTNAME'il kasutada lasta."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME'i seadistust on muudetud. Vali menüüst Tööriistad - Sätted - %PRODUCTNAME - Edasijõudnuile ja vali Java töökeskkond, mida soovid %PRODUCTNAME'il kasutada lasta."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vajab antud ülesande täitmiseks Java töökeskkonda (JRE). Valitud JRE on vigane. Palun vali mõni muu versioon või paigalda uus JRE ja seejärel vali see dialoogist %PRODUCTNAME - Eelistused - %PRODUCTNAME - Edasijõudnuile."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vajab antud ülesande täitmiseks Java töökeskkonda (JRE). Valitud JRE on vigane. Palun vali mõni muu versioon või paigalda uus JRE ja seejärel vali see dialoogist Tööriistad - Sätted - %PRODUCTNAME - Edasijõudnuile."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE on nõutav"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE valimine"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE on vigane"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Lähtetekst"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Järjehoidjate fail"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Pilt"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Häälestusfail"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Rakendus"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Andmebaasi tabel"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Süsteemne fail"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Wordi dokument"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Abifail"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arhiiv"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Logifail"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice'i andmebaas"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 põhidokument"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice'i pilt"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstifail"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Link"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 mall"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Exceli dokument"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Exceli mall"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch-fail"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fail"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Kaust"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstidokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Arvutustabel"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Esitlus"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Joonistus"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Põhidokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Valem"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Andmebaas"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 arvutustabeli mall"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 joonistuse mall"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 esitluse mall"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 tekstidokumendi mall"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Kohalik ketas"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Kettaseade"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-seade"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Võrguühendus"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPointi dokument"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPointi mall"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPointi esitlus"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 valem"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 diagramm"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 joonistus"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 arvutustabel"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 esitlus"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 tekstidokument"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 põhidokument"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-andmebaas"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-joonistus"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-valem"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-põhidokument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-esitlus"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-arvutustabel"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-tekst"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-arvutustabeli mall"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-joonistuse mall"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-esitluse mall"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekstimall"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME'i laiendus"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspelli õigekirjakontroll"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhypheni poolitaja"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/et/svx/messages.po b/source/et/svx/messages.po
index c6dd5b57b00..531a15351a7 100644
--- a/source/et/svx/messages.po
+++ b/source/et/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7918,6 +7918,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12185,82 +12190,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Määra läbipaistvusülemineku vertikaalne nihe. 50% on täpselt keskel."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Kontuuriredaktor"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Rakenda"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Tööruum"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Vali"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Ristkülik"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellips"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Hulknurk"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Redigeeri punkte"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Liiguta punkte"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Lisa punkte"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Kustuta punkte"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Automaatkontuur"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Võta tagasi "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Tee uuesti"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipett"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Värvi tolerants"
@@ -12571,112 +12581,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Jalus"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Hüperpiltide redaktor"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Rakenda"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Ava..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Salvesta..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Sulge"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Vali"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Ristkülik"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellips"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Hulknurk"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Korrapäratu hulknurk"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Redigeeri punkte"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Liiguta punkte"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Lisa punkte"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Kustuta punkte"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Võta tagasi "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Tee uuesti"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktiivne"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Omadused..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Aadress:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Paneel:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekst:"
diff --git a/source/et/sw/messages.po b/source/et/sw/messages.po
index ac7c25cd4af..b7a115aa206 100644
--- a/source/et/sw/messages.po
+++ b/source/et/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Muuda objekti $1 pealkirja"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Muuda objekti $1 kirjeldust"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12007,147 +12007,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12157,152 +12157,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13369,8 +13369,8 @@ msgstr "Sõnavahede laiendamine manuaalse reavahega rööpjoondatud lõikudes"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Muutmise eest kaitstud vorm"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16646,47 +16646,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Sisukord, register või bibliograafia"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Eelvaade"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Eelvaade"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tüüp"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Kirjed"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stiilid"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Veerud"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Taust"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Eelvaade"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Tase"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "Tüüp"
@@ -16916,302 +16916,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Redigeeri..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Pealkiri:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tüüp:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Sisukord"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Tähestikuline register"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Tabelite register"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Kasutaja määratud"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektide register"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliograafia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Kaitstud käsitsitehtavate muudatuste eest"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tüüp ja pealkiri"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr " "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Kogu dokument"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Peatükk"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Kuni tasemeni:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Registri/sisukorra ulatus"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Dokumendi liigendus (pealkirjad)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Määratud kirjed"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabelid"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Tekstipaneelid"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Pildid"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objektid"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Kasutatakse lähtepeatüki taset"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Lisastiilid"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stiilid"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Omista stiilid..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Pealdised"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektide nimed"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategooria:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Kuvatakse:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Viited"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategooria ja number"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Pealdise tekst"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Kaasatavad kirjed"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Kaasatavad objektid"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Sulud:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Arvkirjed"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "Puuduvad"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[...]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "(...)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{...}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<...>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Kirjete vormindamine"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Sarnased kirjed kombineeritakse"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "_p või pp-ga"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Kriipsuga"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Tõstutundlikult"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Kirjetele suured algustähed"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Võtmed kui eraldi kirjed"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Registrifail"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Fail"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Sätted"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Keel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Võtme tüüp:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sortimine"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Tasemed"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Lõigustiilid"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Vaikeväärtus"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Redigeeri..."
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Määramine"
diff --git a/source/eu/cui/messages.po b/source/eu/cui/messages.po
index f1d7bedd651..6272e9c9c69 100644
--- a/source/eu/cui/messages.po
+++ b/source/eu/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-03 14:47+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-31 14:03+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556894839.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559311410.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Sartu gai baten baliozko helbide bat edo bilaketa-hitz bat."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "Mozillaren gaien APIa ez dago erabilgarri."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Ez ezarri ertzik"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Ezarri kanpoko ertza soilik"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Ezarri kanpoko ertza eta marra horizontalak"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Ezarri kanpoko ertza eta barneko marra guztiak"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Ezarri kanpoko ertza barruko marrak aldatu gabe"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Ezarri marra diagonalak soilik"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Ezarri lau ertzak"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Ezarri ezkerreko eta eskuineko ertzak soilik"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Ezarri goiko eta beheko ertzak soilik"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Ezarri ezkerreko ertza soilik"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Ezarri goiko eta beheko ertzak eta barneko marra guztiak"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Ezarri ezkerreko eta eskuineko ertzak eta barneko marra guztiak"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Itzalik ez"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Jaurti itzala behera eskuinera"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Jaurti itzala gora eskuinera"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Jaurti itzala behera ezkerrera"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Jaurti itzala gora ezkerrera"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Sinatzailea: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Fitxategi guztiak"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Erregistratutako datu-baseak"
@@ -1746,241 +1741,241 @@ msgstr "Erregistratutako datu-baseak"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME aplikazioak urruneko zerbitzarietan biltegiratutako fitxategiak ireki eta gorde ditzake CMIS erabilita."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr ""
+msgstr "'Tresnak > Autozuzenketa > Autozuzenketaren aukerak... > Ordeztu' aukerak ordezkapen arruntenen zerrenda bat eskaintzen du. Bota begirada bat eta osatu zerrenda zure ordezkapenekin."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can handle styles conditionally: paragraph styles that have different properties depending on the context."
-msgstr ""
+msgstr "Writerrek baldintzapeko estiloak maneiatu ditzake: testuinguruaren arabera propietate desberdinak dituzten paragrafo-estiloak sortu daitezke."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/05130100.html
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With File > Versions you can store multiple versions of the document in the same file. You can also open, delete, and compare previous versions."
-msgstr ""
+msgstr "'Fitxategia > Bertsioak' aukerarekin, dokumentu baten bertsio anitz eduki ditzakezu fitxategi bakarrean. Aurreko bertsioak ireki, ezabatu eta konparatu ditzakezu."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/01190000.html
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
-msgstr ""
+msgstr "Ilustrazioen indize bat sortu dezakezu objektuen izenetatik abiatuta, ez soilik epigrafeak erabilita."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/05190000.html
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To temporarily starts with a fresh user profile or to restore a non-working %PRODUCTNAME instance start Help > Restart in Safe Mode."
-msgstr ""
+msgstr "Erabiltzaile-profil berri batekin behin-behinean hasteko edo funtzionatzen ez duen %PRODUCTNAME instantzia bat leheneratzeko, erabili 'Laguntza > Berrabiarazi modu seguruan'."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
-msgstr ""
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
+msgstr "Aldatu txantiloi aurredefinituaren edo uneko dokumentuaren oinarrizko letra-tipoak 'Tresnak > Aukerak > %PRODUCTNAME Writer > Oinarrizko letra-tipoak' bidez."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr ""
+msgstr "Definitu sarritan erabiltzen dituzun testuak autotestu gisa. Horiek txertatzeko, beren izena, lasterbide bat edo tresna-barra bat erabili ahal izango duzu edozein Writer dokumentutan."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/autotext.html
#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools > Options > %PRODUCTNAME Writer > AutoCaption."
-msgstr ""
+msgstr "%PRODUCTNAME aplikazioak automatikoki gehitu dezake zenbakidun epigrafe bat objektuak txertatzen direnean. Ikusi 'Tresnak > Aukerak > %PRODUCTNAME Writer > Autoepigrafea."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01041100.html
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr ""
+msgstr "Paragrafoak edo taula-errenkadak alfabetoaren edo zenbakien arabera ordenatu ditzakezu, 'Tresnak > Ordenatu' erabilita."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sections in %PRODUCTNAME Writer to protect part of a text, show/hide text, reuse parts from other documents, use different column layout."
-msgstr ""
+msgstr "Erabili sekzioak %PRODUCTNAME Writerren testu baten zati bat babesteko, testua erakutsi/ezkutatzeko, beste dokumentu batzuetako zatiak berrerabiltzeko edo zutabe-diseinu anitz erabiltzeko."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/04020100.html
#: cui/inc/tipoftheday.hrc:56
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet > Fill Cells > Random Number to generate a random series based on various distributions."
-msgstr ""
+msgstr "Erabili 'Orria > Bete gelaxkak > Ausazko zenbakia' banaketa desberdinetan oinarritutako ausazko serieak sortzeko."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/02140700.html
#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Conditional Formatting > Manage in Calc to find out which cells have been defined with conditional formatting."
-msgstr ""
+msgstr "Calc aplikazioan, erabili 'Formatua > Baldintzapeko formatua > Kudeatu' aukera baldintzapeko formatuarekin definitu diren gelaxkak aurkitzeko."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/05120000.html
#: cui/inc/tipoftheday.hrc:58
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
-msgstr ""
+msgstr "Aurkibideez gain, %PRODUCTNAME aplikazioak indize alfabetikoak, ilustrazioenak, taulenak, objektuenak, bibliografikoak eta erabiltzaileak definitutakoak sortu ditzake."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/indices_toc.html
#: cui/inc/tipoftheday.hrc:59
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
-msgstr ""
+msgstr "%PRODUCTNAME Calc aplikazioko serie bat (adibidez A1, A2, A3, A11, A15) ordenatu nahi duzu, baina ez modu alfabetikoan baizik eta zenbakiaren arabera? Gaitu ordenatze naturala 'Aukerak' fitxan."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/12030200.html
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools > Options > OpenCL."
-msgstr ""
+msgstr "Gaitu formula-gelaxken kalkulu paralelo masiboak 'Tresnak > Aukerak > OpenCL' aukera erabilita."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/opencl.html
#: cui/inc/tipoftheday.hrc:61
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
-msgstr ""
+msgstr "%PRODUCTNAME aplikazioak makroen 4 segurtasun-maila (baxutik oso altura) eta iturburu fidagarriak onartzen ditu."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:63
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
-msgstr ""
+msgstr "Komando-lerroko baliozko parametroak ezagutu nahi dituzu? Abiarazi soffice --help edo -h edo -? parametroekin."
#. local help missing
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr ""
+msgstr "Kalkulu-orri bateko hiperesteken aurkezpena kudeatu nahi duzu? Txertatu hiperestekak HYPERLINK funtzioa erabilita."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Can not get what you want with VLOOKUP? With INDEX and MATCH you can do everything!"
-msgstr ""
+msgstr "Ez duzu jasotzen nahi duzuna VLOOKUP erabilita? INDEX eta MATCH bidez edozer egin dezakezu!"
#. local help missing
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "PDF fitxategiak sinatu ditzakezu eta sinadurak egiaztatu."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
-msgstr ""
+msgstr "Writerrek LibreLogo dakar: Logoren antzekoa den programazio-ingurunea da, dortoka-grafiko bektorialak DTP eta diseinu grafikoa dituena."
#. local help missing
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr ""
+msgstr "Gelaxkak babestu ditzakezu 'Formatua > Gelaxkak > Babesa' erabilita. Orriak txertatzea, ezabatzea, berrizendatzea edo mugitzea/kopiatzea eragozteko, erabili 'Tresnak > Babestu orria'."
#. local help missing
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr ""
+msgstr "X hilabete gehitu nahi dizkiozu data bati? Erabili =EDATE(data;hilabeteak)"
#. local help missing
#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependants (Shift+F5) (or use Tools > Detective). For each hit you go one more step in the chain."
-msgstr ""
+msgstr "Bilatu formula batean erabilitako gelaxken aztarna, aurrekoak (Shift+F9) edo mendekoak (shift+F5) (edo erabili 'Tresnak > Detektibea'). Tiro bakoitzeko, urrats bat gehiago egiten da katean."
#. local help missing
#: cui/inc/tipoftheday.hrc:71
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a serie? Select the cell range and Sheet > Fill Cells > Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Serie bat betetzea behar duzu? Hautatu gelaxka-barrutia eta 'Orria > Bete gelaxkak > Bete serieak' eta aukeratu honako balioen artean: lineala, hazkundea, data edo betetze automatikoa."
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
-msgstr ""
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
+msgstr "%PRODUCTNAME aplikazioarekin Google Mail kontua erabili dezakezu posta-konbinaziorako. Bete 'Tresnak > Aukerak > %PRODUCTNAME Writer > Posta-konbinazioaren helbidea'."
#. local help missing
#: cui/inc/tipoftheday.hrc:73
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Data > Validity allows you to create drop-down lists where the user selects a value instead of typing."
-msgstr ""
+msgstr "'Datuak > Baliozkotasuna' aukerarekin goitibeherako zerrendak sortu daitezke erabiltzaileak balio bat aukeratu dezan, hura idatzi ordez."
#. local help missing
#: cui/inc/tipoftheday.hrc:74
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use View > Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background."
-msgstr ""
+msgstr "Erabili 'Ikusi > Nabarmendu balioak' gelaxka-eduki guztiak koloretan bistaratzeko: testua/beltza, formulak/berde, zenbakiak/urdina, babestutako gelaxkak/atzeko plano grisa."
#. local help missing
#: cui/inc/tipoftheday.hrc:75
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
-msgstr ""
+msgstr "Calc aplikazioan errore-kode bitxia daukazu? Err: letrak eta zenbaki bat? Honako orriak azalpena emango dizu:"
#. local help missing
#: cui/inc/tipoftheday.hrc:76
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit > Find & Replace > Other options > Attributes > Font weight."
-msgstr ""
+msgstr "Writer dokumentu bateko letra lodiak aurkitu nahi dituzu? Erabili 'Editatu > Bilatu eta ordeztu > Beste aukera batzuk > Atributuak > Letra-lodiera'."
#. local help missing
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit > Find & Replace: Search = [<|>], Replace = blank and check ‘Regular expressions’ under Other options."
-msgstr ""
+msgstr "<> guztiak aldi berean kendu nahi dituzu eta haien barruko testuari eutsi? Erabili 'Editatu > Bilatu eta ordeztu': Bilatu = [<|>], Ordeztu = zuria eta markatu 'Adierazpen erregularrak' kontrol-laukia 'Beste aukerak' atalean."
#. local help missing
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > Detective > Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
-msgstr ""
+msgstr "'Tresnak > Detektibea > Markatu baliogabeko datuak' aukerak balidazio-arauak betetzen ez dituzten balioak dauzkaten gelaxka guztiak nabarmentzen ditu orri batean."
#. local help missing
#: cui/inc/tipoftheday.hrc:79
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to allow changes to parts of a read-only document in Writer? Insert frames or sections that can authorize changes."
-msgstr ""
+msgstr "Irakurtzeko soilik den Writer dokumentu bateko zenbait zatitan aldaketak egin ahal izatea ahalbidetu nahi duzu? Txertatu markoak edo sekzioak eta baimendu aldaketak horietan."
#. local help missing
#: cui/inc/tipoftheday.hrc:80
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writing a book? %PRODUCTNAME master document lets you manage large documents as a container for individual %PRODUCTNAME Writer files."
-msgstr ""
+msgstr "Liburu bat idazten ari al zara? %PRODUCTNAME dokumentu maisuek dokumentu handiak kudeatzea ahalbidetzen dizu, banakako %PRODUCTNAME Writer fitxategien edukiontzi gisa erabili baitaiteke."
#. local help missing
#: cui/inc/tipoftheday.hrc:81
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
-msgstr ""
+msgstr "Calc aplikazioan, erabili TRIMMEAN() datu multzo baten batez bestekoa, baliorik altuena eta baxuena kenduta, lortzeko."
#. local help missing
#: cui/inc/tipoftheday.hrc:82
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
-msgstr ""
+msgstr "Kalkulatu maileguen amortizazioak Clac erabilita: adibidez, PMT(2%/12;36;2500) interes-tasa amortizazio-epealdiko 2%/12, 36 hilabete, maileguaren kantitatea 2500."
#. local help missing
#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
-msgstr ""
+msgstr "Erabili zure Android edo iPhone telefonoa zure Impress aurkezpena urrunetik kontrolatzeko."
#. local help missing
#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
-msgstr ""
+msgstr "Aurkezle-kontsola eginbide bikaina da %PRODUCTNAME Impressekin aurkezpenak egiteko. Probatu al duzu?"
#. local help missing
#: cui/inc/tipoftheday.hrc:85
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
-msgstr ""
+msgstr "Markatu automatikoki indize alfabetikoen sarrerak konkordantzia-fitxategi bat erabilita."
#. local help missing
#: cui/inc/tipoftheday.hrc:86
@@ -1992,97 +1987,97 @@ msgstr "Markoak estekatu egin daitezke, testua batetik bestera jariatu dadin mak
#: cui/inc/tipoftheday.hrc:88
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get help from the community via the Ask portal."
-msgstr ""
+msgstr "Eskuratu komunitatearen laguntza Ask atariaren bitartez."
#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has great extensions to increase your productivity, check them out."
-msgstr ""
+msgstr "%PRODUCTNAME suiteak hedapen bikainak ditu zure produktibitatea handitzeko, begira itzazu."
#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents, check it out."
-msgstr ""
+msgstr "%PRODUCTNAME suiteak txantiloien gune bat du itxura oneko dokumentuak sortzeko, begira itzazu."
#: cui/inc/tipoftheday.hrc:91
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by clicking on F1, if you've installed it. Otherwise check online at:"
-msgstr ""
+msgstr "Integratutako laguntza kontsultatu nahi baduzu, sakatu F1 (instalatuta izan behar duzu). Bestela, kontsultatu linean hemen:"
#: cui/inc/tipoftheday.hrc:92
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
-msgstr ""
+msgstr "Eskuratu %PRODUCTNAME dokumentazioa eta erabiltzaile-eskuliburu libreak hemen:"
#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Zure dohaitzek mundu osoan dugun komunitateari laguntzen diote."
#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as an extension."
-msgstr ""
+msgstr "%PRODUCTNAME suitean oso erraza da hiztegi berria instalatzea: hedapen gisa instalatzen dira."
#: cui/inc/tipoftheday.hrc:95
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
-msgstr ""
+msgstr "%PRODUCTNAME komunitate lagunkoi batek garatzen du. Mundu osoko ehunka kolaboratzailez osatuta dago komunitatea. Egin bat gurekin, kodea idazteaz gain beste hainbat zeregin daude."
#: cui/inc/tipoftheday.hrc:96
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
-msgstr ""
+msgstr "%PRODUCTNAME suiteak mugikortasuna erraztuko dizun bertsio eramangarri bat dauka. Ordenagailuan administratzaile-eskubideak ez izan arren, %PRODUCTNAME Portable disko gogorrean instalatu dezakezu."
#: cui/inc/tipoftheday.hrc:97
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
-msgstr ""
+msgstr "%PRODUCTNAME aplikazioak tresna lagungarriak erabiltzea onartzen du, esaterako kanpoko pantaila-irakurleak, Braille gailuak edo ahotsa ezagutzeko sarrerako gailuak."
#: cui/inc/tipoftheday.hrc:98
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "Sortu PDF hibrido editagarriak %PRODUCTNAME erabilita."
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management ? Use a 3rd party extension."
-msgstr ""
+msgstr "Aipamenen kudeaketa? Erabili hirugarren baten hedapena."
#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You plan to change the computer and want to recover your customizations? See:"
-msgstr ""
+msgstr "Ordenagailua aldatzera zoaz eta han dituzun pertsonalizazioak berreskuratu nahi dituzu? Ikusi:"
#: cui/inc/tipoftheday.hrc:101
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
-msgstr ""
+msgstr "%PRODUCTNAME 150 hizkuntza baino gehiagotan erabil daiteke."
#: cui/inc/tipoftheday.hrc:102
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
-msgstr ""
+msgstr "%PRODUCTNAME enbaxadore bihurtu nahi duzu? Garatzaileentzako, administratzaileentzako eta prestatzaileentzako ziurtagiriak daude."
#: cui/inc/tipoftheday.hrc:103
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
+msgstr "%PRODUCTNAME erakundeak Google Summer of Code (GSoC) deialdian parte hartzeko asmoa du, ikusi:"
#: cui/inc/tipoftheday.hrc:104
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create fillable form documents (even PDF's) with %PRODUCTNAME."
-msgstr ""
+msgstr "Sortu betegarriak diren inprimaki-dokumentuak (baita PDFak ere) %PRODUCTNAME erabilita."
#: cui/inc/tipoftheday.hrc:105
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
-msgstr ""
+msgstr "Exekutatu %PRODUCTNAME edozein nabigatzailetan rollApp bidez."
#: cui/inc/tipoftheday.hrc:106
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and xml filters?"
-msgstr ""
+msgstr "XSLT eta xml iragazki berriak garatzen ari al zara?"
#: cui/inc/tipoftheday.hrc:108
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2092,22 +2087,22 @@ msgstr "Bihurtu zure dokumentuak modu errazean PDF formatura klik bakarrarekin,
#: cui/inc/tipoftheday.hrc:109
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select a different icon set from Tools > Options > %PRODUCTNAME > View > User Interface > Icon size and style."
-msgstr ""
+msgstr "Hautatu beste ikono multzo bat 'Tresnak > Aukerak > %PRODUCTNAME > Ikusi > Erabiltzaile-interfazea > Ikono-tamaina eta -estiloa' erabilita."
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File > Properties > Font."
-msgstr ""
+msgstr "Kapsulatu letra-tipoak beste bulegotika-suite batzuekin bateragarritasun hobea lortzeko: 'Fitxategia > Propietateak > Letra-tipoa'."
#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Generate fully customized PDF documents with the exact format, image compression, comments, access rights, password, etc., via File > Export as PDF."
-msgstr ""
+msgstr "Sortu osorik pertsonalizatutako PDF dokumentuak: formatu zehatza, irudien konpresioa, iruzkinak, atzitze-baimenak zein pasahitza definitu daitezke 'Fitxategia > Esportatu PDF gisa' erabilita."
#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data > Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
-msgstr ""
+msgstr "Erabili 'Datuak > Estatistikak' laginketetarako, analisi deskriptiborako, bariantzen analisirako, korrelazioetarako eta gauza gehiagotarako %PRODUCTNAME Calc-en."
#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2117,7 +2112,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress use Insert > Media > Photo Album to create a slideshow from a series of pictures with the 'Photo Album' feature."
-msgstr ""
+msgstr "%PRODUCTNAME Impressen, erabili 'Txertatu > Multimedia > Argazki-albuma' diapositiba-aurkezpen bat sortzeko 'Argazki-albuma' elementuko irudiekin."
#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2137,42 +2132,42 @@ msgstr "Paragrafo bat edo gehiago lekuz aldatu behar duzu? Ez moztu eta itsatsi,
#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File > Wizards > Document converter."
-msgstr ""
+msgstr "Bihurtu zure MS Office dokumentuak sortaka OpenDocument formatura dokumentu-bihurtzailea erabilita, 'Fitxategia > Morroiak > Dokumentu-bihurtzailea' aukeran dago."
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet > Sheet from file."
-msgstr ""
+msgstr "Ireki CSV fitxategi bat orri berri gisa, uneko kalkulu-orrian, 'Txertatu > Orria fitxategitik' erabilita"
#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table > Select > Table and Insert > Frame… and move where you want."
-msgstr ""
+msgstr "Writerreko taula bat mugitzea behar duzu? Joan 'Taula > Hautatu > Taula' aukerara, ondoren 'Txertatu > Markoa...' eta amaitzeko, mugitu taula nahi duzun tokira."
#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
-msgstr ""
+msgstr "%PRODUCTNAME Draw aplikazioan, erregelen 0/0 puntua aldatzeko, arrastatu goiko ezkerreko izkinan dagoen bi erregelen ebakigunea laneko espaziora."
#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Hold down Ctrl and turn the mouse wheel to change the zoom factor."
-msgstr ""
+msgstr "Eutsi sakatuta Ctrl teklari eta mugitu saguaren gurpila zooma aldatzeko."
#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit > Find & Replace lets you insert special characters directly: right click in input fields or press Shift+Ctrl+S."
-msgstr ""
+msgstr "Karaktere bereziak zuzenean txertatzeko 'Editatu > Bilatu eta ordeztu' erabili daiteke: egin eskuineko klik sarrerako eremuetan edo sakatu Shift+Ctrl+S."
#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
-msgstr ""
+msgstr "Ez erabili tabuladoreak elementuen arteko tarteak sartzeko Writer dokumentu batean. Lortu nahi duzunaren arabera, hobe izan daiteke ertzik gabeko taula bat erabiltzea."
#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2202,7 +2197,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:131
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
-msgstr ""
+msgstr "Nahastu orientazio bertikalak eta horizontalak Calc kalkulu-orri batean orri bakoitzari estilo desberdina aplikatuta."
#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2227,7 +2222,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the ‘Apply to All Slides’ button."
-msgstr ""
+msgstr "Errproduzitu musika diapositiba-aurkezpen batean, soinua lehen diapositiba-trantsizioari esleituta 'Aplikatu diapositiba guztiei' botoia sakatu gabe."
#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2237,7 +2232,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
-msgstr ""
+msgstr "Aurkibidean izenburua ez den paragrafo bat sartzeko, aldatu paragrafo-ezarpenen 'Eskema eta numerazioa' aukera eskema-mailara."
#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2247,7 +2242,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the ‘Printable’ flag is not set (right click on the tab and ‘Modify Layer’)."
-msgstr ""
+msgstr "Draw aplikazioan objektu bat ikusi nahi duzu, baina ez inprimatu? Marraztu ezazu 'Inprimagarria' bandera ezarri gabe duen geruza batean (eskuineko klik fitxan eta 'Aldatu geruza')."
#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2262,7 +2257,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to add many shapes in Draw/Impress? Double-click a tool in the drawing toolbar to use it for repeated tasks."
-msgstr ""
+msgstr "Draw/Impress aplikazioetan forma bat baino gehiago gehitu nahi duzue? Egin klik bikoitza marrazketa-barrako tresna batean, hura behin baino gehiagotan erabiltzeko."
#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2307,7 +2302,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File > Save a Copy you create a new document continuing to work on the original."
-msgstr ""
+msgstr "Writerrek babeskopiak egiten laguntzen dizu: erabili 'Fitxategia > Gorde kopia bat' dokumentu berri bat sortzeko eta jatorrizkoan lan egiten jarraitzeko."
#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2342,17 +2337,17 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
-msgstr ""
+msgstr "Calc aplikazioan balio bat sartu ondoren, kurtsorea gelaxkaren eskuinaldera joan dadin nahi duzu? Erabili tabuladorearen tekla, Enter erabili ordez."
#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Show or hide comments in Writer by clicking the comment toggle button in the ruler."
-msgstr ""
+msgstr "Erakutsi edo ezkutatu Writerreko iruzkinak erregelan iruzkinak txandakatzeko dagoen botoiari sakatuta."
#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format > Page > Sheet Tab > Scaling Mode."
-msgstr ""
+msgstr "Doitu zure orria edo inprimatze-barrutiak orrialde bati 'Formatua > Orrialdea > Orri-fitxa > Eskalatze-modua' erabilita."
#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2372,7 +2367,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert > Chart."
-msgstr ""
+msgstr "Sortu Writer taula batean oinarritutako diagrama bat taulan klik egin eta 'Txertatu > Diagrama' aukeratuta."
#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2442,7 +2437,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
-msgstr ""
+msgstr "Txertatu eta zenbakitu zure formulak urrats bakarrean: idatzi fn, ondoren F3. Autotestu bat txertatuko da, taula batean lerrokatuta, formula batekin eta zenbaki batekin."
#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2452,7 +2447,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete in one step all of your printing areas: select all sheets then Format > Print Ranges > Clear."
-msgstr ""
+msgstr "Ezabatu urrats bakarrean zure inprimatze-area guztiak: hautatu orri guztiak eta ondoren aukeratu 'Formatua > Inprimatze-areak > Garbitu'."
#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2482,12 +2477,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
-msgstr ""
+msgstr "Zure zenbakiak ### ikur gisa bistaratzen dira zure kalkulu-orrian? Zutabea estuegia da digitu guztiak erakusteko."
#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Ctrl+Alt+Shift+V to paste the contents of the clipboard as unformatted text."
-msgstr ""
+msgstr "Erabili Ctrl+Alt+Shift+V arbeleko edukiak formaturik gabeko testu gisa itsasteko."
#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2532,7 +2527,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't get lost in large documents. Use the Navigator (F5) to find your way through the content."
-msgstr ""
+msgstr "Ez galdu dokumentu handietan. Erabili nabigatzailea (F5) edukian barrena nahi duzuna aurkitzeko."
#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2562,7 +2557,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:203
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools > AutoText > AutoText > Import you can select Word document or template containing the AutoText entries that you want to import."
-msgstr ""
+msgstr "Inportatu nahi dituzun autotestu-sarrerak dituzten Word dokumentuak edo txantiloiak hautatzeko, 'Tresnak > Autotestua > Autotestua > Inportatu' erabili dezakezu."
#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2652,7 +2647,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Shift+Ctrl+del deletes from cursor to the end of the current sentence."
-msgstr ""
+msgstr "Shift+Ctrl+Del konbinazioak kurtsorearen kokalekutik uneko esaldiaren amaierara arte dagoena ezabatzen du."
#: cui/inc/tipoftheday.hrc:222
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2692,7 +2687,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:229
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You do not want to print all columns? Hide or group the ones you do not need."
-msgstr ""
+msgstr "Ez dituzu zutabe guztiak inprimatu nahi? Ezkutatu edo taldekatu behar ez dituzunak."
#: cui/inc/tipoftheday.hrc:230
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -2853,12 +2848,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:263
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
-msgstr ""
+msgstr "%PRODUCTNAME laguntza"
#: cui/inc/tipoftheday.hrc:264
msgctxt "STR_MORE_LINK"
msgid "More info"
-msgstr ""
+msgstr "Informazio gehiago"
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -3048,12 +3043,12 @@ msgstr "Bateragarritasuna"
#: cui/inc/treeopt.hrc:79
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "AutoCaption"
-msgstr "Epigrafe automatikoa"
+msgstr "Autoepigrafea"
#: cui/inc/treeopt.hrc:80
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Mail Merge Email"
-msgstr "Posta-konbinazioko mezua"
+msgstr "Posta-konbinazioaren helbidea"
#: cui/inc/treeopt.hrc:85
msgctxt "SID_SW_ONLINEOPTIONS_RES"
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME aplikazioari buruz"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr "A_rgitaratze-oharrak"
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Kre_dituak"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Webgunea"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build IDa: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Eskualdeko ezarpena: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Interfazearen hizkuntza: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Ikusi egunkaria: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME kode irekiko produktibitate-suite moderno eta erabilerraz bat da, testu-prozesamendurako, kalkulu-orri gisa, aurkezpenetarako eta gehiagorako erabil daitekeena."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000 - 2019 LibreOfficen kolaboratzaileak."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOfficek OpenOffice.org du oinarritzat."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME produktuak LibreOffice du oinarritzat, eta hura OpenOffice.org-en oinarrituta dago."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Aplikazio honen argitaratzailea %OOOVENDOR da."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Or_deztu"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Ordezt_u"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Honekin:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Testu soila"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Hitzen gutxieneko luzera"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Propietateak"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URLa:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Markoa:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Izena:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Testu alternatiboa:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Deskribapena:"
@@ -9019,80 +9179,80 @@ msgstr "Erakutsi \"Lineako laguntza ez dago instalatuta\" laster-leihora"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr "Erakutsi \"Eguneko aholkua\" elkarrizketa-koadroa abioan"
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Laguntza"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Erabili %PRODUCTNAME elkarrizketa-koadroak"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Irekitzeko eta gordetzeko elkarrizketa-koadroak"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Erabili %PRODUCTNAME _elkarrizketa-koadroak"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Inprimatzeko elkarrizketa-koadroak"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Inpri_matzean \"dokumentu aldatua\" egoera ezartzen du"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentuaren egoera"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretatu bitarte honetako urteak bezala: "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "eta "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Urtea (bi digitu)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Bildu erabilera-datuak eta bidali The Document Foundation fundazioari"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Lagundu %PRODUCTNAME hobetzen"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Kargatu %PRODUCTNAME sistema abiaraztean"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Gaitu erretiluko abiarazle bizkorra"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME abiarazle bizkorra"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Aurretik instalatutako gaia"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Norberaren gaia"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Kargatu Firefoxen gaia"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Edo, hautatu hedapenen bidez instalatutako gaien artean:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox gaiak"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Segurtasuneko aukerak"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Hautatu Firefox gaia"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Bilatu hitza edo helbidea"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "_Kategoria:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstraktua"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Zergatiak"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Filma eta telebista"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Jaieguna"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musika"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natura"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Beste batzuk"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Paisaia"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Urtaroak"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Solidoa"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Kirolak"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Webguneak"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Nabarmendua"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr "Eguneko aholkua"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr "_Erakutsi aholkuak abioan"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr "Gaitu koadroa berriro 'Tresnak > Aukerak > Orokorra' atalean"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Hurrengo aholkua"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Ba al zenekien?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Esteka"
diff --git a/source/eu/extensions/messages.po b/source/eu/extensions/messages.po
index 6272fbc5e67..cdb3492b996 100644
--- a/source/eu/extensions/messages.po
+++ b/source/eu/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-12 10:18+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@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: 1555064284.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "\"%1\" taularen zutabe-diseinua"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Izen _laburra"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Egilea(k)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Argitaratzailea"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Kapitulua"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editorea"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "M_ota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Urtea"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "_Titulua"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "_Helbidea"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_Orrialdea(k)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "_Edizioa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Li_buru-titulua"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Bolumena"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Argitalpen _mota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "E_rakundea"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "In_stituzioa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_bertsitatea"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "T_xosten mota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Hilabetea"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Aldi_zkaria"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Zenba_kia"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "_Seriea"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Ohar_pena"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Oharra"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URLa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "_1. erabiltzaile-eremua"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "_2. erabiltzaile-eremua"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "_3. erabiltzaile-eremua"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "_4. erabiltzaile-eremua"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "_5. erabiltzaile-eremua"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Zutabe-izenak"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Idatzi izen bat datu mota berriarentzat:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Esteka-eremuak"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Iradoki"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Azpinprimakiak inprimaki maisuaren uneko erregistroaren datu xeheak erakusteko erabil daitezke. Hori egiteko, azpinprimakiko zutabeek inprimaki maisuko zein zutabeekin bat datozen adieraz dezakezu."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiketa"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiketa"
diff --git a/source/eu/helpcontent2/source/auxiliary.po b/source/eu/helpcontent2/source/auxiliary.po
index 8f43685ff04..bb4c90ffb17 100644
--- a/source/eu/helpcontent2/source/auxiliary.po
+++ b/source/eu/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-09 08:28+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@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: 1554798514.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Informazio orokorra"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Aurkezpenak eta marrazkiak (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Tresna-barrak"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Marrazkiak (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menuak"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Tresna-barrak"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objektuak, grafikoak eta bit-mapak"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Taldeak eta geruzak"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Testua aurkezpenetan eta marrazkietan"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/sbasic/guide.po b/source/eu/helpcontent2/source/text/sbasic/guide.po
index c0744601064..b0d2960f1ee 100644
--- a/source/eu/helpcontent2/source/text/sbasic/guide.po
+++ b/source/eu/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-25 10:16+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@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: 1556187391.000000\n"
#: access2base.xhp
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Konparatu Access2Base eta Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Elkarrizketa-koadroak programa-kodea erabiliz irekitzea"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>moduluak eta elkarrizketa-koadroak; txandakatu</bookmark_value><bookmark_value>elkarrizketa-koadroak;programa-kodea erabili erakusteko (adibidea)</bookmark_value><bookmark_value>adibideak; elkarrizketa-koadroak programa-kodea erabiliz erakustea</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/sbasic/python.po b/source/eu/helpcontent2/source/text/sbasic/python.po
index 249cdcded80..f484b2c210b 100644
--- a/source/eu/helpcontent2/source/text/sbasic/python.po
+++ b/source/eu/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-05-03 11:06+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-27 08:34+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1556881561.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558946095.000000\n"
#: main0000.xhp
msgctxt ""
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: Elkarrizketa-koadro bat irekitzea"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,8 +93,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
-msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Elkarrizketa-koadro bat Python-en irekitzea</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"N0337\n"
"help.text"
msgid "%PRODUCTNAME static dialogs are created with the <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog editor\">Dialog editor</link> and are stored in varying places according to their personal (My Macros), shared (%PRODUCTNAME Macros) or document-embedded nature. In reverse, dynamic dialogs are constructed at runtime, from Basic or Python scripts, or using any other <link href=\"text/shared/guide/scripting.xhp\">%PRODUCTNAME supported language</link> for that matter. Opening static dialogs with Python is illustrated herewith. Exception handling and internationalization are omitted for clarity."
-msgstr ""
+msgstr "%PRODUCTNAME elkarrizketa-koadro estatikoak <link href=\"text/sbasic/guide/create_dialog.xhp\" name=\"dialog editor\">Elkarrizketen editorearekin</link> sortzen dira eta toki batean baino gehiagotan gordetzen dira pertsonalak badira (Nire makroak), partekatuak badira (%PRODUCTNAME makroak) edo dokumentuan enkapsulatutakoak badira. Elkarrizketa-koadro dinamikoak, berriz, exekuzio-garaiak eraikitzen dira Basic edo Python scriptetatik abiatuta, edo <link href=\"text/shared/guide/scripting.xhp\">%PRODUCTNAME programak onartutako beste edozein lengoaia</link> erabilita. Elkarrizketa-koadroak Python bidez irekitzea hementxe azaltzen da. Salbuespenen maneiua eta internazionalizazioa ez dira sartu, azalpenak argiagoak izan daitezen."
#: python_dialogs.xhp
msgctxt ""
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -534,7 +534,7 @@ msgctxt ""
"N0679\n"
"help.text"
msgid "''' System-dependent filename '''"
-msgstr ""
+msgstr "''' Sistemaren araberako fitxategi-izena '''"
#: python_document_events.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"N0725\n"
"help.text"
msgid "Discovering Documents Events"
-msgstr ""
+msgstr "Dokumentu-gertaera aurkitzea"
#: python_document_events.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"N0727\n"
"help.text"
msgid "With Python"
-msgstr ""
+msgstr "Python bidez"
#: python_document_events.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"N0734\n"
"help.text"
msgid "\"\"\" Display document events \"\"\""
-msgstr ""
+msgstr "\"\"\" Bistaratu dokumentu-gertaerak \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"N0748\n"
"help.text"
msgid "With %PRODUCTNAME Basic"
-msgstr ""
+msgstr "%PRODUCTNAME Basic bidez"
#: python_document_events.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"N0750\n"
"help.text"
msgid "''' Display document events '''"
-msgstr ""
+msgstr "''' Bistaratu dokumentu-gertaerak '''"
#: python_examples.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"N0461\n"
"help.text"
msgid "<bookmark_value>Python;import</bookmark_value> <bookmark_value>Python;Modules</bookmark_value> <bookmark_value>Python;pythonpath</bookmark_value> <bookmark_value>PythonLibraries</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;import</bookmark_value> <bookmark_value>Python;moduluak</bookmark_value> <bookmark_value>Python;pythonpath</bookmark_value> <bookmark_value>PythonLibraries</bookmark_value>"
#: python_import.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"N0462\n"
"help.text"
msgid "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"python imports\">Importing Python Modules</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonimporth1\"><link href=\"text/sbasic/python/python_import.xhp\" name=\"python imports\">Python moduluak inportatzea</link></variable>"
#: python_import.xhp
msgctxt ""
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1110,7 +1110,7 @@ msgctxt ""
"N0392\n"
"help.text"
msgid "With Python"
-msgstr ""
+msgstr "Python bidez"
#: python_listener.xhp
msgctxt ""
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "%PRODUCTNAME Basic lengoaiak ez dauka Mac OS X sistemen jatorrizko ezagutza, eta ComputerName propietatea Windowserako soilik dago erabilgarri. Basic-ek Python makroak deitzen ditu muga horiek gainditzeko."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr "Basic klase-modulu bat erabilita:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/eu/helpcontent2/source/text/sbasic/shared.po b/source/eu/helpcontent2/source/text/sbasic/shared.po
index d000ca47d2c..006ed882ecd 100644
--- a/source/eu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/eu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-25 17:15+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic-en laguntza\">%PRODUCTNAME Basic-en laguntza</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/sbasic/shared/03.po b/source/eu/helpcontent2/source/text/sbasic/shared/03.po
index d99fa632200..58967dec8f1 100644
--- a/source/eu/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/eu/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-20 09:59+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@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: 1547978345.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Moduluen kontrolerako funtzioak eta azpierrutinak."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/eu/helpcontent2/source/text/scalc/01.po b/source/eu/helpcontent2/source/text/scalc/01.po
index f3c3ca0aaf2..f46969e151b 100644
--- a/source/eu/helpcontent2/source/text/scalc/01.po
+++ b/source/eu/helpcontent2/source/text/scalc/01.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-05-13 08:11+0000\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
+"PO-Revision-Date: 2019-05-31 13:59+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1557735080.000000\n"
+"X-POOTLE-MTIME: 1559311153.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Lokalizatu txertatu nahi dituzun datuak dituen fitxategia.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Sartu txertatu nahi dituzun datuak dauzkan fitxategiaren URLa, eta sakatu 'Enter'.</ahelp> Hori egin ondoren eskatuko zaio sareari edo fitxategi-sistemari URLa atzitzea."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Hautatu txertatu nahi duzun taula edo datu-barrutia.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -42102,7 +42102,7 @@ msgctxt ""
"par_idN1096D\n"
"help.text"
msgid "Scaling mode"
-msgstr "Eskala modua"
+msgstr "Eskalatze-modua"
#: 05070500.xhp
msgctxt ""
@@ -42110,7 +42110,7 @@ msgctxt ""
"par_idN10971\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown below the list box.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Hautatu eskala modu bat zerrenda-koadrotik. Dagozkien kontrolak bistaratuko dira zerrenda-koadroaren azpian.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Hautatu eskalatze-modu bat zerrenda-koadrotik. Dagozkien kontrolak bistaratuko dira zerrenda-koadroaren azpian.</ahelp>"
#: 05070500.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\"><emph>Kontsolidatze-barrutiak</emph> koadroan zerrendatutako gelaxka-barrutiekin kontsolidatu nahi duzun gelaxka-barrutia zehazten du. Hautatu orri bateko gelaxka-barruti bat, eta egin klik <emph>Gehitu</emph> botoian. Aurrez definitutako gelaxka baten izena ere hauta dezakezu <emph>Iturburuko datu-barrutia</emph> zerrendan.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
@@ -51558,7 +51558,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CONCAT function"
-msgstr ""
+msgstr "CONCAT funtzioa"
#: func_concat.xhp
msgctxt ""
@@ -51566,7 +51566,7 @@ msgctxt ""
"bm_id741556228031712\n"
"help.text"
msgid "<bookmark_value>CONCAT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>CONCAT funtzioa</bookmark_value>"
#: func_concat.xhp
msgctxt ""
@@ -51574,7 +51574,7 @@ msgctxt ""
"hd_id471556226436779\n"
"help.text"
msgid "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51582,7 +51582,7 @@ msgctxt ""
"par_id891556226436781\n"
"help.text"
msgid "<variable id=\"concatfunction\"><ahelp hid=\".\">Concatenates one or more strings</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunction\"><ahelp hid=\".\">Kate bat edo gehiago katetatzen du</ahelp></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51590,7 +51590,7 @@ msgctxt ""
"par_id701556226865876\n"
"help.text"
msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M."
-msgstr ""
+msgstr "CONCAT funtzioa CONCATENATE funtzioaren hobekuntza bat da, lehenak barrutiak ere onartzen baititu argumentutzat, adibidez B2:E5, K:K edo K:M."
#: func_concat.xhp
msgctxt ""
@@ -51630,7 +51630,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
#: func_countifs.xhp
msgctxt ""
@@ -53574,7 +53574,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "IFS function"
-msgstr ""
+msgstr "IFS funtzioa"
#: func_ifs.xhp
msgctxt ""
@@ -53582,7 +53582,7 @@ msgctxt ""
"bm_id901556242230198\n"
"help.text"
msgid "<bookmark_value>IFS function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>IFS funtzioa</bookmark_value>"
#: func_ifs.xhp
msgctxt ""
@@ -53590,7 +53590,7 @@ msgctxt ""
"hd_id271556234923654\n"
"help.text"
msgid "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -56086,7 +56086,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "TEXTJOIN function"
-msgstr ""
+msgstr "TEXTJOIN funtzioa"
#: func_textjoin.xhp
msgctxt ""
@@ -56094,7 +56094,7 @@ msgctxt ""
"bm_id581556228060864\n"
"help.text"
msgid "<bookmark_value>TEXTJOIN function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>TEXTJOIN funtzioa</bookmark_value>"
#: func_textjoin.xhp
msgctxt ""
@@ -56102,7 +56102,7 @@ msgctxt ""
"hd_id551556227727946\n"
"help.text"
msgid "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\" name=\"textjoinfunction\">TEXTJOIN</link></variable>"
-msgstr ""
+msgstr "<variable id=\"textjoinfunct\"><link href=\"text/scalc/01/func_textjoin.xhp\" name=\"textjoinfunction\">TEXTJOIN</link></variable>"
#: func_textjoin.xhp
msgctxt ""
@@ -56110,7 +56110,7 @@ msgctxt ""
"par_id121556227727948\n"
"help.text"
msgid "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Concatenates one or more strings, and uses delimiters between them.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"textjoinfunction\"><ahelp hid=\".\">Kate bat edo gehiago kateatzen du, eta mugatzaileak erabiltzen ditu haien artean.</ahelp></variable>"
#: func_textjoin.xhp
msgctxt ""
@@ -56198,7 +56198,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
#: func_time.xhp
msgctxt ""
@@ -58742,7 +58742,7 @@ msgctxt ""
"par_id841554943563747\n"
"help.text"
msgid "F-critical"
-msgstr ""
+msgstr "F kritikoa"
#: statistics.xhp
msgctxt ""
@@ -58758,7 +58758,7 @@ msgctxt ""
"par_id411554944014360\n"
"help.text"
msgid "3.340385558"
-msgstr ""
+msgstr "3.340385558"
#: statistics.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/schart/00.po b/source/eu/helpcontent2/source/text/schart/00.po
index 3e2757479d0..26c8bfc63c3 100644
--- a/source/eu/helpcontent2/source/text/schart/00.po
+++ b/source/eu/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-20 20:34+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@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: 1548016497.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Marrak bistaratzen dituen 'Marra' edo 'XY' diagrama bateko 'Diagrama mota' elkarrizketa-koadroan, hautatu 'Leuna' aukera 'Marra mota' goitibeherako koadroan, eta gero sakatu 'Propietateak' botoia.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">Marrak bistaratzen dituen 'Marra' edo 'XY' diagrama bateko 'Diagrama mota' elkarrizketa-koadroan, hautatu 'Mailakatua' aukera 'Marra mota' goitibeherako koadroan, eta gero sakatu 'Propietateak' botoia.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/eu/helpcontent2/source/text/schart/01.po b/source/eu/helpcontent2/source/text/schart/01.po
index 56aa980ecc6..3962d5e8b24 100644
--- a/source/eu/helpcontent2/source/text/schart/01.po
+++ b/source/eu/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-21 12:48+0000\n"
+"PO-Revision-Date: 2019-05-31 13:59+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1548074920.000000\n"
+"X-POOTLE-MTIME: 1559311166.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"par_id3145228\n"
"help.text"
msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
-msgstr "Eremu honetan, Y ardatzaren bi eskala modu dituzu aukeran. Ardatz bakoitzari bere aldetik ezarri behar zaizkio eskala eta propietateak."
+msgstr "Eremu honetan, Y ardatzaren bi eskalatze-modu dituzu aukeran. Ardatz bakoitzari bere aldetik ezarri behar zaizkio eskala eta propietateak."
#: 04060000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/sdraw.po b/source/eu/helpcontent2/source/text/sdraw.po
index fe5bd5f1562..8502f72e4b8 100644
--- a/source/eu/helpcontent2/source/text/sdraw.po
+++ b/source/eu/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-13 08:16+0000\n"
+"PO-Revision-Date: 2019-05-19 06:43+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1557735364.000000\n"
+"X-POOTLE-MTIME: 1558248219.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"hd_id3153415\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Autozuzenketako aukerak</link>"
#: main_tools.xhp
msgctxt ""
@@ -1022,4 +1022,4 @@ msgctxt ""
"hd_id3150044\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Pertsonalizatu</link>"
diff --git a/source/eu/helpcontent2/source/text/sdraw/00.po b/source/eu/helpcontent2/source/text/sdraw/00.po
index a5dd3bb172b..604f02dd6f1 100644
--- a/source/eu/helpcontent2/source/text/sdraw/00.po
+++ b/source/eu/helpcontent2/source/text/sdraw/00.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 22:20+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-20 06:27+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494368411.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558333649.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Menu"
-msgstr ""
+msgstr "'Orrialdea' menua"
#: page_menu.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Aukeratu <emph>Orrialdea - Propietateak</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Aukeratu <emph>Orrialdea - Propietateak</emph> eta egin klik <emph>Orrialdea</emph> fitxan </variable>"
#: page_menu.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Aukeratu <emph>Orrialdea - Propietateak</emph>, eta egin klik <emph>Atzeko planoa</emph> fitxan </variable>"
#: page_menu.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Page - Master Page</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Aukeratu <emph>Orrialdea - Orrialde maisua</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id351556823072396\n"
"help.text"
msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Ikonoa</alt></image>"
#: page_menu.xhp
msgctxt ""
@@ -102,4 +102,4 @@ msgctxt ""
"par_id831556823072396\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Orrialde berria"
diff --git a/source/eu/helpcontent2/source/text/sdraw/01.po b/source/eu/helpcontent2/source/text/sdraw/01.po
index e7bde9eeb74..35b5accb254 100644
--- a/source/eu/helpcontent2/source/text/sdraw/01.po
+++ b/source/eu/helpcontent2/source/text/sdraw/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 22:20+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-20 06:27+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494368412.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558333674.000000\n"
#: new_page.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Orrialde berria"
#: new_page.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3150202\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">Orrialde berria</link>"
#: new_page.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3152988\n"
"help.text"
msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
-msgstr ""
+msgstr "<variable id=\"seitetext\">Orrialde hutsa txertatzen du hautatutako orrialdearen ondoren.</variable>"
#: page_properties.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Orrialdea"
#: page_properties.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"hd_id231556821873595\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Orrialdea"
#: page_properties.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id571556821811542\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Orrialdearen orientazioa, marjinak, atzeko planoa eta beste diseinu-aukera batzuk ezartzen ditu.</ahelp></variable>"
#: page_properties.xhp
msgctxt ""
@@ -70,4 +70,4 @@ msgctxt ""
"par_id691556822054550\n"
"help.text"
msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Aktibo dagoen fitxategiko orri guztien atzeko planoa aldatzeko, hautatu atzeko plano bat, egin klik <emph>Ados</emph> botoian eta hautatu <emph>Bai</emph> <emph>Orriaren konfigurazioa</emph> elkarrizketa-koadroan."
diff --git a/source/eu/helpcontent2/source/text/shared/00.po b/source/eu/helpcontent2/source/text/shared/00.po
index 064102fe9cc..8b24efc5231 100644
--- a/source/eu/helpcontent2/source/text/shared/00.po
+++ b/source/eu/helpcontent2/source/text/shared/00.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-05-03 11:09+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-30 05:46+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1556881754.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559195196.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Aukeratu <switchinline select=\"sys\"><caseinl
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - $[officename] - Pertsonalizazioa</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
@@ -7758,7 +7750,7 @@ msgctxt ""
"par_idN10F2F\n"
"help.text"
msgid "<variable id=\"mailmergeemail\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Mail Merge E-mail</emph>.</variable>"
-msgstr "<variable id=\"mailmergeemail\">Ireki testu-dokumentu bat, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Posta-konbinazioko mezua</emph>.</variable>"
+msgstr "<variable id=\"mailmergeemail\">Ireki testu-dokumentu bat, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Posta-konbinazioaren helbidea</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7766,7 +7758,7 @@ msgctxt ""
"par_id3149825\n"
"help.text"
msgid "<variable id=\"einfuegenbeschriftung\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - AutoCaption</emph>.</variable>"
-msgstr "<variable id=\"einfuegenbeschriftung\">Ireki testu-dokumentu bat, eta aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph>- %PRODUCTNAME Writer - Epigrafe automatikoa</emph>.</variable>"
+msgstr "<variable id=\"einfuegenbeschriftung\">Ireki testu-dokumentu bat, eta aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph>- %PRODUCTNAME Writer - Autoepigrafea</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -11966,7 +11958,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Menu"
-msgstr ""
+msgstr "'Editatu' menua"
#: edit_menu.xhp
msgctxt ""
@@ -11974,7 +11966,7 @@ msgctxt ""
"hd_id3147273\n"
"help.text"
msgid "Edit Menu"
-msgstr ""
+msgstr "'Editatu' menua"
#: edit_menu.xhp
msgctxt ""
@@ -11982,7 +11974,7 @@ msgctxt ""
"par_id3085157\n"
"help.text"
msgid "Choose <emph>Edit - Undo</emph>."
-msgstr ""
+msgstr "Aukeratu <emph>Editatu - Desegin</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -11990,7 +11982,7 @@ msgctxt ""
"par_id3145160\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
#: edit_menu.xhp
msgctxt ""
@@ -11998,7 +11990,7 @@ msgctxt ""
"par_id3154094\n"
"help.text"
msgid "On the <emph>Standard</emph> bar or <emph>Table Data</emph> bar, click"
-msgstr ""
+msgstr "<emph>Estandarra</emph> barran edo <emph>Taula-datuak</emph> barran, sakatu"
#: edit_menu.xhp
msgctxt ""
@@ -12006,7 +11998,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12014,7 +12006,7 @@ msgctxt ""
"par_id3148563\n"
"help.text"
msgid "Undo"
-msgstr ""
+msgstr "Desegin"
#: edit_menu.xhp
msgctxt ""
@@ -12030,7 +12022,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "<emph>Estandarra</emph> barran, sakatu"
#: edit_menu.xhp
msgctxt ""
@@ -12038,7 +12030,7 @@ msgctxt ""
"par_id3154938\n"
"help.text"
msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12046,7 +12038,7 @@ msgctxt ""
"par_id3151211\n"
"help.text"
msgid "Redo"
-msgstr ""
+msgstr "Berregin"
#: edit_menu.xhp
msgctxt ""
@@ -12054,7 +12046,7 @@ msgctxt ""
"par_id3154365\n"
"help.text"
msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"letzter\">Aukeratu <emph>Editatu - Errepikatu</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12062,7 +12054,7 @@ msgctxt ""
"par_id3149765\n"
"help.text"
msgid "Choose <emph>Edit - Cut</emph>."
-msgstr ""
+msgstr "Aukeratu <emph>Editatu - Ebaki</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12070,7 +12062,7 @@ msgctxt ""
"par_id3144762\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
#: edit_menu.xhp
msgctxt ""
@@ -12078,7 +12070,7 @@ msgctxt ""
"par_id3148744\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "<emph>Estandarra</emph> barran, sakatu"
#: edit_menu.xhp
msgctxt ""
@@ -12086,7 +12078,7 @@ msgctxt ""
"par_id3145173\n"
"help.text"
msgid "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12094,7 +12086,7 @@ msgctxt ""
"par_id3154153\n"
"help.text"
msgid "Cut"
-msgstr ""
+msgstr "Ebaki"
#: edit_menu.xhp
msgctxt ""
@@ -12102,7 +12094,7 @@ msgctxt ""
"par_id3150742\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>."
-msgstr ""
+msgstr "Aukeratu <emph>Editatu - Kopiatu</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12110,7 +12102,7 @@ msgctxt ""
"par_id3148923\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
#: edit_menu.xhp
msgctxt ""
@@ -12118,7 +12110,7 @@ msgctxt ""
"par_id3159254\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "<emph>Estandarra</emph> barran, sakatu"
#: edit_menu.xhp
msgctxt ""
@@ -12126,7 +12118,7 @@ msgctxt ""
"par_id3154985\n"
"help.text"
msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Ikonoa</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12134,7 +12126,7 @@ msgctxt ""
"par_id3150685\n"
"help.text"
msgid "Copy"
-msgstr ""
+msgstr "Kopiatu"
#: edit_menu.xhp
msgctxt ""
@@ -12142,7 +12134,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>."
-msgstr ""
+msgstr "Aukeratu <emph>Editatu - Itsatsi</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12150,7 +12142,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
#: edit_menu.xhp
msgctxt ""
@@ -12158,7 +12150,7 @@ msgctxt ""
"par_id3159083\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "<emph>Estandarra</emph> barran, sakatu"
#: edit_menu.xhp
msgctxt ""
@@ -12166,7 +12158,7 @@ msgctxt ""
"par_id3156106\n"
"help.text"
msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Ikonoa</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12174,7 +12166,7 @@ msgctxt ""
"par_id3154471\n"
"help.text"
msgid "Paste"
-msgstr ""
+msgstr "Itsatsi"
#: edit_menu.xhp
msgctxt ""
@@ -12182,7 +12174,7 @@ msgctxt ""
"par_id3152791\n"
"help.text"
msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"inhalte\">Aukeratu <emph>Editatu - Itsatsi berezia</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12190,7 +12182,7 @@ msgctxt ""
"par_id3148555\n"
"help.text"
msgid "Choose <emph>Edit - Select All</emph>."
-msgstr ""
+msgstr "Aukeratu <emph>Editatu - Hautatu dena</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12198,7 +12190,7 @@ msgctxt ""
"par_id3152417\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
#: edit_menu.xhp
msgctxt ""
@@ -12206,7 +12198,7 @@ msgctxt ""
"par_id3145748\n"
"help.text"
msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Ikonoa</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12214,7 +12206,7 @@ msgctxt ""
"par_id3153139\n"
"help.text"
msgid "Select All"
-msgstr ""
+msgstr "Hautatu dena"
#: edit_menu.xhp
msgctxt ""
@@ -12254,7 +12246,7 @@ msgctxt ""
"par_id3148587\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab."
-msgstr ""
+msgstr "Aukeratu <emph>Editatu - Aldaketen segimendua - Kudeatu - Zerrenda</emph> fitxa"
#: edit_menu.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/01.po b/source/eu/helpcontent2/source/text/shared/01.po
index b273077d07e..23d74947cdf 100644
--- a/source/eu/helpcontent2/source/text/shared/01.po
+++ b/source/eu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-03 11:09+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@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: 1556881772.000000\n"
#: 01010000.xhp
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/eu/helpcontent2/source/text/shared/02.po b/source/eu/helpcontent2/source/text/shared/02.po
index b95cc277ae8..4d8057b1f50 100644
--- a/source/eu/helpcontent2/source/text/shared/02.po
+++ b/source/eu/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-22 09:26+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@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: 1548149204.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Kontrol batek fokua galtzen duenean, kontroleko testu-hautapena zenbat denbora egongo den hautatuta zehazten du.</ahelp> <emph>Ezkutatu hautapena</emph> aukeran \"Ez\" ezartzen baduzu, testua hautatuta mantenduko da fokua testua duen kontrolean ez dagoenean ere."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/guide.po b/source/eu/helpcontent2/source/text/shared/guide.po
index ffa8e4ef38b..694bc82a777 100644
--- a/source/eu/helpcontent2/source/text/shared/guide.po
+++ b/source/eu/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 08:16+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-27 08:38+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1557735383.000000\n"
+"X-POOTLE-MTIME: 1558946334.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3094,15 +3094,7 @@ msgctxt ""
"par_writer0\n"
"help.text"
msgid "AbiWord Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
+msgstr "AbiWord dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3110,15 +3102,7 @@ msgctxt ""
"par_writer3\n"
"help.text"
msgid "Apple Pages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
+msgstr "Apple Pages"
#: convertfilters.xhp
msgctxt ""
@@ -3126,15 +3110,7 @@ msgctxt ""
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
+msgstr "BroadBand eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3142,15 +3118,7 @@ msgctxt ""
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3158,15 +3126,7 @@ msgctxt ""
"par_writer12\n"
"help.text"
msgid "EPUB Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
+msgstr "EPUB dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3174,15 +3134,7 @@ msgctxt ""
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
+msgstr "FictionBook 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -3190,15 +3142,7 @@ msgctxt ""
"par_writer18\n"
"help.text"
msgid "HTML Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
+msgstr "HTML dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3206,15 +3150,7 @@ msgctxt ""
"par_writer21\n"
"help.text"
msgid "HTML Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
+msgstr "HTML dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3222,15 +3158,7 @@ msgctxt ""
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
+msgstr "Hangula WP 97"
#: convertfilters.xhp
msgctxt ""
@@ -3238,7 +3166,7 @@ msgctxt ""
"par_writer27\n"
"help.text"
msgid "Help content"
-msgstr ""
+msgstr "Laguntza-edukia"
#: convertfilters.xhp
msgctxt ""
@@ -3246,7 +3174,7 @@ msgctxt ""
"par_writer28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -3254,7 +3182,7 @@ msgctxt ""
"par_writer30\n"
"help.text"
msgid "Legacy Mac Text Document"
-msgstr ""
+msgstr "Mac testu dokumentu zaharra"
#: convertfilters.xhp
msgctxt ""
@@ -3262,7 +3190,7 @@ msgctxt ""
"par_writer31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -3270,7 +3198,7 @@ msgctxt ""
"par_writer33\n"
"help.text"
msgid "Legacy StarOffice Text Document"
-msgstr ""
+msgstr "StarOffice testu dokumentu zaharra"
#: convertfilters.xhp
msgctxt ""
@@ -3278,7 +3206,7 @@ msgctxt ""
"par_writer34\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -3286,15 +3214,7 @@ msgctxt ""
"par_writer36\n"
"help.text"
msgid "LotusWordPro Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
+msgstr "LotusWordPro dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3302,15 +3222,7 @@ msgctxt ""
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "MS Word 95 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -3318,15 +3230,7 @@ msgctxt ""
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
+msgstr "MacWrite dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3334,7 +3238,7 @@ msgctxt ""
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
-msgstr ""
+msgstr "Mariner Write Mac Classic v1.6 - v3.5"
#: convertfilters.xhp
msgctxt ""
@@ -3342,15 +3246,7 @@ msgctxt ""
"par_writer48\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -3358,15 +3254,7 @@ msgctxt ""
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -3374,15 +3262,7 @@ msgctxt ""
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -3390,15 +3270,7 @@ msgctxt ""
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft WinWord 1/2/5"
#: convertfilters.xhp
msgctxt ""
@@ -3406,15 +3278,7 @@ msgctxt ""
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3422,15 +3286,7 @@ msgctxt ""
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 95"
#: convertfilters.xhp
msgctxt ""
@@ -3438,7 +3294,7 @@ msgctxt ""
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
-msgstr ""
+msgstr "Microsoft Word for DOS"
#: convertfilters.xhp
msgctxt ""
@@ -3446,7 +3302,7 @@ msgctxt ""
"par_writer67\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -3454,15 +3310,7 @@ msgctxt ""
"par_writer69\n"
"help.text"
msgid "Microsoft Word for Mac (v1 - v5)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word for Mac (v1 - v5)"
#: convertfilters.xhp
msgctxt ""
@@ -3470,15 +3318,7 @@ msgctxt ""
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3486,15 +3326,7 @@ msgctxt ""
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works for Mac dokumentua (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -3502,15 +3334,7 @@ msgctxt ""
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
+msgstr "Microsoft Write"
#: convertfilters.xhp
msgctxt ""
@@ -3518,15 +3342,7 @@ msgctxt ""
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
+msgstr "Office Open XML testu-dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3534,15 +3350,7 @@ msgctxt ""
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
+msgstr "Office Open XML testu-txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -3550,15 +3358,7 @@ msgctxt ""
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
+msgstr "OpenDocument testua (XML laua)"
#: convertfilters.xhp
msgctxt ""
@@ -3566,15 +3366,7 @@ msgctxt ""
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0 testu-dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3582,15 +3374,7 @@ msgctxt ""
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0 testu-dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3598,15 +3382,7 @@ msgctxt ""
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0 testu-dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3614,15 +3390,7 @@ msgctxt ""
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3630,15 +3398,7 @@ msgctxt ""
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3646,15 +3406,7 @@ msgctxt ""
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3662,15 +3414,7 @@ msgctxt ""
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
+msgstr "Palm testu-dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3678,15 +3422,7 @@ msgctxt ""
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
+msgstr "PalmDoc eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3694,15 +3430,7 @@ msgctxt ""
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
+msgstr "Plucker eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3710,15 +3438,7 @@ msgctxt ""
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Testu aberatseko formatua"
#: convertfilters.xhp
msgctxt ""
@@ -3726,15 +3446,7 @@ msgctxt ""
"par_writer120\n"
"help.text"
msgid "T602 Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
+msgstr "T602 dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3742,7 +3454,7 @@ msgctxt ""
"par_writer123\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Testua"
#: convertfilters.xhp
msgctxt ""
@@ -3750,7 +3462,7 @@ msgctxt ""
"par_writer124\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3758,7 +3470,7 @@ msgctxt ""
"par_writer126\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Testua"
#: convertfilters.xhp
msgctxt ""
@@ -3766,7 +3478,7 @@ msgctxt ""
"par_writer127\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3774,7 +3486,7 @@ msgctxt ""
"par_writer129\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Testua"
#: convertfilters.xhp
msgctxt ""
@@ -3782,7 +3494,7 @@ msgctxt ""
"par_writer130\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3790,15 +3502,7 @@ msgctxt ""
"par_writer132\n"
"help.text"
msgid "Word 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -3806,15 +3510,7 @@ msgctxt ""
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007–2019 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -3822,15 +3518,7 @@ msgctxt ""
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
@@ -3838,15 +3526,7 @@ msgctxt ""
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 97–2000 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -3854,15 +3534,7 @@ msgctxt ""
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -3870,15 +3542,7 @@ msgctxt ""
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
+msgstr "WordPerfect dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3886,7 +3550,7 @@ msgctxt ""
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
-msgstr ""
+msgstr "WriteNow dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -3894,15 +3558,7 @@ msgctxt ""
"par_writer153\n"
"help.text"
msgid "Writer 6.0 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
+msgstr "Writer 6.0 dokumentu maisua"
#: convertfilters.xhp
msgctxt ""
@@ -3910,15 +3566,7 @@ msgctxt ""
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
+msgstr "Writer 6.0 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -3926,15 +3574,7 @@ msgctxt ""
"par_writer159\n"
"help.text"
msgid "Writer 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
+msgstr "Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3942,15 +3582,7 @@ msgctxt ""
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
+msgstr "Writer 8 dokumentu maisua"
#: convertfilters.xhp
msgctxt ""
@@ -3958,15 +3590,7 @@ msgctxt ""
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
+msgstr "Writer 8 dokumentu maisuaren txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -3974,15 +3598,7 @@ msgctxt ""
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
+msgstr "Writer 8 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -3990,7 +3606,7 @@ msgctxt ""
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
-msgstr ""
+msgstr "Writer Layout Dump"
#: convertfilters.xhp
msgctxt ""
@@ -3998,7 +3614,7 @@ msgctxt ""
"par_writer172\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4006,15 +3622,7 @@ msgctxt ""
"par_writer174\n"
"help.text"
msgid "Writer/Web 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
+msgstr "Writer/Web 6.0 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4022,15 +3630,7 @@ msgctxt ""
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
+msgstr "Writer/Web 8 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4054,15 +3654,7 @@ msgctxt ""
"par_calc0\n"
"help.text"
msgid "Apple Numbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
+msgstr "Apple Numbers"
#: convertfilters.xhp
msgctxt ""
@@ -4070,15 +3662,7 @@ msgctxt ""
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
+msgstr "Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4086,15 +3670,7 @@ msgctxt ""
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
+msgstr "Calc 6.0 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4102,15 +3678,7 @@ msgctxt ""
"par_calc9\n"
"help.text"
msgid "Calc 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
+msgstr "Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -4118,15 +3686,7 @@ msgctxt ""
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
+msgstr "Calc 8 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4134,15 +3694,7 @@ msgctxt ""
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisResolve dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -4150,15 +3702,7 @@ msgctxt ""
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -4166,7 +3710,7 @@ msgctxt ""
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
-msgstr ""
+msgstr "Data Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -4174,7 +3718,7 @@ msgctxt ""
"par_calc22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4182,15 +3726,7 @@ msgctxt ""
"par_calc24\n"
"help.text"
msgid "Excel 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Excel 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4198,15 +3734,7 @@ msgctxt ""
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Excel 2007–2019 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4214,15 +3742,7 @@ msgctxt ""
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Excel 97–2000 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4230,15 +3750,7 @@ msgctxt ""
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Excel 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -4246,15 +3758,7 @@ msgctxt ""
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
+msgstr "Gnumeric kalkulu-orria"
#: convertfilters.xhp
msgctxt ""
@@ -4262,7 +3766,7 @@ msgctxt ""
"par_calc39\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "HTML dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -4270,7 +3774,7 @@ msgctxt ""
"par_calc40\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4278,7 +3782,7 @@ msgctxt ""
"par_calc42\n"
"help.text"
msgid "HTML Table"
-msgstr ""
+msgstr "HTML taula"
#: convertfilters.xhp
msgctxt ""
@@ -4286,7 +3790,7 @@ msgctxt ""
"par_calc43\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4294,7 +3798,7 @@ msgctxt ""
"par_calc45\n"
"help.text"
msgid "Legacy Mac Database"
-msgstr ""
+msgstr "Mac datu-base zaharra"
#: convertfilters.xhp
msgctxt ""
@@ -4302,7 +3806,7 @@ msgctxt ""
"par_calc46\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4310,7 +3814,7 @@ msgctxt ""
"par_calc48\n"
"help.text"
msgid "Legacy Mac Spreadsheet"
-msgstr ""
+msgstr "Mac kalkulu-orri zaharra"
#: convertfilters.xhp
msgctxt ""
@@ -4318,7 +3822,7 @@ msgctxt ""
"par_calc49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4326,7 +3830,7 @@ msgctxt ""
"par_calc51\n"
"help.text"
msgid "Legacy StarOffice Spreadsheet"
-msgstr ""
+msgstr "StarOffice kalkulu-orri zaharra"
#: convertfilters.xhp
msgctxt ""
@@ -4334,7 +3838,7 @@ msgctxt ""
"par_calc52\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4342,15 +3846,7 @@ msgctxt ""
"par_calc54\n"
"help.text"
msgid "Lotus"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
+msgstr "Lotus"
#: convertfilters.xhp
msgctxt ""
@@ -4358,7 +3854,7 @@ msgctxt ""
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
-msgstr ""
+msgstr "Lotus Wk1-Wk3"
#: convertfilters.xhp
msgctxt ""
@@ -4366,7 +3862,7 @@ msgctxt ""
"par_calc58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4374,15 +3870,7 @@ msgctxt ""
"par_calc60\n"
"help.text"
msgid "MS Excel 4.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "MS Excel 4.0 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4390,15 +3878,7 @@ msgctxt ""
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "MS Excel 5.0 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4406,15 +3886,7 @@ msgctxt ""
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "MS Excel 95 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4422,7 +3894,7 @@ msgctxt ""
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr ""
+msgstr "Microsoft Excel 2007 bitarra"
#: convertfilters.xhp
msgctxt ""
@@ -4430,7 +3902,7 @@ msgctxt ""
"par_calc70\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4438,15 +3910,7 @@ msgctxt ""
"par_calc72\n"
"help.text"
msgid "Microsoft Excel 2007-2016 VBA XML"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
+msgstr "Microsoft Excel 2007-2016 VBA XMLa"
#: convertfilters.xhp
msgctxt ""
@@ -4454,15 +3918,7 @@ msgctxt ""
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -4470,15 +3926,7 @@ msgctxt ""
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -4486,15 +3934,7 @@ msgctxt ""
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -4502,7 +3942,7 @@ msgctxt ""
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: convertfilters.xhp
msgctxt ""
@@ -4510,7 +3950,7 @@ msgctxt ""
"par_calc85\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4518,7 +3958,7 @@ msgctxt ""
"par_calc87\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Microsoft Works dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -4526,7 +3966,7 @@ msgctxt ""
"par_calc88\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4534,15 +3974,7 @@ msgctxt ""
"par_calc90\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works for Mac dokumentua (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -4550,15 +3982,7 @@ msgctxt ""
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Office Open XML kalkulu-orria"
#: convertfilters.xhp
msgctxt ""
@@ -4566,15 +3990,7 @@ msgctxt ""
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Office Open XML kalkulu-orriaren txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4582,15 +3998,7 @@ msgctxt ""
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
+msgstr "OpenDocument kalkulu-orria (XML laua)"
#: convertfilters.xhp
msgctxt ""
@@ -4598,15 +4006,7 @@ msgctxt ""
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4614,7 +4014,7 @@ msgctxt ""
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
-msgstr ""
+msgstr "Quattro Pro 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4622,7 +4022,7 @@ msgctxt ""
"par_calc106\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4630,7 +4030,7 @@ msgctxt ""
"par_calc108\n"
"help.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "QuattroPro dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -4638,7 +4038,7 @@ msgctxt ""
"par_calc109\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4646,15 +4046,7 @@ msgctxt ""
"par_calc111\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Testu aberatseko formatua"
#: convertfilters.xhp
msgctxt ""
@@ -4662,7 +4054,7 @@ msgctxt ""
"par_calc114\n"
"help.text"
msgid "SYLK"
-msgstr ""
+msgstr "SYLK"
#: convertfilters.xhp
msgctxt ""
@@ -4670,7 +4062,7 @@ msgctxt ""
"par_calc115\n"
"help.text"
msgid "text/spreadsheet"
-msgstr ""
+msgstr "text/spreadsheet"
#: convertfilters.xhp
msgctxt ""
@@ -4678,7 +4070,7 @@ msgctxt ""
"par_calc117\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Testua"
#: convertfilters.xhp
msgctxt ""
@@ -4686,7 +4078,7 @@ msgctxt ""
"par_calc118\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -4694,7 +4086,7 @@ msgctxt ""
"par_calc120\n"
"help.text"
msgid "dBASE"
-msgstr ""
+msgstr "dBASE"
#: convertfilters.xhp
msgctxt ""
@@ -4702,7 +4094,7 @@ msgctxt ""
"par_calc121\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4726,15 +4118,7 @@ msgctxt ""
"par_impress0\n"
"help.text"
msgid "Apple Keynote"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
+msgstr "Apple Keynote"
#: convertfilters.xhp
msgctxt ""
@@ -4742,15 +4126,7 @@ msgctxt ""
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks aurkezpena"
#: convertfilters.xhp
msgctxt ""
@@ -4758,15 +4134,7 @@ msgctxt ""
"par_impress6\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4774,15 +4142,7 @@ msgctxt ""
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
+msgstr "Impress 6.0 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4790,15 +4150,7 @@ msgctxt ""
"par_impress12\n"
"help.text"
msgid "Impress 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
+msgstr "Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4811,18 +4163,10 @@ msgstr "Impress 8 txantiloia"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
-msgstr ""
+msgstr "Mac aurkezpen zaharra"
#: convertfilters.xhp
msgctxt ""
@@ -4830,7 +4174,7 @@ msgctxt ""
"par_impress19\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4838,7 +4182,7 @@ msgctxt ""
"par_impress21\n"
"help.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "StarOffice aurkezpen zaharra"
#: convertfilters.xhp
msgctxt ""
@@ -4846,7 +4190,7 @@ msgctxt ""
"par_impress22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4854,7 +4198,7 @@ msgctxt ""
"par_impress24\n"
"help.text"
msgid "Microsoft PowerPoint 1-4"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4"
#: convertfilters.xhp
msgctxt ""
@@ -4862,7 +4206,7 @@ msgctxt ""
"par_impress25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -4870,15 +4214,7 @@ msgctxt ""
"par_impress27\n"
"help.text"
msgid "Office Open XML Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "Office Open XML aurkezpena"
#: convertfilters.xhp
msgctxt ""
@@ -4886,15 +4222,7 @@ msgctxt ""
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "Office Open XML aurkezpenaren erreprodukzio automatikoa"
#: convertfilters.xhp
msgctxt ""
@@ -4902,15 +4230,7 @@ msgctxt ""
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "Office Open XML aurkezpenaren txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -4918,15 +4238,7 @@ msgctxt ""
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
+msgstr "OpenDocument aurkezpena (XML laua)"
#: convertfilters.xhp
msgctxt ""
@@ -4934,15 +4246,7 @@ msgctxt ""
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "OpenOffice.org 1.0 marrazkia"
#: convertfilters.xhp
msgctxt ""
@@ -4950,15 +4254,7 @@ msgctxt ""
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
+msgstr "OpenOffice.org 1.0 aurkezpena"
#: convertfilters.xhp
msgctxt ""
@@ -4966,15 +4262,7 @@ msgctxt ""
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4982,15 +4270,7 @@ msgctxt ""
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4998,15 +4278,7 @@ msgctxt ""
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -5014,15 +4286,7 @@ msgctxt ""
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "PowerPoint 2007–2019 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -5030,15 +4294,7 @@ msgctxt ""
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
+msgstr "PowerPoint 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
@@ -5046,15 +4302,7 @@ msgctxt ""
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2000 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -5062,15 +4310,7 @@ msgctxt ""
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -5078,15 +4318,7 @@ msgctxt ""
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -5110,15 +4342,7 @@ msgctxt ""
"par_draw0\n"
"help.text"
msgid "Adobe PageMaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
+msgstr "Adobe PageMaker"
#: convertfilters.xhp
msgctxt ""
@@ -5126,15 +4350,7 @@ msgctxt ""
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
+msgstr "Adobe/Macromedia Freehand"
#: convertfilters.xhp
msgctxt ""
@@ -5142,15 +4358,7 @@ msgctxt ""
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks dokumentua"
#: convertfilters.xhp
msgctxt ""
@@ -5158,15 +4366,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "Corel Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
+msgstr "Corel Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5174,15 +4374,7 @@ msgctxt ""
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
+msgstr "Corel Presentation Exchange"
#: convertfilters.xhp
msgctxt ""
@@ -5190,15 +4382,7 @@ msgctxt ""
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
+msgstr "Draw 6.0 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -5206,15 +4390,7 @@ msgctxt ""
"par_draw18\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -5222,15 +4398,7 @@ msgctxt ""
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
+msgstr "Draw 8 txantiloia"
#: convertfilters.xhp
msgctxt ""
@@ -5238,7 +4406,7 @@ msgctxt ""
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
-msgstr ""
+msgstr "Mac bit-mapa zaharra"
#: convertfilters.xhp
msgctxt ""
@@ -5246,7 +4414,7 @@ msgctxt ""
"par_draw25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -5254,7 +4422,7 @@ msgctxt ""
"par_draw27\n"
"help.text"
msgid "Legacy Mac Drawing"
-msgstr ""
+msgstr "Mac marrazki zaharra"
#: convertfilters.xhp
msgctxt ""
@@ -5262,7 +4430,7 @@ msgctxt ""
"par_draw28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -5270,7 +4438,7 @@ msgctxt ""
"par_draw30\n"
"help.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "StarOffice marrazki zaharra"
#: convertfilters.xhp
msgctxt ""
@@ -5278,7 +4446,7 @@ msgctxt ""
"par_draw31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -5286,15 +4454,7 @@ msgctxt ""
"par_draw33\n"
"help.text"
msgid "Microsoft Publisher 2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
+msgstr "Microsoft Publisher 2003"
#: convertfilters.xhp
msgctxt ""
@@ -5302,15 +4462,7 @@ msgctxt ""
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
+msgstr "Microsoft Visio"
#: convertfilters.xhp
msgctxt ""
@@ -5318,15 +4470,7 @@ msgctxt ""
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
+msgstr "OpenDocument marrazkia (XML laua)"
#: convertfilters.xhp
msgctxt ""
@@ -5334,15 +4478,7 @@ msgctxt ""
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "OpenOffice.org 1.0 marrazkia"
#: convertfilters.xhp
msgctxt ""
@@ -5350,15 +4486,7 @@ msgctxt ""
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -5366,7 +4494,7 @@ msgctxt ""
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
-msgstr ""
+msgstr "QuarkXPress"
#: convertfilters.xhp
msgctxt ""
@@ -5374,7 +4502,7 @@ msgctxt ""
"par_draw49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -5382,15 +4510,7 @@ msgctxt ""
"par_draw51\n"
"help.text"
msgid "WordPerfect Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
+msgstr "WordPerfect grafikoa"
#: convertfilters.xhp
msgctxt ""
@@ -5398,7 +4518,7 @@ msgctxt ""
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5406,7 +4526,7 @@ msgctxt ""
"par_draw55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -5430,15 +4550,7 @@ msgctxt ""
"par_math0\n"
"help.text"
msgid "Math 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
+msgstr "Math 8"
#: convertfilters.xhp
msgctxt ""
@@ -5446,15 +4558,7 @@ msgctxt ""
"par_math3\n"
"help.text"
msgid "MathML 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
+msgstr "MathML 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -5462,7 +4566,7 @@ msgctxt ""
"par_math6\n"
"help.text"
msgid "MathType3.x"
-msgstr ""
+msgstr "MathType3.x"
#: convertfilters.xhp
msgctxt ""
@@ -5470,7 +4574,7 @@ msgctxt ""
"par_math7\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -5478,15 +4582,7 @@ msgctxt ""
"par_math9\n"
"help.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
+msgstr "OpenOffice.org 1.0 formula"
#: convertfilters.xhp
msgctxt ""
@@ -5494,15 +4590,7 @@ msgctxt ""
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -5526,15 +4614,7 @@ msgctxt ""
"par_base0\n"
"help.text"
msgid "OpenDocument Database"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
+msgstr "OpenDocument datu-basea"
#: convertfilters.xhp
msgctxt ""
@@ -5558,15 +4638,7 @@ msgctxt ""
"par_graphicfilter0\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP - Windows bit-mapa"
#: convertfilters.xhp
msgctxt ""
@@ -5574,15 +4646,7 @@ msgctxt ""
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP - Windows bit-mapa"
#: convertfilters.xhp
msgctxt ""
@@ -5590,15 +4654,7 @@ msgctxt ""
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
+msgstr "CGM - Computer Graphics Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5606,15 +4662,7 @@ msgctxt ""
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
+msgstr "DXF - AutoCADen truke-formatua"
#: convertfilters.xhp
msgctxt ""
@@ -5622,15 +4670,7 @@ msgctxt ""
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF - Enhanced Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -5638,15 +4678,7 @@ msgctxt ""
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF - Enhanced Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -5654,15 +4686,7 @@ msgctxt ""
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS - Kapsulatutako PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5670,15 +4694,7 @@ msgctxt ""
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS - Kapsulatutako PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5686,15 +4702,7 @@ msgctxt ""
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -5702,15 +4710,7 @@ msgctxt ""
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -5718,7 +4718,7 @@ msgctxt ""
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5726,7 +4726,7 @@ msgctxt ""
"par_graphicfilter31\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -5734,7 +4734,7 @@ msgctxt ""
"par_graphicfilter33\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5742,7 +4742,7 @@ msgctxt ""
"par_graphicfilter34\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -5750,15 +4750,7 @@ msgctxt ""
"par_graphicfilter36\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5766,15 +4758,7 @@ msgctxt ""
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5782,15 +4766,7 @@ msgctxt ""
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5798,15 +4774,7 @@ msgctxt ""
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET - OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5814,15 +4782,7 @@ msgctxt ""
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET - OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5830,15 +4790,7 @@ msgctxt ""
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
+msgstr "MOV - QuickTime fitxategi-formatua"
#: convertfilters.xhp
msgctxt ""
@@ -5846,7 +4798,7 @@ msgctxt ""
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5854,7 +4806,7 @@ msgctxt ""
"par_graphicfilter55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -5862,7 +4814,7 @@ msgctxt ""
"par_graphicfilter57\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5870,7 +4822,7 @@ msgctxt ""
"par_graphicfilter58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Bat ere ez"
#: convertfilters.xhp
msgctxt ""
@@ -5878,15 +4830,7 @@ msgctxt ""
"par_graphicfilter60\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5894,15 +4838,7 @@ msgctxt ""
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5910,15 +4846,7 @@ msgctxt ""
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base"
#: convertfilters.xhp
msgctxt ""
@@ -5926,15 +4854,7 @@ msgctxt ""
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base16"
#: convertfilters.xhp
msgctxt ""
@@ -5942,15 +4862,7 @@ msgctxt ""
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base4"
#: convertfilters.xhp
msgctxt ""
@@ -5958,15 +4870,7 @@ msgctxt ""
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT - Mac irudia"
#: convertfilters.xhp
msgctxt ""
@@ -5974,15 +4878,7 @@ msgctxt ""
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT - Mac irudia"
#: convertfilters.xhp
msgctxt ""
@@ -5990,15 +4886,7 @@ msgctxt ""
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
+msgstr "PCX - Zsoft Paintbrush"
#: convertfilters.xhp
msgctxt ""
@@ -6006,15 +4894,7 @@ msgctxt ""
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -6022,15 +4902,7 @@ msgctxt ""
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -6038,15 +4910,7 @@ msgctxt ""
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6054,15 +4918,7 @@ msgctxt ""
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6070,15 +4926,7 @@ msgctxt ""
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6086,15 +4934,7 @@ msgctxt ""
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6102,15 +4942,7 @@ msgctxt ""
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -6118,15 +4950,7 @@ msgctxt ""
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -6134,15 +4958,7 @@ msgctxt ""
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
+msgstr "PSD - Adobe Photoshop"
#: convertfilters.xhp
msgctxt ""
@@ -6150,15 +4966,7 @@ msgctxt ""
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS - Sun raster irudia"
#: convertfilters.xhp
msgctxt ""
@@ -6166,15 +4974,7 @@ msgctxt ""
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS - Sun raster irudia"
#: convertfilters.xhp
msgctxt ""
@@ -6182,15 +4982,7 @@ msgctxt ""
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Grafiko bektorial eskalakorra"
#: convertfilters.xhp
msgctxt ""
@@ -6198,15 +4990,7 @@ msgctxt ""
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Grafiko bektorial eskalakorra"
#: convertfilters.xhp
msgctxt ""
@@ -6214,15 +4998,7 @@ msgctxt ""
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Grafiko bektorial eskalakorra"
#: convertfilters.xhp
msgctxt ""
@@ -6230,15 +5006,7 @@ msgctxt ""
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Grafiko bektorial eskalakorra"
#: convertfilters.xhp
msgctxt ""
@@ -6246,15 +5014,7 @@ msgctxt ""
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Grafiko bektorial eskalakorreko irudia"
#: convertfilters.xhp
msgctxt ""
@@ -6262,15 +5022,7 @@ msgctxt ""
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Grafiko bektorial eskalakorreko irudia"
#: convertfilters.xhp
msgctxt ""
@@ -6278,15 +5030,7 @@ msgctxt ""
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
+msgstr "SVM - StarView Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -6294,15 +5038,7 @@ msgctxt ""
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
+msgstr "SVM - StarView Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -6310,15 +5046,7 @@ msgctxt ""
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
+msgstr "TGA - Truevision Targa"
#: convertfilters.xhp
msgctxt ""
@@ -6326,15 +5054,7 @@ msgctxt ""
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
+msgstr "TIFF - Tagged Image File Format"
#: convertfilters.xhp
msgctxt ""
@@ -6342,15 +5062,7 @@ msgctxt ""
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
+msgstr "TIFF - Tagged Image File Format"
#: convertfilters.xhp
msgctxt ""
@@ -6358,15 +5070,7 @@ msgctxt ""
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
+msgstr "WMF - Windows Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -6374,15 +5078,7 @@ msgctxt ""
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
+msgstr "WMF - Windows Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -6390,15 +5086,7 @@ msgctxt ""
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
+msgstr "XBM - X Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -6406,15 +5094,7 @@ msgctxt ""
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: convertfilters.xhp
msgctxt ""
@@ -6422,15 +5102,7 @@ msgctxt ""
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -12870,7 +11542,7 @@ msgctxt ""
"par_idN1068A\n"
"help.text"
msgid "With the image selected, choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw. You see the <link href=\"text/shared/01/02220000.xhp\">ImageMap Editor</link>, which displays the image at the background."
-msgstr ""
+msgstr "Irudia hautatuta dagoela, aukeratu <emph>Editatu - Irudi-mapa</emph> Writer edo Calc-en edo <emph>Tresnak - Irudi-mapa</emph> Impress eta Draw-n. <link href=\"text/shared/01/02220000.xhp\">Irudi-mapen editorea</link> ikusiko duzu, eta irudia atzeko planoan bistaratuko du."
#: imagemap.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/optionen.po b/source/eu/helpcontent2/source/text/shared/optionen.po
index 6da38fd0710..2c3b2a30ee9 100644
--- a/source/eu/helpcontent2/source/text/shared/optionen.po
+++ b/source/eu/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: 2019-02-11 11:53+0100\n"
-"PO-Revision-Date: 2019-02-16 07:52+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-29 10:28+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1550303543.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559125705.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -7390,7 +7390,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCaption"
-msgstr "Epigrafe automatikoa"
+msgstr "Autoepigrafea"
#: 01041100.xhp
msgctxt ""
@@ -7398,7 +7398,7 @@ msgctxt ""
"bm_id5164036\n"
"help.text"
msgid "<bookmark_value>automatic captions (Writer)</bookmark_value><bookmark_value>AutoCaption function in %PRODUCTNAME Writer</bookmark_value><bookmark_value>captions;automatic captions (Writer)</bookmark_value>"
-msgstr "<bookmark_value>epigrafe automatikoak (Writer)</bookmark_value><bookmark_value>Epigrafe automatikoen funtzioa %PRODUCTNAME Writerren</bookmark_value><bookmark_value>epigrafeak;epigrafe automatikoak (Writer)</bookmark_value>"
+msgstr "<bookmark_value>epigrafe automatikoak (Writer)</bookmark_value><bookmark_value>autoepigrafeen funtzioa %PRODUCTNAME Writerren</bookmark_value><bookmark_value>epigrafeak;autoepigrafeak (Writer)</bookmark_value>"
#: 01041100.xhp
msgctxt ""
@@ -7406,7 +7406,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01041100.xhp\">AutoCaption</link>"
-msgstr "<link href=\"text/shared/optionen/01041100.xhp\">Epigrafe automatikoa</link>"
+msgstr "<link href=\"text/shared/optionen/01041100.xhp\">Autoepigrafea</link>"
#: 01041100.xhp
msgctxt ""
@@ -7430,7 +7430,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "<ahelp hid=\".\">Select the object type for which the AutoCaption settings are to be valid.</ahelp>"
-msgstr "<ahelp hid=\".\">Hautatu epigrafe automatikoaren ezarpenak zein objektu motarako izan behar duen baliozko.</ahelp>"
+msgstr "<ahelp hid=\".\">Hautatu autoepigrafearen ezarpenak zein objektu motarako izan behar duen baliozko.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "OpenCL lengoaiari buruzko informazio gehiagorako, ikusi <link href=\"https://www.khronos.org/opencl/\">OpenCL webgunea</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Pertsonalizazioa"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>gaiak;aukerak ezartzea</bookmark_value> <bookmark_value>aukerak ezartzea;gaiak</bookmark_value> <bookmark_value>pertsonalizazioa;Mozilla Firefox gaiak</bookmark_value> <bookmark_value>personas;pertsonalizazioa</bookmark_value> <bookmark_value>pertsonalizazioa;personas</bookmark_value> <bookmark_value>Mozilla Firefox gaiak;pertsonalizazioa</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Pertsonalizazioa</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Mozilla Firefox aplikaziorako erabilgarri dauden gai berak erabilita pertsonalizatu daiteke %PRODUCTNAME. Leihoaren goialdean eta behealdean atrakatutako tresna-barrek hautatutako gaia bistaratuko dute atzeko planoan."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Mozilla Firefox gaiak Mozillaren webgunean daude eskuragarri, honako helbidean: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Firefoxekin bateragarria den edozein gaik funtzionatuko du %PRODUCTNAME aplikazioarekin. Hala ere, gai guztiek ez dute ikusizko emaitza onak eskainiko. Itxura beteegia badu, ikonoen eta menuen irakurgarritasuna oztopatu dezake."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Firefox gaiak:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Honako aukerak erabil daitezke:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Itxura lehenetsia, ez erabili gaiak"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Tresna-barren atzeko planoak zure mahaiganeko ingurunearen ezarpenen atzeko planoa hartzen du.</ahelp> Hori da aukera lehenetsia %PRODUCTNAME aplikazioan."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Aurretik instalatutako gaia"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Hautatu aukera horietako bat aurretik instalatutako gaietako bat erabiltzeko.</ahelp> Aukera lehenetsiez gain, zure sistema-administratzaileak gai pertsonalizatu bat gehitu ahal izan du %PRODUCTNAME instalazioan. Aukera honek gai hori ere bistaratuko du."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Norberaren gaia"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Hautatu aukera hau \"Hautatu Firefox gaia\" elkarrizketa-koadroa irekitzeko eta zure gaia aukeratzeko.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "'Hautatu Firefox gaia' elkarrizketa-koadroa"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Elkarrizketa-koadro horrek gai zehatz bat instalatzea ahalbidetzen dizu eta Mozilla Firefox gaien webguneko beste hainbat gairen ikuspegia eskaintzen dizu."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Bilatu"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Eman bilaketa-hitz bat, Mozillaren gehigarrien webgunean gaiak bilatzeko, edo itsatsi gai baten helbidea gai hori zuzenean atzitzeko.</ahelp> Helbidea eskuratzeko, erabili zure nabigatzailea gaiaren webgunera joateko eta kopiatu helbide-barran ageri den URLa. Ondoren, itsatsi hura elkarrizketa-koadroaren bilaketa-koadroan. Egin klik <item type=\"menuitem\">Bilatu</item> botoian edo sakatu <item type=\"keycode\">Enter</item> gaia deskargatu eta %PRODUCTNAME aplikazioan instalatzeko."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Gaiak kategoriaren arabera arakatzea"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Botoietan bistaratutako kategorietan oinarrituta, bederatzi gairen ausazko sorta bat erakusten du.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Sakatu bost botoietako bat, botoiari dagokion kategoriako ausazko bederatzi gai bistaratzeko azpiko irudi-arean."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Bistaratutako gaietako bat hautatzeko, egin klik bere irudian eta sakatu <item type=\"menuitem\">Ados</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/eu/helpcontent2/source/text/simpress.po b/source/eu/helpcontent2/source/text/simpress.po
index b0fcea42d58..4e093e6e1ba 100644
--- a/source/eu/helpcontent2/source/text/simpress.po
+++ b/source/eu/helpcontent2/source/text/simpress.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-03 11:12+0000\n"
+"PO-Revision-Date: 2019-05-20 06:34+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556881932.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558334072.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">Diapositiba berria</link>"
#: main_slide.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"hd_id551556824896520\n"
"help.text"
msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Propietateak</link>"
#: main_tools.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/simpress/00.po b/source/eu/helpcontent2/source/text/simpress/00.po
index b2c6cd887c7..6adac05c711 100644
--- a/source/eu/helpcontent2/source/text/simpress/00.po
+++ b/source/eu/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-23 08:25+0000\n"
+"PO-Revision-Date: 2019-05-20 06:34+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556007950.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558334089.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <emph>Slide - New Slide</emph>"
-msgstr ""
+msgstr "Aukeratu <emph>Diapositiba - Diapositiba berria</emph>"
#: slide_menu.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3685251\n"
"help.text"
msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Ikonoa</alt></image>"
#: slide_menu.xhp
msgctxt ""
@@ -1310,4 +1310,4 @@ msgctxt ""
"par_id7354512\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Diapositiba berria"
diff --git a/source/eu/helpcontent2/source/text/simpress/01.po b/source/eu/helpcontent2/source/text/simpress/01.po
index 3ff367da19d..28c67e76b85 100644
--- a/source/eu/helpcontent2/source/text/simpress/01.po
+++ b/source/eu/helpcontent2/source/text/simpress/01.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-03 11:12+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-27 08:40+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556881946.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558946414.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Diapositiba</link>"
#: 03070000.xhp
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Diapositiba berria"
#: new_slide.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"bm_id3159155\n"
"help.text"
msgid "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>txertatu; diapositibak</bookmark_value><bookmark_value>diapositibak; txertatzea</bookmark_value>"
#: new_slide.xhp
msgctxt ""
@@ -8174,15 +8174,15 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">Diapositiba berria</link>"
#: new_slide.xhp
msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
-msgstr ""
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
+msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Diapositiba bat txertatzen du unean hautatutako diapositibaren ondoren.</ahelp></variable>"
#: remoteconnections.xhp
msgctxt ""
@@ -8326,7 +8326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Diapositiba"
#: slide_properties.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"hd_id3149379\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Diapositiba"
#: slide_properties.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Sets slide orientation, slide margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Diapositibaren orientazioa, marjinak, atzeko planoa eta beste diseinu-aukera batzuk ezartzen ditu.</ahelp></variable>"
#: slide_properties.xhp
msgctxt ""
@@ -8350,7 +8350,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "To change the background of all of the slides in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Aktibo dagoen fitxategiko diapositiba guztien atzeko planoa aldatzeko, hautatu atzeko plano bat, egin klik <emph>Ados</emph> botoian eta hautatu <emph>Bai</emph> <emph>Orriaren konfigurazioa</emph> elkarrizketa-koadroan."
#: slidesorter.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/simpress/02.po b/source/eu/helpcontent2/source/text/simpress/02.po
index 5ed46a5ae5e..dcc10244056 100644
--- a/source/eu/helpcontent2/source/text/simpress/02.po
+++ b/source/eu/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-22 10:08+0000\n"
+"PO-Revision-Date: 2019-05-27 08:40+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555927707.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558946417.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"hd_id3149028\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Diapositiba</link>"
#: 10110000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/01.po b/source/eu/helpcontent2/source/text/swriter/01.po
index 1f3ada2aa54..0f70f39be66 100644
--- a/source/eu/helpcontent2/source/text/swriter/01.po
+++ b/source/eu/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-23 08:27+0000\n"
+"PO-Revision-Date: 2019-05-29 10:28+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556008031.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559125720.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -4534,7 +4534,7 @@ msgctxt ""
"par_idN10744\n"
"help.text"
msgid "AutoCaption"
-msgstr "Epigrafe automatikoa"
+msgstr "Autoepigrafea"
#: 04060000.xhp
msgctxt ""
@@ -4542,7 +4542,7 @@ msgctxt ""
"par_idN1074A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Caption dialog. It has the same information as the dialog you get by menu %PRODUCTNAME Writer - AutoCaption in the Options dialog box.</ahelp>"
-msgstr "<ahelp hid=\".\">'Epigrafea' elkarrizketa-koadroa irekitzen du. Elkarrizketa horrek 'Aukerak' ataleko '%PRODUCTNAME Writer - Epigrafe automatikoa' menua aukeratzean agertzen den elkarrizketa-koadroaren informazio bera ematen dizu.</ahelp>."
+msgstr "<ahelp hid=\".\">'Epigrafea' elkarrizketa-koadroa irekitzen du. Elkarrizketa horrek 'Aukerak' ataleko '%PRODUCTNAME Writer - Autoepigrafea' menua aukeratzean agertzen den elkarrizketa-koadroaren informazio bera ematen dizu.</ahelp>."
#: 04060100.xhp
msgctxt ""
@@ -15534,7 +15534,7 @@ msgctxt ""
"par_idN10A8E\n"
"help.text"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Mantendu testu-mugen barruan"
#: 05060100.xhp
msgctxt ""
@@ -15550,7 +15550,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Keep inside text boundaries</emph> option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)."
-msgstr ""
+msgstr "Modu lehenetsian, <emph>Testua</emph> aukera hautatuta dago OpenOffice.org 2.0 baino zaharragoa den Writer bertsio batekin sortutako dokumentu bat irekitzen denean. Hala ere, aukera hori ez dago hautatuta Microsoft Word formatuko (*.doc) dokumentu bat sortzen edo irekitzen denean."
#: 05060100.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/guide.po b/source/eu/helpcontent2/source/text/swriter/guide.po
index 491acb68217..60b625b46d4 100644
--- a/source/eu/helpcontent2/source/text/swriter/guide.po
+++ b/source/eu/helpcontent2/source/text/swriter/guide.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-04-25 10:21+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-29 10:29+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1556187667.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559125751.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "<emph>Estandarra barran</emph>, sakatu <emph>Nabigatzailea</emph> ikonoa <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Ikonoa</alt></image> <emph>nabigatzailea</emph> irekitzeko."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "<emph>Nabigatzailean</emph>, sakatu <emph>Edukien ikuspegia</emph> ikonoa <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Ikonoa</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Egin klik izenburu batean <emph>Nabigatzailea</emph> zerrendan, eta ondoren sakatu <emph>Jaso kapituluaren maila</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Ikonoa</alt></image> edo <emph>Jaitsi kapituluaren maila</emph> ikonoa <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Ikonoa</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Sakatu <emph>Jaso maila</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Ikonoa</alt></image> edo <emph>Jaitsi maila</emph> ikonoa <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Ikonoa</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Sakatu <emph>Erakutsitako izenburu-mailak</emph> ikonoa <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Ikonoa</alt></image>, eta ondoren hautatu zenbaki bat zerrendatik."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_id3145671\n"
"help.text"
msgid "$[officename] can automatically add a caption when you insert an object, graphic, frame, or table. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - AutoCaption</emph>."
-msgstr "$[officename] aplikazioak epigrafe bat gehi dezake, automatikoki, objektu, grafiko, marko eta taula bat txertatzen denean. Aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Epigrafe automatikoa</emph>."
+msgstr "$[officename] aplikazioak epigrafe bat gehi dezake, automatikoki, objektu, grafiko, marko eta taula bat txertatzen denean. Aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Autoepigrafea</emph>."
#: captions_numbers.xhp
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "$[officename] can automatically add a caption when you insert an object, graphic, or table. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - AutoCaption</emph>."
-msgstr "$[officename] aplikazioak epigrafe bat gehi dezake automatikoki, objektu, grafiko edo taula bat txertatzen denean. Aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Epigrafe automatikoa</emph>."
+msgstr "$[officename] aplikazioak epigrafe bat gehi dezake automatikoki, objektu, grafiko edo taula bat txertatzen denean. Aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Autoepigrafea</emph>."
#: captions_numbers.xhp
msgctxt ""
@@ -2774,7 +2774,7 @@ msgctxt ""
"par_id3145567\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01041100.xhp\" name=\"Caption dialog\">AutoCaption dialog</link>"
-msgstr "<link href=\"text/shared/optionen/01041100.xhp\" name=\"Caption dialog\">Epigrafe automatikoa elkarrizketa-koadroa</link>"
+msgstr "<link href=\"text/shared/optionen/01041100.xhp\" name=\"Caption dialog\">'Autoepigrafea' elkarrizketa-koadroa</link>"
#: captions_numbers.xhp
msgctxt ""
@@ -12230,7 +12230,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Regular Expressions in Text Searches"
-msgstr ""
+msgstr "Adierazpen erregularrak erabiltzea testu-bilaketetan"
#: search_regexp.xhp
msgctxt ""
@@ -12246,7 +12246,7 @@ msgctxt ""
"hd_id3150099\n"
"help.text"
msgid "<variable id=\"search_regexp\"><link href=\"text/swriter/guide/search_regexp.xhp\">Using Regular Expressions in Text Searches</link></variable>"
-msgstr ""
+msgstr "<variable id=\"search_regexp\"><link href=\"text/swriter/guide/search_regexp.xhp\">Adierazpen erregularrak erabiltzea testu-bilaketetan</link></variable>"
#: search_regexp.xhp
msgctxt ""
diff --git a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
index 2ec58320f6f..290e0e53eb7 100644
--- a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eu/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-27 06:03+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 07:33+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\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: 1556345001.000000\n"
+"X-POOTLE-MTIME: 1558596830.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -4181,7 +4181,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 1 Cell Style"
-msgstr ""
+msgstr "1. azentuaren gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4208,7 +4208,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 2 Cell Style"
-msgstr ""
+msgstr "2. azentuaren gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4235,7 +4235,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 3 Cell Style"
-msgstr ""
+msgstr "3. azentuaren gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 1 Cell Style"
-msgstr ""
+msgstr "1. goiburuaren gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4289,7 +4289,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 2 Cell Style"
-msgstr ""
+msgstr "2. goiburuaren gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4316,7 +4316,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bad Cell Style"
-msgstr ""
+msgstr "Okerraren gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Error Cell Style"
-msgstr ""
+msgstr "Errorearen gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4361,7 +4361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Good"
-msgstr ""
+msgstr "Ona"
#: CalcCommands.xcu
msgctxt ""
@@ -4370,7 +4370,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Good Cell Style"
-msgstr ""
+msgstr "Onaren gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Neutral Cell Style"
-msgstr ""
+msgstr "Neutralaren gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Warning Cell Style"
-msgstr ""
+msgstr "Abisuaren gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4451,7 +4451,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Footnote Cell Style"
-msgstr ""
+msgstr "Oin-oharraren gelaxka-estiloa"
#: CalcCommands.xcu
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Note Cell Style"
-msgstr ""
+msgstr "Oharraren gelaxka-estiloa"
#: CalcWindowState.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Taula-estiloak"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Eremu gehiago"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Birsortu diagrama"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Fitxak"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Multzo-barra"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Hautatu esaldia"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/eu/sc/messages.po b/source/eu/sc/messages.po
index 38f0246ef74..0711d15ae8b 100644
--- a/source/eu/sc/messages.po
+++ b/source/eu/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-02 19:32+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 07:38+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1556825523.000000\n"
+"X-POOTLE-MTIME: 1558597111.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -14348,7 +14348,7 @@ msgstr "Utzi"
#: sc/inc/strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Autosum"
-msgstr ""
+msgstr "Autobatuketa"
#: sc/inc/strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(atzipen esklusiboa)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "Ez dago izendatutako barrutirik erabilgarri hautatutako dokumentuan"
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15570,7 +15575,7 @@ msgstr "Formatua"
#: sc/uiconfig/scalc/ui/autosum.ui:12
msgctxt "autosum|sum"
msgid "Sum"
-msgstr ""
+msgstr "Batuketa"
#: sc/uiconfig/scalc/ui/autosum.ui:20
msgctxt "autosum|average"
@@ -15590,7 +15595,7 @@ msgstr "Max"
#: sc/uiconfig/scalc/ui/autosum.ui:44
msgctxt "autosum|count"
msgid "Count"
-msgstr ""
+msgstr "Zenbaketa"
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:35
msgctxt "cellprotectionpage|checkProtected"
@@ -15770,13 +15775,13 @@ msgstr "Baldintzapeko formatua"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Barrutia"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
-msgstr ""
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Lehen baldintza"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Datu-inprimakia"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "It_xi"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Erregistro berria"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Berria"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Ezabatu"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Leheneratu"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Aurreko erregistroa"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "_Hurrengo erregistroa"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "It_xi"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Zuzeneko datu-korronteak"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URLa:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Sartu hemen iturburu-dokumentuak fitxategi-sistema lokalean edo Interneten duen URLa."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Arakatu..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Datu-basearen barrutia:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Datu-hornitzailea:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Bilaketa-katea:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Iturburu-korrontea"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Emaitzen area:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Moztu sarrerako barrutia uneko datu-edukietara"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Datuak"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Zutabeak"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Errenkadak"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Honen arabera elkartuta:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Bitartea:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametroak"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Laguntza"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fitxategia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Zehaztu hautatutako gelaxken ertzak."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Handitu koska"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Txikitu koska"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Karpeta nagusia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Hasiera"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "E_remua"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Txertatu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Txertatu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Diseinua"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objektuaren lerrokatzea"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Di~seinua"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "E_statistikak"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Datuak"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Datuak"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Be_rrikusi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Ber~rikusi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ikusi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ikusi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ir_udia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Irud~ia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Marraztu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Marraztu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objektua"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objektua"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "In_primatu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "In~primatu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "I_nprimakia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Inp~rimakia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tresnak"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tresnak"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Bilaketa-emaitzak"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "_Erakutsi elkarrizketa-koadro hau"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "Gaitu koadroa berriro 'Tresnak > Aukerak > Calc' atalean"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Orria"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Gelaxka"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Edukia"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Es_kema-ikurrak"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "Laburpe_na bilaketan"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Leihoa"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Sareta-marrak:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Kolorea:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Erakutsi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Erakutsi koloretako gelaxketan"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Ezkutatu"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Orrialde-jauziak"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Laguntza-lerroak _mugitzean"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Ikusteko laguntza"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Objektuak/irudiak:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Diagramak:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Marrazkiak:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Erakutsi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Ezkutatu"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Erakutsi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Ezkutatu"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Erakutsi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Ezkutatu"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objektuak"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "_Sinkronizatu orriak"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zooma"
diff --git a/source/eu/scp2/source/ooo.po b/source/eu/scp2/source/ooo.po
index 8f6f226de01..4339e51040a 100644
--- a/source/eu/scp2/source/ooo.po
+++ b/source/eu/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-12 10:19+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-23 07:38+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\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: 1555064398.000000\n"
+"X-POOTLE-MTIME: 1558597088.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Ireki dokumentua"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (modu segurua)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/eu/scp2/source/winexplorerext.po b/source/eu/scp2/source/winexplorerext.po
index f7988ffbc80..617fe5afcb5 100644
--- a/source/eu/scp2/source/winexplorerext.po
+++ b/source/eu/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 14:11+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-07-31 19:08+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1375297728.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows esploradoreak %PRODUCTNAME dokumentuei buruzko informazioa erakutsiko dizu hedapen honekin, koadro txikiko aurrebistak, esaterako."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/eu/sd/messages.po b/source/eu/sd/messages.po
index 86c400aa58e..5c85a28bb97 100644
--- a/source/eu/sd/messages.po
+++ b/source/eu/sd/messages.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-22 10:15+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 14:02+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555928125.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559311359.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Klik esteka irekitzeko:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML diseinuaren izena"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fitxategia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Laguntza"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fitxategia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Karpeta nagusia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hasiera"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "E_remua"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Txertatu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Txertatu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Orrialdea"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Orrialdea"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Berrikusi"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Be~rrikusi"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ikusi"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "I~kusi"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_estua"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~estua"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Bihurtu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ir_udia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ir~udia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Marraztu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Marraztu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektua"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektua"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "I_nprimakia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Inp~rimakia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tresnak"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tresnak"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr "_Ikusi"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr "~Ikusi"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr "T_estua"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr "T~estua"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr "T_aula"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr "~Taula"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr "Irudia"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr "Irud~ia"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr "M_arraztu"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr "~Marraztu"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr "Objektua"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr "~Objektua"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr "_Multimedia"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr "~Multimedia"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr "I_nprimakia"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr "Inp~rimakia"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr "_Maisua"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr "~Maisua"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr "3_d"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr "3~d"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr "_Tresnak"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr "~Tresnak"
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Erakutsi formak"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fitxategia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Laguntza"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fitxategia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Karpeta nagusia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hasiera"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "E_remua"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Txertatu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Txertatu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "Dia_positiba"
+msgid "_Layout"
+msgstr "_Diseinua"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "D~iapositiba"
+msgid "~Layout"
+msgstr "Di~seinua"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Diapositiba-aurkezpena"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Diapositiba-~aurkezpena"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Be_rrikusi"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Berrikusi"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ikusi"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ikusi"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Bihurtu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ir_udia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Irud~ia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Marraztu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Marraztu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektua"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektua"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "I_nprimakia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Inp~rimakia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tresnak"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Tresnak"
diff --git a/source/eu/sfx2/messages.po b/source/eu/sfx2/messages.po
index ec3c708f539..37c0044319e 100644
--- a/source/eu/sfx2/messages.po
+++ b/source/eu/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-27 06:03+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 14:01+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1556345009.000000\n"
+"X-POOTLE-MTIME: 1559311273.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " U: %1 H: %2 E: %3 O: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Kendu propietatea"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Sartutako balioa ez dator bat adierazitako motarekin.\n"
"Balioa testu gisa gordeko da."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Estiloa badago lehendik ere. Gainidatzi?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Berrezarri"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Izen hori badago lehendik ere."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Estilo hori ez dago."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Estilo hori ezin da erabili oinarrizko estilo\n"
"gisa, erreferentzia errekurtsiboa sortuko bailuke."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Izena badago lehendik ere estilo lehenetsi gisa.\n"
"Hautatu beste izen bat."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Estilo horiek ezabatzen badituzu, testuak estilo gurasoak hartuko ditu.\n"
"Hala ere estilo horiek ezabatu nahi dituzu?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Erabilitako estiloak: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Nabigatzailea"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Pasahitzaren konfigurazio akastuna"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Bidali"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Letra-tipoa"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Erakutsi aurrebistak"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Txertatu bertsioaren oharra"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(ez da izenik ezarri)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Estilo-zerrenda"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarkikoa"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Formatu interaktiboaren modua"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Estilo berria hautapenetik"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Estiloen ekintzak"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Eguneratu estiloa"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Benetan utzi nahi duzu grabazioa? Puntu honetaraino grabatutako urrats guztiak galduko dira."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Utzi grabazioa"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Txantiloiak hasieratzen ari dira lehenengo aldiz erabiltzeko."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Ez da inprimagailu lehenetsirik aurkitu.\n"
"Hautatu inprimagailu bat eta saiatu berriro."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Ezin izan da inprimagailua abiarazi.\n"
"Egiaztatu zure inprimagailuaren konfigurazioa."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Inprimagailua okupatuta dago"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (irakurtzeko soilik)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Ezarpen berriak dokumentu aktiboan\n"
"gorde nahi dituzu?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Ezarpen berriak dokumentu aktiboan\n"
"gorde nahi dituzu?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Ezarpen berriak dokumentu aktiboan\n"
"gorde nahi dituzu?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Dokumentua ezin izan da itxi\n"
" inprimatze-lan bat abian dagoelako."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Egiaztatu %PRODUCTNAME aplikazioaren ezarpenak edo zure posta-programaren ezarpenak."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Errore kodea $1 da"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Errorea mezua bidaltzean"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Dokumentu hau ezin da editatu, ziur aski sartzeko eskubiderik ez duzulako. Dokumentuaren kopia bat editatu nahi duzu?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Beste aukera bat blokeoa ezikusi eta fitxategia editatzeko moduan irekitzea da."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Ireki ~kopia"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Ireki"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (konpondutako dokumentua)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Ez da dokumentuaren ateratzea egin zerbitzarian."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Lagundu %PRODUCTNAME hobetzen!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Hartu parte"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Zure emaitzek mundu osoan dugun komunitateari laguntzen diote."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Egin emaitza"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "%PRODUCTNAME aplikazioaren %PRODUCTVERSION bertsioa lehen aldiz exekutatzen ari zara. Zein berritasun duen jakin nahi duzu?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Argitaratze-oharrak"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dokumentua soilik irakurtzeko moduan ireki da."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "PDF hau soilik irakurtzeko moduan ireki da badagoen fitxategia sinatzea baimentzeko."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Dokumentu honen sailkapen-etiketa %1 da."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Dokumentu hau klasifikatu behar da arbela itsatsi aurretik."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Dokumentu honek arbelak baino sailkapen maila baxuagoa du."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Maila"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Segurtasun nazionala:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Esportazio-kontrola:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Egiaztatu"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editatu dokumentua"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Sinatu dokumentua"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dokumentu honek baliogabeko sinadura du."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Sinadura baliozkoa da, baina dokumentua aldatua izan da"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Sinadura ondo dago, baina ziurtagiria ezin izan da balioztatu."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Sinadura ondo dago, baina dokumentua partzialki sinatuta dago."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Ziurtagiria ezin izan da balioztatu eta dokumentua partzialki sinatu da."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dokumentu honek sinadura digitala du eta sinadura baliozkoa da."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Erakutsi sinadurak"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Itxi panela"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Atrakatu"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Desatrakatu"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Aukera gehiago"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Itxi alboko barraren panela"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Alboko barraren ezarpenak"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Pertsonalizazioa"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Berrezarri balio lehenetsia"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Itxi alboko barra"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarina"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Erlauntza"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Kurba urdina"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Zianotipoa"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Urdin argia"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Gorri dotorea"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokua"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Basoko txoria"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Inpresioa"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirazioa"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Argiak"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Berde joria"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolia"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Gaueko urdina"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Naturako ilustrazioa"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Arkatza"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Pianoa"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Paper-zorroa"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progresioa"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Ilunabarra"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Antzinakoa"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Bizia"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Laburpena"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Lehenetsia"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modernoa"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Enpresa-gutun modernoa, sans serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Enpresa-gutun modernoa, serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Aurkezpen-txartel logoduna"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Kendu"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Garbitu dena"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Pasahitzaren luzera"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Sartutako pasahitzak bateragarritasun-arazoak sortzen ditu. Sartu 52 byte baino gutxiago edo 55 byte baino gehiago dituen pasahitz bat."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Bertsio-oharra"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Izena"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Mota"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Balioa"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Mota"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Bai"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ez"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Gehitu _propietatea"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Izena"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Mota"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Balioa"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Kokalekua:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Mota:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Aldatu pa_sahitza"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Txantiloia:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "“%1”(r)en propietateak"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Orokorra "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Deskribapena"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Propietate pertsonalizatuak"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS propietateak"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Segurtasuna"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Produktu honen sortzailea %OOOVENDOR da. Oracle eta/edo haren afiliatuen Copyright 2000, 2011 lizentzia duen OpenOffice.org aplikazioan oinarrituta dago. %OOOVENDOR hornitzaileak komunitateko kide guztien lana aitortzen du, ikus http://www.libreoffice.org/ xehetasun gehiagorako."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr "Kendu propietatea"
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr "..."
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr "Bai"
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr "Ez"
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/eu/shell/messages.po b/source/eu/shell/messages.po
new file mode 100644
index 00000000000..3d475ef3918
--- /dev/null
+++ b/source/eu/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-23 07:35+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: eu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558596943.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Ireki dokumentua"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"%DOCNAME\n"
+"\n"
+"dokumentua irekitzen ari zara\n"
+"\n"
+"Hura ikusteko ala editatzeko ireki nahi duzu?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Ikusi"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Editatu"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Utzi"
diff --git a/source/eu/starmath/messages.po b/source/eu/starmath/messages.po
index 0bb6bc9f272..8b743c67740 100644
--- a/source/eu/starmath/messages.po
+++ b/source/eu/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1644,261 +1644,286 @@ msgid "Examples"
msgstr "Adibideak"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr "Pitagorasen teorema"
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estandarra"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Etzana"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Lodia"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "beltza"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "urdina"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "berdea"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "gorria"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan-a"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grisa"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lima"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "granatea"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "urdin iluna"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliba"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "morea"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "zilarra"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "urdin berdexka"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "horia"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ezkutatu"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamaina"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "letra-tipoa"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ezkerrean"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "erdia"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "eskuinean"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Komandoak"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokumentua gordetzen..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROREA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Ustekabeko karakterea"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Ustekabeko tokena"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' espero dena"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' espero zen"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' espero zen"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' espero zen"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Ezkerreko eta eskuineko ikurrak ez datoz bat"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', edo 'serif' espero zen"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'tamaina' ondoren ustekabeko token bat dago"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Ez da onartzen lerrokatze bikoitza"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Ez dira onartzen azpi-/goi-indize bikoitzak"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' espero zen"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Kolorea behar da"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' espero zen"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Edukiak"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titulua"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formularen testua"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "E~rtzak"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamaina"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Jato~rrizko tamaina"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Doitu ~orrialdeari"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "E~skala"
@@ -1963,6 +1988,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementuak"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/eu/svtools/messages.po b/source/eu/svtools/messages.po
index 64bacca4f86..6f4a180fce1 100644
--- a/source/eu/svtools/messages.po
+++ b/source/eu/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-13 08:37+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-16 17:37+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555144633.000000\n"
+"X-POOTLE-MTIME: 1558028242.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desegin: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Be~rregin: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "E~rrepikatu: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Formatu gabeko testua"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Formatu gabeko testua (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bit-mapa irudia (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafitxategia (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Testu aberatseko formatua (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Testu aberatseko formatua (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME marrazki-formatua"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bit-mapa/animazioa (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Egoerari buruzko informazioa Svx Internal Link-etik"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME esteka (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-ko laster-marka"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star zerbitzariaren formatua"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star objektuaren formatua"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Miniaplikazioa objektua"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Plugin objektua"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 objektua"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 objektua"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 objektua"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 objektua"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 objektua"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 objektua"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 objektua"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw objektua"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 objektua"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 objektua"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 objektua"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc objektua"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 objektua"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 objektua"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart objektua"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 objektua"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objektua"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage objektua"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 objektua"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 objektua"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath objektua"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 objektua"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 objektua"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint objektua"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Hipertestu markaketa lengoaia (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Murriztutako hipertestu markaketa lengoaia (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel trukaketa formatu bitarra 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel trukaketa formatu bitarra 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE esteka)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word objektua"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet objektua"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-ko dokumentu-objektua"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-eko dokumentuaren informazioa"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokumentua"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objektua"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objektu grafikoa"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer objektua"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web objektua"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master objektua"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw objektua"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress objektua"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc objektua"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Calc objektua"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math objektua"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-eko metafitxategia"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datu-iturburuaren objektua"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datu-iturburuaren taula"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL kontsulta"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 elkarrizketa-koadroa"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Esteka"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML formatua iruzkinik gabe"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Ezin izan da % objektua txertatu."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% fitxategiko objektua ezin izan da txertatu."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Beste objektu batzuk"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Iturburu ezezaguna"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Izena"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Tamaina"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Aldatze-data"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Mota"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "byte"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Errenkada: %1, Zutabea: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Mota: %1, URLa: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Karpeta"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fitxategia"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Eremu hutsa"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerikoa"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normala"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Karaktere-jokoa"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Hiztegia"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trazua"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Potentziala"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefono-liburua"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetika (lehena alfanumerikoa)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetika (azkena alfanumerikoa)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerikoa"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Hiztegia"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Potentziala"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trazua"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetika (lehena alfanumerikoa, silaben arabera elkartuta)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetika (lehena alfanumerikoa, kontsonanteen arabera elkartuta)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetika (azkena alfanumerikoa, silaben arabera elkartuta)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetika (azkena alfanumerikoa, kontsonanteen arabera elkartuta)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Gaur"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Bat ere ez"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Arina"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Etzan arina"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Erregularra"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Etzana"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Lodia"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Lodi etzana"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Beltza"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Etzan beltza"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Liburua"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Lodi zeiharra"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Estutua"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Estutu lodia"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Estutu lodi etzana"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Estutu lodi zeiharra"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Estutu etzana"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Estutu zeiharra"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Estra arina"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Estra arin etzana"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Zeiharra"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Erdi lodia"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Erdi lodi etzana"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Letra-tipo bera erabiliko da inprimagailuan eta pantailan."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Hau inprimagailuko letra-tipo bat da. Pantailako irudia desberdina izan daiteke."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Letra-tipo hori simulatuko da edo estilorik antzekoena erabiliko da."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Letra-tipo hori ez dago instalatuta. Erabilgarri dagoen letra-tiporik antzekoena erabiliko da."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Arakatu..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Eraman etxera"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Eraman ezkerrera"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Eraman eskuinera"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Eraman bukaerara"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Gehitu"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Erregela horizontala"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Erregela bertikala"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Bit bateko atalasea"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Bit bateko bilbea"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 biteko gris-eskala"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 biteko kolorea"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 biteko gris-eskala"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 biteko kolorea"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 biteko benetako kolorea"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Irudiak %1 KB inguruko memoria behar du."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Irudiak %1 KB inguruko memoria behar du, fitxategiaren tamaina %2 KB da."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Fitxategiaren tamaina %1 KB da."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ostalaria"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ataka"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Beste CMIS bat"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Prest"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pausarazita"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Ezabatu zain"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Lanpetuta"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Hasieratzen"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Zain"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Berotzen"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Prozesatzen"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Inprimatzen"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Lineaz kanpo"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Errorea"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Zerbitzari ezezaguna"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papera trabatuta"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ez dago nahikoa paper"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Eskuzko elikadura"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Arazoa paperarekin"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "S/I aktibatuta"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Irteerako ontzia beteta"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner gutxi"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Tonerrik ez"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Ezabatu orrialdea"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Erabiltzaileak parte hartu behar du"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ez dago nahikoa memoria"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Tapa irekita"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energia aurrezteko modua"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Inprimagailu lehenetsia"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumentu"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "A~maitu"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Hurrengoa >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Atzera"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Urratsak"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<bat ere ez>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Enpresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Saila"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Izena"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Abizena"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Kalea"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Herrialdea"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Posta-kodea"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Herria"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titulua"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Kokagunea"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tratamendua"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inizialak"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Itxitze osagarria"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel.: etxekoa"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel.: lanekoa"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faxa"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Posta elektronikoa"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URLa"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Oharra"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "1. erabiltzailea"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "2. erabiltzailea"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "3. erabiltzailea"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "4. erabiltzailea"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "IDa"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Egoera"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel.: bulegokoa"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Bilagailua"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mugikorra"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel.: beste bat"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Egutegia"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Gonbidatu"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$(r)en $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME produktuak Java runtime environment (JRE) bat behar du zeregin horretarako. Instalatu JRE bat eta berrabiarazi %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME aplikazioak %BITNESS biteko Java Runtime Environment (JRE) behar du zeregin hau betetzeko. Instalatu JRE bat eta berrabiarazi %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME suiteak Oracleren Java Development Kit (JDK) behar du macOS 10.10 edo berriagoetan zeregin hau burutzeko. Mesedez instalatu itzazu eta berrabiarazi %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME konfigurazioa aldatu da. %PRODUCTNAME - Hobespenak - %PRODUCTNAME - Aurreratua atalean, hautatu %PRODUCTNAME produktuarekin erabili nahi duzun JREa."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME konfigurazioa aldatu da. Tresnak - Aukerak - %PRODUCTNAME - Aurreratua atalean, hautatu %PRODUCTNAME produktuarekin erabili nahi duzun JREa."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME produktuak Java runtime environment (JRE) bat behar du zeregin horretarako. Hautatutako JREa hondatuta dago. Hautatu beste bertsio bat edo instalatu JRE berri bat eta hautatu hura %PRODUCTNAME - Hobespenak - %PRODUCTNAME - Aurreratua atalean."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME produktuak Java runtime environment (JRE) bat behar du zeregin horretarako. Hautatutako JREa hondatuta dago. Hautatu beste bertsio bat edo instalatu JRE berri bat eta hautatu hura Tresnak - Aukerak - %PRODUCTNAME - Aurreratua atalean."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Beharrezko JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Hautatu JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE hondatuta dago"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Iturburu-kodea"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Laster-marken fitxategia"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafikoak"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigurazio-fitxategia"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplikazioa"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Datu-baseko taula"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sistema-fitxategia"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word dokumentua"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Laguntza-fitxategia"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokumentua"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Artxibo-fitxategia"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Egunkari-fitxategia"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice datubasea"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 dokumentu maisua"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice irudia"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Testu-fitxategia"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Esteka"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 txantiloia"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel dokumentua"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-eko txantiloia"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch fitxategia"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fitxategia"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Karpeta"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Testu-dokumentua"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Kalkulu-orria"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Aurkezpena"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Marrazkia"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokumentua"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Dokumentu maisua"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datu-basea"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 kalkulu-orriaren txantiloia"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 marrazkiaren txantiloia"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 aurkezpenaren txantiloia"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 testu-dokumentuaren txantiloia"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unitate lokala"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disko-unitatea"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM unitatea"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Sare-konexioa"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint dokumentua"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-eko txantiloia"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-eko aurkezpena"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 formula"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 diagrama"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 marrazkia"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 kalkulu-orria"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 aurkezpena"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 testu-dokumentua"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 dokumentu maisua"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokumentua"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument Datu-basea"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Marrazkia"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument formula"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Dokumentu maisua"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument Aurkezpena"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Kalkulu-orria"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Testua"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Kalkulu-orriaren txantiloia"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Marrazki-txantiloia"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Aurkezpen-txantiloia"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Testu-txantiloia"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Hedapena"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell ortografia-egiaztatzailea"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen hitz-zatitzailea"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Mythes thesaurus-a"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Ezikusitako hitzen zerrenda"
@@ -4127,7 +4129,7 @@ msgstr "Ilokoera"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Ingelesa (Zambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/eu/svx/messages.po b/source/eu/svx/messages.po
index c1e5cd40d9b..213b4997675 100644
--- a/source/eu/svx/messages.po
+++ b/source/eu/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-02 19:32+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 07:34+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1556825525.000000\n"
+"X-POOTLE-MTIME: 1558596885.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Ezkerretik eskuinera (bertikala)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Behetik gora, ezkerretik eskuinera (bertikala)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Zatiaren zenbakia:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Zatiaren testua:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "8. argi-iturria"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "1. argi-kolorea"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "2. argi-kolorea"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "3. argi-kolorea"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "4. argi-kolorea"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "5. argi-kolorea"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "6. argi-kolorea"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "7. argi-kolorea"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "8. argi-kolorea"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Adierazi gradientearen itzal-estiloaren desplazamendu bertikalaren ehunekoa, erdigunetik hasita. % 50 erdigune bertikala da"
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Ingerada-editorea"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplikatu"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Laneko area"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Hautatu"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Laukizuzena"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsea"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Poligonoa"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editatu puntuak"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Lekuz aldatu puntuak"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Txertatu puntuak"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Ezabatu puntuak"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Ingerada automatikoa"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Desegin "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Berregin"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Kolore-tolerantzia"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Orri-oina"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Irudi-mapen editorea"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplikatu"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Ireki..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Gorde..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Itxi"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Hautatu"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Laukizuzena"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsea"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Poligonoa"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Forma libreko poligonoa"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editatu puntuak"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Lekuz aldatu puntuak"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Txertatu puntuak"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Ezabatu puntuak"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Desegin "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Berregin"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktibo"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makroa..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Propietateak..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Helbidea:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Markoa:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Testua:"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME modu seguruan ari denez exekutatzen, zure erabiltzaile-konfigurazioa eta hedapenak aldi baterako desgaitu dira.\n"
+"\n"
+"Honako aldaketetako bat edo gehiago egin ditzakezu zure erabiltzaile-profilean %PRODUCTNAME lan egiteko moduko egoerara itzuli dadin."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/eu/sw/messages.po b/source/eu/sw/messages.po
index 13bd25e9ef3..eac4df6f737 100644
--- a/source/eu/sw/messages.po
+++ b/source/eu/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-02 19:32+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-23 07:34+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\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: 1556825536.000000\n"
+"X-POOTLE-MTIME: 1558596870.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,7 +3118,7 @@ msgid "Change object title of $1"
msgstr "Aldatu objektuaren titulua hona: $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Aldatu $1 objektuaren deskribapena"
@@ -7679,7 +7679,7 @@ msgstr "Karakterea"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "E_standarra"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Laguntza"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fitxategia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Karpeta nagusia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Hasiera"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Txertatu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Txertatu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Diseinua"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Di~seinua"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "E_rreferentziak"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Erre~ferentziak"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Be_rrikusi"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Berrikusi"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ikusi"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ikusi"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Taula"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Taula"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ir_udia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Irud~ia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Ma_rraztu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Ma~rraztu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektua"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektua"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "In_primatu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "In~primatu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "I_nprimakia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Inp~rimakia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tresnak"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Tresnak"
@@ -12160,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Fitxategia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Fitxategia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Karpeta nagusia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Hasiera"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Txertatu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Txertatu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Egokitu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Diseinua"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Di~seinua"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "E_rreferentziak"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Erre~ferentziak"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Berrikusi"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Berrikusi"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Ikusi"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Ikusi"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_aula"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Taula"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Irudia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Irud~ia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "M_arraztu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Marraztu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objektua"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objektua"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Inprimatu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "I~nprimatu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Inp_rimakia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Inp~rimakia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Tresnak"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Tre~snak"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12449,7 +12449,7 @@ msgstr "_Objektua"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "_Markoa"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12659,7 +12659,7 @@ msgstr "_Multimedia"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objektua"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13372,8 +13372,8 @@ msgstr "Hitzen tartea zabaltzen du lerroetan eskuzko lerro-jauziekin paragrafo j
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Babestu inprimakia"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Aurkibidea, indizea edo bibliografia"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Aurrebista"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Aurrebista"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Mota"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Sarrerak"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Estiloak"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Zutabeak"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Atzeko planoa"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Aurrebista"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Maila"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "M_ota"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Editatu..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titulua:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Mota:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Aurkibidea"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Indize alfabetikoa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Irudien taula"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Taulen indizea"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Erabiltzaileak definituak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektuen taula"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Babestu eskuzko aldaketarik ez egiteko"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Mota eta titulua"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Honentzat:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Dokumentu osoa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Kapitulua"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Ebaluazio-maila:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Sortu indizea edo aurkibidea"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Eskema"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Indize-markak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Taulak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Te_stu-markoak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafikoak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE objektuak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Erabili jatorrizko kapituluaren maila"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Beste estilo batzuk"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Estiloak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Esleitu estiloak..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Epigrafeak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektu-izenak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategoria:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Erakutsi:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Erreferentziak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategoria eta zenbakia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Epigrafearen testua"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Sortu hemendik:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Sortu honako objektuetatik"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Parentesiak:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Zenbaki-sarrerak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[bat ere ez]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Sarrerak formateatzea"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Konbinatu sarrera berdinak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Konbinatu sarrera berdinak _p edo pp-rekin"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Konbinatu honekin:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Maiuskula/minuskula"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Sarrerak automatikoki idatzi maiuskulaz"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Gakoak bereizitako sarrera gisa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Konkordantzia-fitxategia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Fitxategia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Aukerak"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Hizkuntza::"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Gako mota:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ordenatu"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Mailak"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Paragrafo-_estiloak"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Lehenetsia"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Editatu"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Esleipena"
diff --git a/source/fa/basctl/messages.po b/source/fa/basctl/messages.po
index 67b88c697b2..12bcf8a1819 100644
--- a/source/fa/basctl/messages.po
+++ b/source/fa/basctl/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-03-08 11:58+0000\n"
+"PO-Revision-Date: 2019-05-23 00:21+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1552046328.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558570901.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -425,22 +425,22 @@ msgstr "صفحه‌ها:"
#: basctl/inc/strings.hrc:101
msgctxt "RID_STR_PRINTDLG_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "تمام ~صفحه‌ها"
#: basctl/inc/strings.hrc:102
msgctxt "RID_STR_PRINTDLG_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "~صفحه‌ها"
#: basctl/inc/strings.hrc:103
msgctxt "RID_STR_PRINTDLG_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "صفحه‌های ~زوج"
#: basctl/inc/strings.hrc:104
msgctxt "RID_STR_PRINTDLG_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "صفحه‌های ~فرد"
#: basctl/inc/strings.hrc:105
msgctxt "RID_STR_CHOOSE"
@@ -551,12 +551,12 @@ msgstr "ویرایش"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:363
msgctxt "basicmacrodialog|delete"
msgid "_Delete"
-msgstr ""
+msgstr "_حذف"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:377
msgctxt "basicmacrodialog|new"
msgid "_New"
-msgstr ""
+msgstr "_جدید"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:391
msgctxt "basicmacrodialog|organize"
diff --git a/source/fa/cui/messages.po b/source/fa/cui/messages.po
index 64a2b61335a..64409b4f92d 100644
--- a/source/fa/cui/messages.po
+++ b/source/fa/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1680,122 +1680,117 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
#, fuzzy
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "تنظیم بدون حاشیه"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
#, fuzzy
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "تعیین فقط حاشیهٔ بیرون"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
#, fuzzy
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "تعیین حاشیهٔ بیرونی و خطوط افقی"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
#, fuzzy
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "تعیین حاشیهٔ بیرونی و خطوط افقی"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
#, fuzzy
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "تعیین حاشیه بیرونی بدون تغییر خطوط درونی"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
#, fuzzy
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "تعیین فقط خطوط قُطری"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
#, fuzzy
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "تعیین تمامی چهار حاشیه‌"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
#, fuzzy
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "تعیین فقط حاشیه‌های سمت راست و سمت چپ"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
#, fuzzy
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "تعیین فقط حاشیه‌های بالا و پایین"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
#, fuzzy
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "تعیین فقط حاشیهٔ سمت چپ"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
#, fuzzy
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "تعیین حاشیه‌های بالا و پایین، و همهٔ خطوط داخلی"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
#, fuzzy
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "تعیین حاشیه‌های سمت راست و چپ، و تمامی خطوط داخلی"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "بدون سایه"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
#, fuzzy
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "تعیین سایه به سمت پایین راست"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
#, fuzzy
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "تعیین سایه به سمت بالا راست"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "تعیین سایه به سمت پایین چپ"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
#, fuzzy
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "تعیین سایه به سمت بالا چپ"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1838,7 +1833,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1958,7 +1953,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2198,7 +2193,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2453,12 +2448,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2528,7 +2523,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2608,7 +2603,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2849,7 +2844,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3478,67 +3473,72 @@ msgid "About %PRODUCTNAME"
msgstr "دربارهٔ %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3662,19 +3662,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "جایگزینی"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "جایگزینی"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "عرض"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4547,6 +4547,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5722,29 +5882,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "ویژگی‌ها"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "چارچوب:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "نام"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9499,84 +9659,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "راهنما"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "محاوره‌های %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "محاوره‌های %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "وضعیت سند"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "و"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "بار کردن %PRODUCTNAME در حین راه‌اندازی سیستم"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11543,24 +11703,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12223,102 +12368,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13388,27 +13437,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/fa/extensions/messages.po b/source/fa/extensions/messages.po
index 0cb6ba5df0c..9c6d1f2b6a4 100644
--- a/source/fa/extensions/messages.po
+++ b/source/fa/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3159,178 +3159,178 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "نام کوتاه"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "مؤلف(ها)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "ناشر"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "فصل"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "ویرایشگر"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "نوع"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "سال"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "عنوان"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "نشانی"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "شاب~ک"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "~ویرایش"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "جلد"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "دانشگاه"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "ماه"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "مجله"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "عدد"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "یادداشت"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "نشانی اینترنتی"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr ""
@@ -3511,29 +3511,29 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "نمودارها می‌توانند برای نشان دادن اطلاعات مفصل مربوط به رکورد جاری این گزارش مورد استفاده قرار گیرند. برای این کار ، شما می توانید مشخص کنید کدام ستون‌های نمودار با ستون‌های گزارش مطابقت دارند."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "بر‌چسب"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
index 8ccff27f57a..803fa8ae52a 100644
--- a/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23778,6 +23778,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26156,6 +26165,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26174,6 +26192,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/fa/sc/messages.po b/source/fa/sc/messages.po
index b4801d9906c..3328ec0e30d 100644
--- a/source/fa/sc/messages.po
+++ b/source/fa/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15808,6 +15808,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16381,12 +16386,12 @@ msgstr "قالب‌بندی شرطی"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17706,90 +17711,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "بس~تن"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "رکورد جدید"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "جدید"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "حذف"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "بازگرداندن"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "رکورد قبلی"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "رکورد بعدی"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "بس~تن"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "نشانی اینترنتی"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "مرور..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "محدوده‌های پایگاه داده"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19590,35 +19552,40 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "داده"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "ستون"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "سطر"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "بازه"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr ""
@@ -19765,167 +19732,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22563,17 +22532,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24567,111 +24546,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~پنجره"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "نشان دادن"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "مخفی کردن"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "شکست صفحه"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "نمودارها"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "اشیاء نقاشی"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "نشان دادن"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "مخفی کردن"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "نشان دادن"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "مخفی کردن"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "نشان دادن"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "مخفی کردن"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "آشیاء"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "زوم"
diff --git a/source/fa/scp2/source/ooo.po b/source/fa/scp2/source/ooo.po
index 89bbf511ba1..516782b99a4 100644
--- a/source/fa/scp2/source/ooo.po
+++ b/source/fa/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "باز کردن نوشتار"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/fa/scp2/source/winexplorerext.po b/source/fa/scp2/source/winexplorerext.po
index 794a05f800a..5fa072bbfa1 100644
--- a/source/fa/scp2/source/winexplorerext.po
+++ b/source/fa/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-03-21 23:50+0200\n"
-"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 07:21+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\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: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369380072.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "اکسپلورر ویندوز مایکروسافت را قادر می‌سازد تا اطلاعاتی مانند پیش‌نمایش را از اسناد %PRODUCTNAME نمایش دهد."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/fa/sd/messages.po b/source/fa/sd/messages.po
index 19dfffaefbb..690060e91fe 100644
--- a/source/fa/sd/messages.po
+++ b/source/fa/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2637,6 +2637,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3117,164 +3122,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4762,160 +4952,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/fa/sfx2/messages.po b/source/fa/sfx2/messages.po
index 63a85d06a9c..0125ef63e93 100644
--- a/source/fa/sfx2/messages.po
+++ b/source/fa/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-07 18:20+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -897,39 +897,34 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " سال: %1 ماه: %2 روز: %3 ساعت: %4 دقیقه: %5 ثانیه: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "پرونده از قبل وجود دارد. رونویسی شود؟"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~حالت اولیه"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "این نام از قبل مورد استفاده است."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "این سبک وجود ندارد."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -939,7 +934,7 @@ msgstr ""
"نمی‌توان این سبک را به عنوان سبک پایه به کار برد،\n"
"چون نتیجهٔ این کار ارجاع دوری ایجادخواهد کرد."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -948,7 +943,7 @@ msgstr ""
"نام از قبل به عنوان سبک پیش‌فرض وجود دارد.\n"
"لطفاً یک نام دیگر انتخاب کنید."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -956,124 +951,124 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "ناوشگر"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "تصدیق ناموفق گذرواژه"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "~ارسال"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "قلم"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "درج توضیح نسخه"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "سبک‌ها"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "سلسله‌مراتبی"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "حالت قالب پُرکنی"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "سبک جدید از انتخاب"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "به‌هنگام‌سازی سبک"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "آیا واقغاً می‌خواهید از ضبط صرف نظر کنید؟ همهٔ مراحل ضبط شده تا به این نقطه از دست خواهند رفت."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "انصراف از ضبط"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "قالب‌ها در حال راه‌اندازی برای اولین بار استفاده هستند."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
#, fuzzy
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "چاپ شده توسط"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
#, fuzzy
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(فقط خواندنی)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1081,7 +1076,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1089,7 +1084,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1097,14 +1092,14 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1112,7 +1107,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1120,17 +1115,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1138,353 +1133,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ویرایش نوشتار"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "پرونده کردن نوشتار"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "~گزینه‌های بیشتر"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "پویانمایی سفارشی"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "حذف"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1843,32 +1848,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "توضیح نسخه"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "نام"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "نوع"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "مقدار"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "نوع"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "بله"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
#, fuzzy
msgctxt "cmisline|no"
msgid "No"
@@ -1879,17 +1869,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "نام"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "نوع"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "مقدار"
@@ -2030,19 +2020,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "مکان:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "نوع:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_تعویض رمز عبور"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2053,28 +2043,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "عمومی"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "شرح"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2298,6 +2288,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/fa/shell/messages.po b/source/fa/shell/messages.po
new file mode 100644
index 00000000000..19ab699e060
--- /dev/null
+++ b/source/fa/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-23 00:25+0000\n"
+"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: fa\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558571142.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "باز کردن سند"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"شما در حال باز کردن سند زیر هستید\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"آیا می‌خواهید سند را برای دیدن باز کنید یا برای ویرایش؟"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "نما"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "ویرایش"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "انصراف"
diff --git a/source/fa/starmath/messages.po b/source/fa/starmath/messages.po
index 62f316cd805..5eb3db054dd 100644
--- a/source/fa/starmath/messages.po
+++ b/source/fa/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1547,277 +1547,302 @@ msgid "Examples"
msgstr "مثال"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "استاندارد"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ایتالیک"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "سیاه"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "سیاه"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "آبی"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "سبز"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "فیروزه‌ای"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "سرخابی"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "خاکستری"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "زمان"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "زرد"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "مخفی کردن"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "اندازه"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "قلم"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "چپ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "مرکز"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "راست"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "فرمان‌ها"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "فرمول"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "در حال ذخیره کردن نوشتار..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "فرمول %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "خطا : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "نویسهٔ غیرمنتظره"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "«{» لازم است"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "«}» لازم است"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "«(» لازم است"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "«)» لازم است"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "«#» لازم است"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "رنگ لازم است"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "«RIGHT» لازم است"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "محتویات"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "عنوان"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "متن فرمول"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "حاشیه‌ها"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "اندازه"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "اندازه اصلی"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "تطابق با صفحه"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1892,6 +1917,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "عنصر"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/fa/svtools/messages.po b/source/fa/svtools/messages.po
index a123ff53869..6f450110487 100644
--- a/source/fa/svtools/messages.po
+++ b/source/fa/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1549 +16,1551 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195435.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "واگردانی: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "انجام ~دوباره: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~تکرار: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "متن بدون قالب"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "اطلاعات وضعیت از پیوند اینترنتی Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "نشانک نت‌اسکیپ"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "قالب کارگزار استار"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "قالب شیء استار"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "شیء برنامک"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "شیء متصل‌شونده"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "شیء استاررایتر 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "شیء استاررایتر 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "شیء استاررایتر 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "شیء استاررایتر/وب 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "شیء استاررایتر/وب 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "شیء استاررایتر/مستر 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "شیء استاررایتر/مستر 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "شیء استاردرا"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "شیء استاردرا 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "شیء استارایمپرس 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "شیء استاردرا 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "شیء استارکَلک"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "شیء استارکَلک 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "شیء استارکَلک 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "شیء استارچارت"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "شیء استارچارت 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "شیء استارچارت 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "شیء استارایمیج"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "شیء استارایمیج 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "شیء استارایمیج 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "شیء استارمَت"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "شیء استارمَت 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "شیء استارمَت 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "شیء وُرد مایکروسافت"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "شیء نوشتاری آفیس"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "نوشتار sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "شیء استارچارت 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "شیء گرافیکی"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
#, fuzzy
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "سند اصلی اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
#, fuzzy
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "طراحی اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
#, fuzzy
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "نمودار اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
#, fuzzy
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "سند اصلی اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "فراپروندهٔ ویندوز"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "شیء منبع داده‌ای"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "جدول منبع داده‌ای"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "پرس و جوی SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
#, fuzzy
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "طراحی اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "پیوند"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "قالب HTML بدون توضیحات"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "درج شیء % ممکن نیست."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "درج شیء از پروندهٔ % ممکن نیست."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "اشیاء بیشتر"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "منبع نامعلوم"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "نام"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "اندازه"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "تاریخ تغییر"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "نوع"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "بایت"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "کیلوبایت"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "مگابایت"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "گیگابایت"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "ردیف:‌%1 ستون %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr "، نوع: %1 نشانی اینترنتی %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "پوشه"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "پرونده"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "فیلد خالی"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "الفباعددی"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "عادی"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "مجموعه نویسه"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "لغت‌نامه"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "یونی‌کد"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "دفتر تلفن"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "آواشناختی (الفباعددی‌ها اول)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "آواشناختی (الفباعددی‌ها آخر)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "الفباعددی"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "لغت‌نامه"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "آواشناختی (الفباعددی‌ها اول، گروه شده بر اساس سیلاب)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "آواشناختی (الفباعددی‌ها اول، گروه شده بر اساس سیلاب)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "آواشناختی (الفباعددی‌ها آخر، گروه شده بر اساس سیلاب)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "آواشناختی (الفباعددی‌ها آخر، گروه شده بر اساس سیلاب)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "امروز"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "هیچ‌کدام"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "نازک"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "نازک ایتالیک"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "عادی"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ایتالیک"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "سیاه"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ایتالیک سیاه"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "مشکی"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "مشکی ایتالیک"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "کتاب"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "متراکم "
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "نیمه ضخیم"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "یک قلم هم برای چاپگر و هم برای صفحهٔ نمایش شما استفاده خواهد شد."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "این قلم برای چاپگر است. تصویر روی صفحهٔ نمایش ممکن است متفاوت باشد."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "این سبک قلم شبیه‌سازی خواهد شد یا مشابه‌ترین سبک استفاده خواهد شد."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "این قلم نصب نشده است. نزدیکترین قلم موجود استفاده خواهد شد."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "مرور..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "جابه‌جا کردن چارچوب"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "جابه‌جایی به چپ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "جابه‌جایی به راست"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "حرکت به پایین"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "اضافه کردن"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "خروج افقی"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "خط‌کش عمودی"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "آستانه 1 بیتی"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "نقطه‌نقطه‌ای 1 بیتی"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "سایه‌خاکستری 4 بیتی"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "سایه‌خاکستری 4 بیتی"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "رنگ حقیقی 24 بیتی"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "هزینه"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "مرتب‌سازی"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "مکث"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "در حال راه‌اندازی..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "در حال انتظار"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "خطا"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "~حذف صفحه"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "حافظه کافی نیست"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "چاپگر پیش‌فرض"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d سند"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~پایان"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~بعد >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ">> عقب"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "مراحل"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<هیچ‌کدام>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "شرکت"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "بخش"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "نام"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "نام خانوادگی"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "خیابان"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "کشور"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "کد پستی"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "شهر"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "عنوان"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "موقعیت"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "فرم نشانی"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "حرف اول نام وسط"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "توشیح"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "تلفن: خانه"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "تلفن: محل کار"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "نشانی اینترنتی"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "یادداشت"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "کاربر ۱"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "کاربر ۲"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "کاربر ۳"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "کاربر ۴"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "شناسه"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ایالت"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "تلفن: دفتر"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "پی‌جو"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "تلفن همراه"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "تلفن: غیره"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "تقویم"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "دعوت"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "راه‌اندازی مجدد لازم است"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "انتخاب سطر"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "~شناسایی"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "کد مبدأ"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "پروندهٔ نشانک"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "گرافیک"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "پروندهٔ پیکربندی"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "برنامه"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "جدول پایگاه‌داده"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "سیستم پرونده‌ای"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "نوشتار وُرد مایکروسافت"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "پروندهٔ راهنما"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "نوشتار HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "پروندهٔ آرشیو"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "پروندهٔ ثبتی"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "قالب استارآفیس 5.0"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "نوشتار اصلی استاررایتر 4.0/5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "قالب استارآفیس 5.0"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "پروندهٔ متنی"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "پیوند"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "قالب استارآفیس 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "نوشتار اِکسل مایکروسافت"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "قالب اِکسل مایکروسافت"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "پروندهٔ دسته‌ای"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "پرونده"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "پوشه"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "نوشتار متنی"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "صفحه‌گسترده"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "ارائه"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "نقاشی"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "نوشتار HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "نوشتار اصلی"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "فرمول"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "پایگاه داده"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
#, fuzzy
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "صفحه‌گسترده اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
#, fuzzy
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "ارائه اپن‌آفیس.ارگ 1.0 (فشرده)"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
#, fuzzy
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "سند متنی اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "دیسک‌گردان محلی"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "دیسک گردان"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "سی‌دی گردان"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "اتصال شبکه"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "نوشتار پاورپوینت مایکروسافت"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "قالب پاورپوینت مایکروسافت"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "نمایش پاورپوینت مایکروسافت"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "فرمول اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "نمودار اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "طراحی اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "صفحه‌گسترده اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "ارائه اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "سند متنی اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "سند اصلی اپن‌آفیس.ارگ 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "نوشتار MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "پایگاه‌دادهٔ نوشتارباز"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "نقاشی نوشتارباز"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "فرمول نوشتارباز"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "نوشتار اصلی نوشتارباز"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ارائهٔ نوشتارباز"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "صفحه‌گستردهٔ نوشتارباز"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "متن نوشتارباز"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "قالب صفحه‌گستردهٔ نوشتارباز"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "قالب نقاشی نوشتارباز"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "قالب ارائهٔ نوشتارباز"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "قالب متن نوشتارباز"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "ضمیمه %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/fa/svx/messages.po b/source/fa/svx/messages.po
index 72d5f59ef81..ea47bdfb9c0 100644
--- a/source/fa/svx/messages.po
+++ b/source/fa/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8101,6 +8101,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12560,87 +12565,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "ویرایشگر شمارنده"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "اِعمال"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "فضای کاری"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "انتخاب"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "مستطیل"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "بیضی"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "چندضلعی"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ویرایش نقاط"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "جابه‌جا کردن رأس"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "درج رأس"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "حذف رأس"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "شمارندهٔ خودکار"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "برگردان "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "قرمز"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12974,123 +12984,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "پاصفحه"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ویرایشگر نقشه‌تصویر"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "اِعمال"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "باز کردن..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "ذخیره کردن..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "بستن"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "انتخاب"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "مستطیل"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "بیضی"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "چندضلعی"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "چندضلعی آزاد"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ویرایش نقاط"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "جابه‌جا کردن رأس"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "درج رأس"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "حذف رأس"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "برگردان "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "قرمز"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "فعال"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "ماکرو..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "ویژگی‌ها: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "نشانی:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "چارچوب"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/fa/sw/messages.po b/source/fa/sw/messages.po
index bf7a23abe20..be9d71f9044 100644
--- a/source/fa/sw/messages.po
+++ b/source/fa/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fa\n"
@@ -3169,9 +3169,9 @@ msgid "Change object title of $1"
msgstr "تغییر عنوان شیئ از $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "تغییر شرح شیئ از $1"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12664,147 +12664,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12814,152 +12814,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14075,7 +14075,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17616,51 +17616,51 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "پیش‌نمایش"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "پیش‌نمایش"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "نوع"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "~مداخل"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "سبک‌ها"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
#, fuzzy
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "ستون‌ها"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "پس‌زمینه"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "پیش‌نمایش"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "سطح"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17905,326 +17905,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "ویرایش..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "عنوان"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "نوع"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "محتویات جدول"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "تعریف‌شده توسط کاربر"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "کتاب‌شناسی ۱"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "فرم"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~سراسر نوشتار"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "فصل"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "دورخط‌"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "جدول‌ها"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "چارچوب متنی"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "گرافیک"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "اشیاء OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "سبک‌های شرطی"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "سبک‌ها"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "گزینه‌ها"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "نام شیء"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "مقوله"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "نمایش"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "مراجع"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "مقوله و شماره"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "متن عنوان"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "~قلاب‌ها"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[هیچ‌کدام]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "پرونده"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "گزینه‌ها"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "زبان"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "نوع کلید"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "مرتب‌سازی"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "سطح"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(سبک بند: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "پیش‌فرض"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "ویرایش"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/fi/chart2/messages.po b/source/fi/chart2/messages.po
index c8438f2383f..9f1c462326a 100644
--- a/source/fi/chart2/messages.po
+++ b/source/fi/chart2/messages.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: 2019-01-12 13:17+0100\n"
-"PO-Revision-Date: 2018-10-21 19:26+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-18 14:16+0000\n"
+"Last-Translator: Tommi Nieminen <translator@legisign.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1540150008.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558189004.000000\n"
#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
@@ -2136,7 +2136,7 @@ msgstr "Akselimerkit"
#: chart2/uiconfig/ui/tp_AxisPositions.ui:492
msgctxt "tp_AxisPositions|CB_MAJOR_GRID"
msgid "Show major _grid"
-msgstr "Näytä pääruudukko"
+msgstr "Näytä _pääruudukko"
#: chart2/uiconfig/ui/tp_AxisPositions.ui:508
msgctxt "tp_AxisPositions|CB_MINOR_GRID"
diff --git a/source/fi/cui/messages.po b/source/fi/cui/messages.po
index 0da5912126b..667bab3c1f3 100644
--- a/source/fi/cui/messages.po
+++ b/source/fi/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Ei reunoja"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Vain uloin reuna"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Ulompi reuna ja vaakaviivat"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Ulompi reuna ja kaikki sisemmät viivat"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Ulompi reuna muuttamatta sisempiä viivoja"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Aseta vain lävistäjäviivat"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Kaikki neljä reunaa"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Vain vasen ja oikea reuna"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Vain ylä- ja alareuna"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Vain vasen reuna"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Aseta ylä- ja alareunat ja kaikki sisemmät viivat"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Aseta vasen ja oikea reuna ja kaikki sisemmät viivat"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Ei varjoa"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Varjosta alaoikealle"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Varjosta yläoikealle"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Varjosta alavasemmalle"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Varjosta ylävasemmalle"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3383,66 +3378,71 @@ msgid "About %PRODUCTNAME"
msgstr "Tietoja %PRODUCTNAME-ohjelmistosta"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Tekijät"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "WWW-sivut"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Käännöksen ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Maa-asetus: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Katso loki: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME on moderni, helppokäyttöinen avoimen lähdekoodin toimisto-ohjelmisto mm. tekstinkäsittelyyn, taulukkolaskentaan ja esitelmien havainnollistamiseen."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice pohjautuu OpenOffice.orgiin."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME on johdettu LibreOfficesta, joka pohjautuu OpenOffice.orgiin."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Tämän ohjelmaversion toimitti %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3559,17 +3559,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Korvaa"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Ko_rvaa"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Millä:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Vain teksti"
@@ -4389,6 +4389,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Sanojen vähimmäispituus"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5500,27 +5660,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Ominaisuudet"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "URL-osoite:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Kehys:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Nimi:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Vaihtoehtoinen teksti:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "Kuvaus:"
@@ -9038,80 +9198,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ohje"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Käytä _%PRODUCTNAME-valintaikkunoita"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Avaus- ja tallennusikkunat"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Käytä %PRODUCTNAME-valintaikkunoita"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Tulostusvalintaikkunat"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "T_ulostaminen asettaa \"asiakirjaa muokattu\" -tilan"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Asiakirjan tila"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Tulkitse vuosiksi väliltä "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ja "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Vuosi (kaksi numeroa)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kerää tietoja ohjelmiston käytöstä ja lähetä ne The Document Foundationille"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Auta parantamaan %PRODUCTNAMEa"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Lataa %PRODUCTNAME järjestelmän käynnistyksen yhteydessä"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Käytä pikakäynnistintä"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME -pikakäynnistys"
@@ -10985,25 +11145,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Oma teema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Tai valitse lisäosana asennettu teema:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox-teemat"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11631,102 +11776,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Suojausasetukset"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Valitse Firefox-teema"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12735,27 +12784,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/fi/extensions/messages.po b/source/fi/extensions/messages.po
index a7122bd8cdf..6342a285f30 100644
--- a/source/fi/extensions/messages.po
+++ b/source/fi/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Taulun ”%1” sarakeasettelu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Lyhyt nimi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Tekijä(t)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Julkaisija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Luku"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Toimittaja"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Tyyppi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Vuosi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Otsikko"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Osoite"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Sivua"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Laitos"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Kirjan otsikko"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Osan numero"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Julkaisun laji"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organisaatio"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instituutio"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Yliopisto"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Raportin tyyppi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Kuukausi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Aikakausjulkaisu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Luku"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Julkaisusarja"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Huomautus"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Muistiinpano"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL-osoite"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Käyttäjän määrittämä _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Käyttäjän määrittämä _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Käyttäjän määrittämä _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Käyttäjän määrittämä _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Käyttäjän määrittämä _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Sarakkeiden nimet"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Uuden tietotyypin nimi:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Linkitä kentät"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Ehdota"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Alilomakkeiden avulla voidaan näyttää yksityiskohtaista tietoa päälomakkeen nykyisestä tietueesta. Tätä varten täytyy määrittää, mitkä alalomakkeen sarakkeet vastaavat mitäkin päälomakkeen sarakkeita."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "selite"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "selite"
diff --git a/source/fi/helpcontent2/source/auxiliary.po b/source/fi/helpcontent2/source/auxiliary.po
index c5b3218b0cc..1b14b0c341c 100644
--- a/source/fi/helpcontent2/source/auxiliary.po
+++ b/source/fi/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Yleistietoa"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "Työkalurivit"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Piirrokset (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Valikot"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Työkalurivit"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objektit, piirrokset ja kuvat"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Ryhmät ja kerrokset"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Teksti esityksissä ja piirroksissa"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/sbasic/guide.po b/source/fi/helpcontent2/source/text/sbasic/guide.po
index 77e2f7fb113..25efb9740d5 100644
--- a/source/fi/helpcontent2/source/text/sbasic/guide.po
+++ b/source/fi/helpcontent2/source/text/sbasic/guide.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: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Valintaikkunan avaaminen ohjelmakoodilla"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>moduuli/valintaikkuna -vuorottelu</bookmark_value><bookmark_value>valintaikkunat;ohjelmakoodin käyttäminen esittämiseen (example)</bookmark_value><bookmark_value>esimerkkejä; valintaikkunan esittäminen ohjelmakoodia käyttäen</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/sbasic/python.po b/source/fi/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/fi/helpcontent2/source/text/sbasic/python.po
+++ b/source/fi/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/fi/helpcontent2/source/text/sbasic/shared.po b/source/fi/helpcontent2/source/text/sbasic/shared.po
index d45d0f0cebc..2b9576564f8 100644
--- a/source/fi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fi/helpcontent2/source/text/sbasic/shared.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: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basicin ohjeet</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/sbasic/shared/03.po b/source/fi/helpcontent2/source/text/sbasic/shared/03.po
index 022b8e548bd..c9bec168f78 100644
--- a/source/fi/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/fi/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/fi/helpcontent2/source/text/scalc/01.po b/source/fi/helpcontent2/source/text/scalc/01.po
index c7b6f3315f0..c2a3026c216 100644
--- a/source/fi/helpcontent2/source/text/scalc/01.po
+++ b/source/fi/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,7 +40949,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/fi/helpcontent2/source/text/schart/00.po b/source/fi/helpcontent2/source/text/schart/00.po
index 4593c0855c4..6ffb755471d 100644
--- a/source/fi/helpcontent2/source/text/schart/00.po
+++ b/source/fi/helpcontent2/source/text/schart/00.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Kaaviotyyppi-valintaikkunassa käytettäessä viivakaaviota tai viivoja esittävää XY-kaaviota valitaan Tasoita viivatyyppien valintaluettelosta ja napsautetaan sitten Ominaisuudet-painiketta.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">Kaaviotyyppi-valintaikkunassa käytettäessä viivakaaviota tai viivoja esittävää XY-kaaviota valitaan Porrastettu viivatyyppien valintaluettelosta ja napsautetaan sitten Ominaisuudet-painiketta.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/fi/helpcontent2/source/text/shared/00.po b/source/fi/helpcontent2/source/text/shared/00.po
index 034c61412b5..07c9117284e 100644
--- a/source/fi/helpcontent2/source/text/shared/00.po
+++ b/source/fi/helpcontent2/source/text/shared/00.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/fi/helpcontent2/source/text/shared/01.po b/source/fi/helpcontent2/source/text/shared/01.po
index 77143ebe86e..eb809d65346 100644
--- a/source/fi/helpcontent2/source/text/shared/01.po
+++ b/source/fi/helpcontent2/source/text/shared/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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/fi/helpcontent2/source/text/shared/02.po b/source/fi/helpcontent2/source/text/shared/02.po
index 830097f0a28..550e8f874e3 100644
--- a/source/fi/helpcontent2/source/text/shared/02.po
+++ b/source/fi/helpcontent2/source/text/shared/02.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/guide.po b/source/fi/helpcontent2/source/text/shared/guide.po
index 03d49de3d48..f5cf7523f52 100644
--- a/source/fi/helpcontent2/source/text/shared/guide.po
+++ b/source/fi/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/fi/helpcontent2/source/text/shared/optionen.po b/source/fi/helpcontent2/source/text/shared/optionen.po
index 974af30802c..1382f09b8db 100644
--- a/source/fi/helpcontent2/source/text/shared/optionen.po
+++ b/source/fi/helpcontent2/source/text/shared/optionen.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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/fi/helpcontent2/source/text/simpress/01.po b/source/fi/helpcontent2/source/text/simpress/01.po
index feee112974a..7835d88cf85 100644
--- a/source/fi/helpcontent2/source/text/simpress/01.po
+++ b/source/fi/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 12:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/fi/helpcontent2/source/text/swriter/guide.po b/source/fi/helpcontent2/source/text/swriter/guide.po
index f0351d434fd..0aeb4a84b8d 100644
--- a/source/fi/helpcontent2/source/text/swriter/guide.po
+++ b/source/fi/helpcontent2/source/text/swriter/guide.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: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Napsauta <emph>Oletus</emph>-palkissa <emph> Rakenneselain</emph>-kuvaketta <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\">Rakenneselain-kuvake, jossa kompassi</alt></image> avataksesi <emph>rakenneselaimen</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
index 4572e9fd754..327e1b8267d 100644
--- a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25692,6 +25701,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25710,6 +25728,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/fi/sc/messages.po b/source/fi/sc/messages.po
index a490032b007..ebb13dae15d 100644
--- a/source/fi/sc/messages.po
+++ b/source/fi/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-26 21:33+0000\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15209,6 +15209,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ei-jaettu käyttö)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15762,12 +15767,12 @@ msgstr "Hallitse ehdollista muotoilua"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16985,81 +16990,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Tietolomake"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Sulje"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Uusi tietue"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Uusi"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Poista"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Palauta"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Edellinen tietue"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Seuraava tietue"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Sulje"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Reaaliaikaiset tietovirrat"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Kirjoita tähän paikallisessa tiedostojärjestelmässä tai Internetissä olevan lähdetiedoston URL-osoite."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Selaa..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Tietokanta-alue:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Tietolähde:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Hakulauseke:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Tietovirran lähde"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18775,32 +18740,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Tulokset:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Tiedot"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sarakkeet"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rivit"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Ryhmittelyperuste"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Väli:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametrit"
@@ -18940,167 +18910,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Ohje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Tiedosto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Lisää sisennystä"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Vähennä sisennystä"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Koti"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Koti"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "K_enttä"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Lisää"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Lisää"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Asettelu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Asettelu"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Tilastot"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Tarkista"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Tarkista"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Näytä"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Näytä"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ku_va"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ku~va"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objekti"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekti"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Tulosta"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Tulosta"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Lomake"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Lo~make"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ty_ökalut"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ty~ökalut"
@@ -21581,17 +21553,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Hakutulokset"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23461,107 +23443,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Jäsennyssymbolit"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Ikkuna"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Ruudukko:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "Väri:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Näytä"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Näytä värjätyissä soluissa"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Piilota"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Sivunvaihdot"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Apuviivat siirrettäessä"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Visuaaliset aputyökalut"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Objektit/Kuvat:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Kaaviot:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Piirrosobjektit:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Näytä"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Piilota"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Näytä"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Piilota"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Näytä"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Piilota"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objektit"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Synkronoi taulukot"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoomaa"
diff --git a/source/fi/scp2/source/ooo.po b/source/fi/scp2/source/ooo.po
index 4d893599754..7f3c5345774 100644
--- a/source/fi/scp2/source/ooo.po
+++ b/source/fi/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -35,6 +35,14 @@ msgstr "Avaa asiakirja"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/fi/scp2/source/winexplorerext.po b/source/fi/scp2/source/winexplorerext.po
index a7dc5f1b5c5..7e90fa4feeb 100644
--- a/source/fi/scp2/source/winexplorerext.po
+++ b/source/fi/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 20:04+0200\n"
-"Last-Translator: Harri <hatapitk@iki.fi>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:25+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369351556.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Mahdollistaa %PRODUCTNAME-asiakirjojen tietojen, kuten pienoiskuvien esikatselun, näyttämisen Microsoft Windows Explorerissa."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/fi/sd/messages.po b/source/fi/sd/messages.po
index 2abcbdaa5b5..2ee25e7f3d4 100644
--- a/source/fi/sd/messages.po
+++ b/source/fi/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nimeä HTML-suunnitelma"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4587,160 +4777,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Näytä muodot"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/fi/sfx2/messages.po b/source/fi/sfx2/messages.po
index 9c6d7bffb4c..cf358c8d99b 100644
--- a/source/fi/sfx2/messages.po
+++ b/source/fi/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-15 17:30+0000\n"
"Last-Translator: buovjaga <todventtu@suomi24.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Poista ominaisuus"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Annettu arvo ei ole oikeaa tyyppiä.\n"
"Arvo tallennetaan tekstinä."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Tyyli on jo olemassa. Korvataanko?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "P~alauta"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Nimi on jo käytössä."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Tätä tyyliä ei ole olemassa."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Tyyliä ei voi tallentaa perustyylinä.\n"
"Tästä seuraisi rekursiivinen viite."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Nimi on jo määritetty oletustyylille.\n"
"Valitse toinen nimi."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Jos poistat nämä tyylit, ne korvataan tyylihierarkiassa lähimpänä olevalla tyylillä.\n"
"Haluatko silti poistaa nämä tyylit?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Käytössä olevat tyylit: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Rakenneselain"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Salasanan vahvistus ei täsmää"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Lähetä"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Fontti"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Näytä versiohuomautus"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(nimeä ei ole asetettu)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Tyyliluettelo"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarkkinen"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Täyttömuotoilutila"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Uusi tyyli valinnasta"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Päivitä tyyli"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Haluatko varmasti keskeyttää nauhoituksen? Kaikki tähän asti nauhoitetut toiminnot menetetään."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Peruuta nauhoitus"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Malleja alustetaan ensimmäistä käyttökertaa varten."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Oletustulostinta ei ole.\n"
"Valitse tulostin ja yritä uudelleen."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Tulostinta ei voi käynnistää.\n"
"Tarkista tulostimen määritykset."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Tulostin käytössä"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (kirjoitussuojattu)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Haluatko tallentaa uudet asetukset\n"
"aktiiviseen asiakirjaan?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Tallennetaanko uudet asetukset\n"
"aktiiviseen asiakirjaan?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Haluatko tallentaa uudet asetukset\n"
"aktiiviseen asiakirjaan?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Asiakirjaa ei voitu sulkea, koska\n"
" tulostustyö on kesken."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,7 +1139,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1152,17 +1147,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Asiakirjaa ei voi avata muokattavaksi, käyttöoikeudet saattavat olla puutteelliset. Haluatko käyttää asiakirjaa uuden asiakirjan mallina?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1170,349 +1165,359 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (korjattu asiakirja)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Tämä asiakirja ei ole uloskuitattuna palvelimella."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Tämä asiakirja on avattu vain lukua varten."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Tämä PDF on avattu kirjoitussuojattuna allekirjoittamista varten."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Tämän asiakirjan luokittelumerkintä on %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Tämä asiakirja on luokiteltava ennen kuin leikepöydän sisältö voidaan liittää."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Tämän asiakirjan luokittelutaso on alempi kuin leikepöydän sisällön."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Kansallinen turvallisuus:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Vientirajoitukset:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Kuittaa ulos"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Muokkaa asiakirjaa"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Allekirjoita asiakirja"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Asiakirjalla on viallinen allekirjoitus."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Allekirjoitus oli kelvollinen, mutta asiakirjaa on muutettu"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Allekirjoitus on kelvollinen, mutta varmennetta ei voitu tarkistaa."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Allekirjoitus on kelvollinen, mutta asiakirja on vain osittain allekirjoitettu."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Tämä asiakirja on sähköisesti allekirjoitettu, ja allekirjoitus on kelvollinen."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Näytä allekirjoitukset"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Sulje paneeli"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Kiinnitä"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Irrota"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Lisää valintoja"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sulje sivupalkki"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Sivupalkin asetukset"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Mukautukset"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Palauta oletus"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Sulje sivupalkki"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alitsariini"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Mehiläispesä"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Sininen kaari"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Suunnitelma"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Kirkas sininen"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Hienostunut punainen"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Metsälintu"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Vaikutelma"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiraatio"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Valot"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Valkoinen ja vihreä"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropoli"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Keskiyön sininen"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Luontokuvitus"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lyijykynä"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Edistys"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Auringonlasku"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vuosikerta"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Eloisa"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Ansioluettelo"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Oletus"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderni"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderni liikekirje groteski"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderni liikekirje pääteviiva"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Käyntikortti logolla"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Poista"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tyhjennä kaikki"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1857,32 +1862,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Versiohuomautus:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nimi"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tyyppi"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Arvo"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tyyppi"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Kyllä"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ei"
@@ -1892,17 +1882,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Lisää ominaisuus"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nimi"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tyyppi"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Arvo"
@@ -2032,17 +2022,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Sijainti:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Tyyppi:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Vaihda salasana"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Malli:"
@@ -2052,27 +2042,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "”%1”:n ominaisuudet"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Yleistä "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Kuvaus"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Mukautetut ominaisuudet"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS-ominaisuudet"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Suojaus"
@@ -2286,6 +2276,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/fi/shell/messages.po b/source/fi/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/fi/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/fi/starmath/messages.po b/source/fi/starmath/messages.po
index 8753e588078..61a0765f875 100644
--- a/source/fi/starmath/messages.po
+++ b/source/fi/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Esimerkkejä"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Normaali"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursivointi"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Lihavointi"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "musta"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "sininen"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "vihreä"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "punainen"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "syaani"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "purppura"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "harmaa"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "limetti"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "punaruskea"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "laivasto"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliivi"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purppura"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "hopea"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "sinivihreä"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "keltainen"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "piilota"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "koko"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "fontti"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "vasen"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "keskellä"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "oikea"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Komennot"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Kaava"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Tallennetaan asiakirjaa..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION -kaava"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "VIRHE: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Odottamaton merkki"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Odottamaton merkki"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Tähän tarvitaan '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Tähän tarvitaan '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Tähän tarvitaan '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Tähän tarvitaan ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Vasen ja oikea symboli ristiriidassa"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Vaaditaan 'fixed', 'sans' tai 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' ja sen perässä odottamaton merkki"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Kaksinkertainen tasaus ei ole sallittu"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Kaksinkertainen ala/yläindeksi ei ole sallittu"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Tähän tarvitaan '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Tähän tarvitaan väri"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Tähän tarvitaan 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Sisältö"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Otsikko"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Kaavan teksti"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Reunat"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Koko"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Alkuperäinen koko"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Sovita sivulle"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Skaalaus"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementit"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/fi/svtools/messages.po b/source/fi/svtools/messages.po
index 478d8871c77..ca6cef74f72 100644
--- a/source/fi/svtools/messages.po
+++ b/source/fi/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195442.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Kumoa: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Tois~ta: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Toista: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Muotoilematon teksti"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Tilatiedot kohteesta Svx-sisäinen linkki"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscapen kirjanmerkki"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star-palvelimen muoto"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star-objektin muoto"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Sovelmaobjekti"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Lisäosaobjekti"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 -objekti"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 -objekti"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 -objekti"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 -objekti"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 -objekti"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 -objekti"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 -objekti"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-objekti"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 -objekti"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 -objekti"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 -objekti"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-objekti"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 -objekti"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 -objekti"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-objekti"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 -objekti"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 -objekti"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-objekti"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 -objekti"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 -objekti"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-objekti"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 -objekti"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 -objekti"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint -objekti"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word -objekti"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet-objekti"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-asiakirjaobjekti"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-asiakirjatiedot"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-asiakirja"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 -objekti"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafiikkaobjekti"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer -objekti"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web -objekti"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master -objekti"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw -objekti"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress -objekti"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc -objekti"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart -objekti"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math -objekti"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-metatiedosto"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Tietolähdeobjekti"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tietolähdetaulukko"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-kysely"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 -valintaikkuna"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Hyperlinkki"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-muoto ilman kommentteja"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objektia % ei voitu lisätä."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objektia tiedostosta % ei voitu lisätä."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Muut objektit"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Tuntematon lähde"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nimi"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Koko"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Muokkauspäivämäärä"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tyyppi"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "tavua"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "Kt"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "Mt"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "Gt"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Rivi: %1, Sarake: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tyyppi: %1, URL-osoite: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Kansio"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Tiedosto"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Tyhjä kenttä"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Aakkosnumeerinen"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Tavallinen"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Merkistö"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Sanasto"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Viiva"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Juurimerkki"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Puhelinluettelo"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foneettinen (aakkosnumeeriset ensin)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foneettinen (aakkosnumeeriset viimeiseksi)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Aakkosnumeerinen"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Sanasto"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Juurimerkki"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Viiva"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foneettinen (aakkosnumeeriset ensin, tavuittain ryhmiteltynä)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foneettinen (aakkosnumeeriset ensin, konsonanteittain ryhmiteltynä)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foneettinen (aakkosnumeeriset viimeiseksi, tavuittain ryhmiteltynä)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foneettinen (aakkosnumeeriset viimeiseksi, konsonanteittain ryhmiteltynä)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Tänään"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Ei mitään"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Kevyt"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Kevyesti kursivoitu"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Tavallinen"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursivointi"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Lihavointi"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Lihavoitu ja kursivoitu"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Musta"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Musta kursivoitu"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Kirja"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Lihavoitu kallistettu"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Tiivistetty"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Tiivistetty lihavoitu"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Tiivistetty lihavoitu kursivoitu"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Tiivistetty lihavoitu kallistettu"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Tiivistetty kursivoitu"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Tiivistetty kallistettu"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ekstraohut"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstraohut kursivoitu"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Kallistettu"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Puolilihava"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Puolilihava kursivoitu"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Samaa fonttia käytetään sekä tulostimessa että näytöllä."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Tämä on tulostinfontti. Se saattaa näyttää erilaiselta näytöllä."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Tämä fonttityyli simuloidaan tai käytetään lähintä vastaavaa tyyliä."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Tätä fonttia ei ole asennettu. Käytetään lähintä asennettua fonttia."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Selaa..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Siirry kotikansioon"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Siirrä vasemmalle"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Siirrä oikealle"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Siirry loppuun"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Lisää"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vaakaviivain"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Pystyviivain"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bittinen kynnysarvo"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bittinen rasteroitu"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bittiset harmaasävyt"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bittiset värit"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bittiset harmaasävyt"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bittiset värit"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bittiset täysvärit"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Kuva tarvitsee noin %1 Kt muistia."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Kuva tarvitsee noin %1 Kt muistia, tiedostokoko on %2 Kt."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Tiedostokoko on %1 Kt."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "palvelin"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "portti"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Muu CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Valmis"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Keskeytetty"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Odotetaan poistamista"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Varattu"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Alustetaan"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Odotetaan"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Lämpenee"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Käsitellään"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Tulostetaan"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline-tila"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Virhe"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Tuntematon palvelin"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paperitukos"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ei tarpeeksi paperia"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuaalinen syöttö"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Paperiongelma"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktiivinen"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Tulostuslokero täynnä"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Väriaine vähissä"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Väri lopussa"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Poista sivu"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Käyttäjän toimia tarvitaan"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ei riittävästi muistia"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Avoin kansi"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Virransäästötila"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Oletustulostin"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d asiakirjaa"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Valmis"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Seuraava >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Edellinen"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Vaiheet"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ei mitään>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Yritys"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Osasto"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Etunimi"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Sukunimi"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Katuosoite"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Maa"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postinumero"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Postitoimipaikka"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Otsikko"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Sijainti"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Os. muoto"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Nimikirjaimet"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tervehdys"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Puhelin (koti)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Puhelin (työ)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL-osoite"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Huomautus"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Käyttäjä 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Käyttäjä 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Käyttäjä 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Käyttäjä 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Tunnus"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Osavaltio"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Puhelin (toimisto)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Hakulaite"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Matkapuhelin"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Puhelin (muu)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalenteri"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Kutsu"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$:n $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME vaatii Java-ajoympäristön (JRE) tämän toiminnon suorittamiseen. Ole hyvä ja asenna JRE ja käynnistä %PRODUCTNAME uudelleen."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAMEn kokoonpano on muuttunut. Valitse se Java-ajoympäristö, jota haluat %PRODUCTNAMEn käyttävän asetuksista valikosta %PRODUCTNAME - Asetukset - %PRODUCTNAME - Lisäasetukset."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAMEn kokoonpano on muuttunut. Valitse se Java-ajoympäristö, jota haluat %PRODUCTNAMEn käyttävän asetuksista valikosta Työkalut - Asetukset - %PRODUCTNAME - Lisäasetukset."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vaatii Java-ajoympäristön (JRE) tämän toiminnon suorittamiseen. Valittu JRE on viallinen. Valitse toinen versio tai asenna uusi JRE ja ota se käyttöön asetuksista valikosta %PRODUCTNAME - Asetukset - %PRODUCTNAME - Lisäasetukset."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vaatii Java-ajoympäristön (JRE) tämän toiminnon suorittamiseen. Valittu JRE on viallinen. Valitse toinen versio tai asenna uusi JRE ja ota se käyttöön asetuksista valikosta Työkalut - Asetukset - %PRODUCTNAME - Lisäasetukset."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE vaaditaan"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Valitse JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE on viallinen"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Lähdekoodi"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Kirjanmerkkitiedosto"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Kuvat"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Kokoonpanotiedosto"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Sovellus"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tietokantataulukko"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Järjestelmätiedosto"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word -asiakirja"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ohjetiedosto"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-asiakirja"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arkistotiedosto"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Lokitiedosto"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice-tietokanta"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 -perusasiakirja"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice-kuva"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstitiedosto"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Hyperlinkki"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 -malli"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel -asiakirja"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel -malli"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Eräajotiedosto"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Tiedosto"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Kansio"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstiasiakirja"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Laskentataulukko"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Esitys"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Piirros"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-asiakirja"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Perusasiakirja"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Kaava"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Tietokanta"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 -laskentataulukkomalli"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 -piirrosmalli"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 -esitysmalli"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 -tekstimalli"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Paikallinen asema"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Levyasema"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-asema"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Verkkoyhteys"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint -asiakirja"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint -malli"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint -esitys"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 -kaava"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 -kaavio"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 -piirros"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 -laskentataulukko"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 -esitys"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 -tekstiasiakirja"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 -perusasiakirja"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-asiakirja"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument -tietokanta"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument -piirros"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument -kaava"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument -perusasiakirja"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument -esitys"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument -laskentataulukko"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument -teksti"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument -laskentataulukon malli"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument -piirrosmalli"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument -esitysmalli"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument -tekstimalli"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-lisäosa"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell-oikoluku"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen-tavutus"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/fi/svx/messages.po b/source/fi/svx/messages.po
index 72ea0fa527f..9c150c3d984 100644
--- a/source/fi/svx/messages.po
+++ b/source/fi/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7918,6 +7918,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12185,82 +12190,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Aseta liukuvan läpinäkyvyyden keskipisteen sijainti pystysuunnassa. 50% tarkoittaa pystysuuntaista keskipistettä."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Ääriviivaeditori"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Käytä"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Työtila"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Valitse"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Suorakulmio"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Soikio"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Monikulmio"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Muokkaa pisteitä"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Siirrä pisteitä"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Lisää pisteitä"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Poista pisteet"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Automaattinen ääriviiva"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Kumoa "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Toista"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipetti"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Väritoleranssi"
@@ -12571,112 +12581,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Alatunniste"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Kuvakartan muokkain"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Käytä"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Avaa..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Tallenna..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Sulje"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Valitse"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Suorakulmio"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Soikio"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Monikulmio"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Vapaamuotoinen monikulmio"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Muokkaa pisteitä"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Siirrä pisteitä"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Lisää pisteitä"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Poista pisteet"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Kumoa "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Toista"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktiivinen"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makrot..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Ominaisuudet..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Osoite:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Kehys:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Teksti:"
diff --git a/source/fi/sw/messages.po b/source/fi/sw/messages.po
index 67f578d585e..b853ba5dfb9 100644
--- a/source/fi/sw/messages.po
+++ b/source/fi/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-02-26 20:05+0000\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Muuta objektin $1 otsikkoa"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Muuta objektin $1 kuvausta"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12007,147 +12007,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ty_ökalut"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12157,152 +12157,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Ty_ökalut"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13370,8 +13370,8 @@ msgstr "Pidennä sanaväliä manuaaliseen rivinvaihtoon päättyvillä riveillä
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Suojaa lomake"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16650,47 +16650,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Sisällysluettelo, hakemisto tai lähdeluettelo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Esikatselu"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Esikatselu"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tyyppi"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Merkinnät"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Tyylit"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Palstat"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Tausta"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Esikatselu"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Taso"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "Tyyppi"
@@ -16920,302 +16920,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Muokkaa..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Otsikko:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tyyppi:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Sisällysluettelo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Aakkosellinen hakemisto"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Taulukkoluettelo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Käyttäjän määrittämä"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektiluettelo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Lähdeluettelo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Suojattu manuaalisilta muutoksilta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tyyppi ja otsikko"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Kohteelle:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Koko asiakirja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Luku"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Syvin mukaan otettava taso:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Luo hakemisto tai sisällysluettelo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "jäsennys"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Hakemistomerkit"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Taulukot"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Tekstikehykset"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Kuvat"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objektit"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Käytä lähdeluvun tasoa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Lisätyylit"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Tyylit"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Määritä tyylit..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Kuvaotsikot"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektien nimet"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Luokka:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Näytä:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Lähdeviitteet"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Luokka ja numero"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Kuvateksti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Luo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Luo seuraavista objekteista"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Sulkeet:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Numeromerkinnät"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Ei mitään]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Merkintöjen muotoilu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Yhdistä identtiset merkinnät"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Yhdistä merkinnät kirjaimilla p tai pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Yhdistä merkinnällä -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Kirjainkoon erottelu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Isot kirjaimet merkintöihin automaattisesti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Avainmerkit erillisinä merkintöinä"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Vastaavuustiedosto"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Tiedosto"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Asetukset"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Kieli:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Avainlaji:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Lajittele"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Tasot"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Kappaletyylit"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Oletus"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Muokkaa"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Määritys"
diff --git a/source/fr/cui/messages.po b/source/fr/cui/messages.po
index 891f3bc8853..86b97ace7ca 100644
--- a/source/fr/cui/messages.po
+++ b/source/fr/cui/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-04-28 19:59+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-22 19:52+0000\n"
+"Last-Translator: fifh <contact@hemmel.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556481551.000000\n"
+"X-POOTLE-MTIME: 1558554730.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Veuillez saisir une adresse de thème valide ou un terme à rechercher."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "L'API pour les thèmes Mozilla est actuellement indisponible."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Définir sans bordure"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Définir la bordure extérieure uniquement"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Définir la bordure extérieure et les lignes horizontales"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Définir la bordure extérieure et toutes les lignes intérieures"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Définir la bordure extérieure sans modification des lignes intérieures"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Définir les lignes diagonales uniquement"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Définir les quatre bordures"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Définir les bordures gauche et droite uniquement"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Définir les bordures supérieure et inférieure uniquement"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Définir la bordure gauche uniquement"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Définir les bordures supérieure et inférieure et toutes les lignes intérieures"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Définir les bordures gauche et droite et toutes les lignes intérieures"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Aucune ombre"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Projeter l'ombre en bas à droite"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Projeter l'ombre en haut à droite"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Projeter l'ombre en bas à gauche"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Projeter l'ombre en haut à gauche"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Signé par %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Tous les fichiers"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Bases de données enregistrées"
@@ -1746,7 +1741,7 @@ msgstr "Bases de données enregistrées"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME peut ouvrir et enregistrer des fichiers stockés sur des serveurs distants via CMIS"
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "À propos de %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Cré_dits"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Site Web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Locale : $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Langue IHM : $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Voir le journal : $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME est une suite bureautique open source, moderne et facile à utiliser, pour le traitement de texte, les classeurs, les présentations et plus encore."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice est basé sur OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME est dérivé de LibreOffice qui est basé sur OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Cette version est fournie par %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Rem_placer"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Rem_placer"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Par :"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Texte se_ulement"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Longueur de mot minimale"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Propriétés"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Cadre :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nom :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Texte alternatif :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Description :"
@@ -9019,80 +9179,80 @@ msgstr "Afficher l'alerte \"L'aide locale n'est pas installée\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Aide"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utiliser les boîtes de dialogue %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Boîtes de dialogue ouvrir/enregistrer"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utiliser les boîtes de _dialogue %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Boîtes de dialogue Imprimer"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Impression : spécification du statut \"Document modifié\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Statut du document"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpréter _comme années entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "et "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Années (deux chiffres)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Collecter des données d'utilisation et les envoyer à The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Aider à améliorer %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Charger %PRODUCTNAME lors du démarrage du système"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activer le démarrage rapide de la zone de notification"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Démarrage rapide de %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Thème préinstallé"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Thème personnel"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Ou, sélectionner parmi les thèmes installés via des extensions :"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Thèmes Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Options de sécurité"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Sélectionner un thème Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Terme de recherche ou adresse"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ca_tégorie :"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstrait"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Causes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Mode"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film et TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Congés et fêtes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musique"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Nature"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Autre"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Paysages"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Saisonnier"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Plein"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sports"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Sites Web"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "En vedette"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/fr/extensions/messages.po b/source/fr/extensions/messages.po
index ce927ea1792..848ccf03f43 100644
--- a/source/fr/extensions/messages.po
+++ b/source/fr/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-12 17:08+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\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: 1557680922.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Disposition des colonnes pour la table \"%1\""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Abrégé"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Auteur(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Éditeur"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Chapitre"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Éditeur"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Année"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tit_re"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dresse"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pa_ge(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "É_dition"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Titre du li_vre"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Type de pu_blication"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Or_ganisation"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "_Institution"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "É_cole supérieure/Université"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Type de rapp_ort"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mois"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Maga_zine"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Nom_bre"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Sér_ie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "_Annotation"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Remar_que"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Champ défini par l'utilisateur _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Champ défini par l'utilisateur _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Champ défini par l'utilisateur _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Champ défini par l'utilisateur _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Champ défini par l'utilisateur _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Noms de colonnes"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Saisissez le nom du nouveau type de données :"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Lier les champs"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suggérer"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Les sous-formulaires peuvent être utilisés pour afficher des données détaillées à propos de l'enregistrement actif du formulaire maître. Pour ce faire, vous pouvez spécifier quelles colonnes dans le sous-formulaire correspondent aux colonnes dans le formulaire maître. "
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "étiquette"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "étiquette"
diff --git a/source/fr/formula/messages.po b/source/fr/formula/messages.po
index 606a1e06bc3..a60f2346e95 100644
--- a/source/fr/formula/messages.po
+++ b/source/fr/formula/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-04-11 19:17+0000\n"
+"PO-Revision-Date: 2019-05-28 07:22+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555010221.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559028155.000000\n"
#: formula/inc/core_resource.hrc:2268
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -1217,7 +1217,7 @@ msgstr "GAUCHEB"
#: formula/inc/core_resource.hrc:2507
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "REPLACEB"
-msgstr "REPLACEB"
+msgstr "REMPLACERB"
#: formula/inc/core_resource.hrc:2508
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -2066,12 +2066,12 @@ msgstr "ARRONDI_PRECISION"
#: formula/inc/core_resource.hrc:2685
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FINDB"
-msgstr "FINDB"
+msgstr "TROUVEB"
#: formula/inc/core_resource.hrc:2686
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "SEARCHB"
-msgstr "SEARCHB"
+msgstr "CHERCHEB"
#: formula/inc/core_resource.hrc:2687
msgctxt "RID_STRLIST_FUNCTION_NAMES"
diff --git a/source/fr/helpcontent2/source/auxiliary.po b/source/fr/helpcontent2/source/auxiliary.po
index 1048d9220b2..e2bf2ae978e 100644
--- a/source/fr/helpcontent2/source/auxiliary.po
+++ b/source/fr/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-01-29 17:03+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-13 15:55+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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: 1548781438.000000\n"
+"X-POOTLE-MTIME: 1557762916.000000\n"
#: sbasic.tree
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"0702\n"
"node.text"
msgid "Python Scripts Help"
-msgstr ""
+msgstr "Aide des scripts Python"
#: sbasic.tree
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"070202\n"
"node.text"
msgid "Programming with Python"
-msgstr ""
+msgstr "Programmation avec Python"
#: scalc.tree
msgctxt ""
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Informations générales"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Présentations et dessins (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Barres d'outils"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Dessins (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menus"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Barres d'outils"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objets, images et bitmaps"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Groupes et couches"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Texte dans les présentations et les dessins"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -662,7 +742,7 @@ msgctxt ""
"030101\n"
"node.text"
msgid "%PRODUCTNAME Formula Elements"
-msgstr ""
+msgstr "Éléments de formule %PRODUCTNAME"
#: smath.tree
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/sbasic/guide.po b/source/fr/helpcontent2/source/text/sbasic/guide.po
index b2f47d95b18..8f0b1ca5d2c 100644
--- a/source/fr/helpcontent2/source/text/sbasic/guide.po
+++ b/source/fr/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-05-14 14:41+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
@@ -169,6 +169,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Comparez Access2Base avec Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -518,16 +542,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Ouverture d'une boîte de dialogue en utilisant du code"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>Basculement module/boîte de dialogue</bookmark_value><bookmark_value>Boîtes de dialogue;affichage d'une boîte de dialogue en utilisant du code (exemple)</bookmark_value><bookmark_value>Exemples;affichage d'une boîte de dialogue utilisant du code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/sbasic/python.po b/source/fr/helpcontent2/source/text/sbasic/python.po
index fb2281fb0b2..cc74a08766b 100644
--- a/source/fr/helpcontent2/source/text/sbasic/python.po
+++ b/source/fr/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-29 17:12+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,7 +77,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,7 +1469,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1493,7 +1493,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1515,6 +1515,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/fr/helpcontent2/source/text/sbasic/shared.po b/source/fr/helpcontent2/source/text/sbasic/shared.po
index d5c8a152caf..76a3d427b2d 100644
--- a/source/fr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fr/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-18 16:13+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
@@ -36198,8 +36198,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">Aide %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/sbasic/shared/03.po b/source/fr/helpcontent2/source/text/sbasic/shared/03.po
index 1085ceb2b58..1507d9c02ac 100644
--- a/source/fr/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/fr/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-08-17 15:33+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr "Fonctions et sous routines pour le contrôle des modules."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/fr/helpcontent2/source/text/scalc/00.po b/source/fr/helpcontent2/source/text/scalc/00.po
index f637e8ef250..1779a116379 100644
--- a/source/fr/helpcontent2/source/text/scalc/00.po
+++ b/source/fr/helpcontent2/source/text/scalc/00.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-01-07 20:40+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"PO-Revision-Date: 2019-05-15 14:56+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1546893653.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557932195.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3153250\n"
"help.text"
msgid "<variable id=\"einamen\">Choose <emph>Insert - Named Range or Expression</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"einamen\">Choisissez <emph>Insertion - Plage ou expression nommée</emph>.</variable>"
#: 00000404.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"par_id3154618\n"
"help.text"
msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"bedingte\">Choisissez <emph>Format - Conditionnel</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"par_id3154256\n"
"help.text"
msgid "<variable id=\"protect_spreadsheet\">Choose <emph>Tools - Protect Spreadsheet Structure</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"protect_spreadsheet\">Choisissez <emph>Outils - Protéger la structure du classeur</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"par_id3146919a\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formula</emph>."
-msgstr ""
+msgstr "Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph>%PRODUCTNAME Calc - Formule</emph>."
#: 00000406.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"dnftr\">Choose <emph>Data - More Filters</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"dnftr\">Choisissez <emph>Données - Plus de filtres</emph>.</variable>"
#: 00000412.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Available since release"
-msgstr ""
+msgstr "Disponible depuis la version"
#: avail_release.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"par_id631551701603518\n"
"help.text"
msgid "<variable id=\"release\">This function is available since %PRODUCTNAME </variable>"
-msgstr ""
+msgstr "<variable id=\"release\">Cette fonction est disponible depuis %PRODUCTNAME </variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id160220162107055028\n"
"help.text"
msgid "<variable id=\"insert_columns_left\">Choose <emph>Sheet - Insert Columns - Columns Before</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"insert_columns_left\">Choisissez <emph>Feuille - Insérer des colonnes - Colonnes avant</emph>.</variable>"
#: sheet_menu.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"par_id160220162109126013\n"
"help.text"
msgid "<variable id=\"insert_columns_right\">Choose <emph>Sheet - Insert Columns - Columns After</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"insert_columns_right\">Choisissez <emph>Feuille - Insérer des colonnes - Colonnes après</emph>.</variable>"
#: sheet_menu.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/scalc/01.po b/source/fr/helpcontent2/source/text/scalc/01.po
index 957827dacf9..4e7d5fef727 100644
--- a/source/fr/helpcontent2/source/text/scalc/01.po
+++ b/source/fr/helpcontent2/source/text/scalc/01.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2018-11-26 17:09+0000\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
+"PO-Revision-Date: 2019-05-17 15:03+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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: 1543252153.000000\n"
+"X-POOTLE-MTIME: 1558105438.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -3118,7 +3118,7 @@ msgctxt ""
"hd_id160220162139258865\n"
"help.text"
msgid "Columns Before"
-msgstr ""
+msgstr "Colonnes avant"
#: 04040000.xhp
msgctxt ""
@@ -3126,7 +3126,7 @@ msgctxt ""
"par_id3150791\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertColumnsBefore\">Inserts a new column before the active cell.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertColumnsBefore\">Insère une nouvelle colonne devant la cellule active.</ahelp>"
#: 04040000.xhp
msgctxt ""
@@ -3134,7 +3134,7 @@ msgctxt ""
"hd_id160220162139252941\n"
"help.text"
msgid "Columns After"
-msgstr ""
+msgstr "Colonnes après"
#: 04040000.xhp
msgctxt ""
@@ -3142,7 +3142,7 @@ msgctxt ""
"par_id160220162138041164\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertColumnsAfter\">Inserts a new column after the active cell.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertColumnsAfter\">Insère une nouvelle colonne après la cellule active.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_id8007446\n"
"help.text"
msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"https://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2-part2.odt\"><emph>OASIS</emph></link> web site."
-msgstr ""
+msgstr "Vous pouvez télécharger la spécification ODFF (OpenDocument Format Formula) complète à partir du site web <link href=\"https://docs.oasis-open.org/office/v1.2/OpenDocument-v1.2-part2.odt\"><emph>OASIS</emph></link>."
#: 04060000.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_id3149378\n"
"help.text"
msgid "You can browse the full <link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\"><emph>List of Categories and Functions</emph></link>."
-msgstr ""
+msgstr "Vous pouvez parcourir l'intégralité de la <link href=\"text/scalc/01/04060100.xhp\" name=\"Liste des catégories et fonctions\"><emph>Liste des catégories et fonctions</emph></link>"
#: 04060000.xhp
msgctxt ""
@@ -3518,7 +3518,7 @@ msgctxt ""
"par_id3149566\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/array\">Specifies that the selected function is inserted into the selected cell range as an array formula.</ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/array\">Indique que la fonction sélectionnée est insérée dans la plage de cellules en tant que formule de matrice.</ahelp> Les formules de matrice agissent sur plusieurs cellules. Chaque cellule de la matrice contient la formule, non comme une copie mais comme une formule partagée par toutes les cellules de la matrice."
#: 04060000.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3155959\n"
"help.text"
msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+Shift+Enter</emph> command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces: <emph>{ }</emph>."
-msgstr ""
+msgstr "L'option <emph>Matrice</emph> est identique à la commande <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Commande</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+Shift+Enter</emph> qui est utilisée pour saisir et confirmer une formule dans la feuille de calcul. La formule est insérée en tant que formule matricielle matérialisée par des accolades <emph>{}</emph>."
#: 04060000.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\"><emph>date entries</emph></link>, make sure you use the correct format. Click <emph>OK</emph> to insert the result into the spreadsheet."
-msgstr ""
+msgstr "Lorsque vous double-cliquez sur une fonction, les champs d'arguments s'affichent dans la partie droite de la boîte de dialogue. Pour sélectionner une référence de cellule comme argument, cliquez directement dans la cellule ou faites glisser le curseur sur la plage souhaitée dans la feuille en maintenant la touche gauche de la souris enfoncé. Vous pouvez également saisir des valeurs numériques ou autres ou bien des références directement dans les champs correspondants de la boîte de dialogue. Lorsque vous utilisez des <link href=\"text/scalc/01/04060102.xhp\" name=\"entrées de date\"><emph>entrées de date</emph></link>, assurez-vous que vous utilisez le format approprié. Cliquez sur <emph>OK</emph> pour insérer le résultat dans la feuille."
#: 04060000.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_id3155809\n"
"help.text"
msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\"><emph>error code</emph></link> is displayed."
-msgstr ""
+msgstr "Le calcul a lieu dès la saisie des arguments dans la fonction et cet aperçu indique si le calcul peut être exécuté avec les arguments saisis. Si ces derniers entraînent une erreur, ce champ affiche alors le <link href=\"text/scalc/05/02140000.xhp\" name=\"code d'erreur\"><emph>code d'erreur</emph></link>."
#: 04060000.xhp
msgctxt ""
@@ -3678,7 +3678,7 @@ msgctxt ""
"par_id3149316\n"
"help.text"
msgid "<ahelp hid=\"formula/ui/formuladialog/next\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next</emph> button, the selection appears in the formula window."
-msgstr ""
+msgstr "<ahelp hid=\"formula/ui/formuladialog/next\">Avance parmi les éléments constituant la formule dans la fenêtre Formule.</ahelp> Ce bouton peut également être utilisé pour assigner des fonctions à la formule. Si vous sélectionnez une fonction et cliquez sur le bouton <emph>Suivant</emph>, la sélection s'affiche dans la fenêtre de formule."
#: 04060000.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"par_id651547654187646\n"
"help.text"
msgid "Time zone information is not used in Date and Time functions and cells."
-msgstr ""
+msgstr "L'information de fuseau horaire n'est pas utilisée dans les fonctions de Date et heure et dans les cellules."
#: 04060102.xhp
msgctxt ""
@@ -6358,7 +6358,7 @@ msgctxt ""
"bm_id3159147\n"
"help.text"
msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Taux d'intérêt nets annuels</bookmark_value><bookmark_value>Calcul;taux d'intérêt nets annuels</bookmark_value><bookmark_value>Nets, taux d'intérêt annuels</bookmark_value><bookmark_value>TAUX.EFFECTIF, fonction</bookmark_value>"
#: 04060103.xhp
msgctxt ""
@@ -6366,7 +6366,7 @@ msgctxt ""
"hd_id3159147\n"
"help.text"
msgid "EFFECT"
-msgstr ""
+msgstr "TAUX.EFFECTIF"
#: 04060103.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3148805\n"
"help.text"
msgid "EFFECT(Nom; P)"
-msgstr ""
+msgstr "TAUX.EFFECTIF(nom;P)"
#: 04060103.xhp
msgctxt ""
@@ -6422,7 +6422,7 @@ msgctxt ""
"par_id3150772\n"
"help.text"
msgid "<item type=\"input\">=EFFECT(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
-msgstr ""
+msgstr "<item type=\"input\">=TAUX.EFFECTIF(9,75%;4)</item> = 10,11%. Le taux effectif annuel est donc de 10,11%."
#: 04060103.xhp
msgctxt ""
@@ -9894,7 +9894,7 @@ msgctxt ""
"par_id3154297\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_ARCTAN2\">Renvoie l'angle (en radians) entre l'axe x et une ligne de l'origine au point (NombreX|NombreY).</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -9910,7 +9910,7 @@ msgctxt ""
"par_id3001800\n"
"help.text"
msgid "<emph>NumberX</emph> is the value of the x coordinate."
-msgstr ""
+msgstr "<emph>nombreX</emph> est la valeur de la coordonnée x."
#: 04060106.xhp
msgctxt ""
@@ -9926,7 +9926,7 @@ msgctxt ""
"par_id5036168\n"
"help.text"
msgid "Programming languages have usually the opposite order of arguments for their atan2() function."
-msgstr ""
+msgstr "Les langages de programmation ont habituellement l'ordre opposé des arguments pour leur fonction atan2()."
#: 04060106.xhp
msgctxt ""
@@ -9934,7 +9934,7 @@ msgctxt ""
"par_id5036165\n"
"help.text"
msgid "ATAN2 returns the angle (in radians) between the x-axis and a line from the origin to the point (NumberX|NumberY)"
-msgstr ""
+msgstr "ATAN2 renvoie l'angle (en radians) entre l'axe x et une ligne de l'origine au point (NombreX|NombreY)."
#: 04060106.xhp
msgctxt ""
@@ -9942,7 +9942,7 @@ msgctxt ""
"par_id3154692\n"
"help.text"
msgid "<item type=\"input\">=ATAN2(-5;9)</item> returns 2.07789 radians."
-msgstr ""
+msgstr "<item type=\"input\">=ATAN2(-5;9)</item> renvoie 2,07789 radians."
#: 04060106.xhp
msgctxt ""
@@ -9950,7 +9950,7 @@ msgctxt ""
"par_id5036166\n"
"help.text"
msgid "To get the angle in degrees apply the DEGREES function to the result."
-msgstr ""
+msgstr "Pour obtenir l'angle en degrés appliquez la fonction DEGRES au résultat."
#: 04060106.xhp
msgctxt ""
@@ -9958,7 +9958,7 @@ msgctxt ""
"par_id1477095\n"
"help.text"
msgid "<input>=DEGREES(ATAN2(12.3;12.3))</input> returns 45. The tangent of 45 degrees is 1."
-msgstr ""
+msgstr "<input>=DEGRES(ATAN2(12,3;12,3))</input> renvoie 45. La tangente de 45 degrés est 1."
#: 04060106.xhp
msgctxt ""
@@ -9966,7 +9966,7 @@ msgctxt ""
"par_id5036167\n"
"help.text"
msgid "%PRODUCTNAME results 0 for ATAN2(0;0)."
-msgstr ""
+msgstr "%PRODUCTNAME renvoie 0 pour ATAN2(0;0)."
#: 04060106.xhp
msgctxt ""
@@ -9974,7 +9974,7 @@ msgctxt ""
"par_id5036169\n"
"help.text"
msgid "The function can be used in converting cartesian coordinates to polar coordinates."
-msgstr ""
+msgstr "La fonction peut être utilisée pour convertir des coordonnées cartésiennes en coordonnées polaires."
#: 04060106.xhp
msgctxt ""
@@ -9982,7 +9982,7 @@ msgctxt ""
"par_id5036170\n"
"help.text"
msgid "=DEGREES(ATAN2(-8;5)) returns φ = 147.9 degrees"
-msgstr ""
+msgstr "=DEGRES(ATAN2(-8;5)) renvoie φ = 147,9 degrés"
#: 04060106.xhp
msgctxt ""
@@ -9990,7 +9990,7 @@ msgctxt ""
"par_id5036171\n"
"help.text"
msgid "<image id=\"img_id3150758\" src=\"media/helpimg/scalc/coordinates-to-polar-01.svg\" width=\"2.5inch\" height=\"1.5inch\"><alt id=\"alt_id3150758\">Cartesian coordinates to polar coordinates example</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150758\" src=\"media/helpimg/scalc/coordinates-to-polar-01.svg\" width=\"2.5inch\" height=\"1.5inch\"><alt id=\"alt_id3150758\">Exemple de coordonnées cartésiennes en coordonnées polaires</alt></image>"
#: 04060106.xhp
msgctxt ""
@@ -17966,7 +17966,7 @@ msgctxt ""
"par_id3153884\n"
"help.text"
msgid "<emph>Array</emph> is the reference, which is to comprise at least as many columns as the number passed in Index argument."
-msgstr ""
+msgstr "<emph>Matrice</emph> est la référence, qui doit contenir au moins autant de colonnes que le nombre passé dans l'argument Index."
#: 04060109.xhp
msgctxt ""
@@ -27246,7 +27246,7 @@ msgctxt ""
"par_id3150525\n"
"help.text"
msgid "Calculation of the net present value for the above-mentioned five payments for a national internal rate of return of 6%."
-msgstr ""
+msgstr "Calcul de la valeur du capital pour les 5 paiements mentionnés ci-dessus et un taux de rentabilité interne national de 6%."
#: 04060118.xhp
msgctxt ""
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Localisez le fichier contenant les données à insérer.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Saisissez l'URL ou le nom de fichier qui contient les données que vous voulez insérer et appuyez sur Entrée.</ahelp>Uniquement à ce moment l'URL sera requise à partir du réseau ou du système de fichier."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Sélectionnez la table ou la plage de données que vous souhaitez insérer.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41334,7 +41334,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Rows - Hide </emph>or<emph> Format - Columns - Hide</emph>."
-msgstr ""
+msgstr "Sélectionnez les lignes ou les colonnes que vous souhaitez masquer ; puis choisissez le menu <emph>Format - Ligne - Masquer</emph> ou <emph>Format - Colonne - Ligne - Masquer</emph>."
#: 05030300.xhp
msgctxt ""
@@ -41374,7 +41374,7 @@ msgctxt ""
"par_id5532090\n"
"help.text"
msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Rows/Columns - Show\">Format - Rows/Columns - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
-msgstr ""
+msgstr "Choisissez <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Ligne/Colonne - Afficher lignes/Afficher la colonne\">Format - Ligne/Colonne - Afficher lignes/Afficher la colonne</link> ou <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Feuille - Afficher feuille\">Format - Feuille - Afficher feuille</link>."
#: 05030400.xhp
msgctxt ""
@@ -41414,7 +41414,7 @@ msgctxt ""
"par_id3155131\n"
"help.text"
msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Rows - Show</emph> or <emph>Format - Columns - Show</emph>."
-msgstr ""
+msgstr "Pour afficher des lignes ou des colonnes, sélectionnez la plage contenant les éléments masqués, puis activez la commande <emph>Format - Ligne - Afficher</emph> ou <emph>Format - Colonne - Afficher</emph>."
#: 05030400.xhp
msgctxt ""
@@ -41422,7 +41422,7 @@ msgctxt ""
"par_id3155132\n"
"help.text"
msgid "For example, to show the column B, click on the header of the column A, expand the selection to the column C, then chose <emph>Format - Columns - Show</emph>. To show the column A previously hidden, click on the header of the column B, keep the mouse button pressed and drag on the left. The selected range displayed in the name area changes from B1:B1048576 to A1:B1048576. Choose <emph>Format - Columns - Show</emph>. Proceed the same way with rows."
-msgstr ""
+msgstr "Par exemple, pour afficher la colonne B, cliquez sur l'en-tête de la colonne A, étendez la sélection à la colonne C, puis choisissez <emph>Format - Colonne - Afficher</emph>. Pour afficher la colonne A précédemment masquée, cliquez sur l'en-tête de la colonne B, gardez le bouton de la souris enfoncé et glissez vers la gauche. La plage sélectionnée affichée dans la zone de nom se modifie de B1:B1048576 à A1:B1048576. Choisissez <emph>Format - Colonne - Afficher</emph>. Procédez de la même façon pour les lignes. "
#: 05030400.xhp
msgctxt ""
@@ -41534,7 +41534,7 @@ msgctxt ""
"par_id3146120\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 2 mm."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/optimalcolwidthdialog/default\">Définit la largeur nécessaire pour visualiser tout le contenu de la colonne.</ahelp> L'espacement à ajouter pour obtenir une largeur de colonne optimale est prédéfinie sur 2mm."
#: 05050000.xhp
msgctxt ""
@@ -43134,7 +43134,7 @@ msgctxt ""
"par_id31494133\n"
"help.text"
msgid "If you select <emph>All cells</emph>, see Color Scale, Data Bar or Icon Set explanations below, depending on which visual representation the conditional formatting should be represented."
-msgstr ""
+msgstr "Si vous sélectionnez <emph>Toutes les cellules</emph>, voir les explications d'Échelle de couleurs, Barre de données et jeu d'icônes ci-dessous, en fonction de la présentation visuelle avec laquelle le formatage conditionnel doit être présenté. "
#: 05120000.xhp
msgctxt ""
@@ -43182,7 +43182,7 @@ msgctxt ""
"par_id31494139\n"
"help.text"
msgid "If you select <emph>Formula is</emph> as a reference, enter a cell reference. If the cell reference is a value other than zero, the condition matches."
-msgstr ""
+msgstr "Si vous sélectionnez <emph>Formule est</emph> comme référence, saisissez une cellule de référence. Si la cellule de référence est une valeur autre que zéro, la condition correspond. "
#: 05120000.xhp
msgctxt ""
@@ -43390,7 +43390,7 @@ msgctxt ""
"par_id31546818\n"
"help.text"
msgid "Choose <emph>Format - Conditional Formatting - Manage</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Format - Formatage conditionnel - Gérer</emph>."
#: 05120000.xhp
msgctxt ""
@@ -44230,7 +44230,7 @@ msgctxt ""
"par_id3153362\n"
"help.text"
msgid "The <emph>Protect Sheet</emph> or <emph>Protect Spreadsheet Structure</emph> commands prevent changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
-msgstr ""
+msgstr "Les commandes <emph>Protéger la feuille</emph> ou <emph>Protéger la structure du classeur</emph> empêchent toute modification des cellules d'une feuille ou des feuilles d'un document. Vous pouvez également définir un mot de passe (facultatif). Si un mot de passe est défini, la protection ne pourra être supprimée que si l'utilisateur dispose du mot de passe correct."
#: 06060000.xhp
msgctxt ""
@@ -44374,7 +44374,7 @@ msgctxt ""
"par_id3148700\n"
"help.text"
msgid "Complete protection of your work can be achieved by combining the options <emph>Tools - Protect Sheet</emph> and <emph>Tools - Protect Spreadsheet Structure</emph>, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
-msgstr ""
+msgstr "Vous pouvez protéger l'intégralité de votre travail en associant les deux options de protection de <emph>Outils - Protéger la feuille</emph> et <emph>Outils - Protéger la structure du classeur</emph>, tout en incluant la protection par mot de passe. Pour interdire l'ouverture du document dans son ensemble, cochez la case <emph>Enregistrer avec mot de passe</emph> à partir de la boîte de dialogue <emph>Enregistrer</emph> avant de cliquer sur le bouton <emph>Enregistrer</emph>."
#: 06060200.xhp
msgctxt ""
@@ -44398,7 +44398,7 @@ msgctxt ""
"par_id3145172\n"
"help.text"
msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect spreadsheet structure</emph> dialog with <emph>Tools - Protect Spreadsheet Structure</emph>. Optionally enter a password and click OK."
-msgstr ""
+msgstr "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protège la structure de la feuille du document contre les modifications. Il devient alors impossible d'insérer des feuilles, de les supprimer, de les renommer, de les déplacer ou de les copier.</ahelp></variable> Choisissez <emph>Outils - Protéger la structure du classeur</emph> pour ouvrir la boîte de dialogue <emph>Protéger la structure du classeur</emph>. Facultativement, saisissez un mot de passe et cliquez sur OK."
#: 06060200.xhp
msgctxt ""
@@ -44406,7 +44406,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Spreadsheet Structure</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
-msgstr ""
+msgstr "Il n'est possible de modifier la structure des documents protégés qu'après désactivation de l'option <emph>Protéger</emph>. Dans les menus contextuels des onglets des feuilles de calcul situés sur le bord inférieur des graphiques, seule l'entrée de menu <emph>Sélectionner toutes les feuilles</emph> peut être activée. Toutes les autres entrées de menu sont désactivées. Pour supprimer la protection, activez de nouveau la commande <emph>Outils - Protéger la structure du classeur</emph>. Si aucun mot de passe n'avait été utilisé, la protection est supprimée immédiatement. Si un mot de passe vous a été affecté, la boîte de dialogue <emph>Annuler la protection de la structure du classeur</emph> s'affiche pour vous inviter à le saisir. Vous pouvez alors supprimer la coche indiquant que la protection est activée."
#: 06060200.xhp
msgctxt ""
@@ -44446,7 +44446,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "You can completely protect your work by combining the options <emph>Tools - Protect Sheet</emph> and <emph>Tools - Protect Spreadsheet Structure</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
-msgstr ""
+msgstr "Vous pouvez protéger l'intégralité de votre travail en associant les deux options de <emph>Outils - Protéger la feuille</emph> et <emph>Outils - Protéger la structure du classeur</emph>, y compris l'utilisation d'un mot de passe. Si vous souhaitez empêcher tout autre utilisateur d'ouvrir votre document, sélectionnez <emph>Enregistrer avec mot de passe</emph>, puis cliquez sur le bouton <emph>Enregistrer</emph>. La boîte de dialogue <emph>Saisie du mot de passe</emph> s'affiche. Choisissez votre mot de passe avec soin. En effet, si vous l'oubliez après avoir fermé un document, celui-ci vous sera inaccessible."
#: 06070000.xhp
msgctxt ""
@@ -44462,7 +44462,7 @@ msgctxt ""
"bm_id3145673\n"
"help.text"
msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculate;auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Calcul;calcul automatique dans les feuilles</bookmark_value><bookmark_value>Recalcul;calcul automatique dans les feuilles</bookmark_value><bookmark_value>Recalculer;calcul automatique dans les feuilles</bookmark_value><bookmark_value>Calcul automatique dans les feuilles, fonction</bookmark_value><bookmark_value>Correction automatique dans les feuilles</bookmark_value><bookmark_value>Formules;calcul automatique, fonction</bookmark_value><bookmark_value>Contenu des cellules;calcul automatique, fonction</bookmark_value>"
#: 06070000.xhp
msgctxt ""
@@ -44502,7 +44502,7 @@ msgctxt ""
"bm_id3157909\n"
"help.text"
msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>recalculate;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Recalculer;toutes les formules dans les feuilles</bookmark_value><bookmark_value>Recalcule;toutes les formules dans les feuilles</bookmark_value><bookmark_value>Formules;recalcule manuel</bookmark_value><bookmark_value>Contenu des cellules;recalcule</bookmark_value>"
#: 06080000.xhp
msgctxt ""
@@ -44518,7 +44518,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<ahelp hid=\".uno:Calculate\">If AutoCalculate is disabled, the Recalculate command recalculates all (so-called dirty) formula cells that depend on changed cell content and their dependents, and formula cells containing volatile functions such as RAND() or NOW() and formula cells that depend on them.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Calculate\">si Calcul automatique est désactivé, la commande Recalculer recalcule toutes les formules de cellules qui dépendent de contenu de cellules modifié et de leur dépendants, et les formules de cellules qui contiennent des fonctions volatiles telles que ALEA() ou MAINTENANT() et les cellules de formule qui dépendent d'elles.</ahelp>"
#: 06080000.xhp
msgctxt ""
@@ -44526,7 +44526,7 @@ msgctxt ""
"par_id3154759\n"
"help.text"
msgid "<ahelp hid=\".uno:Calculate\">If AutoCalculate is enabled, the Recalculate command applies only to formula cells containing volatile functions like RAND() or NOW() and formula cells that depend on them.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Calculate\">Si l'option Calcul automatique est activée, la commande Recalculer s'applique uniquement aux cellule de formule contenant des fonctions volatiles comme ALEA() ou MAINTENANT() et les cellules de formule qui dépendent d'elles.</ahelp>"
#: 06080000.xhp
msgctxt ""
@@ -44534,7 +44534,7 @@ msgctxt ""
"par_id3154753\n"
"help.text"
msgid "<ahelp hid=\".uno:Calculate\">In either mode, with formula cell(s) selected pressing F9 recalculates the currently selected cells and formula cells that depend on them. This can be useful after reading documents with recalculation disabled and individual cells need recalculation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Calculate\">Dans les deux modes, avec les cellules de formule sélectionnées, une pression sur F9 recalcule les cellules actuellement sélectionnées et les cellules de formule qui en dépendent. Cela peut être utile après la lecture de documents dont le recalcul est désactivé et les cellules individuelles doivent être recalculées.</ahelp>"
#: 06080000.xhp
msgctxt ""
@@ -44550,7 +44550,7 @@ msgctxt ""
"par_id3150793\n"
"help.text"
msgid "Recalculation options are, Recalculation on File Load, with values:"
-msgstr ""
+msgstr "Les options de recalcule sont, Recalculer au chargement du fichier, avec les valeurs :"
#: 06080000.xhp
msgctxt ""
@@ -44558,7 +44558,7 @@ msgctxt ""
"par_id3150795\n"
"help.text"
msgid "Always recalculate, Never recalculate (default option), Prompt user."
-msgstr ""
+msgstr "Toujours recalculer, Ne jamais recalculer (options par défaut), Demander à l'utilisateur."
#: 06080000.xhp
msgctxt ""
@@ -44566,7 +44566,7 @@ msgctxt ""
"par_id315475855\n"
"help.text"
msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document, including Add-In functions. The hard recalculation correctly recalculates all formula cells."
-msgstr ""
+msgstr "Appuyez sur Maj+<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 pour recalculer toutes les formules du document, incluant les fonctions d'Add-in. Le recalcule forcé recalcule correctement toutes les cellules de formules."
#: 06080000.xhp
msgctxt ""
@@ -44574,7 +44574,7 @@ msgctxt ""
"par_id3150799\n"
"help.text"
msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
-msgstr ""
+msgstr "Après que le document ait été recalculé, l'affichage est rafraîchi. Tous les diagrammes sont également actualisés."
#: 06130000.xhp
msgctxt ""
@@ -44870,7 +44870,7 @@ msgctxt ""
"par_id3154684\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh Range</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Insère automatiquement de nouvelles lignes et colonnes dans la plage de base de données du document lorsque de nouveaux enregistrements sont ajoutés à la base de données.</ahelp> Pour mettre à jour manuellement la plage de la base de données, choisissez <emph>Données - Actualiser la plage</emph>."
#: 12010100.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Spécifie la plage de cellules à consolider avec la liste des plages de cellules dans la zone <emph>Plages de consolidation</emph>. Sélectionnez une plage de cellules dans une feuille et cliquez sur <emph>Ajouter</emph>. Vous pouvez également sélectionner le nom d'une cellule prédéfinie dans la liste <emph>Plage de données source</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
@@ -49414,7 +49414,7 @@ msgctxt ""
"hd_id881545240342781\n"
"help.text"
msgid "Sample macro:"
-msgstr ""
+msgstr "Exemple de macro :"
#: ODFF.xhp
msgctxt ""
@@ -51558,7 +51558,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CONCAT function"
-msgstr ""
+msgstr "Fonction CONCAT"
#: func_concat.xhp
msgctxt ""
@@ -51566,7 +51566,7 @@ msgctxt ""
"bm_id741556228031712\n"
"help.text"
msgid "<bookmark_value>CONCAT function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>CONCAT, fonction</bookmark_value>"
#: func_concat.xhp
msgctxt ""
@@ -51574,7 +51574,7 @@ msgctxt ""
"hd_id471556226436779\n"
"help.text"
msgid "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunct\"><link href=\"text/scalc/01/func_concat.xhp\" name=\"concat\">CONCAT</link></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51582,7 +51582,7 @@ msgctxt ""
"par_id891556226436781\n"
"help.text"
msgid "<variable id=\"concatfunction\"><ahelp hid=\".\">Concatenates one or more strings</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"concatfunction\"><ahelp hid=\".\">Concatène une ou plusieurs chaînes.</ahelp></variable>"
#: func_concat.xhp
msgctxt ""
@@ -51590,7 +51590,7 @@ msgctxt ""
"par_id701556226865876\n"
"help.text"
msgid "CONCAT is an enhancement of CONCATENATE, as CONCAT also accepts ranges as arguments, like B2:E5, K:K or K:M."
-msgstr ""
+msgstr "CONCAT est une amélioration de CONCATENER, parce que CONCAT accepte les plages comme arguments, comme B2:E5, K:K ou K:M."
#: func_concat.xhp
msgctxt ""
@@ -51598,7 +51598,7 @@ msgctxt ""
"par_id461556226873963\n"
"help.text"
msgid "When ranges are used, the cells are traversed row by row (from top to bottom) to concatenate."
-msgstr ""
+msgstr "Lorsque les plages sont utilisées, les cellules sont traversées ligne par ligne (de haut en bas) pour concaténer."
#: func_concat.xhp
msgctxt ""
@@ -51606,7 +51606,7 @@ msgctxt ""
"par_id911556226813411\n"
"help.text"
msgid "CONCAT( string1[, string2][, …] )"
-msgstr ""
+msgstr "CONCAT(chaîne1[,chaîne2][,...])"
#: func_concat.xhp
msgctxt ""
@@ -51614,7 +51614,7 @@ msgctxt ""
"par_id581556227044166\n"
"help.text"
msgid "<emph>string1[, string2][, …]</emph> are strings or references to cells or ranges that contains strings to concatenate."
-msgstr ""
+msgstr "<emph>chaîne1[,chaîne2][,...]</emph> sont des chaînes ou des références à des cellules ou plages qui contiennent les chaînes à concaténer."
#: func_concat.xhp
msgctxt ""
@@ -51622,7 +51622,7 @@ msgctxt ""
"par_id531556227248228\n"
"help.text"
msgid "<input>=CONCAT(\"Hello \", A1:C3)</input> concatenates the string \"Hello\" with all strings in range <literal>A1:C3</literal>."
-msgstr ""
+msgstr "<input>=CONCAT(\"Hello \", A1:C3)</input> concatène la chaîne \"Hello\" avec toutes les chaînes dans la plage <literal>A1:C3</literal>."
#: func_concat.xhp
msgctxt ""
@@ -51630,7 +51630,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENATE</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060110.xhp#concatenate\" name=\"concatenate\">CONCATENER</link>"
#: func_countifs.xhp
msgctxt ""
@@ -52294,7 +52294,7 @@ msgctxt ""
"par_id3159101\n"
"help.text"
msgid "<item type=\"input\">=DAYS(NOW();\"2010-01-01\"))</item> returns the number of days from January 1, 2010 until today."
-msgstr ""
+msgstr "<item type=\"input\">=JOURS(MAINTENANT();\"01/01/2010\"))</item> renvoie le nombre de jours du 1er janvier 2010 à aujourd'hui."
#: func_days.xhp
msgctxt ""
@@ -53574,7 +53574,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "IFS function"
-msgstr ""
+msgstr "Fonction SI.CONDITIONS"
#: func_ifs.xhp
msgctxt ""
@@ -53582,7 +53582,7 @@ msgctxt ""
"bm_id901556242230198\n"
"help.text"
msgid "<bookmark_value>IFS function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>SI.CONDITIONS, fonction</bookmark_value>"
#: func_ifs.xhp
msgctxt ""
@@ -53590,7 +53590,7 @@ msgctxt ""
"hd_id271556234923654\n"
"help.text"
msgid "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">IFS</link></variable>"
-msgstr ""
+msgstr "<variable id=\"ifsfunct\"><link href=\"text/scalc/01/func_ifs.xhp\" name=\"function ifs\">SI.CONDITIONS</link></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -53598,7 +53598,7 @@ msgctxt ""
"par_id171556234923655\n"
"help.text"
msgid "<variable id=\"variable name\"><ahelp hid=\".\">IFS is a multiple IF-function.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"variable name\"><ahelp hid=\".\">SI.CONDITIONS est une fonction SI multiple.</ahelp></variable>"
#: func_ifs.xhp
msgctxt ""
@@ -53606,7 +53606,7 @@ msgctxt ""
"par_id271556235333493\n"
"help.text"
msgid "IFS( expression1, result1[, expression2, result2][, …] )"
-msgstr ""
+msgstr "SI.CONDITIONS(expression1,résultat1[,expression2,résultat2][,...])"
#: func_ifs.xhp
msgctxt ""
@@ -53614,7 +53614,7 @@ msgctxt ""
"par_id31556235655212\n"
"help.text"
msgid "<emph>expression1, expression2, ...</emph> are any boolean values or expressions that can be TRUE or FALSE"
-msgstr ""
+msgstr "<emph>expression1, expression2, ...</emph> sont n'importe quelles valeurs logiques ou expressions qui peuvent être VRAI ou FAUX."
#: func_ifs.xhp
msgctxt ""
@@ -53622,7 +53622,7 @@ msgctxt ""
"par_id441556235649549\n"
"help.text"
msgid "<emph>result1, result2, ... </emph> are the values that are returned if the logical test is TRUE"
-msgstr ""
+msgstr "<emph>résultat1,résultat2,...</emph> sont les valeurs qui sont renvoyées si le test logique est VRAI."
#: func_ifs.xhp
msgctxt ""
@@ -53630,7 +53630,7 @@ msgctxt ""
"par_id641556235704257\n"
"help.text"
msgid "IFS( expression1, result1, expression2, result2, expression3, result3 ) is executed as"
-msgstr ""
+msgstr "SI.CONDITIONS(expression1,résultat1,expression2,résultat2,expression3,résultat3) est exécuté comme"
#: func_ifs.xhp
msgctxt ""
@@ -53638,7 +53638,7 @@ msgctxt ""
"par_id551556235712759\n"
"help.text"
msgid "IF expression1 is TRUE"
-msgstr ""
+msgstr "SI condition1 est VRAI"
#: func_ifs.xhp
msgctxt ""
@@ -53646,7 +53646,7 @@ msgctxt ""
"par_id1001556235718948\n"
"help.text"
msgid "THEN result1"
-msgstr ""
+msgstr "ALORS résultat1"
#: func_ifs.xhp
msgctxt ""
@@ -53654,7 +53654,7 @@ msgctxt ""
"par_id571556235725969\n"
"help.text"
msgid "ELSE IF expression2 is TRUE"
-msgstr ""
+msgstr "SINON SI expression2 est VRAI"
#: func_ifs.xhp
msgctxt ""
@@ -53662,7 +53662,7 @@ msgctxt ""
"par_id581556235731982\n"
"help.text"
msgid "THEN result2"
-msgstr ""
+msgstr "ALORS résultat2"
#: func_ifs.xhp
msgctxt ""
@@ -53670,7 +53670,7 @@ msgctxt ""
"par_id961556235738258\n"
"help.text"
msgid "ELSE IF expression3 is TRUE"
-msgstr ""
+msgstr "SINON SI expression3 est VRAI"
#: func_ifs.xhp
msgctxt ""
@@ -53678,7 +53678,7 @@ msgctxt ""
"par_id951556235743954\n"
"help.text"
msgid "THEN result3"
-msgstr ""
+msgstr "ALORS résultat3"
#: func_ifs.xhp
msgctxt ""
@@ -53686,7 +53686,7 @@ msgctxt ""
"par_id671556235758504\n"
"help.text"
msgid "To get a default result should no expression be TRUE, add a last expression that is always TRUE, like TRUE or 1=1 followed by the default result."
-msgstr ""
+msgstr "Pour obtenir un résultat par défaut si aucune expression ne doit être VRAI, ajoutez une dernière expression toujours VRAI, comme VRAI ou 1 = 1 suivi du résultat par défaut."
#: func_ifs.xhp
msgctxt ""
@@ -53694,7 +53694,7 @@ msgctxt ""
"par_id541556235771022\n"
"help.text"
msgid "If there is a result missing for an expression or is no expression is TRUE, a #N/A error is returned."
-msgstr ""
+msgstr "S'il y a un résultat manquant pour une expression ou si aucune expression n'est VRAI, une erreur #N/D est renvoyée."
#: func_ifs.xhp
msgctxt ""
@@ -53702,7 +53702,7 @@ msgctxt ""
"par_id181556235788473\n"
"help.text"
msgid "If expression is neither TRUE or FALSE, a #VALUE error is returned."
-msgstr ""
+msgstr "Si l'expression n'est ni VRAI ni FAUX, une erreur #VALEUR est renvoyée."
#: func_ifs.xhp
msgctxt ""
@@ -53710,7 +53710,7 @@ msgctxt ""
"par_id781556244709752\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">IF</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060105.xhp#Section4\" name=\"if\">SI</link>"
#: func_imcos.xhp
msgctxt ""
@@ -55462,7 +55462,7 @@ msgctxt ""
"par_id701542231253817\n"
"help.text"
msgid "REGEX( Text ; Expression [ ; [ Replacement ] [ ; Flags|Occurrence ] ] )"
-msgstr ""
+msgstr "REGEX( Texte ; Expression [ ; [ Remplacement ] [ ; Drapeaux|Occurrence ] ] )"
#: func_regex.xhp
msgctxt ""
@@ -55478,7 +55478,7 @@ msgctxt ""
"par_id211542232209275\n"
"help.text"
msgid "<emph>Expression</emph>: A text representing the regular expression, using <link href=\"http://userguide.icu-project.org/strings/regexp\" name=\"ICU REGEXP\">ICU regular expressions</link>. If there is no match and <emph>Replacement</emph> is not given, #N/A is returned."
-msgstr ""
+msgstr "<emph>Expression</emph> : un texte représentant l'expression régulière, utilisant les <link href=\"http://userguide.icu-project.org/strings/regexp\" name=\"ICU REGEXP\">expressions régulières ICU</link>. S'il n'y a pas de correspondance et si <emph>Remplacement</emph> n'est pas indiqué, #N/D est renvoyé."
#: func_regex.xhp
msgctxt ""
@@ -55502,7 +55502,7 @@ msgctxt ""
"par_id421542232246841\n"
"help.text"
msgid "<emph>Occurrence</emph>: Optional. Number to indicate which match of <emph>Expression</emph> in <emph>Text</emph> is to be extracted or replaced. If there is no match and <emph>Replacement</emph> is not given, #N/A is returned. If there is no match and <emph>Replacement</emph> is given, <emph>Text</emph> is returned unmodified. If <emph>Occurrence</emph> is 0, <emph>Text</emph> is returned unmodified."
-msgstr ""
+msgstr "<emph>Occurrence</emph> : facultatif. Un nombre pour indiquer quelle correspondance de <emph>Expression</emph> dans <emph>Texte</emph> doit être extraite ou remplacée. S'il n'y a pas de correspondance et si <emph>Remplacement</emph> n'est pas indiqué, #N/D est envoyé. S'il n'y a pas de correspondance et si <emph>Remplacement</emph> est indiqué, <emph>Texte</emph> est renvoyé non modifié. Si <emph>Occurrence</emph> vaut 0, <emph>Texte</emph> est renvoyé non modifié."
#: func_regex.xhp
msgctxt ""
@@ -55526,7 +55526,7 @@ msgctxt ""
"par_id21542291705695\n"
"help.text"
msgid "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[126]\";\"\";\"g\")</item> returns \"345ABCDEF\", where any occurrence of \"1\", \"2\" or \"6\" is replaced by the empty string, thus deleted."
-msgstr ""
+msgstr "<item type=\"input\">=REGEX(\"123456ABCDEF\";\"[126]\";\"\";\"g\")</item> renvoie \"345ABCDEF\", où chaque occurrence de \"1\", \"2\" ou \"6\" est remplacée par la chaîne vide et donc supprimée."
#: func_regex.xhp
msgctxt ""
@@ -55534,7 +55534,7 @@ msgctxt ""
"par_id371542291684177\n"
"help.text"
msgid "<item type=\"input\">=REGEX(\"axbxcxd\";\".x\";;2)</item> returns \"bx\", the second match of \".x\"."
-msgstr ""
+msgstr "<item type=\"input\">=REGEX(\"axbxcxd\";\".x\";;2)</item> renvoie \"bx\", la deuxième correspondance de \".x\"."
#: func_regex.xhp
msgctxt ""
@@ -55542,7 +55542,7 @@ msgctxt ""
"par_id371542291684178\n"
"help.text"
msgid "<item type=\"input\">=REGEX(\"axbxcxd\";\"(.)x\";\"$1y\";2)</item> returns \"axbycxd\", the second match of \"(.)x\" (i.e. \"bx\") replaced with the captured group of one character (i.e. \"b\") followed by \"y\"."
-msgstr ""
+msgstr "<item type=\"input\">=REGEX(\"axbxcxd\";\"(.)x\";\"$1y\";2)</item> renvoie \"axbycxd\", la deuxième correspondance de \"(.)x\" (i.e. \"bx\") remplacée par le groupe capturé d'un caractère (c'est-à-dire \"b\") suivi par \"y\"."
#: func_regex.xhp
msgctxt ""
@@ -55558,7 +55558,7 @@ msgctxt ""
"par_id431542233650614\n"
"help.text"
msgid "<link href=\"http://userguide.icu-project.org/strings/regexp\" name=\"ICU REGEXP\">ICU regular expressions</link>"
-msgstr ""
+msgstr "<link href=\"http://userguide.icu-project.org/strings/regexp\" name=\"ICU REGEXP\">Expressions régulières ICU</link>"
#: func_roundsig.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/scalc/02.po b/source/fr/helpcontent2/source/text/scalc/02.po
index f407e88e2d5..e57fd5eea1d 100644
--- a/source/fr/helpcontent2/source/text/scalc/02.po
+++ b/source/fr/helpcontent2/source/text/scalc/02.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-07 20:23+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"PO-Revision-Date: 2019-05-15 14:56+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1546892604.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557932212.000000\n"
#: 02130000.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3154908\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>."
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cellule - Nombres\">Format - Cellules - Nombres</link>."
#: 02160000.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/scalc/04.po b/source/fr/helpcontent2/source/text/scalc/04.po
index dbcac96f52a..62f28e3badc 100644
--- a/source/fr/helpcontent2/source/text/scalc/04.po
+++ b/source/fr/helpcontent2/source/text/scalc/04.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2017-11-23 18:02+0000\n"
+"PO-Revision-Date: 2019-05-15 14:58+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511460174.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557932313.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"hd_id451550311052582\n"
"help.text"
msgid "Shift+Space"
-msgstr ""
+msgstr "Maj+Espace"
#: 01020000.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id971550311052582\n"
"help.text"
msgid "Selects the current row or extends the existing selection to all respective rows."
-msgstr ""
+msgstr "Sélectionne la ligne active ou étend la sélection existante à toutes les lignes correspondantes."
#: 01020000.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"hd_id281550311052582\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Space"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Espace"
#: 01020000.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_id261550311052582\n"
"help.text"
msgid "Selects the current column or extends the existing selection to all respective columns."
-msgstr ""
+msgstr "Sélectionne la colonne active ou étend la sélection existante à toutes les colonnes correspondantes."
#: 01020000.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"hd_id311550311052582\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Space"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Maj+Espace"
#: 01020000.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id851550311052582\n"
"help.text"
msgid "Selects all cells in the sheet."
-msgstr ""
+msgstr "Sélectionne toutes les cellules de la feuille."
#: 01020000.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/scalc/05.po b/source/fr/helpcontent2/source/text/scalc/05.po
index afbc6a12fc0..c3afb2bb5d0 100644
--- a/source/fr/helpcontent2/source/text/scalc/05.po
+++ b/source/fr/helpcontent2/source/text/scalc/05.po
@@ -4,18 +4,18 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-09-06 16:19+0000\n"
+"PO-Revision-Date: 2019-05-15 15:02+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1536250790.000000\n"
+"X-POOTLE-MTIME: 1557932535.000000\n"
#: 02140000.xhp
msgctxt ""
@@ -703,7 +703,7 @@ msgctxt ""
"par_id231549820000708\n"
"help.text"
msgid "533"
-msgstr ""
+msgstr "533"
#: 02140000.xhp
msgctxt ""
@@ -711,7 +711,7 @@ msgctxt ""
"par_id951549820044260\n"
"help.text"
msgid "Nested arrays are not supported"
-msgstr ""
+msgstr "Les matrices imbriquées ne sont pas prises en charge."
#: 02140000.xhp
msgctxt ""
@@ -719,7 +719,7 @@ msgctxt ""
"par_id781549820065619\n"
"help.text"
msgid "For example, ={1;{2}}"
-msgstr ""
+msgstr "Par exemple, ={1;{2}}"
#: 02140000.xhp
msgctxt ""
@@ -727,7 +727,7 @@ msgctxt ""
"par_id961549825716936\n"
"help.text"
msgid "538"
-msgstr ""
+msgstr "538"
#: 02140000.xhp
msgctxt ""
@@ -735,7 +735,7 @@ msgctxt ""
"par_id521549825734781\n"
"help.text"
msgid "Error: Array or matrix size"
-msgstr ""
+msgstr "Erreur : taille du tableau ou de la matrice"
#: 02140000.xhp
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"par_id601549825744677\n"
"help.text"
msgid "-"
-msgstr ""
+msgstr "-"
#: 02140000.xhp
msgctxt ""
@@ -751,7 +751,7 @@ msgctxt ""
"par_id41549825806618\n"
"help.text"
msgid "539"
-msgstr ""
+msgstr "539"
#: 02140000.xhp
msgctxt ""
@@ -759,7 +759,7 @@ msgctxt ""
"par_id931549825818729\n"
"help.text"
msgid "Unsupported inline array content"
-msgstr ""
+msgstr "Contenu de matrice intégré non pris en charge."
#: 02140000.xhp
msgctxt ""
@@ -767,7 +767,7 @@ msgctxt ""
"par_id551549825825905\n"
"help.text"
msgid "For example, ={1+2}"
-msgstr ""
+msgstr "Par exemple, ={1+2}"
#: 02140000.xhp
msgctxt ""
@@ -775,7 +775,7 @@ msgctxt ""
"par_id441549825884434\n"
"help.text"
msgid "540"
-msgstr ""
+msgstr "540"
#: 02140000.xhp
msgctxt ""
@@ -783,7 +783,7 @@ msgctxt ""
"par_id131549825893410\n"
"help.text"
msgid "External content disabled"
-msgstr ""
+msgstr "Contenu externe désactivé"
#: 02140000.xhp
msgctxt ""
@@ -791,7 +791,7 @@ msgctxt ""
"par_id881549825900965\n"
"help.text"
msgid "Happens if a function that requires (re)loading of external sources is encountered and the user hasn't confirmed reloading of external sources yet"
-msgstr ""
+msgstr "Survient si une fonction nécessite de recharger ou charger des sources externes et que l'utilisateur n'a pas encore confirmé le rechargement de sources externes."
#: empty_cells.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/scalc/guide.po b/source/fr/helpcontent2/source/text/scalc/guide.po
index 7e9aced1b48..5909ff95afa 100644
--- a/source/fr/helpcontent2/source/text/scalc/guide.po
+++ b/source/fr/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-11-26 16:53+0000\n"
+"PO-Revision-Date: 2019-05-22 16:18+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1543251210.000000\n"
+"X-POOTLE-MTIME: 1558541914.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -1815,7 +1815,7 @@ msgctxt ""
"par_idN106C7\n"
"help.text"
msgid "To protect the structure of the document, for example the count, <link href=\"text/scalc/guide/rename_table.xhp\">names</link>, and order of the sheets, from being changed, choose <item type=\"menuitem\">Tools - Protect Spreadsheet Structure</item>."
-msgstr ""
+msgstr "Pour éviter la modification de la structure du document, le nombre de feuilles, leurs <link href=\"text/scalc/guide/rename_table.xhp\">noms</link> ou leur ordre par exemple, choisissez <item type=\"menuitem\">Outils - Protéger la structure du classeur</item>."
#: cell_protect.xhp
msgctxt ""
@@ -1879,7 +1879,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "Select <emph>Tools - Protect Sheet</emph> or <emph>Tools - Protect Spreadsheet Structure</emph> to remove the check mark indicating the protected status."
-msgstr ""
+msgstr "Sélectionnez <emph>Outils - Protéger la feuille</emph> ou <emph>Outils - Protéger la structure du classeur</emph> pour désactiver la coche indiquant la protection."
#: cell_unprotect.xhp
msgctxt ""
@@ -5231,7 +5231,7 @@ msgctxt ""
"par_id3154733\n"
"help.text"
msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cells</item>. In this dialog, you can select attributes such as shadows and backgrounds."
-msgstr ""
+msgstr "Vous pouvez assigner un format à n'importe quel groupe de cellules en sélectionnant d'abord les cellules (pour une sélection multiple, maintenez la touche <switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline> lorsque vous cliquez) et activez la boîte de dialogue <emph>Formater les cellules</emph> dans <item type=\"menuitem\">Formater - Cellules</item>. Dans cette boîte de dialogue, vous pouvez sélectionner les attributs tels que les ombres et les arrière-plans."
#: format_table.xhp
msgctxt ""
@@ -10055,7 +10055,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Rows - Show </emph>command."
-msgstr ""
+msgstr "Cliquez ensuite sur OK. Vous pouvez constater que seules les lignes de la feuille d'origine dont le contenu répond aux critères de recherche sont encore visibles. Toutes les autres lignes sont temporairement masquées et peuvent être affichées à l'aide de la commande <emph>Format - Ligne - Afficher</emph>."
#: specialfilter.xhp
msgctxt ""
@@ -10927,7 +10927,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cellule\">Format - Cellules</link>"
#: userdefined_function.xhp
msgctxt ""
@@ -11319,7 +11319,7 @@ msgctxt ""
"par_id3149011\n"
"help.text"
msgid "To display the error message, select <link href=\"text/scalc/01/12120300.xhp\" name=\"erroralert\">Show error message when invalid values are entered</link>."
-msgstr ""
+msgstr "Pour afficher le message d'erreur, sélectionnez <link href=\"text/scalc/01/12120300.xhp\" name=\"erroralert\">Afficher un message d'erreur quand des valeurs incorrectes sont saisies</link>."
#: validity.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/schart/00.po b/source/fr/helpcontent2/source/text/schart/00.po
index 6240d03a9f5..40306f6d98f 100644
--- a/source/fr/helpcontent2/source/text/schart/00.po
+++ b/source/fr/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-14 14:45+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
@@ -486,13 +486,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Dans la boîte de dialogue Type de diagramme d'un diagramme en ligne ou d'un diagramme XY qui affiche des lignes, choisissez Adoucir dans la liste déroulante Types de ligne, puis cliquez sur le bouton Propriétés.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">Dans la boîte de dialogue Type de diagramme d'un diagramme en ligne ou d'un diagramme XY qui affiche des lignes, choisissez Escalier dans la liste déroulante Types de ligne, puis cliquez sur le bouton Propriétés.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/fr/helpcontent2/source/text/sdraw.po b/source/fr/helpcontent2/source/text/sdraw.po
index e30322aa0e8..3c2a09f95b4 100644
--- a/source/fr/helpcontent2/source/text/sdraw.po
+++ b/source/fr/helpcontent2/source/text/sdraw.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-10-05 15:42+0000\n"
+"PO-Revision-Date: 2019-05-15 14:49+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507218175.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557931791.000000\n"
#: main0000.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Édition"
#: main_edit.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"hd_id3150868\n"
"help.text"
msgid "<link href=\"text/sdraw/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_edit.xhp\" name=\"Édition\">Édition</link>"
#: main_edit.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
-msgstr ""
+msgstr "Les commandes de ce menu sont utiles pour éditer les documents Draw (par exemple, copier et coller)."
#: main_edit.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"hd_id3147396\n"
"help.text"
msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02070000.xhp\" name=\"Collage spécial\">Collage spécial</link>"
#: main_edit.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"hd_id3149400\n"
"help.text"
msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02100000.xhp\" name=\"Rechercher & Remplacer\">Rechercher & Remplacer</link>"
#: main_edit.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"hd_id3153713\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
#: main_edit.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id3147340\n"
"help.text"
msgid "Enables you to edit points on your drawing."
-msgstr ""
+msgstr "Permet d'éditer des points sur le dessin."
#: main_edit.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"hd_id3149258\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Points de collage\">Points de collage</link>"
#: main_edit.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id3146315\n"
"help.text"
msgid "Enables you to edit glue points on your drawing."
-msgstr ""
+msgstr "Permet d'éditer des points de collage dans le dessin."
#: main_edit.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"hd_id3147005\n"
"help.text"
msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02120000.xhp\" name=\"Dupliquer\">Dupliquer</link>"
#: main_edit.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"hd_id3150205\n"
"help.text"
msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02150000.xhp\" name=\"Fondu enchaîné\">Fondu enchaîné</link>"
#: main_edit.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"hd_id3154650\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Champs\">Champs</link>"
#: main_edit.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"hd_id3156446\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Liens\">Liens</link>"
#: main_edit.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlien\">Hyperlien</link>"
#: main_format.xhp
msgctxt ""
@@ -750,7 +750,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: main_format.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"hd_id3153770\n"
"help.text"
msgid "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_format.xhp\" name=\"Format\">Format</link>"
#: main_format.xhp
msgctxt ""
@@ -766,7 +766,7 @@ msgctxt ""
"par_id3152578\n"
"help.text"
msgid "Contains commands for formatting the layout and the contents of your document."
-msgstr ""
+msgstr "Contient des commandes de formatage de la mise en page et du contenu du document."
#: main_format.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caractère\">Caractère</link>"
#: main_format.xhp
msgctxt ""
@@ -782,7 +782,7 @@ msgctxt ""
"hd_id3146979\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraphe\">Paragraphe</link>"
#: main_format.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"hd_id3166426\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numérotation/Puces\">Puces et numérotation</link>"
#: main_format.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"hd_id3146971\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position et taille\">Position et taille</link>"
#: main_format.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"hd_id3148576\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Ligne\">Ligne</link>"
#: main_format.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"hd_id3151076\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Remplissage\">Remplissage</link>"
#: main_format.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"hd_id3153878\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Texte\">Texte</link>"
#: main_format.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"hd_id3153913\n"
"help.text"
msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05140000.xhp\" name=\"Couche\">Couche</link>"
#: main_insert.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Insérer"
#: main_insert.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id3148797\n"
"help.text"
msgid "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insert</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insérer</link>"
#: main_insert.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
-msgstr ""
+msgstr "Ce menu permet d'insérer des éléments, par exemple des images et des guides, dans des documents Draw."
#: main_insert.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Couche\">Couche</link>"
#: main_insert.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"hd_id3147397\n"
"help.text"
msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insérer un point /une ligne de capture\">Insérer un point / une ligne de capture</link>"
#: main_insert.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"hd_id0915200910361385\n"
"help.text"
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Commentaire\">Commentaire</link>"
#: main_insert.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Caractère spécial\">Caractère spécial</link>"
#: main_insert.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id3150749\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlien\">Hyperlien</link>"
#: main_insert.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"hd_id3156385\n"
"help.text"
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Tableau\">Tableau</link>"
#: main_insert.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"hd_id3147003\n"
"help.text"
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagramme\">Diagramme</link>"
#: main_insert.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id0302200904020595\n"
"help.text"
msgid "Inserts a chart."
-msgstr ""
+msgstr "Insère un diagramme."
#: main_insert.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Cadre flottant\">Cadre flottant</link>"
#: main_insert.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"Fichier\">Fichier</link>"
#: main_page.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Page"
#: main_page.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"hd_id41556822227733\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Page</link>"
#: main_page.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id771556822318420\n"
"help.text"
msgid "This menu provides page management and navigation commands."
-msgstr ""
+msgstr "Ce menu fournit des commandes de navigation et de gestion des pages."
#: main_page.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"hd_id131556822326832\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">Nouvelle page</link>"
#: main_page.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"hd_id3155091\n"
"help.text"
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Propriétés</link>"
#: main_tools.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "Outils"
#: main_tools.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/sdraw/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_tools.xhp\" name=\"Tools\">Outils</link>"
#: main_tools.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"par_id3156443\n"
"help.text"
msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
-msgstr ""
+msgstr "Ce menu fournit des outils pour $[officename] Draw ainsi qu'un accès aux paramètres linguistique et système. "
#: main_tools.xhp
msgctxt ""
@@ -1006,7 +1006,7 @@ msgctxt ""
"hd_id3148699\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
#: main_tools.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"hd_id3153415\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Options d'AutoCorrection</link>"
#: main_tools.xhp
msgctxt ""
@@ -1022,4 +1022,4 @@ msgctxt ""
"hd_id3150044\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Personnaliser\">Personnaliser</link>"
diff --git a/source/fr/helpcontent2/source/text/sdraw/00.po b/source/fr/helpcontent2/source/text/sdraw/00.po
index b3c31450109..da0cb088e03 100644
--- a/source/fr/helpcontent2/source/text/sdraw/00.po
+++ b/source/fr/helpcontent2/source/text/sdraw/00.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-09 22:59+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-21 21:18+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494370781.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558473529.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Menu"
-msgstr ""
+msgstr "Menu Page"
#: page_menu.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Choisissez <emph>Page - Propriétés</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Choisissez <emph>Page - Propriétés</emph> et cliquez sur l'onglet <emph>Page</emph> </variable>"
#: page_menu.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Choisissez <emph>Page - Propriétés</emph> et cliquez sur l'onglet <emph>Arrière-plan</emph> </variable>"
#: page_menu.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/00.po b/source/fr/helpcontent2/source/text/shared/00.po
index 2c44b18684a..7ebc972ec10 100644
--- a/source/fr/helpcontent2/source/text/shared/00.po
+++ b/source/fr/helpcontent2/source/text/shared/00.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-01-07 16:06+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-27 16:33+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1546877208.000000\n"
+"X-POOTLE-MTIME: 1558974812.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -423,7 +423,7 @@ msgctxt ""
"par_id3149651\n"
"help.text"
msgid "<ahelp hid=\".\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Rétablit les modifications apportées dans l'onglet actif en utilisant les valeurs qui s'appliquaient lors de l'ouverture de cette boîte de dialogue. Aucune demande de confirmation ne s'affiche lorsque vous fermez la boîte de dialogue.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -439,7 +439,7 @@ msgctxt ""
"par_id3154153\n"
"help.text"
msgid "<ahelp hid=\".\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Rétablit les valeurs par défaut assignées lors de l'installation pour les valeurs visibles dans la boîte de dialogue.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -463,7 +463,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "<ahelp hid=\".\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
-msgstr ""
+msgstr "<ahelp hid=\".\">Dans une boîte de dialogue, vous avez la possibilité de vérifier l'étape précédente de votre travail tout en conservant les paramètres actifs.</ahelp> Vous ne pouvez activer ce bouton que depuis la page deux."
#: 00000001.xhp
msgctxt ""
@@ -471,7 +471,7 @@ msgctxt ""
"hd_id3147353\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Options"
#: 00000001.xhp
msgctxt ""
@@ -479,7 +479,7 @@ msgctxt ""
"par_id3155314\n"
"help.text"
msgid "<ahelp hid=\".\">Click the <emph>Options</emph> label to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Cliquez sur le bouton <emph>Options</emph> pour agrandir la boîte de dialogue et afficher d'autres options. Cliquez une nouvelle fois pour restaurer la boîte de dialogue.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -5647,7 +5647,7 @@ msgctxt ""
"par_id3152578\n"
"help.text"
msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings to include</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda3\">Choisissez <emph>Fichier - Assistants - Agenda - En-têtes à inclure</emph>.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5663,7 +5663,7 @@ msgctxt ""
"par_id3146923\n"
"help.text"
msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Agenda items</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda5\">Choisissez <emph>Fichier - Assistants - Agenda - Points de l'ordre du jour</emph>.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5671,7 +5671,7 @@ msgctxt ""
"par_id3149066\n"
"help.text"
msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Name and Location</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda6\">Choisissez <emph>Fichier - Assistants - Agenda - Nom et emplacement</emph>.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -5783,7 +5783,7 @@ msgctxt ""
"par_id3145206\n"
"help.text"
msgid "<variable id=\"addressimport2\"><emph>Address Data Source Wizards - Additional settings</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"addressimport2\"><emph>Assistants Source de données des adresses - Paramètres supplémentaires</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5791,7 +5791,7 @@ msgctxt ""
"par_id3154756\n"
"help.text"
msgid "<variable id=\"addressimport3\"><emph>Address Data Source Wizards - Table selection</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"addressimport3\"><emph>Assistants Source de données des adresses - Sélection de table</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5799,7 +5799,7 @@ msgctxt ""
"par_id3153924\n"
"help.text"
msgid "<variable id=\"addressimport4\"><emph>Address Data Source Wizards - Data source title</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"addressimport4\"><emph>Assistants Source de données des adresses - Titre de la source de données</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5807,7 +5807,7 @@ msgctxt ""
"par_id3148995\n"
"help.text"
msgid "<variable id=\"addressimport5\"><emph>Address Data Source Wizards - Field assignment</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"addressimport5\"><emph>Assistants Source de données des adresses - Assignation des champs</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -6015,7 +6015,7 @@ msgctxt ""
"par_idN1117E\n"
"help.text"
msgid "Double-click or right-click the <emph>Signature</emph> field on the <emph>Status</emph> bar."
-msgstr ""
+msgstr "Double-cliquez ou cliquez avec le bouton droit de la souris sur le champ <emph>Signature</emph> dans la barre d'<emph>état</emph>"
#: 00000401.xhp
msgctxt ""
@@ -6023,7 +6023,7 @@ msgctxt ""
"par_idN11173\n"
"help.text"
msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, press <emph>Digital Signatures</emph> button, then press <emph>Sign Document</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"digitalsigsel\">Choisissez l'onglet <emph>Fichier - Propriétés - Général </emph>, cliquez sur le bouton <emph>Signatures numériques</emph>, puis sur le bouton <emph>Signer le document</emph>.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -6063,7 +6063,7 @@ msgctxt ""
"par_id3149570\n"
"help.text"
msgid "<variable id=\"info6\">Choose <emph>File - Properties - CMIS Properties</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"info6\">Choisissez l'onglet <emph>Fichier - Propriétés - Propriétés CMIS</emph>.</variable>"
#: 00000401.xhp
msgctxt ""
@@ -7087,7 +7087,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "<variable id=\"galleryregisterdateien\">Choose <emph>Tools - Gallery</emph> or click the <emph>Gallery</emph> icon on the <emph>Standard</emph> bar -<br/><emph>New Theme</emph> button - <emph>Files</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"galleryregisterdateien\">Choisissez <emph>Outils - Galerie</emph> ou cliquez sur l'icône <emph>Galerie</emph> dans la barre <emph>Standard</emph> -<br/> bouton <emph>Nouveau thème</emph> - onglet <emph>Fichiers</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7215,7 +7215,7 @@ msgctxt ""
"par_id511543350796749\n"
"help.text"
msgid "<variable id=\"beanshell\">Choose <emph>Tools - Macros - Organize Macros - BeanShell</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"beanshell\">Choisissez <emph>Outils - Macros - Organiser les macros - BeanShell</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7223,7 +7223,7 @@ msgctxt ""
"par_id661543350803067\n"
"help.text"
msgid "<variable id=\"javascript\">Choose <emph>Tools - Macros - Organize Macros - JavaScript</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"javascript\">Choisissez <emph>Outils - Macros - Organiser les macros - JavaScript</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7231,7 +7231,7 @@ msgctxt ""
"par_id441543350811395\n"
"help.text"
msgid "<variable id=\"python\">Choose <emph>Tools - Macros - Organize Macros - Python</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"python\">Choisissez <emph>Outils - Macros - Organiser les macros - Python</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7564,18 +7564,10 @@ msgstr "<variable id=\"advanced\">Choisissez <switchinline select=\"sys\"><casei
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personnalisation</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"opencl\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8135,7 +8127,7 @@ msgctxt ""
"par_id3156053\n"
"help.text"
msgid "Choose <emph>Data - More Filters - Standard Filter</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Données - Plus de filtres - Filtre standard</emph>."
#: 00000409.xhp
msgctxt ""
@@ -8591,7 +8583,7 @@ msgctxt ""
"par_id3154749\n"
"help.text"
msgid "Choose <emph>Format - Cells - Font</emph> tab (spreadsheets)."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Cellules - Police</emph> (classeurs)."
#: 00040500.xhp
msgctxt ""
@@ -8679,7 +8671,7 @@ msgctxt ""
"par_id3154366\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Asian Typography</emph> tab.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choisissez l'onglet <emph>Format - Cellules - Typographie asiatique</emph></caseinline></switchinline>"
#: 00040500.xhp
msgctxt ""
@@ -9023,7 +9015,7 @@ msgctxt ""
"par_id3148405\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu of a page style entry and choose <emph>Modify/New - Header</emph> tab."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles</emph>, ouvrez le menu contextuel d'une entrée de styles de page et sélectionnez l'onglet <emph>Modifier/Nouveau - En-tête</emph>."
#: 00040500.xhp
msgctxt ""
@@ -9783,7 +9775,7 @@ msgctxt ""
"par_id3154023\n"
"help.text"
msgid "Choose <emph>Shape - Arrange</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Disposition</emph> ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -9815,7 +9807,7 @@ msgctxt ""
"par_id3148425\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Bring to Front</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Disposition - Envoyer à l'avant</emph> ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -9863,7 +9855,7 @@ msgctxt ""
"par_id3148396\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Bring Forward</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Disposition - Envoyer vers l'avant</emph> ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -9911,7 +9903,7 @@ msgctxt ""
"par_id3150428\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Send Backward</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Disposition - Envoyer vers l'arrière</emph> ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -9959,7 +9951,7 @@ msgctxt ""
"par_id3148595\n"
"help.text"
msgid "Choose <emph>Shape - Arrange - Send to Back</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Disposition - Envoyer à l'arrière</emph> ($[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10047,7 +10039,7 @@ msgctxt ""
"par_id3146854\n"
"help.text"
msgid "Choose <emph>Format - Align</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10055,7 +10047,7 @@ msgctxt ""
"par_id3153914\n"
"help.text"
msgid "Choose <emph>Shape - Align</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Aligner</emph> (objets sélectionnés) ($[officename] Draw)"
#: 00040501.xhp
msgctxt ""
@@ -10063,7 +10055,7 @@ msgctxt ""
"par_id3153185\n"
"help.text"
msgid "Open context menu - choose <emph>Align</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
-msgstr ""
+msgstr "Ouvrez le menu contextuel - choisissez <emph>Aligner</emph> (objets sélectionnés) ($[officename] Impress, $[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10071,7 +10063,7 @@ msgctxt ""
"par_id3168611\n"
"help.text"
msgid "Choose <emph>Format - Align - Left</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner - Gauche</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10079,7 +10071,7 @@ msgctxt ""
"par_id3083450\n"
"help.text"
msgid "Choose <emph>Shape - Align - Left</emph> (selected objects) ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Aligner - Gauche</emph> (objets sélectionnés) ($[officename] Draw)"
#: 00040501.xhp
msgctxt ""
@@ -10087,7 +10079,7 @@ msgctxt ""
"par_id3150257\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Left</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
-msgstr ""
+msgstr "Ouvrez le menu contextuel - choisissez <emph>Aligner - Gauche</emph> (objets sélectionnés) ($[officename] Impress, $[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10119,7 +10111,7 @@ msgctxt ""
"par_id3150268\n"
"help.text"
msgid "Choose <emph>Format - Align - Centered</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner - Centré</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10127,7 +10119,7 @@ msgctxt ""
"par_id3157978\n"
"help.text"
msgid "Choose <emph>Shape - Align - Centered</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Aligner - Centré</emph> (objets sélectionnés) ($[officename] Draw)"
#: 00040501.xhp
msgctxt ""
@@ -10159,7 +10151,7 @@ msgctxt ""
"par_id3156546\n"
"help.text"
msgid "Choose <emph>Format - Align - Right</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner - Droite</emph>."
#: 00040501.xhp
msgctxt ""
@@ -10167,7 +10159,7 @@ msgctxt ""
"par_id3145073\n"
"help.text"
msgid "Choose <emph>Shape - Align - Right</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Aligner - Droite</emph> (objets sélectionnés) ($[officename] Draw)"
#: 00040501.xhp
msgctxt ""
@@ -10199,7 +10191,7 @@ msgctxt ""
"par_id3153109\n"
"help.text"
msgid "Choose <emph>Format - Align - Top</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner - En haut</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10207,7 +10199,7 @@ msgctxt ""
"par_id3150213\n"
"help.text"
msgid "Choose <emph>Shape - Align - Top</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Aligner - En haut</emph> (objets sélectionnés) ($[officename] Draw)"
#: 00040501.xhp
msgctxt ""
@@ -10215,7 +10207,7 @@ msgctxt ""
"par_id3155093\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Top</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
-msgstr ""
+msgstr "Ouvrez le menu contextuel - choisissez <emph>Aligner - En haut</emph> (objets sélectionnés) ($[officename] Impress, $[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10247,7 +10239,7 @@ msgctxt ""
"par_id3153976\n"
"help.text"
msgid "Choose <emph>Format - Align - Centered</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner - Centré</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10255,7 +10247,7 @@ msgctxt ""
"par_id3153246\n"
"help.text"
msgid "Choose <emph>Shape - Align - Centered</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Aligner - Centré</emph> (objets sélectionnés) ($[officename] Draw)"
#: 00040501.xhp
msgctxt ""
@@ -10263,7 +10255,7 @@ msgctxt ""
"par_id3154614\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Centered</emph> (objects selected) ($[officename] Impress, $[officename] Draw)."
-msgstr ""
+msgstr "Ouvrez le menu contextuel - choisissez <emph>Aligner - Centré</emph> (objets sélectionnés) ($[officename] Impress, $[officename] Draw)."
#: 00040501.xhp
msgctxt ""
@@ -10295,7 +10287,7 @@ msgctxt ""
"par_id3149896\n"
"help.text"
msgid "Choose <emph>Format - Align - Bottom</emph> ($[officename] Writer, $[officename] Calc)."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner - En bas</emph> ($[officename] Writer, $[officename] Calc)."
#: 00040501.xhp
msgctxt ""
@@ -10303,7 +10295,7 @@ msgctxt ""
"par_id3156049\n"
"help.text"
msgid "Choose <emph>Shape - Align - Bottom</emph> (objects selected) ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Aligner - En bas</emph> (objets sélectionnés) ($[officename] Draw)"
#: 00040501.xhp
msgctxt ""
@@ -10551,7 +10543,7 @@ msgctxt ""
"par_id3151293\n"
"help.text"
msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"linienstile\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet -</emph></caseinline></switchinline><emph>Ligne - Styles de ligne</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10559,7 +10551,7 @@ msgctxt ""
"par_id3149317\n"
"help.text"
msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"linienenden\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Ligne - Styles de flèche</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10567,7 +10559,7 @@ msgctxt ""
"par_id3156082\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Remplissage</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10599,7 +10591,7 @@ msgctxt ""
"par_id3154948\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
-msgstr ""
+msgstr "Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Remplissage - Remplissage</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10783,7 +10775,7 @@ msgctxt ""
"par_id3150011\n"
"help.text"
msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"schatte\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Remplissage - Ombre</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10791,7 +10783,7 @@ msgctxt ""
"par_id3147441\n"
"help.text"
msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"verlauf\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Remplissage - Dégradés</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10799,7 +10791,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"schraffur\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Remplissage - Hachures</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10807,7 +10799,7 @@ msgctxt ""
"par_id3145800\n"
"help.text"
msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"bitmap\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Remplissage - Bitmaps</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10815,7 +10807,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text - </emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline>.</variable>"
-msgstr ""
+msgstr "<variable id=\"formattext\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - Attributs de texte</emph></caseinline><caseinline select=\"CALC\"><emph>Objet - Texte</emph></caseinline><defaultinline><emph>Texte</emph></defaultinline></switchinline>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10823,7 +10815,7 @@ msgctxt ""
"par_id3152810\n"
"help.text"
msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes</emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"text\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - Attributs de texte</emph></caseinline><caseinline select=\"CALC\"><emph>Objet - Texte</emph></caseinline><defaultinline><emph>Texte</emph></defaultinline></switchinline><emph> - Texte</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10831,7 +10823,7 @@ msgctxt ""
"par_id3151060\n"
"help.text"
msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - Text Attributes </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - Text</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"laufext\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - Attributs de texte</emph></caseinline><caseinline select=\"CALC\"><emph>Objet - Texte</emph></caseinline><defaultinline><emph>Texte</emph></defaultinline></switchinline><emph> - Animation de texte</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10839,7 +10831,7 @@ msgctxt ""
"par_id3149911\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Position et taille</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10887,7 +10879,7 @@ msgctxt ""
"par_id3153099\n"
"help.text"
msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"position2\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Position et taille - Position et taille</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10895,7 +10887,7 @@ msgctxt ""
"par_id3152973\n"
"help.text"
msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Position et taille - Rotation</emph>."
#: 00040502.xhp
msgctxt ""
@@ -10919,7 +10911,7 @@ msgctxt ""
"par_id3145666\n"
"help.text"
msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"ecke\">Choisissez l'onglet <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Position et taille - Inclinaison & rayon d'angle</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10927,7 +10919,7 @@ msgctxt ""
"par_id3146081\n"
"help.text"
msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Text Box and Shape - </emph> </caseinline><caseinline select=\"CALC\"><emph>Object - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab. This is only available for textbox callouts, not for custom shapes callouts.</variable>"
-msgstr ""
+msgstr "<variable id=\"legende\">Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Zone de texte et forme - </emph></caseinline><caseinline select=\"CALC\"><emph>Objet - </emph></caseinline></switchinline><emph>Position et taille - Légende</emph>. Cette option n'est disponible que pour les légendes en zone de texte, pas pour les légendes en formes libres.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -10943,7 +10935,7 @@ msgctxt ""
"par_id3145642\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph>. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Ouvrez le menu contextuel. Choisissez <emph>Éditer des points</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Ouvrez le menu contextuel. Choisissez <emph>Éditer des points</emph>.</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11151,7 +11143,7 @@ msgctxt ""
"par_id3146978\n"
"help.text"
msgid "Choose <emph>Format - Align - Left</emph> (drawing functions)."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner - À gauche</emph> (fonctions de dessin)."
#: 00040502.xhp
msgctxt ""
@@ -11159,7 +11151,7 @@ msgctxt ""
"par_id3153009\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Left</emph>."
-msgstr ""
+msgstr "Ouvrez le menu contextuel - choisissez <emph>Aligner - À gauche</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11183,7 +11175,7 @@ msgctxt ""
"par_id3155823\n"
"help.text"
msgid "Choose <emph>Format - Align - Right</emph> (drawing functions)."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner - À droite</emph> (fonctions de dessin)."
#: 00040502.xhp
msgctxt ""
@@ -11191,7 +11183,7 @@ msgctxt ""
"par_id3155762\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Right</emph>."
-msgstr ""
+msgstr "Ouvrez le menu contextuel - choisissez <emph>Aligner - À droite</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11215,7 +11207,7 @@ msgctxt ""
"par_id3149189\n"
"help.text"
msgid "Choose <emph>Format - Align - Centered</emph> (drawing functions)."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner - Centré</emph> (fonctions de dessin)."
#: 00040502.xhp
msgctxt ""
@@ -11223,7 +11215,7 @@ msgctxt ""
"par_id3154624\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Center</emph>."
-msgstr ""
+msgstr "Ouvrez le menu contextuel - choisissez <emph>Aligner - Centrer</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11247,7 +11239,7 @@ msgctxt ""
"par_id3146151\n"
"help.text"
msgid "Choose <emph>Format - Align - Justified</emph> (drawing functions)."
-msgstr ""
+msgstr "Choisissez <emph>Format - Aligner - Justifié</emph> (fonctions de dessin)."
#: 00040502.xhp
msgctxt ""
@@ -11255,7 +11247,7 @@ msgctxt ""
"par_id3168612\n"
"help.text"
msgid "Open context menu - choose <emph>Align - Justified</emph>."
-msgstr ""
+msgstr "Ouvrez le menu contextuel - choisissez <emph>Aligner - Justifié</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11311,7 +11303,7 @@ msgctxt ""
"par_id3157980\n"
"help.text"
msgid "Choose <emph>Shape - Group - Group</emph> (drawing documents)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Grouper - Grouper </emph>(documents de dessin)."
#: 00040502.xhp
msgctxt ""
@@ -11351,7 +11343,7 @@ msgctxt ""
"par_id3163378\n"
"help.text"
msgid "Choose <emph>Shape - Group - Ungroup</emph> (drawing documents)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Grouper - Dégrouper </emph>(documents de dessin)."
#: 00040502.xhp
msgctxt ""
@@ -11391,7 +11383,7 @@ msgctxt ""
"par_id3145678\n"
"help.text"
msgid "Choose <emph>Shape - Group - Exit Group</emph> (drawing documents)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Grouper - Quitter le groupe </emph>(documents de dessin)."
#: 00040502.xhp
msgctxt ""
@@ -11431,7 +11423,7 @@ msgctxt ""
"par_id3145354\n"
"help.text"
msgid "Choose <emph>Shape - Group - Enter Group</emph> (drawing documents)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Grouper - Entrer dans le groupe</emph> (documents de dessin)."
#: 00040502.xhp
msgctxt ""
@@ -11479,7 +11471,7 @@ msgctxt ""
"par_id3147294\n"
"help.text"
msgid "Choose <emph>Format - Rows - Height</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Format - Ligne - Hauteur</emph>."
#: 00040503.xhp
msgctxt ""
@@ -11495,7 +11487,7 @@ msgctxt ""
"par_id3153136\n"
"help.text"
msgid "Choose <emph>Format - Columns - Width</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Format - Colonnes - Largeur</emph>."
#: 00040503.xhp
msgctxt ""
@@ -11591,7 +11583,7 @@ msgctxt ""
"par_id3150495\n"
"help.text"
msgid "Choose <emph>Shape - Flip</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Refléter</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -11615,7 +11607,7 @@ msgctxt ""
"par_id3150290\n"
"help.text"
msgid "Choose <emph>Shape - Flip - Vertically</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Refléter - Verticalement</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -11639,7 +11631,7 @@ msgctxt ""
"par_id3153369\n"
"help.text"
msgid "Choose <emph>Shape - Flip - Horizontally</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Refléter - Horizontalement</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -11671,7 +11663,7 @@ msgctxt ""
"par_id3147318\n"
"help.text"
msgid "Choose <emph>Shape - Distribution</emph> ($[officename] Draw)."
-msgstr ""
+msgstr "Choisissez <emph>Forme - Répartition</emph> ($[officename] Draw)."
#: 00040503.xhp
msgctxt ""
@@ -11967,7 +11959,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit Menu"
-msgstr ""
+msgstr "Menu Édition"
#: edit_menu.xhp
msgctxt ""
@@ -11975,7 +11967,7 @@ msgctxt ""
"hd_id3147273\n"
"help.text"
msgid "Edit Menu"
-msgstr ""
+msgstr "Menu Édition"
#: edit_menu.xhp
msgctxt ""
@@ -11983,7 +11975,7 @@ msgctxt ""
"par_id3085157\n"
"help.text"
msgid "Choose <emph>Edit - Undo</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Édition - Annuler</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -11991,7 +11983,7 @@ msgctxt ""
"par_id3145160\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
#: edit_menu.xhp
msgctxt ""
@@ -11999,7 +11991,7 @@ msgctxt ""
"par_id3154094\n"
"help.text"
msgid "On the <emph>Standard</emph> bar or <emph>Table Data</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Standard</emph> ou dans la barre <emph>Données de la table</emph>, cliquez sur"
#: edit_menu.xhp
msgctxt ""
@@ -12007,7 +11999,7 @@ msgctxt ""
"par_id3155449\n"
"help.text"
msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icône</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12015,7 +12007,7 @@ msgctxt ""
"par_id3148563\n"
"help.text"
msgid "Undo"
-msgstr ""
+msgstr "Annuler"
#: edit_menu.xhp
msgctxt ""
@@ -12023,7 +12015,7 @@ msgctxt ""
"par_id3145068\n"
"help.text"
msgid "Choose <emph>Edit - Redo</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Édition - Restaurer</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12031,7 +12023,7 @@ msgctxt ""
"par_id3153897\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Standard</emph>, cliquez sur"
#: edit_menu.xhp
msgctxt ""
@@ -12039,7 +12031,7 @@ msgctxt ""
"par_id3154938\n"
"help.text"
msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icône</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12047,7 +12039,7 @@ msgctxt ""
"par_id3151211\n"
"help.text"
msgid "Redo"
-msgstr ""
+msgstr "Rétablir"
#: edit_menu.xhp
msgctxt ""
@@ -12055,7 +12047,7 @@ msgctxt ""
"par_id3154365\n"
"help.text"
msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"letzter\">Choisissez <emph>Édition - Répéter</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12063,7 +12055,7 @@ msgctxt ""
"par_id3149765\n"
"help.text"
msgid "Choose <emph>Edit - Cut</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Édition - Couper</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12071,7 +12063,7 @@ msgctxt ""
"par_id3144762\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
#: edit_menu.xhp
msgctxt ""
@@ -12079,7 +12071,7 @@ msgctxt ""
"par_id3148744\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Standard</emph>, cliquez sur"
#: edit_menu.xhp
msgctxt ""
@@ -12087,7 +12079,7 @@ msgctxt ""
"par_id3145173\n"
"help.text"
msgid "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icône</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12095,7 +12087,7 @@ msgctxt ""
"par_id3154153\n"
"help.text"
msgid "Cut"
-msgstr ""
+msgstr "Couper"
#: edit_menu.xhp
msgctxt ""
@@ -12103,7 +12095,7 @@ msgctxt ""
"par_id3150742\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Édition - Copier</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12111,7 +12103,7 @@ msgctxt ""
"par_id3148923\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
#: edit_menu.xhp
msgctxt ""
@@ -12119,7 +12111,7 @@ msgctxt ""
"par_id3159254\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Standard</emph>, cliquez sur"
#: edit_menu.xhp
msgctxt ""
@@ -12127,7 +12119,7 @@ msgctxt ""
"par_id3154985\n"
"help.text"
msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12135,7 +12127,7 @@ msgctxt ""
"par_id3150685\n"
"help.text"
msgid "Copy"
-msgstr ""
+msgstr "Copier"
#: edit_menu.xhp
msgctxt ""
@@ -12143,7 +12135,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Édition - Coller</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12151,7 +12143,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
#: edit_menu.xhp
msgctxt ""
@@ -12159,7 +12151,7 @@ msgctxt ""
"par_id3159083\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Standard</emph>, cliquez sur"
#: edit_menu.xhp
msgctxt ""
@@ -12167,7 +12159,7 @@ msgctxt ""
"par_id3156106\n"
"help.text"
msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icône</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12175,7 +12167,7 @@ msgctxt ""
"par_id3154471\n"
"help.text"
msgid "Paste"
-msgstr ""
+msgstr "Coller"
#: edit_menu.xhp
msgctxt ""
@@ -12183,7 +12175,7 @@ msgctxt ""
"par_id3152791\n"
"help.text"
msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"inhalte\">Choisissez <emph>Édition - Collage spécial</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12191,7 +12183,7 @@ msgctxt ""
"par_id3148555\n"
"help.text"
msgid "Choose <emph>Edit - Select All</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Édition - Tout sélectionner</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12199,7 +12191,7 @@ msgctxt ""
"par_id3152417\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
#: edit_menu.xhp
msgctxt ""
@@ -12207,7 +12199,7 @@ msgctxt ""
"par_id3145748\n"
"help.text"
msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icône</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12215,7 +12207,7 @@ msgctxt ""
"par_id3153139\n"
"help.text"
msgid "Select All"
-msgstr ""
+msgstr "Tout sélectionner"
#: edit_menu.xhp
msgctxt ""
@@ -12223,7 +12215,7 @@ msgctxt ""
"par_id3145251\n"
"help.text"
msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Track Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"aenderungen\">Choisissez <emph>Édition - Suivi des modifications</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12231,7 +12223,7 @@ msgctxt ""
"par_id3153336\n"
"help.text"
msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Track Changes - Record</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"aufzeichnen\">Choisissez <emph>Édition - Suivi des modifications - Enregistrer</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12239,7 +12231,7 @@ msgctxt ""
"par_id3150594\n"
"help.text"
msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Track Changes - Show</emph>.</caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Track Changes - Show</emph>.</caseinline></switchinline></variable>"
-msgstr ""
+msgstr "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Sélectionnez <emph>Édition - Suivi des modifications - Afficher</emph>.</caseinline><caseinline select=\"CALC\">Sélectionnez <emph>Édition - Suivi des modifications - Afficher</emph>.</caseinline></switchinline></variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12247,7 +12239,7 @@ msgctxt ""
"par_id3153845\n"
"help.text"
msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Track Changes - Manage</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rotlinie\">Choisissez <emph>Édition - Suivi des modifications - Gérer</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12255,7 +12247,7 @@ msgctxt ""
"par_id3148587\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Édition - Suivi des modifications - Gérer - Liste</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12263,7 +12255,7 @@ msgctxt ""
"par_id3150396\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>. The <emph>AutoCorrect</emph> dialog appears.<br/>Click the <emph>Edit Changes</emph> button and navigate to the <emph>List</emph> tab."
-msgstr ""
+msgstr "Choisissez <emph>Outils - AutoCorrection - Appliquer</emph> et éditer les modifications. La boîte de dialogue <emph>AutoCorrection</emph> s'affiche.<br/>Cliquez sur le bouton <emph>Éditer les modifications</emph> et naviguez jusqu'à l'onglet <emph>Liste</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12271,7 +12263,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Track Changes - Manage - Filter</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"rotliniefilter\">Choisissez l'onglet <emph>Édition - Suivi des modifications - Gérer - Filtrer</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12279,7 +12271,7 @@ msgctxt ""
"par_id3151281\n"
"help.text"
msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Track Changes - Merge Document</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"einfuegen\">Choisissez <emph>Édition - Suivi des modifications - Fusionner le document</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12287,7 +12279,7 @@ msgctxt ""
"par_id3153224\n"
"help.text"
msgid "<variable id=\"dvergl\">Choose <emph>Edit - Track Changes - Compare Document</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"dvergl\">Choisissez <emph>Édition - Suivi des modifications - Comparer le document</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12295,7 +12287,7 @@ msgctxt ""
"par_id3148773\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Comment</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Édition - Suivi des modifications - Commenter</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12303,7 +12295,7 @@ msgctxt ""
"par_id3149488\n"
"help.text"
msgid "Choose <emph>Edit - Track Changes - Manage - List</emph> tab.<br/>Click an entry in the list and open the context menu.<br/>Choose <emph>Edit Comment</emph>."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Édition - Suivi des modifications - Gérer - Liste</emph>.<br/>Cliquez sur une entrée dans la liste et ouvrez le menu contextuel.<br/>Choisissez <emph>Éditer le commentaire</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12311,7 +12303,7 @@ msgctxt ""
"par_id31562971\n"
"help.text"
msgid "Choose <emph>Edit - Find</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Édition - Rechercher</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12319,7 +12311,7 @@ msgctxt ""
"par_id31545031\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F"
#: edit_menu.xhp
msgctxt ""
@@ -12327,7 +12319,7 @@ msgctxt ""
"par_id3156297\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Édition - Rechercher & Remplacer</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12335,7 +12327,7 @@ msgctxt ""
"par_id3154503\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
#: edit_menu.xhp
msgctxt ""
@@ -12343,7 +12335,7 @@ msgctxt ""
"par_id3155083\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Standard</emph>, cliquez sur"
#: edit_menu.xhp
msgctxt ""
@@ -12351,7 +12343,7 @@ msgctxt ""
"par_id3150020\n"
"help.text"
msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icône</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12359,7 +12351,7 @@ msgctxt ""
"par_id3144748\n"
"help.text"
msgid "Find & Replace"
-msgstr ""
+msgstr "Rechercher & remplacer"
#: edit_menu.xhp
msgctxt ""
@@ -12367,7 +12359,7 @@ msgctxt ""
"par_id3156357\n"
"help.text"
msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchenattribute\">Choisissez <emph>Édition - Rechercher & Remplacer - Attributs</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12375,7 +12367,7 @@ msgctxt ""
"par_id3153840\n"
"help.text"
msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchenformat\">Choisissez le menu puis le bouton <emph>Édition - Rechercher & Remplacer - Format</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12383,7 +12375,7 @@ msgctxt ""
"par_id3146971\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box, then click the <emph>Similarities</emph> button."
-msgstr ""
+msgstr "Choisissez le menu puis la case à cocher <emph>Édition - Rechercher & Remplacer - Recherche des similarités</emph> et cliquez sur le bouton <emph>Similarités</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12391,7 +12383,7 @@ msgctxt ""
"par_id3153709\n"
"help.text"
msgid "On the <emph>Table Data</emph> bar, click <emph>Find</emph> icon, then <emph>Similarity search</emph> check box,<br/>then click the <emph>Similarities</emph> button (database table view)."
-msgstr ""
+msgstr "Dans la barre <emph>Données de la table</emph>, cliquez sur l'icône <emph>Rechercher</emph>, activez la case à cocher <emph>Rechercher des similarités</emph><br/>et cliquez sur le bouton <emph>Similarités</emph> (vue de la table de base de données)."
#: edit_menu.xhp
msgctxt ""
@@ -12399,7 +12391,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "On the <emph>Form Design</emph> bar, click <emph>Record Search</emph> icon, then <emph>Similarity search</emph> check box,<br/>then click the <emph>Similarities</emph> button (form view)."
-msgstr ""
+msgstr "Dans la barre <emph>Conception de formulaire</emph>, cliquez sur <emph>Recherche d'enregistrement</emph>, activez la case à cocher <emph>Rechercher des similarités</emph><br/>et cliquez sur le bouton <emph>Similarités</emph> (vue de formulaire)."
#: edit_menu.xhp
msgctxt ""
@@ -12407,7 +12399,7 @@ msgctxt ""
"par_id3152960\n"
"help.text"
msgid "Choose <emph>View - Navigator</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Navigateur</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12415,7 +12407,7 @@ msgctxt ""
"par_id3163824\n"
"help.text"
msgid "On the <emph>Standard</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Standard</emph>, cliquez sur"
#: edit_menu.xhp
msgctxt ""
@@ -12423,7 +12415,7 @@ msgctxt ""
"par_id3159183\n"
"help.text"
msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icône</alt></image>"
#: edit_menu.xhp
msgctxt ""
@@ -12431,7 +12423,7 @@ msgctxt ""
"par_id3147359\n"
"help.text"
msgid "Navigator On/Off"
-msgstr ""
+msgstr "(Dés)activer le Navigateur"
#: edit_menu.xhp
msgctxt ""
@@ -12439,7 +12431,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"litdat\">Choisissez <emph>Outils - Base de données bibliographique</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12447,7 +12439,7 @@ msgctxt ""
"par_id3149281\n"
"help.text"
msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"link\">Choisissez <emph>Édition - Liens</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12455,7 +12447,7 @@ msgctxt ""
"par_id3159339\n"
"help.text"
msgid "<variable id=\"linkae\">Choose <emph>Edit - Links to External Files - Modify...</emph> (DDE links only).</variable>"
-msgstr ""
+msgstr "<variable id=\"linkae\">Choisissez <emph>Édition - Liens vers des fichiers externes - Modifier...</emph> (liens DDE uniquement). </variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12463,7 +12455,7 @@ msgctxt ""
"par_id3148927\n"
"help.text"
msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>."
-msgstr ""
+msgstr "Sélectionner un cadre, puis choisissez <emph>Édition - Objet - Propriétés</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12471,7 +12463,7 @@ msgctxt ""
"par_id3156315\n"
"help.text"
msgid "Open context menu of selected frame, choose <emph>Properties</emph>."
-msgstr ""
+msgstr "Ouvrez le menu contextuel du cadre sélectionné, choisissez <emph>Propriétés</emph>."
#: edit_menu.xhp
msgctxt ""
@@ -12479,7 +12471,7 @@ msgctxt ""
"par_id3156091\n"
"help.text"
msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw.</variable>"
-msgstr ""
+msgstr "<variable id=\"imagemap\">Choisissez <emph>Éditer - ImageMap</emph> dans Writer et Calc ou <emph>Outils - Imagemap</emph> dans Impress et Draw.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12487,7 +12479,7 @@ msgctxt ""
"par_id3155936\n"
"help.text"
msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw,<br/>then select a section of the ImageMap and click <emph>Properties - Description</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"imapeigbea\">Choisissez <emph>Éditer - ImageMap</emph> dans Writer et Calc ou <emph>Outils - ImageMap</emph> dans Impress et Draw, <br/>puis sélectionnez une section de l'ImageMap et cliquez sur <emph>Propriétés - Description</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12495,7 +12487,7 @@ msgctxt ""
"par_id3149259\n"
"help.text"
msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit1\">Choisissez <emph>Édition - Objet</emph>.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12503,7 +12495,7 @@ msgctxt ""
"par_id3154966\n"
"help.text"
msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit2\">Choisissez <emph>Édition - Objet - Éditer</emph>, ainsi que dans le menu contextuel de l'objet sélectionné.</variable>"
#: edit_menu.xhp
msgctxt ""
@@ -12511,7 +12503,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"edit3\">Choisissez <emph>Édition - Objet - Ouvrir</emph>.</variable>"
#: icon_alt.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/01.po b/source/fr/helpcontent2/source/text/shared/01.po
index 2d4e985ccd4..2a7cff7a054 100644
--- a/source/fr/helpcontent2/source/text/shared/01.po
+++ b/source/fr/helpcontent2/source/text/shared/01.po
@@ -3,9 +3,9 @@ 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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-02-24 20:45+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-29 14:39+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1551041147.000000\n"
+"X-POOTLE-MTIME: 1559140793.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -1703,7 +1703,7 @@ msgctxt ""
"bm_id3145211\n"
"help.text"
msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; changed message</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Répertoire;créer un nouveau</bookmark_value><bookmark_value>Création de dossier</bookmark_value><bookmark_value>Dossier Mes documents;ouverture</bookmark_value><bookmark_value>Documents multiples;ouverture</bookmark_value><bookmark_value>Ouverture;plusieurs fichiers</bookmark_value><bookmark_value>Sélection;plusieurs fichiers</bookmark_value><bookmark_value>Ouverture;fichiers,avec substituants</bookmark_value><bookmark_value>Substituants;à l'ouverture de fichiers</bookmark_value><bookmark_value>Documents;ouverture avec modèles</bookmark_value><bookmark_value>Modèles;ouverture de documents avec</bookmark_value><bookmark_value>Documents;styles modifiés</bookmark_value><bookmark_value>Styles;message modifié</bookmark_value>"
#: 01020000.xhp
msgctxt ""
@@ -1727,7 +1727,7 @@ msgctxt ""
"par_id931547247005236\n"
"help.text"
msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the <menuitem>Open</menuitem> command."
-msgstr ""
+msgstr "%PRODUCTNAME utiliser la boîte de dialogue de sélecteur de fichiers native du gestionnaire de fenêtre du système d'exploitation pour la commande <menuitem>Ouvrir</menuitem>."
#: 01020000.xhp
msgctxt ""
@@ -1767,7 +1767,7 @@ msgctxt ""
"par_id341547247820173\n"
"help.text"
msgid "Modern system file dialogs present many features for file handling. Most allows you to rename, delete, create files, sort list of files, display files and folders in icons, tree or list views, traverse the file system folder tree and much more. Use the mouse right button to get a list of commands on the selected files in the display area."
-msgstr ""
+msgstr "Les dialogues de fichiers système modernes présentent de nombreuses fonctionnalités pour la gestion des fichiers. La plupart permettent de renommer, supprimer, créer des fichiers, trier une liste de fichiers, afficher des fichiers et des dossiers dans des icônes, des vues d'arborescence ou de liste, parcourir l'arborescence de dossiers du système de fichiers et bien plus encore. Utilisez le bouton droit de la souris pour obtenir une liste de commandes sur les fichiers sélectionnés dans la zone d’affichage."
#: 01020000.xhp
msgctxt ""
@@ -1807,7 +1807,7 @@ msgctxt ""
"par_id3161656\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Enter a file name or a path for the file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/file_name\">Saisissez un nom de fichier ou un chemin vers le fichier.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1815,7 +1815,7 @@ msgctxt ""
"par_id61547286521877\n"
"help.text"
msgid "The following features are available in the dialog:"
-msgstr ""
+msgstr "Les fonctionnalités suivantes sont disponibles dans la boîte de dialogue :"
#: 01020000.xhp
msgctxt ""
@@ -1927,7 +1927,7 @@ msgctxt ""
"par_id3145367\n"
"help.text"
msgid "%PRODUCTNAME recognizes templates that are located in any folder from the following list:"
-msgstr ""
+msgstr "%PRODUCTNAME reconnaît les modèles qui sont situés dans n'importe quel dossier de la liste suivante :"
#: 01020000.xhp
msgctxt ""
@@ -1943,7 +1943,7 @@ msgctxt ""
"par_id3144442\n"
"help.text"
msgid "- the <emph>user template</emph> folder,<switchinline select=\"sys\"><caseinline select=\"UNIX\">- the <emph>home directory</emph> folder,</caseinline><defaultinline> - the <emph>Documents and Settings</emph> folder</defaultinline></switchinline>"
-msgstr ""
+msgstr "- le dossier <emph>modèle utilisateur</emph>, <switchinline select=\"sys\"><caseinline select=\"UNIX\"> - le <emph>répertoire personnel</emph>, </caseinline><defaultinline>- le dossier <emph>Documents et paramètres</emph></defaultinline></switchinline>"
#: 01020000.xhp
msgctxt ""
@@ -2079,7 +2079,7 @@ msgctxt ""
"par_id431513629862558\n"
"help.text"
msgid "Long-click on the <emph>Open</emph> icon and select <emph>Open Remote File...</emph> ."
-msgstr ""
+msgstr "Faites un clic long sur l'icône <emph>Ouvrir</emph> et sélectionnez <emph>Ouvrir un fichier distant...</emph>."
#: 01020001.xhp
msgctxt ""
@@ -2383,7 +2383,7 @@ msgctxt ""
"par_id431513629862558\n"
"help.text"
msgid "Long-click on the <emph>Save</emph> icon and select <emph>Save Remote File...</emph> ."
-msgstr ""
+msgstr "Faites un clic long sur l'icône <emph>Enregistrer</emph> et sélectionnez <emph>Enregistrer le fichier distant...</emph>"
#: 01060001.xhp
msgctxt ""
@@ -2511,7 +2511,7 @@ msgctxt ""
"par_id251543697768103\n"
"help.text"
msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the <menuitem>Save as</menuitem> command."
-msgstr ""
+msgstr "%PRODUCTNAME utiliser la boîte de dialogue de sélecteur de fichiers native du gestionnaire de fenêtre du système d'exploitation pour la commande <menuitem>Enregistrer comme</menuitem>."
#: 01070000.xhp
msgctxt ""
@@ -2607,7 +2607,7 @@ msgctxt ""
"hd_id41543592332834\n"
"help.text"
msgid "Encrypt with GPG key"
-msgstr ""
+msgstr "Chiffrer avec une clé GPG"
#: 01070000.xhp
msgctxt ""
@@ -2615,7 +2615,7 @@ msgctxt ""
"par_id71543592343227\n"
"help.text"
msgid "Use OpenPGP public keys to encrypt documents."
-msgstr ""
+msgstr "Utiliser des clés publiques OpenPGP pour chiffrer des documents."
#: 01070000.xhp
msgctxt ""
@@ -6252,6 +6252,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
@@ -8975,7 +8999,7 @@ msgctxt ""
"par_id3149511\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/insertfloatingframe/edname\">Enter a name for the floating frame. The name <emph>cannot</emph> contain spaces, special characters, or begin with an underscore (<emph>_</emph>).</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/insertfloatingframe/edname\">Saisissez un nom pour le cadre flottant. Ce nom ne doit <emph>pas</emph> comporter d'espace ou de caractères spéciaux ni commencer par le caractère souligné (<emph> _ </emph>).</ahelp>"
#: 02210101.xhp
msgctxt ""
@@ -8999,7 +9023,7 @@ msgctxt ""
"par_id3147399\n"
"help.text"
msgid "https://www.example.com"
-msgstr ""
+msgstr "https://www.exemple.com"
#: 02210101.xhp
msgctxt ""
@@ -9007,7 +9031,7 @@ msgctxt ""
"par_id3153683\n"
"help.text"
msgid "file:///C:/Documents/Readme.txt"
-msgstr ""
+msgstr "file:///C:/Documents/Readme.txt"
#: 02210101.xhp
msgctxt ""
@@ -9743,7 +9767,7 @@ msgctxt ""
"par_id3157969\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/imapdialog/url\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to an anchor within the document, the address should be of the form \"file:///C:/Documents/document_name#anchor_name\"."
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/imapdialog/url\">Saisissez l'URL du fichier à ouvrir lorsque vous cliquez sur le point actif sélectionné.</ahelp> Pour que vous puissiez accéder directement à une ancre dans le document, l'adresse doit se présenter sous la forme \"file:///C:/Documents/nom_document#nom_ancre\"."
#: 02220000.xhp
msgctxt ""
@@ -9871,7 +9895,7 @@ msgctxt ""
"par_id3155831\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/cuiimapdlg/urlentry\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to a named anchor within the current document, the address should be of the form \"file:///C:/Documents/[current_document_name]#anchor_name\"."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/cuiimapdlg/urlentry\">Insérez dans cette zone de texte l'URL à charger au moment où un clic sera effectué sur cette zone.</ahelp> Si vous souhaitez accéder à une ancre nommée dans le document actif, l'adresse doit être de la forme “file:///C:/Documents/[nom_document_actuel]#nom_ancre”."
#: 02220100.xhp
msgctxt ""
@@ -13127,7 +13151,7 @@ msgctxt ""
"par_id3150037\n"
"help.text"
msgid "The text color is ignored when printing, if the <emph>Print text in black</emph> check box is selected in <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME Writer - Print</emph></link> in the <emph>Options</emph> dialog box."
-msgstr ""
+msgstr "La couleur du texte est ignorée à l'impression si la case à cocher <emph>Imprimer le texte en noir</emph> est sélectionnée dans <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Imprimer\"><emph>%PRODUCTNAME Writer - Imprimer</emph></link> dans la boîte de dialogue <emph>Options</emph>."
#: 05020200.xhp
msgctxt ""
@@ -26591,7 +26615,7 @@ msgctxt ""
"par_id3157991\n"
"help.text"
msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>, and then click the object."
-msgstr ""
+msgstr "Pour sélectionner un objet particulier dans un groupe, maintenez la touche <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Commande</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> enfoncée et cliquez sur l'objet."
#: 05290300.xhp
msgctxt ""
@@ -34015,7 +34039,7 @@ msgctxt ""
"par_id381543352048115\n"
"help.text"
msgid "Python"
-msgstr ""
+msgstr "Python"
#: 06130000.xhp
msgctxt ""
@@ -34023,7 +34047,7 @@ msgctxt ""
"par_idN109as\n"
"help.text"
msgid "Macros"
-msgstr ""
+msgstr "Macros"
#: 06130000.xhp
msgctxt ""
@@ -34031,7 +34055,7 @@ msgctxt ""
"par_idN134C2\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Select a macro or script from \"user\", \"share\", or an open document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/ScriptOrganizerDialog\">Sélectionnez une macro ou un script à partir de \"user\", \"share\", ou un document ouvert.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -34039,7 +34063,7 @@ msgctxt ""
"par_id641543351777423\n"
"help.text"
msgid "Run"
-msgstr ""
+msgstr "Exécuter"
#: 06130000.xhp
msgctxt ""
@@ -34047,7 +34071,7 @@ msgctxt ""
"par_id31543351781865\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/scriptorganizer/run\">To run a script, select a script in the list, and then click Run.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/scriptorganizer/run\">Pour exécuter un script, sélectionnez un script dans la liste, puis cliquez sur Exécuter.</ahelp>"
#: 06130001.xhp
msgctxt ""
@@ -38607,7 +38631,7 @@ msgctxt ""
"par_id611534528851319\n"
"help.text"
msgid "Select the image, open the context menu and choose <item type=\"menuitem\">Compress...</item>"
-msgstr ""
+msgstr "Sélectionnez l'image, ouvrez le menu contextuel et choisissez <item type=\"menuitem\">Compresser...</item>"
#: image_compression.xhp
msgctxt ""
@@ -38631,7 +38655,7 @@ msgctxt ""
"par_id81534716413899\n"
"help.text"
msgid "Use the slider to adjust the level of quality of the JPEG compression, from 0 to 100. A value of 100 means no quality loss and a value of 0 may result in a very poor image. The default value of 90 produces very good results and significant image data size reduction."
-msgstr ""
+msgstr "Utilisez le curseur pour ajuster le niveau de qualité de la compression JPEG, de 1 à 100. Une valeur de 100 signifie aucune perte de qualité et une valeur de 0 résultera en une image de qualité très mauvaise. La valeur par défaut de 90 produit de très bons résultats et une réduction de la taille des données de l'image significative."
#: image_compression.xhp
msgctxt ""
@@ -39311,7 +39335,7 @@ msgctxt ""
"par_id190920161744067918\n"
"help.text"
msgid "The notebook bar is available in Writer, Calc and Impress. The user interface has now several available layouts. To change the layout, choose <item type=\"menuitem\">View - User Interface</item> and from the submenu select the layout which you want."
-msgstr ""
+msgstr "La métabarre est disponible dans Writer, Calc et Impress. L'interface utilisateur a maintenant plusieurs présentations disponibles. Pour modifier la présentation, choisissez <item type=\"menuitem\">Affichage - Interface utilisateur</item> et dans le sous menu sélectionnez la présentation que vous souhaitez. "
#: notebook_bar.xhp
msgctxt ""
@@ -39319,7 +39343,7 @@ msgctxt ""
"par_id190920161744066306\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">View - User Interface</item>"
-msgstr ""
+msgstr "Choisir <item type=\"menuitem\">Affichage - Interface utilisateur</item>"
#: notebook_bar.xhp
msgctxt ""
@@ -39335,7 +39359,7 @@ msgctxt ""
"par_id190920161744068946\n"
"help.text"
msgid "The <emph>User Interface</emph> entry defines which user interface elements are visible. The following three layouts are not of notebook bar type:"
-msgstr ""
+msgstr "L'entrée <emph>interface utilisateur</emph> définit quelles éléments de l'interface utilisateur sont visibles. Les trois présentations suivantes ne sont pas du type métabarre :"
#: notebook_bar.xhp
msgctxt ""
@@ -39343,7 +39367,7 @@ msgctxt ""
"par_id190920161744068819\n"
"help.text"
msgid "<emph>Standard toolbar</emph> – classic mode with two visible toolbars – standard and formatting. The sidebar is partially collapsed and shows only tabs."
-msgstr ""
+msgstr "<emph>Barre d'outils standard</emph> – mode classique avec deux barres d'outils visibles – standard et formatage. Le volet latéral est partiellement replié et ne montre que les icônes des panneaux."
#: notebook_bar.xhp
msgctxt ""
@@ -39367,7 +39391,7 @@ msgctxt ""
"par_id190920161744063797\n"
"help.text"
msgid "When user activates additional toolbars, they will be saved in the user profile. Therefore, on returning from the notebook bar mode, all toolbars set visible before will show again."
-msgstr ""
+msgstr "Quand l'utilisateur active des barres d'outils additionnelles, elles sont enregistrées dans le profil utilisateur. Par conséquent en revenant au mode métabarre, toutes les barres d'outils précédemment visibles seront affichées à nouveau."
#: notebook_bar.xhp
msgctxt ""
@@ -39383,7 +39407,7 @@ msgctxt ""
"par_id190920161744063875\n"
"help.text"
msgid "In a notebook bar mode, all toolbar and sidebar are hidden and the notebook bar is placed on the top."
-msgstr ""
+msgstr "Dans le mode métabarre, toutes les barres d'outils et volets latéraux sont masqués et la métabarre est placée en haut."
#: notebook_bar.xhp
msgctxt ""
@@ -39399,7 +39423,7 @@ msgctxt ""
"par_id190920161744064039\n"
"help.text"
msgid "In the tabbed mode the menu bar is hidden by default. To display the menu bar, select the <emph>Menubar</emph> icon at the top-left position of the window."
-msgstr ""
+msgstr "Dans le mode en onglets, la barre de menu est masquée par défaut. Pour afficher la barre de menu, sélectionnez l'icône <emph>Barre de menu</emph> en haut à gauche de la fenêtre."
#: notebook_bar.xhp
msgctxt ""
@@ -39407,7 +39431,7 @@ msgctxt ""
"par_id190920161744067802\n"
"help.text"
msgid "<emph>Contextual groups</emph> – The notebook bar is divided into 4 groups. The File, Clipboard and Text groups are fixed. The Insert group contents are replaced with commands that depends on the nature of the selected object in the document, as for a table, an image or an OLE object."
-msgstr ""
+msgstr "<emph>Contextuel groupé</emph> – La métabarre est divisée en 4 groupes. Les groupes Fichier, Presse-papier et Texte sont fixes. Le contenu du groupe Insérer est remplacé par des commandes dépendant de la nature de l'objet sélectionné dans le document, comme un tableau, une image ou un objet OLE."
#: notebook_bar.xhp
msgctxt ""
@@ -39415,7 +39439,7 @@ msgctxt ""
"par_id190920161744063712\n"
"help.text"
msgid "<emph>Contextual single</emph> – Displays a single centered toolbar with context-dependent contents."
-msgstr ""
+msgstr "<emph>Contextuelle unique</emph> – Affiche une barre d'outils unique centrée avec un contenu dépendant du contexte."
#: notebook_bar.xhp
msgctxt ""
@@ -39423,7 +39447,7 @@ msgctxt ""
"par_id190920161744063446\n"
"help.text"
msgid "<emph>Groupedbar</emph> – The bar is divided into groups that contain commands organized as icon sets and menus."
-msgstr ""
+msgstr "<emph>Barre groupée</emph> - La barre est divisée en groupes qui contiennent des commandes organisées en jeux d'icônes et menus"
#: notebook_bar.xhp
msgctxt ""
@@ -39431,7 +39455,7 @@ msgctxt ""
"par_id190920161744074224\n"
"help.text"
msgid "The Tabbed and Groupedbar modes are also available as compact variants."
-msgstr ""
+msgstr "Les modes barres onglet et groupée sont également disponibles sous forme de variantes compactes."
#: notebook_bar.xhp
msgctxt ""
@@ -39439,7 +39463,7 @@ msgctxt ""
"par_id190920161744076273\n"
"help.text"
msgid "The notebook bar icon size is adjustable in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - View - Notebookbar icon size</item> listbox."
-msgstr ""
+msgstr "La taille des icônes de la métabarre est réglable dans la zone de liste <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Préférences</item></caseinline><defaultinline><item type=\"menuitem\">Outils - Options</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - Affichage - Taille d'icônes de la métabarre</item>."
#: notebook_bar.xhp
msgctxt ""
@@ -40575,7 +40599,7 @@ msgctxt ""
"bm_id3149955\n"
"help.text"
msgid "<bookmark_value>embedding fonts in document file</bookmark_value> <bookmark_value>documents; embedding fonts</bookmark_value> <bookmark_value>font embedding; in documents</bookmark_value> <bookmark_value>fonts; embedding</bookmark_value> <bookmark_value>embedding; fonts</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Incorporer les polices dans le fichier du document</bookmark_value><bookmark_value>Documents;incorporer les polices</bookmark_value><bookmark_value>Intégration de police;dans les documents</bookmark_value><bookmark_value>Polices;Intégration</bookmark_value><bookmark_value>Intégration;polices</bookmark_value>"
#: prop_font_embed.xhp
msgctxt ""
@@ -40591,7 +40615,7 @@ msgctxt ""
"par_id3154863\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Embed document fonts in the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"sfx/ui/documentfontspage/DocumentFontsPage\">Incorporer les polices du document dans le fichier courant.</ahelp>"
#: prop_font_embed.xhp
msgctxt ""
@@ -40759,7 +40783,7 @@ msgctxt ""
"par_id3154233\n"
"help.text"
msgid "Enter the full path of the custom cover image file. If the entry is empty, the exporter takes the cover image in the media directory (see below) when the name is one of the following: <item type=\"literal\">cover.gif</item>, <item type=\"literal\">cover.jpg</item>, <item type=\"literal\">cover.png</item> or <item type=\"literal\">cover.svg</item>."
-msgstr ""
+msgstr "Saisissez le chemin complet du fichier d'image de couverture personnalisée. Si la saisie est vide, l'export prend l'image de couverture dans le répertoire du média (voir ci-dessous) lorsque le nom est l'un des suivants : <item type=\"literal\">couverture.gig</item>, <item type=\"literal\">couverture.jpg</item>, <item type=\"literal\">couverture.png</item> ou <item type=\"literal\">couverture.svg</item>."
#: ref_epub_export.xhp
msgctxt ""
@@ -41207,7 +41231,7 @@ msgctxt ""
"par_idN107BE\n"
"help.text"
msgid "Comments as PDF annotations"
-msgstr ""
+msgstr "Commentaires en tant qu'annotations PDF"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41215,7 +41239,7 @@ msgctxt ""
"par_idN107C2\n"
"help.text"
msgid "<ahelp hid=\".\">Select to export comments of Writer and Calc documents as PDF annotations.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sélectionner pour exporter les commentaires des documents Writer et Calc comme annotations PDF.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/02.po b/source/fr/helpcontent2/source/text/shared/02.po
index ab96f2b132e..a8432d9e109 100644
--- a/source/fr/helpcontent2/source/text/shared/02.po
+++ b/source/fr/helpcontent2/source/text/shared/02.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-12-17 18:50+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-31 12:30+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1545072645.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559305809.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_idN11505\n"
"help.text"
msgid "<ahelp hid=\".\">Displays text on more than one line.</ahelp> Allows you to use line breaks in a text box, so that you can enter more than one line of text. To manually enter a line break, press <emph>Enter</emph>."
-msgstr ""
+msgstr "<ahelp hid=\".\">Affiche le texte sur plusieurs lignes.</ahelp> Permet d'utiliser des retours à la ligne dans une zone de texte, afin de saisir plusieurs lignes de texte. Pour insérer un retour à la ligne manuel, appuyez sur la touche <emph>Entrée</emph>."
#: 01170101.xhp
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"par_idN1154E\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies if a Push button behaves as a Toggle Button. If you set <emph>Toggle</emph> to \"Yes\", you can switch between the \"selected\" and \"not selected\" control states when you click the button or press the <emph>Spacebar</emph> while the control has the focus. A button in the \"selected\" state appears \"pressed in\".</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Spécifie si un bouton se comporte comme un bouton à bascule. Si le <emph>bouton à bascule</emph> est défini sur Oui, vous pouvez passer de l'état Sélectionné à l'état Non sélectionné lorsque vous cliquez sur ce bouton ou appuyer sur la <emph>barre d'espace</emph> pendant que le focus porte sur le contrôle. Un bouton \"sélectionné\" apparaît \"enfoncé\".</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -3822,7 +3822,7 @@ msgctxt ""
"par_idN1156E\n"
"help.text"
msgid "<ahelp hid=\".\">If you set this option to \"Yes\", the <emph>Push</emph> button receives the focus when you click the button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Si cette option est définie sur Oui, le focus portera sur le <emph>bouton</emph> lorsque vous cliquerez dessus.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Spécifie si une sélection de texte sur un contrôle reste sélectionnée lorsque le focus ne porte plus sur un contrôle.</ahelp> Si vous définissez l'option <emph>Masquer la sélection</emph> sur Non, le texte sélectionné restera sélectionné même lorsque le focus ne portera plus sur le contrôle contenant du texte."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Spécifie si une sélection de texte sur un contrôle reste sélectionnée lorsque le focus ne porte plus sur un contrôle.</ahelp> Si vous définissez l'option <emph>Masquer la sélection</emph> sur \"Non\", le texte sélectionné restera sélectionné même lorsque le focus ne portera plus sur le contrôle contenant du texte."
#: 01170101.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"par_idN115CE\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_BORDERCOLOR\">Specifies the border color for controls that have the \"Border\" property set to \"flat\".</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_BORDERCOLOR\">Spécifie la couleur de la bordure des contrôles dont les propriétés de \"bordure\" ont été définies sur \"sans relief\".</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -3966,7 +3966,7 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_NAME\" visibility=\"hidden\">On the <emph>Properties</emph> tab page, this option specifies the name for the control field. On the <emph>Form Properties</emph> tab page, this option specifies the name for the form.</ahelp> Each control field and each form has a \"Name\" property through which it can be identified. The name will appear in the <link href=\"text/shared/02/01170600.xhp\" name=\"Form Navigator\"><emph>Form Navigator</emph></link> and, using the name, the control field can be referred to from a macro. The default settings already specify a name which is constructed from using the field's label and number."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_NAME\" visibility=\"hidden\">Dans l'onglet <emph>Propriétés</emph>, indiquez le nom du champ de contrôle. Dans l'onglet <emph>Propriétés du formulaire</emph>, indiquez le nom du formulaire.</ahelp> Les champs de contrôle et les formulaires ont tous une propriété \"Nom\" permettant leur identification. Le nom s'affiche dans le <link href=\"text/shared/02/01170600.xhp\" name=\"Navigateur de formulaire\"><emph>Navigateur de formulaire</emph></link> et permet de faire référence au champ de contrôle dans une macro. Un nom est déjà défini dans les paramètres par défaut. Le champ de contrôle est défini par son nom, composé à partir de son étiquette et de son numéro."
#: 01170101.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"bm_id3146325\n"
"help.text"
msgid "<bookmark_value>controls; grouping</bookmark_value><bookmark_value>groups; of controls</bookmark_value><bookmark_value>forms; grouping controls</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Contrôles;groupement</bookmark_value><bookmark_value>Groupes;de contrôles</bookmark_value><bookmark_value>Formulaires;groupement des contrôles</bookmark_value>"
#: 01170101.xhp
msgctxt ""
@@ -3990,7 +3990,7 @@ msgctxt ""
"par_id3146325\n"
"help.text"
msgid "The name is also used to group different controls that belong together functionally, such as radio buttons. To do so, give the same name to all members of the group: controls with identical names form a group. Grouped controls can be represented visually by using a <link href=\"text/shared/02/01170000.xhp\" name=\"Group Box\"><emph>Group Box</emph></link>."
-msgstr ""
+msgstr "Le nom permet également de regrouper différents champs de contrôle assurant la même fonction, comme les boutons radio. Pour ce faire, donnez le même nom à tous les éléments du groupe : les champs de contrôle portant le même nom constituent un groupe. Les champs de contrôle regroupés peuvent être représentés visuellement à l'aide d'une <link href=\"text/shared/02/01170000.xhp\" name=\"zone de groupe\"><emph>zone de groupe</emph></link>."
#: 01170101.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"par_id3149918\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_NAVIGATIONBAR\" visibility=\"hidden\">Specifies whether to display the <emph>Navigation</emph> bar on the lower border of the table control.</ahelp> Specifies whether to display the <emph>Navigation</emph> bar on the lower border of table controls."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_NAVIGATIONBAR\" visibility=\"hidden\">Indique si la barre <emph>Navigation</emph> doit être affichée sur la bordure inférieure des contrôles de table.</ahelp> Indique si la barre <emph>Navigation</emph> doit être affichée sur la bordure inférieure des contrôles de table."
#: 01170101.xhp
msgctxt ""
@@ -4022,7 +4022,7 @@ msgctxt ""
"par_id3153215\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_READONLY\" visibility=\"hidden\">Determines if the control is read-only (\"Yes\") or if it can be edited (\"No\").</ahelp> The \"Read-only\" property can be assigned to all controls in which the user can enter text. If you assign the read-only property to an image field which uses graphics from a database, the user will not be able to insert new graphics into the database."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_READONLY\" visibility=\"hidden\">Détermine si le champ de contrôle est en lecture seule (\"Oui\") ou s'il peut être édité (\"Non\").</ahelp> La propriété \"En lecture seule\" peut être assignée à tous les contrôles dans lesquels l'utilisateur peut saisir du texte. Si vous assignez la propriété de lecture seule à un champ d'image reprenant des images d'une base de données, l'utilisateur ne pourra pas insérer de nouvelle image dans la base de données."
#: 01170101.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id3145637\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_BORDER\" visibility=\"hidden\">Determines if the field's border should be displayed \"Without frame\", with a \"3-D look\" or \"Flat\".</ahelp> With control fields that have a frame, you can determine the border display on the form using the \"Border\" property. You can select among the \"Without frame\", \"3-D look\" or \"Flat\" options."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_BORDER\" visibility=\"hidden\">Détermine si la bordure du champ doit être affichée \"Sans cadre\", avec un effet \"3D\" ou \"Plat\".</ahelp> Les champs de contrôle dotés d'un cadre vous permettent de déterminer l'affichage de la bordure sur le formulaire à l'aide de la propriété \"Bordure\". Vous pouvez sélectionner les options \"Sans cadre\", \"3D\" ou \"Plat\"."
#: 01170101.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"par_id3147483\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_TABINDEX\">The \"Tab order\" property determines the order in which the controls are focused in the form when you press the <emph>Tab</emph> key.</ahelp> In a form that contains more than one control, the focus moves to the next control when you press the <emph>Tab</emph> key. You can specify the order in which the focus changes with an index under \"Tab order\"."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_TABINDEX\">La fonction \"Séquence d'activation\" détermine l'ordre dans lequel les contrôles doivent être activés dans le formulaire lorsque vous appuyez sur la touche <emph>Tabulation</emph>.</ahelp> Si le formulaire contient plusieurs contrôles, l'activation se déplace vers le contrôle suivant lorsque vous appuyez sur la touche <emph>Tabulation</emph>. Vous pouvez spécifier l'ordre de modification de l'activation, grâce à l'index accessible depuis \"Séquence d'activation\"."
#: 01170101.xhp
msgctxt ""
@@ -4062,7 +4062,7 @@ msgctxt ""
"par_id3156207\n"
"help.text"
msgid "The \"Tab order\" property is <emph>not</emph> available to <link href=\"text/shared/02/01170600.xhp\" name=\"Hidden Controls\"><emph>Hidden Controls</emph></link>. If you want, you can also set this property for image buttons and image controls, so that you can select these controls with the <emph>Tab</emph> key."
-msgstr ""
+msgstr "La propriété \"Séquence d'activation\" <emph>n'est pas</emph> disponible pour les <link href=\"text/shared/02/01170600.xhp\" name=\"contrôles masqués\"><emph>contrôles masqués</emph></link>. Si vous le souhaitez, vous pouvez également définir cette propriété pour les boutons et les contrôles picto, de façon à ce que vous puissiez sélectionner ces contrôles avec la touche <emph>Tabulation</emph>."
#: 01170101.xhp
msgctxt ""
@@ -4070,7 +4070,7 @@ msgctxt ""
"par_id3150378\n"
"help.text"
msgid "When creating a form, an index is automatically assigned to the control fields that are added to this form; every control field added is assigned an index increased by <emph>1</emph>. If you change the index of a control, the indices of the other controls are updated automatically. Elements that cannot be focused (\"Tabstop = No\") are also assigned a value. However, these controls are skipped when using the <emph>Tab</emph> key."
-msgstr ""
+msgstr "Les champs de contrôle ajoutés à un formulaire lors de sa création se voient automatiquement attribuer un index. Ainsi, à chaque nouvelle insertion, l'index augmente de <emph>un</emph>. Si vous modifiez l'index d'un contrôle, les index des autres contrôles sont automatiquement actualisés. Les éléments ne pouvant pas être activés (\"Tabstop = Non\") reçoivent également une valeur d'index. Cependant, ces contrôles seront sautés lors de l'utilisation de la touche <emph>Tabulation</emph>."
#: 01170101.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_id0509200912114566\n"
"help.text"
msgid "<ahelp hid=\".\">Sets whether the value changes when the user scrolls a mouse wheel. <emph>Never:</emph> No change of the value. When <emph>focused:</emph> (default) The value changes when the control has the focus and the wheel is pointing at the control and gets scrolled. <emph>Always:</emph> The value changes when the wheel is pointing at the control and gets scrolled, no matter which control has the focus.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Définit si la valeur est modifiée lorsque l'utilisateur fait défiler avec la molette de la souris. <emph>Jamais</emph> : pas de modification de la valeur. Lors de la réception du <emph>focus</emph> (par défaut) : la valeur est modifiée lorsque le contrôle reçoit le focus et que la molette de la souris pointe le contrôle et défile. <emph>Toujours</emph> : la valeur est modifiée lorsque la molette de la souris pointe le contrôle et défile, peu importe le contrôle ayant le focus.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -4126,7 +4126,7 @@ msgctxt ""
"par_id3156266\n"
"help.text"
msgid "For grouped option fields, the status of the group corresponding to the default setting is defined by the \"Default Status\" property."
-msgstr ""
+msgstr "Pour les champs d'option groupés, le statut du groupe correspondant au paramètre par défaut est défini par la propriété \"Statut par défaut\"."
#: 01170101.xhp
msgctxt ""
@@ -4150,7 +4150,7 @@ msgctxt ""
"par_id3150028\n"
"help.text"
msgid "For a <emph>Reset</emph> type button, the <emph>Default selection</emph> entry defines the status of the list box if the reset button is activated by the user."
-msgstr ""
+msgstr "Pour un bouton de type <emph>Rétablir</emph>, l'entrée <emph>Valeur par défaut</emph> définit l'état applicable à la zone de groupe lorsque ce bouton est activé par l'utilisateur."
#: 01170101.xhp
msgctxt ""
@@ -4158,7 +4158,7 @@ msgctxt ""
"par_id919217\n"
"help.text"
msgid "For a <emph>List box</emph> that contains a value list, you can click the <emph>...</emph> button to open the <emph>Default selection</emph> dialog."
-msgstr ""
+msgstr "Dans une <emph>zone de liste</emph> contenant des listes de valeurs, vous pouvez cliquez sur le bouton <emph>...</emph> pour ouvrir la boîte de dialogue <emph>Sélection par défaut</emph>."
#: 01170101.xhp
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"par_id3150740\n"
"help.text"
msgid "For a <emph>Reset</emph> type button, the <emph>Default value</emph> entry defines the status of the control if the reset button is activated by the user."
-msgstr ""
+msgstr "Pour un bouton de type <emph>Rétablir</emph>, l'entrée <emph>Valeur par défaut</emph> définit l'état applicable à l'élément de contrôle lorsque ce bouton est activé par l'utilisateur."
#: 01170101.xhp
msgctxt ""
@@ -4254,7 +4254,7 @@ msgctxt ""
"par_idN11B55\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the value to add or subtract when the user clicks the <emph>Arrow</emph> icon on the scrollbar.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Spécifie la valeur à ajouter ou à soustraire lorsque l'utilisateur clique sur l'icône en forme de <emph>flèche</emph> sur la barre de défilement.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"par_id3154681\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_DEFAULT_BUTTON\" visibility=\"hidden\">The \"Default button\" property specifies that the corresponding button will be operated when you press the <emph>Return</emph> key.</ahelp> The \"Default button\" property specifies that the corresponding button will be operated when you press the <emph>Return</emph> key. If you open the dialog or form and do not carry out any further action, the button with this property is the default button."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_DEFAULT_BUTTON\" visibility=\"hidden\">La propriété \"Bouton par défaut\" indique que le bouton correspondant pourra être utilisé lorsque vous appuyez sur la touche <emph>Entrée</emph>.</ahelp> La propriété \"Bouton par défaut\" indique que le bouton correspondant pourra être utilisé lorsque vous appuyez sur la touche <emph>Entrée</emph>. Si vous ouvrez la boîte de dialogue ou le formulaire sans effectuer d'autres actions, le bouton possédant cette propriété est le bouton par défaut."
#: 01170101.xhp
msgctxt ""
@@ -4350,7 +4350,7 @@ msgctxt ""
"par_id3150931\n"
"help.text"
msgid "When using Web page forms, you might come across this property in search masks. These are edit masks that contain a text field and a <emph>Submit type</emph> button. The search term is entered in the text field and the search is started by activating the button. If the button is defined as the default button, however, simply hit <emph>Enter</emph> after entering the search term in order to start the search."
-msgstr ""
+msgstr "Lors de l'utilisation de pages de formulaire Web, vous pouvez rencontrer cette propriété dans les masques de recherche. Ces masques d'édition contiennent un champ texte et un bouton permettant de <emph>soumettre le formulaire</emph>. Le terme de recherche est entré dans le champ texte et la recherche est démarrée en activant le bouton. Cependant, si le bouton est défini comme le bouton par défaut, appuyez simplement sur <emph>Entrée</emph> après avoir saisi le terme de recherche pour démarrer la recherche."
#: 01170101.xhp
msgctxt ""
@@ -4382,7 +4382,7 @@ msgctxt ""
"par_id3155361\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_TABSTOP\">The \"Tabstop\" property determines if a control field can be selected with the <emph>Tab</emph> key.</ahelp> The following options are available:"
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_TABSTOP\">La propriété \"Tabulation\" détermine si un champ de contrôle peut être sélectionné à l'aide de la touche <emph>Tabulation</emph>.</ahelp> Les options suivantes sont disponibles :"
#: 01170101.xhp
msgctxt ""
@@ -4398,7 +4398,7 @@ msgctxt ""
"par_id3161673\n"
"help.text"
msgid "When using the <emph>Tab</emph> key, focusing skips the control."
-msgstr ""
+msgstr "Lors de l'utilisation de la touche <emph>Tabulation</emph>, la focalisation ignore l'élément de contrôle."
#: 01170101.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3148584\n"
"help.text"
msgid "The control can be selected with the <emph>Tab</emph> key."
-msgstr ""
+msgstr "Le contrôle peut être sélectionné avec la touche <emph>Tab</emph>."
#: 01170101.xhp
msgctxt ""
@@ -4446,7 +4446,7 @@ msgctxt ""
"par_id3156432\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_LABEL\" visibility=\"hidden\">The \"Label\" property sets the label of the control field that is displayed in the form.</ahelp> The \"Label\" property sets the label of the control field that is displayed in the form. This property determines the visible label or the column header of the data field in table control forms."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_LABEL\" visibility=\"hidden\">La propriété \"Étiquette\" définit l'étiquette du champ de contrôle affichée dans le formulaire.</ahelp> La propriété \"Étiquette\" définit l'étiquette du champ de contrôle affichée dans le formulaire. Cette propriété détermine l'étiquette affichée ou l'en-tête de colonne du champ de données dans les formulaires de contrôle de table."
#: 01170101.xhp
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"par_id3154568\n"
"help.text"
msgid "When you create a new control, the description predefined in the \"Name\" property is used as the default for labeling the control. The label consists of the control field name and an integer numbering the control (for example, CommandButton1). With the \"Title\" property, you can assign another description to the control so that the label reflects the function of the control. Change this entry in order to assign an expressive label to the control that is visible to the user."
-msgstr ""
+msgstr "Lorsque vous créez un nouveau champ de contrôle, l'intitulé prédéfini du champ de contrôle est adopté par défaut pour la propriété \"Nom\". Cet intitulé est en fait formé du nom du champ de contrôle proprement dit et d'un numéro, par exemple CommandButton1. La propriété \"Titre\" vous permet d'entrer une autre description, de manière que l'intitulé du champ de contrôle en décrive la fonction. En modifiant cette entrée, vous pouvez attribuer une description explicite pour l'utilisateur."
#: 01170101.xhp
msgctxt ""
@@ -4462,7 +4462,7 @@ msgctxt ""
"bm_id3163820\n"
"help.text"
msgid "<bookmark_value>multi-line titles in forms</bookmark_value><bookmark_value>names; multi-line titles</bookmark_value><bookmark_value>controls; multi-line titles</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Titres sur plusieurs lignes dans des formulaires</bookmark_value><bookmark_value>Noms;titres sur plusieurs lignes</bookmark_value><bookmark_value>Contrôles;titres sur plusieurs lignes</bookmark_value>"
#: 01170101.xhp
msgctxt ""
@@ -4470,7 +4470,7 @@ msgctxt ""
"par_id3163820\n"
"help.text"
msgid "To create a multi-line title, open the combo box using the <emph>Arrow</emph> button. You can enter a line break by pressing <emph>Shift</emph>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Enter</emph>."
-msgstr ""
+msgstr "Pour créer un titre sur plusieurs lignes, ouvrez la zone combinée en utilisant le bouton <emph>Flèche</emph>. Vous pouvez saisir un saut de ligne en appuyant sur <emph>Maj</emph>+<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Commande</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Entrée</emph>."
#: 01170101.xhp
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"par_id3159407\n"
"help.text"
msgid "The \"Title\" property is only used for labeling a form element in the interface visible to the user. If you work with macros, note that at runtime, a control is always addressed through the \"Name\" property."
-msgstr ""
+msgstr "La propriété \"Titre\" n'est utilisée que pour étiqueter un élément du formulaire dans l'interface utilisateur. Si vous utilisez des macros, notez que, pendant l'exécution, l'élément de contrôle est toujours désigné au moyen de la propriété \"Nom\"."
#: 01170101.xhp
msgctxt ""
@@ -4494,7 +4494,7 @@ msgctxt ""
"par_id3154358\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_TARGET_URL\" visibility=\"hidden\">Specifies the URL address that opens when you click an <emph>Open document / web page</emph> button.</ahelp> Enter the URL address for a <emph>Open document or web page</emph> button type in the <emph>URL</emph> box. The address opens when you click the button."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_TARGET_URL\" visibility=\"hidden\">Indique l'adresse URL de la page qui s'ouvre lorsque vous cliquez sur un bouton de type <emph>Ouvrir un document ou une page Web</emph>.</ahelp> Saisissez l'adresse URL pour un bouton de type <emph>Ouvrir un document ou une page Web</emph> dans la zone <emph>URL</emph>. La page s'ouvre lorsque vous cliquez sur le bouton."
#: 01170101.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"par_id3145160\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_CURRENCYSYMBOL\" visibility=\"hidden\">You can enter a character or a string for the currency symbol.</ahelp> In a currency field, you can predefine the currency symbol by entering the character or string in the \"Currency symbol\" property."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_CURRENCYSYMBOL\" visibility=\"hidden\">Vous pouvez saisir un caractère ou une chaîne de caractères pour le symbole monétaire. </ahelp>Dans un champ monétaire, vous pouvez prédéfinir le symbole monétaire en saisissant un caractère ou une chaîne de caractères dans la propriété \"Symbole monétaire\"."
#: 01170101.xhp
msgctxt ""
@@ -4550,7 +4550,7 @@ msgctxt ""
"par_id3155323\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_ECHO_CHAR\" visibility=\"hidden\">If the text box is used as a password input, enter the ASCII code of the display character. This character is displayed instead of the characters typed by the user for the password.</ahelp> If the user enters a password, you can determine the characters that will be displayed instead of the characters typed by the user. Under <emph>Password character</emph>, enter the ASCII code of the desired character. You can use the values from <emph>0</emph> to <emph>255</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_ECHO_CHAR\" visibility=\"hidden\">Si la zone de texte est utilisée comme zone de saisie de mot de passe, saisissez le code ASCII du caractère d'affichage. Ce caractère s'affiche à la place des caractères saisis par l'utilisateur pour le mot de passe.</ahelp> Si l'utilisateur saisit un mot de passe, vous pouvez déterminer les caractères qui seront affichés à la place des caractères saisis. Dans <emph>Caractères pour mots de passe</emph>, saisissez le code ASCII du caractère souhaité. Vous pouvez utiliser des valeurs de <emph>0</emph> à <emph>255</emph>."
#: 01170101.xhp
msgctxt ""
@@ -4558,7 +4558,7 @@ msgctxt ""
"par_id3152493\n"
"help.text"
msgid "The characters and their ASCII codes can be seen in the <emph>Special Characters</emph> dialog (<emph>Insert - Special Character</emph>)."
-msgstr ""
+msgstr "Les caractères correspondant à certains codes ASCII peuvent être visualisés dans la boîte de dialogue <emph>Caractères spéciaux</emph> (<emph>Insertion - Caractères spéciaux</emph>)."
#: 01170101.xhp
msgctxt ""
@@ -4574,7 +4574,7 @@ msgctxt ""
"par_id3157557\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_LITERALMASK\" visibility=\"hidden\">Defines the literal mask. The literal mask contains the initial values and is always visible after downloading a form.</ahelp> With masked fields you can specify a literal mask. A literal mask contains the initial values of a form, and is always visible after downloading a form. Using a character code for the <emph>Edit</emph> mask, you can determine the entries that the user can type into the masked field."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_LITERALMASK\" visibility=\"hidden\">Définit le masque littéral. Le masque littéral contient les valeurs initiales et reste toujours visible après le téléchargement du formulaire.</ahelp>À l'aide des champs masqués, vous pouvez définir un masque littéral. Un masque littéral contient les valeurs initiales d'un formulaire et reste toujours visible après le téléchargement d'un formulaire. À l'aide d'un code de caractères pour le <emph>masque de saisie</emph>, vous pouvez déterminer les entrées que l'utilisateur pourra saisir dans le champ masqué."
#: 01170101.xhp
msgctxt ""
@@ -4614,7 +4614,7 @@ msgctxt ""
"par_id3160455\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_ROWHEIGHT\" visibility=\"hidden\">Specifies the row height of a table control field.</ahelp> In table controls, enter a value for the row height. If you want, you can enter a value followed by valid measurement unit, for example, <emph>2 cm</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_ROWHEIGHT\" visibility=\"hidden\">Spécifie la hauteur de ligne d'un champ de contrôle de table.</ahelp> Dans les contrôles de table, spécifiez la hauteur de ligne. Vous pouvez saisir une valeur suivie d'une unité de mesure valide (<emph>2 cm</emph> par exemple)."
#: 01170101.xhp
msgctxt ""
@@ -4710,7 +4710,7 @@ msgctxt ""
"par_idN120B1\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_RECORDACTIONS\">Specifies to show or hide the action items in a selected <emph>Navigation</emph> bar control.</ahelp> Action items are the following: <emph>Save record, Undo, New record, Delete record, Refresh</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_RECORDACTIONS\">Spécifie si les éléments d'action d'un contrôle de la barre de <emph>navigation</emph> sélectionnée doivent être affichés ou masqués.</ahelp> Les éléments d'action sont les suivants : <emph>Enregistrer l'enregistrement, Annuler, Nouvel enregistrement, Supprimer l'enregistrement, Actualiser</emph>."
#: 01170101.xhp
msgctxt ""
@@ -4726,7 +4726,7 @@ msgctxt ""
"par_idN120D9\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_POSITION\">Specifies to show or hide the positioning items in a selected <emph>Navigation</emph> bar control.</ahelp> Positioning items are the following: <emph>Record label, Record position, Record count label, Record count</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_POSITION\">Spécifie si les éléments de positionnement d'un contrôle de la barre de <emph>navigation</emph> sélectionnée doivent être affichés ou masqués.</ahelp> Les éléments de positionnement sont les suivants : <emph>étiquette d'enregistrement, position d'enregistrement, étiquette du numéro d'enregistrement et numéro d'enregistrement</emph>."
#: 01170101.xhp
msgctxt ""
@@ -4742,7 +4742,7 @@ msgctxt ""
"par_idN120DB\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_NAVIGATION\">Specifies to show or hide the navigation items in a selected <emph>Navigation</emph> bar control.</ahelp> Navigation items are the following: <emph>First record, Previous record, Next record, Last record</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_NAVIGATION\">Spécifie si les éléments de navigation d'un contrôle de la barre de <emph>navigation</emph> sélectionnée doivent être affichés ou masqués.</ahelp> Les éléments de navigation sont les suivants : <emph>Premier enregistrement, Enregistrement précédent, Enregistrement suivant, Dernier enregistrement</emph>."
#: 01170101.xhp
msgctxt ""
@@ -4750,7 +4750,7 @@ msgctxt ""
"par_idN12156\n"
"help.text"
msgid "Filtering/Sorting"
-msgstr ""
+msgstr "Filtrage/Tri"
#: 01170101.xhp
msgctxt ""
@@ -4758,7 +4758,7 @@ msgctxt ""
"par_idN1215A\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_FILTERSORT\">Specifies to show or hide the filtering and sorting items in a selected <emph>Navigation</emph> bar control.</ahelp> Filtering and sorting items are the following: <emph>Sort ascending, Sort descending, Sort, Automatic filter, Default filter, Apply filter, Reset filter/sort</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_SHOW_FILTERSORT\">Spécifie si les éléments de tri et de filtrage d'un contrôle de la barre de <emph>navigation</emph> sélectionnée doivent être affichés ou masqués.</ahelp> Les éléments de tri et de filtrage sont les suivants : <emph>Tri croissant, Tri décroissant, Tri, Filtre automatique, Filtre standard, Appliquer le filtre, Réinitialiser le filtre/tri</emph>."
#: 01170101.xhp
msgctxt ""
@@ -4774,7 +4774,7 @@ msgctxt ""
"par_idN12179\n"
"help.text"
msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_ICONSIZE\">Specifies whether the icons in a selected <emph>Navigation</emph> bar should be small or large.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_ICONSIZE\">Spécifie la taille des icônes apparaissant dans la barre de <emph>navigation</emph> sélectionnée.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -4830,7 +4830,7 @@ msgctxt ""
"par_idN12318\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the size of scrollbar thumb in \"value units\". A value of <emph>(\"Scroll value max.\" minus \"Scroll value min.\" ) / 2</emph> would result in a thumb which occupies half of the background area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Spécifie la taille du curseur de défilement dans le champ Unités de valeur. Par exemple, avec une valeur de <emph>(\"Valeur de défilement max.\" - \"Valeur de défilement min.\") / 2</emph>, le curseur de défilement occupe la moitié de la zone d'arrière-plan.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -4838,7 +4838,7 @@ msgctxt ""
"par_idN12375\n"
"help.text"
msgid "If set to <emph>0</emph>, then the thumb's width will equal its height."
-msgstr ""
+msgstr "Si cette valeur est définie sur <emph>0</emph>, la largeur du curseur sera égale à sa hauteur."
#: 01170101.xhp
msgctxt ""
@@ -4886,7 +4886,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "The <emph>Data</emph> tab page allows you to assign a data source to the selected control."
-msgstr ""
+msgstr "L'onglet <emph>Données</emph> permet d'assigner une source de données à l'élément de contrôle sélectionné."
#: 01170102.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_id3148773\n"
"help.text"
msgid "For forms with database links, the associated database is defined in the <link href=\"text/shared/02/01170200.xhp\" name=\"Form Properties\"><emph>Form Properties</emph></link>. You will find the functions for this on the <link href=\"text/shared/02/01170203.xhp\" name=\"Data\"><emph>Data</emph></link> tab page."
-msgstr ""
+msgstr "Pour les formulaires avec connexion de base de données, la base de données correspondante est définie dans les <link href=\"text/shared/02/01170200.xhp\" name=\"propriétés de formulaire\"><emph>propriétés de formulaire</emph></link>. Vous trouverez les fonctions concernées sur l'onglet <link href=\"text/shared/02/01170203.xhp\" name=\"Données\"><emph>Données</emph></link>."
#: 01170102.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"par_id3149377\n"
"help.text"
msgid "The possible settings of the <emph>Data</emph> tab page of a control depend on the respective control. You will only see the options that are available for the current control and context.<br/>The following fields are available:"
-msgstr ""
+msgstr "Les paramètres possibles de l'onglet <emph>Données</emph> d'un contrôle dépendent du contrôle respectif. Vous ne verrez que les options qui sont disponibles pour le contrôle actif et son contexte.<br/> Les champs suivants sont disponibles :"
#: 01170102.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_idN108B8\n"
"help.text"
msgid "<ahelp hid=\".\">Check boxes and radio buttons in spreadsheets can be bound to cells in the current document. If the control is enabled, the value you enter in <emph>Reference value (on)</emph> is copied to the cell. If the control is disabled, the value from <emph>Reference value (off)</emph> is copied to the cell.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Les cases à cocher et les boutons radio des classeurs peuvent être liés aux cellules du document actif. Si le contrôle est activé, la valeur saisie dans la zone <emph>Valeur référentielle (activée)</emph> est copiée dans la cellule. Si le contrôle est désactivé, la valeur saisie dans la zone <emph>Valeur référentielle (désactivée)</emph> est copiée dans la cellule.</ahelp>"
#: 01170102.xhp
msgctxt ""
@@ -5646,7 +5646,7 @@ msgctxt ""
"par_id3145357\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_EMPTY_IS_NULL\">Defines how an empty string input should be handled. If set to \"Yes\", an input string of length zero will be treated as a value NULL. If set to \"No\", any input will be treated as-is without any conversion.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_PROP_EMPTY_IS_NULL\">Définit comment une entrée de chaîne vide doit être traitée. Si définie sur \"Oui\", une entrée de chaîne de longueur zéro sera traitée comme une valeur NULL. Si définie sur \"Non\", n'importe quelle entrée sera traitée comme telle, sans aucune conversion.</ahelp>"
#: 01170102.xhp
msgctxt ""
@@ -5654,7 +5654,7 @@ msgctxt ""
"par_id0820200812403467\n"
"help.text"
msgid "An empty string is a string of length zero (<emph>\"\"</emph>). Normally, a value NULL is not the same as an empty string. In general, a term NULL is used to denote an undefined value, an unknown value, or \"no value has been entered yet.\""
-msgstr ""
+msgstr "Une chaîne vide est une chaîne de longueur zéro (<emph>\"\"</emph>). Normalement une valeur NULL est différente d'une chaîne vide. En générale, un terme NULL est utilisé pour indiquer une valeur non définie, une valeur inconnue ou \"aucune valeur n'a encore été saisie.\""
#: 01170102.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"par_id3151221\n"
"help.text"
msgid "<variable id=\"filtervorschlag\"><ahelp hid=\"HID_PROP_FILTERPROPOSAL\">While designing your form, you can set the \"Filter proposal\" property for each text box in the <emph>Data</emph> tab of the corresponding <emph>Properties</emph> dialog. In subsequent searches in the filter mode, you can select from all information contained in these fields.</ahelp> The field content can then be selected using the <emph>AutoComplete</emph> function. Note, however, that this function requires a greater amount of memory space and time, especially when used in large databases and should therefore be used sparingly.</variable>"
-msgstr ""
+msgstr "<variable id=\"filtervorschlag\"><ahelp hid=\"HID_PROP_FILTERPROPOSAL\">Lors de la conception de votre formulaire, vous pouvez définir la propriété \"Proposition de filtre\" pour chaque zone de texte de l'onglet <emph>Données</emph> de la boîte de dialogue <emph>Propriétés</emph> correspondante. Dans les recherches suivantes en mode Filtre, vous pouvez choisir parmi toutes les informations figurant dans ces champs.</ahelp> Le contenu du champ peut ensuite être sélectionné à l'aide de la fonction <emph>Auto-complétion</emph>. Notez cependant que cette fonction consomme davantage d'espace mémoire et de temps, surtout lorsqu'elle est utilisée dans de grandes bases de données. Il est donc conseillé de l'employer modérément.</variable>"
#: 01170102.xhp
msgctxt ""
@@ -5726,7 +5726,7 @@ msgctxt ""
"par_idN10F11\n"
"help.text"
msgid "Select the check box:"
-msgstr ""
+msgstr "Sélectionnez la case à cocher :"
#: 01170102.xhp
msgctxt ""
@@ -5734,7 +5734,7 @@ msgctxt ""
"par_idN10F17\n"
"help.text"
msgid "TRUE is entered into the linked cell."
-msgstr ""
+msgstr "L'expression TRUE est saisie dans la cellule liée."
#: 01170102.xhp
msgctxt ""
@@ -5742,7 +5742,7 @@ msgctxt ""
"par_idN10F1E\n"
"help.text"
msgid "Deselect the check box:"
-msgstr ""
+msgstr "Désélectionnez la case à cocher :"
#: 01170102.xhp
msgctxt ""
@@ -5750,7 +5750,7 @@ msgctxt ""
"par_idN10F24\n"
"help.text"
msgid "FALSE is entered into the linked cell."
-msgstr ""
+msgstr "L'expression FALSE est saisie dans la cellule liée"
#: 01170102.xhp
msgctxt ""
@@ -5758,7 +5758,7 @@ msgctxt ""
"par_idN10F2B\n"
"help.text"
msgid "Tri-state check box is set to \"undetermined\" state:"
-msgstr ""
+msgstr "La case à cocher à trois états possède l'état \"indéterminé\" :"
#: 01170102.xhp
msgctxt ""
@@ -5766,7 +5766,7 @@ msgctxt ""
"par_idN10F31\n"
"help.text"
msgid "#NV is entered into the linked cell."
-msgstr ""
+msgstr "L'expression #NV est saisie dans la cellule liée."
#: 01170102.xhp
msgctxt ""
@@ -5774,7 +5774,7 @@ msgctxt ""
"par_idN10F38\n"
"help.text"
msgid "Enter a number or a formula that returns a number in the linked cell:"
-msgstr ""
+msgstr "Saisissez une valeur ou une formule qui retourne une valeur dans la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -5782,7 +5782,7 @@ msgctxt ""
"par_idN10F3E\n"
"help.text"
msgid "If entered value is TRUE or not 0: Check box is selected.<br/>If entered value is FALSE or 0: Check box is deselected."
-msgstr ""
+msgstr "Si la valeur saisie est TRUE ou non nulle, la case à cocher est activée.<br/>Si la valeur saisie est FALSE ou 0, la case à cocher est désactivée."
#: 01170102.xhp
msgctxt ""
@@ -5790,7 +5790,7 @@ msgctxt ""
"par_idN10F47\n"
"help.text"
msgid "Clear the linked cell, or enter text, or enter a formula that returns text or an error:"
-msgstr ""
+msgstr "Effacez le contenu de la cellule liée ou saisissez du texte ou une formule qui retourne du texte ou une erreur :"
#: 01170102.xhp
msgctxt ""
@@ -5806,7 +5806,7 @@ msgctxt ""
"par_idN11023\n"
"help.text"
msgid "Select the box. The <emph>Reference value</emph> box contains text:"
-msgstr ""
+msgstr "Sélectionner la zone. La zone <emph>Valeur référentielle</emph> contient du texte."
#: 01170102.xhp
msgctxt ""
@@ -5814,7 +5814,7 @@ msgctxt ""
"par_idN1103A\n"
"help.text"
msgid "The text from the <emph>Reference value</emph> box is copied to the cell."
-msgstr ""
+msgstr "Le texte de la zone <emph>Valeur référentielle</emph> est copié dans la cellule."
#: 01170102.xhp
msgctxt ""
@@ -5822,7 +5822,7 @@ msgctxt ""
"par_idN11040\n"
"help.text"
msgid "Deselect the box. The <emph>Reference value</emph> box contains text:"
-msgstr ""
+msgstr "Désactiver la zone. La zone <emph>Valeur référentielle</emph> contient du texte :"
#: 01170102.xhp
msgctxt ""
@@ -5838,7 +5838,7 @@ msgctxt ""
"par_idN1104B\n"
"help.text"
msgid "The <emph>Reference value</emph> box contains text. Enter the same text into the cell:"
-msgstr ""
+msgstr "La zone <emph>Valeur référentielle</emph> contient du texte. Saisissez le même texte dans la cellule :"
#: 01170102.xhp
msgctxt ""
@@ -5854,7 +5854,7 @@ msgctxt ""
"par_idN11056\n"
"help.text"
msgid "The <emph>Reference value</emph> box contains text. Enter another text into the cell:"
-msgstr ""
+msgstr "La zone <emph>Valeur référentielle</emph> contient du texte. Saisissez un autre texte dans la cellule :"
#: 01170102.xhp
msgctxt ""
@@ -5894,7 +5894,7 @@ msgctxt ""
"par_idN10F72\n"
"help.text"
msgid "Select the option button:"
-msgstr ""
+msgstr "Sélectionner le bouton radio :"
#: 01170102.xhp
msgctxt ""
@@ -5902,7 +5902,7 @@ msgctxt ""
"par_idN10F78\n"
"help.text"
msgid "TRUE is entered into the linked cell."
-msgstr ""
+msgstr "L'expression TRUE est saisie dans la cellule liée."
#: 01170102.xhp
msgctxt ""
@@ -5910,7 +5910,7 @@ msgctxt ""
"par_idN10F7F\n"
"help.text"
msgid "Option button is deselected by selecting another option button:"
-msgstr ""
+msgstr "Pour désactiver le bouton radio, il suffit d'en activer un autre :"
#: 01170102.xhp
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"par_idN10F85\n"
"help.text"
msgid "FALSE is entered into the linked cell."
-msgstr ""
+msgstr "L'expression FALSE est saisie dans la cellule liée"
#: 01170102.xhp
msgctxt ""
@@ -5926,7 +5926,7 @@ msgctxt ""
"par_idN10F8C\n"
"help.text"
msgid "Enter a number or a formula that returns a number in the linked cell:"
-msgstr ""
+msgstr "Saisissez une valeur ou une formule qui retourne une valeur dans la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -5934,7 +5934,7 @@ msgctxt ""
"par_idN10F92\n"
"help.text"
msgid "If entered value is TRUE or not 0: Option button is selected.<br/>If entered value is FALSE or 0: Option button is deselected."
-msgstr ""
+msgstr "Si la valeur saisie est TRUE ou non nulle, le bouton radio est activé.<br/>Si la valeur saisie est FALSE ou 0, le bouton radio est désactivé."
#: 01170102.xhp
msgctxt ""
@@ -5942,7 +5942,7 @@ msgctxt ""
"par_idN10F9B\n"
"help.text"
msgid "Clear the linked cell, or enter text, or enter a formula that returns text or an error:"
-msgstr ""
+msgstr "Effacez le contenu de la cellule liée ou saisissez du texte ou une formule qui retourne du texte ou une erreur :"
#: 01170102.xhp
msgctxt ""
@@ -5950,7 +5950,7 @@ msgctxt ""
"par_idN10FA1\n"
"help.text"
msgid "Option button is deselected."
-msgstr ""
+msgstr "Le bouton radio est désactivé."
#: 01170102.xhp
msgctxt ""
@@ -5958,7 +5958,7 @@ msgctxt ""
"par_idN110EF\n"
"help.text"
msgid "Click the option button. The <emph>Reference value</emph> box contains text:"
-msgstr ""
+msgstr "Cliquez sur le bouton radio. La zone <emph>Valeur référentielle</emph> contient du texte :"
#: 01170102.xhp
msgctxt ""
@@ -5966,7 +5966,7 @@ msgctxt ""
"par_idN110F4\n"
"help.text"
msgid "The text from the <emph>Reference value</emph> box is copied to the cell."
-msgstr ""
+msgstr "Le texte de la zone <emph>Valeur référentielle</emph> est copié dans la cellule."
#: 01170102.xhp
msgctxt ""
@@ -5974,7 +5974,7 @@ msgctxt ""
"par_idN110FA\n"
"help.text"
msgid "Click another option button of the same group. The <emph>Reference value</emph> box contains text:"
-msgstr ""
+msgstr "Cliquez sur un autre bouton radio du même groupe. La zone <emph>Valeur référentielle</emph> contient du texte :"
#: 01170102.xhp
msgctxt ""
@@ -5990,7 +5990,7 @@ msgctxt ""
"par_idN11105\n"
"help.text"
msgid "The <emph>Reference value</emph> box contains text. Enter the same text into the cell:"
-msgstr ""
+msgstr "La zone <emph>Valeur référentielle</emph> contient du texte. Saisissez le même texte dans la cellule :"
#: 01170102.xhp
msgctxt ""
@@ -6006,7 +6006,7 @@ msgctxt ""
"par_idN11110\n"
"help.text"
msgid "The <emph>Reference value</emph> box contains text. Enter another text into the cell:"
-msgstr ""
+msgstr "La zone <emph>Valeur référentielle</emph> contient du texte. Saisissez un autre texte dans la cellule :"
#: 01170102.xhp
msgctxt ""
@@ -6046,7 +6046,7 @@ msgctxt ""
"par_idN10FC6\n"
"help.text"
msgid "Enter text into the text box:"
-msgstr ""
+msgstr "Saisir du texte dans la zone de texte :"
#: 01170102.xhp
msgctxt ""
@@ -6054,7 +6054,7 @@ msgctxt ""
"par_idN10FCC\n"
"help.text"
msgid "Text is copied into the linked cell."
-msgstr ""
+msgstr "Le texte est copié dans la cellule lié."
#: 01170102.xhp
msgctxt ""
@@ -6062,7 +6062,7 @@ msgctxt ""
"par_idN10FD3\n"
"help.text"
msgid "Clear the text box:"
-msgstr ""
+msgstr "Effacer le contenu de la zone de texte :"
#: 01170102.xhp
msgctxt ""
@@ -6070,7 +6070,7 @@ msgctxt ""
"par_idN10FD9\n"
"help.text"
msgid "Linked cell is cleared."
-msgstr ""
+msgstr "Le contenu de la cellule liée est effacé."
#: 01170102.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"par_idN10FE0\n"
"help.text"
msgid "Enter text or a number in the linked cell:"
-msgstr ""
+msgstr "Saisir du texte ou une valeur dans la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -6086,7 +6086,7 @@ msgctxt ""
"par_idN10FE6\n"
"help.text"
msgid "Text or number is copied into the text box."
-msgstr ""
+msgstr "Le texte ou la valeur est copié(e) dans la zone de texte."
#: 01170102.xhp
msgctxt ""
@@ -6094,7 +6094,7 @@ msgctxt ""
"par_idN10FED\n"
"help.text"
msgid "Enter a formula into the linked cell:"
-msgstr ""
+msgstr "Saisir une formule dans la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -6102,7 +6102,7 @@ msgctxt ""
"par_idN10FF3\n"
"help.text"
msgid "Formula result is copied into the text box."
-msgstr ""
+msgstr "Le résultat de la formule est copié dans la zone de texte."
#: 01170102.xhp
msgctxt ""
@@ -6110,7 +6110,7 @@ msgctxt ""
"par_idN10FFA\n"
"help.text"
msgid "Clear the linked cell:"
-msgstr ""
+msgstr "Effacer le contenu de la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -6118,7 +6118,7 @@ msgctxt ""
"par_idN11000\n"
"help.text"
msgid "Text box is cleared."
-msgstr ""
+msgstr "Le contenu de la zone de texte est effacé."
#: 01170102.xhp
msgctxt ""
@@ -6150,7 +6150,7 @@ msgctxt ""
"par_idN11025\n"
"help.text"
msgid "Enter a number into the field:"
-msgstr ""
+msgstr "Saisir une valeur dans le champ :"
#: 01170102.xhp
msgctxt ""
@@ -6158,7 +6158,7 @@ msgctxt ""
"par_idN1102B\n"
"help.text"
msgid "Number is copied into the linked cell."
-msgstr ""
+msgstr "La valeur est copiée dans la cellule liée."
#: 01170102.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_idN11032\n"
"help.text"
msgid "Clear the field:"
-msgstr ""
+msgstr "Effacer le contenu du champ :"
#: 01170102.xhp
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"par_idN11038\n"
"help.text"
msgid "Value <emph>0</emph> is set in the linked cell."
-msgstr ""
+msgstr "La valeur <emph>0</emph> est définie dans la cellule liée."
#: 01170102.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"par_idN1103F\n"
"help.text"
msgid "Enter a number or a formula that returns a number in the linked cell:"
-msgstr ""
+msgstr "Saisissez une valeur ou une formule qui retourne une valeur dans la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -6190,7 +6190,7 @@ msgctxt ""
"par_idN11045\n"
"help.text"
msgid "Number is copied into the field."
-msgstr ""
+msgstr "La valeur est copiée dans le champ."
#: 01170102.xhp
msgctxt ""
@@ -6198,7 +6198,7 @@ msgctxt ""
"par_idN1104C\n"
"help.text"
msgid "Clear the linked cell, or enter text, or enter a formula that returns text or an error:"
-msgstr ""
+msgstr "Effacez le contenu de la cellule liée ou saisissez du texte ou une formule qui retourne du texte ou une erreur :"
#: 01170102.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"par_idN11052\n"
"help.text"
msgid "Value <emph>0</emph> is set in the field."
-msgstr ""
+msgstr "La valeur <emph>0</emph> est définie dans le champ."
#: 01170102.xhp
msgctxt ""
@@ -6230,7 +6230,7 @@ msgctxt ""
"par_idN11066\n"
"help.text"
msgid "<emph>Linked contents:</emph> Synchronize the text contents of the selected list box entry with the cell contents."
-msgstr ""
+msgstr "<emph>Contenu lié :</emph> synchronisez le contenu textuel de l'entrée de zone de liste sélectionnée avec le contenu de la cellule."
#: 01170102.xhp
msgctxt ""
@@ -6238,7 +6238,7 @@ msgctxt ""
"par_idN1106A\n"
"help.text"
msgid "<emph>Linked selection position:</emph> The position of the single selected item in the list box is synchronized with the numerical value in the cell."
-msgstr ""
+msgstr "<emph>Position de la sélection liée :</emph> la position, dans la zone de liste, de l'élément sélectionné est synchronisée avec la valeur numérique contenue dans la cellule."
#: 01170102.xhp
msgctxt ""
@@ -6262,7 +6262,7 @@ msgctxt ""
"par_idN11084\n"
"help.text"
msgid "Select a single list item:"
-msgstr ""
+msgstr "Sélectionner un seul élément de liste :"
#: 01170102.xhp
msgctxt ""
@@ -6278,7 +6278,7 @@ msgctxt ""
"par_idN1108D\n"
"help.text"
msgid "Selection is linked: Position of the selected item is copied into the linked cell.<br/>For example, if the third item is selected, the number <emph>3</emph> will be copied."
-msgstr ""
+msgstr "La sélection est liée : la position de l'élément sélectionné est copiée dans la cellule liée.<br/> Par exemple, si l'élément sélectionné est le troisième, c'est le chiffre <emph>3</emph> qui est copié."
#: 01170102.xhp
msgctxt ""
@@ -6286,7 +6286,7 @@ msgctxt ""
"par_idN11094\n"
"help.text"
msgid "Select several list items:"
-msgstr ""
+msgstr "Sélectionner plusieurs éléments de la liste :"
#: 01170102.xhp
msgctxt ""
@@ -6294,7 +6294,7 @@ msgctxt ""
"par_idN1109A\n"
"help.text"
msgid "#NV is entered into the linked cell."
-msgstr ""
+msgstr "L'expression #NV est saisie dans la cellule liée."
#: 01170102.xhp
msgctxt ""
@@ -6302,7 +6302,7 @@ msgctxt ""
"par_idN110A1\n"
"help.text"
msgid "Deselect all list items:"
-msgstr ""
+msgstr "Désélectionner tous les éléments de la liste :"
#: 01170102.xhp
msgctxt ""
@@ -6310,7 +6310,7 @@ msgctxt ""
"par_idN110A7\n"
"help.text"
msgid "Contents are linked: Linked cell is cleared."
-msgstr ""
+msgstr "Le contenu est lié : Le contenu de la cellule liée est effacé."
#: 01170102.xhp
msgctxt ""
@@ -6318,7 +6318,7 @@ msgctxt ""
"par_idN110AA\n"
"help.text"
msgid "Selection is linked: Value <emph>0</emph> is entered in the linked cell."
-msgstr ""
+msgstr "La sélection est liée : la valeur <emph>0</emph> est saisie dans la cellule liée."
#: 01170102.xhp
msgctxt ""
@@ -6326,7 +6326,7 @@ msgctxt ""
"par_idN110B1\n"
"help.text"
msgid "Enter text or a number into the linked cell:"
-msgstr ""
+msgstr "Saisir du texte ou une valeur dans la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -6334,7 +6334,7 @@ msgctxt ""
"par_idN110B7\n"
"help.text"
msgid "Contents are linked: Find and select an equal list item."
-msgstr ""
+msgstr "Le contenu est lié : recherchez et sélectionnez un élément de liste identique."
#: 01170102.xhp
msgctxt ""
@@ -6342,7 +6342,7 @@ msgctxt ""
"par_idN110BA\n"
"help.text"
msgid "Selection is linked: The list item at the specified position (starting with <emph>1</emph> for the first item) is selected. If not found, all items are deselected."
-msgstr ""
+msgstr "La sélection est liée : l'élément de liste situé à la position spécifiée (<emph>1</emph> correspondant au premier élément) est sélectionné. S'il est introuvable, tous les éléments sont désélectionnés."
#: 01170102.xhp
msgctxt ""
@@ -6350,7 +6350,7 @@ msgctxt ""
"par_idN110C1\n"
"help.text"
msgid "Enter a formula into the linked cell:"
-msgstr ""
+msgstr "Saisir une formule dans la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -6358,7 +6358,7 @@ msgctxt ""
"par_idN110C7\n"
"help.text"
msgid "Find and select a list item that matches the formula result and link mode."
-msgstr ""
+msgstr "Recherchez et sélectionnez un élément de liste qui correspond au résultat de la formule et au mode Liaison."
#: 01170102.xhp
msgctxt ""
@@ -6366,7 +6366,7 @@ msgctxt ""
"par_idN110CE\n"
"help.text"
msgid "Clear the linked cell:"
-msgstr ""
+msgstr "Effacer le contenu de la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -6374,7 +6374,7 @@ msgctxt ""
"par_idN110D4\n"
"help.text"
msgid "Deselect all items in the list box."
-msgstr ""
+msgstr "Désélectionner tous les éléments de la zone de liste."
#: 01170102.xhp
msgctxt ""
@@ -6382,7 +6382,7 @@ msgctxt ""
"par_idN110DB\n"
"help.text"
msgid "Change the contents of the list source range:"
-msgstr ""
+msgstr "Modifier le contenu de la plage source de la liste :"
#: 01170102.xhp
msgctxt ""
@@ -6422,7 +6422,7 @@ msgctxt ""
"par_idN11106\n"
"help.text"
msgid "Enter text into the edit field of the combo box, or select an entry from the drop-down list:"
-msgstr ""
+msgstr "Saisissez du texte dans le champ d'édition de la boîte combinée ou sélectionnez une entrée à partir de la liste déroulante :"
#: 01170102.xhp
msgctxt ""
@@ -6430,7 +6430,7 @@ msgctxt ""
"par_idN1110C\n"
"help.text"
msgid "Text is copied into the linked cell."
-msgstr ""
+msgstr "Le texte est copié dans la cellule lié."
#: 01170102.xhp
msgctxt ""
@@ -6438,7 +6438,7 @@ msgctxt ""
"par_idN11113\n"
"help.text"
msgid "Clear the edit field of the combo box:"
-msgstr ""
+msgstr "Effacer le contenu du champ d'édition de la boîte combinée :"
#: 01170102.xhp
msgctxt ""
@@ -6446,7 +6446,7 @@ msgctxt ""
"par_idN11119\n"
"help.text"
msgid "Linked cell is cleared."
-msgstr ""
+msgstr "Le contenu de la cellule liée est effacé."
#: 01170102.xhp
msgctxt ""
@@ -6454,7 +6454,7 @@ msgctxt ""
"par_idN11120\n"
"help.text"
msgid "Enter text or a number into the linked cell:"
-msgstr ""
+msgstr "Saisir du texte ou une valeur dans la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -6462,7 +6462,7 @@ msgctxt ""
"par_idN11126\n"
"help.text"
msgid "Text or number is copied into the edit field of the combo box."
-msgstr ""
+msgstr "Le texte ou la valeur est copié(e) dans le champ d'édition de la boîte combinée."
#: 01170102.xhp
msgctxt ""
@@ -6470,7 +6470,7 @@ msgctxt ""
"par_idN1112D\n"
"help.text"
msgid "Enter a formula into the linked cell:"
-msgstr ""
+msgstr "Saisir une formule dans la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -6478,7 +6478,7 @@ msgctxt ""
"par_idN11133\n"
"help.text"
msgid "Formula result is copied into the edit field of the combo box."
-msgstr ""
+msgstr "Le résultat de la formule est copié dans le champ d'édition de la boîte combinée."
#: 01170102.xhp
msgctxt ""
@@ -6486,7 +6486,7 @@ msgctxt ""
"par_idN1113A\n"
"help.text"
msgid "Clear the linked cell:"
-msgstr ""
+msgstr "Effacer le contenu de la cellule liée :"
#: 01170102.xhp
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"par_idN11140\n"
"help.text"
msgid "Edit field of the combo box is cleared."
-msgstr ""
+msgstr "Le contenu du champ d'édition de la boîte combinée est effacé :"
#: 01170102.xhp
msgctxt ""
@@ -6502,7 +6502,7 @@ msgctxt ""
"par_idN11147\n"
"help.text"
msgid "Change the contents of the list source range:"
-msgstr ""
+msgstr "Modifier le contenu de la plage source de la liste :"
#: 01170102.xhp
msgctxt ""
@@ -6534,7 +6534,7 @@ msgctxt ""
"par_idN11179\n"
"help.text"
msgid "<emph>Linked contents:</emph> Synchronize the text contents of the selected list box entry with the cell contents. Select \"The selected entry\"."
-msgstr ""
+msgstr "<emph>Contenu lié :</emph> Synchronisez le contenu contextuel de l'entrée de zone de liste sélectionnée avec le contenu de la cellule. Sélectionnez \"l'entrée sélectionnée\"."
#: 01170102.xhp
msgctxt ""
@@ -6542,7 +6542,7 @@ msgctxt ""
"par_idN1117D\n"
"help.text"
msgid "<emph>Linked selection position:</emph> The position of the single selected item in the list box is synchronized with the numerical value in the cell. Select \"Position of the selected entry\"."
-msgstr ""
+msgstr "<emph>Position de la sélection liée :</emph> La position dans la zone de liste de l'élément sélectionné est synchronisée avec la valeur numérique contenue dans la cellule. Sélectionnez \"Position de l'entrée sélectionnée\"."
#: 01170102.xhp
msgctxt ""
@@ -6574,7 +6574,7 @@ msgctxt ""
"bm_id3148643\n"
"help.text"
msgid "<bookmark_value>controls; events</bookmark_value><bookmark_value>events; controls</bookmark_value><bookmark_value>macros; assigning to events in forms</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Contrôles;événements</bookmark_value><bookmark_value>Événements;contrôles</bookmark_value><bookmark_value>Macros;assignation aux événements dans les formulaires</bookmark_value>"
#: 01170103.xhp
msgctxt ""
@@ -6590,7 +6590,7 @@ msgctxt ""
"par_id3152350\n"
"help.text"
msgid "On the <emph>Events</emph> tab page you can link macros to events that occur in a form's control fields."
-msgstr ""
+msgstr "Dans l'onglet <emph>Événements</emph>, vous pouvez lier des macros à des événements se produisant dans des champs de contrôle d'un formulaire."
#: 01170103.xhp
msgctxt ""
@@ -6598,7 +6598,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "When the event occurs, the linked macro will be called. To assign a macro to an event, press the <emph>...</emph> button. The <link href=\"text/shared/01/06140500.xhp\" name=\"Assign Action\"><emph>Assign Action</emph></link> dialog opens."
-msgstr ""
+msgstr "Lorsque l'événement survient, la macro liée sera appelée. Pour assigner une macro à un événement, appuyez sur le bouton <emph>...</emph>. La boîte de dialogue <link href=\"text/shared/01/06140500.xhp\" name=\"Assign Action\"><emph>Assigner une action</emph></link> s'ouvre."
#: 01170103.xhp
msgctxt ""
@@ -6606,7 +6606,7 @@ msgctxt ""
"par_id3149732\n"
"help.text"
msgid "Depending on the control, different events are available. Only the available events for the selected control and context are listed on the <emph>Events</emph> tab page.<br/>The following events are defined:"
-msgstr ""
+msgstr "En fonction de l'élément de contrôle, différents événements sont disponibles. Seuls les événements disponibles pour l'élément de contrôle sélectionné et dans le contexte actif s'affichent dans l'onglet <emph>Événements</emph>.<br/>Les événements suivants sont définis :"
#: 01170103.xhp
msgctxt ""
@@ -6622,7 +6622,7 @@ msgctxt ""
"par_id3153717\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_APPROVEACTIONPERFORMED\">This event takes place before an action is triggered by clicking the control.</ahelp> For example, clicking a \"<emph>Submit</emph>\" button initiates a send action; however, the actual \"send\" process is started only when the <emph>When initiating</emph> event occurs. The <emph>Approve action</emph> event allows you to kill the process. If the linked method sends back FALSE, <emph>When initiating</emph> will not be executed."
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_APPROVEACTIONPERFORMED\">Cet événement se produit avant qu'une action ne soit déclenchée lorsque vous cliquez sur le contrôle.</ahelp> Par exemple, si vous cliquez sur le bouton \"<emph>Envoyer</emph>\", un envoi est effectué ; cependant, le processus d'\"envoi\" effectif ne démarre que lorsque l'événement <emph>Lors du déclenchement</emph> se produit. L'événement <emph>Autoriser l'action</emph> permet de mettre fin au processus. Si la méthode liée renvoie la valeur FALSE, l'événement <emph>Lors du déclenchement</emph> ne sera pas exécuté."
#: 01170103.xhp
msgctxt ""
@@ -6638,7 +6638,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_ACTIONPERFORMED\">The <emph>Execute action</emph> event occurs when an action is started.</ahelp> For example, if you have a \"<emph>Submit</emph>\" button in your form, the send process represents the action to be initiated."
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_ACTIONPERFORMED\">L'événement <emph>Exécuter l'action</emph> se produit lorsqu'une action démarre.</ahelp> Par exemple, si le formulaire contient un bouton \"<emph>Envoyer</emph>\", le processus d'envoi représente l'action à entreprendre."
#: 01170103.xhp
msgctxt ""
@@ -6654,7 +6654,7 @@ msgctxt ""
"par_id3148755\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_CHANGED\">The <emph>Changed</emph> event takes place when the control loses the focus and the content of the control has changed since it lost the focus.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_CHANGED\">L'événement <emph>Modifié</emph> se produit lorsque l'élément de contrôle perd le focus et que le contenu de l'élément de contrôle est modifié après la perte du focus.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6670,7 +6670,7 @@ msgctxt ""
"par_id3150495\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">The <emph>Text modified</emph> event takes place if you enter or modify a text in an input field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_TEXTCHANGED\">L'événement <emph>Texte modifié</emph> se produit lorsque vous saisissez ou modifiez du texte dans un champ de saisie.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6686,7 +6686,7 @@ msgctxt ""
"par_id3150870\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\" visibility=\"hidden\">The <emph>Item status changed</emph> event takes place if the status of the control field has changed.</ahelp> The <emph>Item status changed</emph> event takes place if the status of the control field has changed."
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\" visibility=\"hidden\">L'événement <emph>Statut l'élément modifié</emph> se produit si le statut du champ de contrôle est modifié.</ahelp> L'événement <emph>Statut de l'élément modifié</emph> se produit si le statut du champ de contrôle est modifié."
#: 01170103.xhp
msgctxt ""
@@ -6702,7 +6702,7 @@ msgctxt ""
"par_id3154218\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">The <emph>When receiving focus</emph> event takes place if a control field receives the focus.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_FOCUSGAINED\">L'événement <emph>Réception de focus</emph> se produit lorsqu'un champ de contrôle reçoit le focus.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6734,7 +6734,7 @@ msgctxt ""
"par_id3152940\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">The <emph>Key pressed</emph> event occurs when the user presses any key while the control has the focus.</ahelp> This event may be linked to a macro for checking entries."
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_KEYTYPED\">L'événement <emph>Touche enfoncée</emph> se produit lorsque l'utilisateur appuie sur une touche pendant que le contrôle reçoit le focus.</ahelp> Cet événement peut être lié à une macro pour le contrôle des entrées."
#: 01170103.xhp
msgctxt ""
@@ -6750,7 +6750,7 @@ msgctxt ""
"par_id3154150\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_KEYUP\">The <emph>Key released</emph> event occurs when the user releases any key while the control has the focus.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_KEYUP\">L'événement <emph>Touche relâchée</emph> se produit lorsque l'utilisateur relâche une touche alors que le contrôle reçoit le focus.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6766,7 +6766,7 @@ msgctxt ""
"par_id3148618\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">The <emph>Mouse inside</emph> event takes place if the mouse is inside the control field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_MOUSEENTERED\">L'événement <emph>Souris à l'intérieur</emph> se produit lorsque la souris se trouve à l'intérieur du champ de contrôle.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6782,7 +6782,7 @@ msgctxt ""
"par_id3155411\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">The <emph>Mouse moved while key pressed</emph> event takes place when the mouse is dragged while a key is pressed.</ahelp> An example is when, during drag-and-drop, an additional key determines the mode (move or copy)."
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">L'événement <emph>Déplacement de la souris et touche enfoncée</emph> se produit lorsque la souris est déplacée alors qu'une touche est pressée.</ahelp> Par exemple lors d'un glissé déplacé, une touche supplémentaire détermine le mode (déplacé ou copié)."
#: 01170103.xhp
msgctxt ""
@@ -6798,7 +6798,7 @@ msgctxt ""
"par_id3146975\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">The <emph>Mouse moved</emph> event occurs if the mouse moves over the control.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_MOUSEMOVED\">L'événement <emph>Déplacement de la souris</emph> se produit lorsque la souris se déplace sur le contrôle.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6814,7 +6814,7 @@ msgctxt ""
"par_id3145271\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">The <emph>Mouse button pressed</emph> event occurs if the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">L'événement <emph>Bouton de souris enfoncé</emph> se produit si le bouton de la souris est enfoncé pendant que le pointeur de la souris se trouve sur le contrôle.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6838,7 +6838,7 @@ msgctxt ""
"par_id3150659\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">The <emph>Mouse button released</emph> event occurs if the mouse button is released while the mouse pointer is on the control.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_MOUSERELEASED\">L'événement <emph>Bouton de souris relâché</emph> se produit si le bouton de la souris est relâché pendant que le pointeur de la souris se trouve sur le contrôle.</ahelp>"
#: 01170103.xhp
msgctxt ""
@@ -6854,7 +6854,7 @@ msgctxt ""
"par_id3149582\n"
"help.text"
msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">The <emph>Mouse outside</emph> event takes place when the mouse is outside the control field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_EVT_MOUSEEXITED\">L'événement <emph>Souris à l'extérieur</emph> se produit lorsque la souris se trouve à l'extérieur du champ de contrôle.</ahelp>"
#: 01170200.xhp
msgctxt ""
@@ -6886,7 +6886,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "<variable id=\"form\"><ahelp hid=\".uno:FormProperties\" visibility=\"visible\">In this dialog you can specify, among others, the data source and the events for the whole form.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"form\"><ahelp hid=\".uno:FormProperties\" visibility=\"visible\">Dans la boîte de dialogue, vous pouvez spécifier, entre autres, la source de données et les événements pour le formulaire entier.</ahelp></variable>"
#: 01170201.xhp
msgctxt ""
@@ -9414,7 +9414,7 @@ msgctxt ""
"par_id3148983\n"
"help.text"
msgid "Click the <emph>Navigator On/Off</emph> icon to hide or show the <emph>Navigator</emph>."
-msgstr ""
+msgstr "Cliquez sur l'icône <emph>Navigateur</emph> pour activer ou désactiver l'affichage du <emph>Navigateur</emph>."
#: 01220000.xhp
msgctxt ""
@@ -9422,7 +9422,7 @@ msgctxt ""
"par_id3152594\n"
"help.text"
msgid "You can also call the <emph>Navigator</emph> by selecting <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/02110000.xhp\" name=\"View - Navigator\"><emph>View - Navigator</emph></link></caseinline><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"View - Navigator\"><emph>View - Navigator</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/02110000.xhp\" name=\"View - Navigator\"><emph>View - Navigator</emph></link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/02110000.xhp\" name=\"View - Navigator\"><emph>View - Navigator</emph></link></caseinline><defaultinline><emph>View - Navigator</emph></defaultinline></switchinline>."
-msgstr ""
+msgstr "Vous pouvez aussi appeler le <emph>Navigateur</emph> en sélectionnant <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/02110000.xhp\" name=\"Affichage - Navigateur\"><emph>Affichage - Navigateur</emph></link></caseinline><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Affichage - Navigateur\"><emph>Affichage - Navigateur</emph></link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/02110000.xhp\" name=\"Affichage - Navigateur\"><emph>Affichage - Navigateur</emph></link></caseinline><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/02110000.xhp\" name=\"Affichage - Navigateur\"><emph>Affichage - Navigateur</emph></link></caseinline><defaultinline><emph>Affichage - Navigateur</emph></defaultinline></switchinline>"
#: 01220000.xhp
msgctxt ""
@@ -9462,7 +9462,7 @@ msgctxt ""
"par_id3144436\n"
"help.text"
msgid "<ahelp hid=\".uno:DesignerDialog\">Specifies whether to show or hide the <emph>Styles</emph> window, which is where you can assign and organize styles.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:DesignerDialog\">Indique si la fenêtre <emph>Styles</emph>, qui permet d'assigner et d'organiser les styles, doit être affichée ou masquée.</ahelp>"
#: 01230000.xhp
msgctxt ""
@@ -9470,7 +9470,7 @@ msgctxt ""
"par_id3153894\n"
"help.text"
msgid "Each $[officename] application has its own <emph>Styles</emph> window. Hence there are separate windows for <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"text documents\">text documents</link></caseinline><defaultinline>text documents</defaultinline></switchinline>, for <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\" name=\"spreadsheets\">spreadsheets</link></caseinline><defaultinline>spreadsheets</defaultinline></switchinline> and for <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">presentations/drawing documents</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\" name=\"presentations/drawing documents\">presentations/drawing documents</link></caseinline><defaultinline>presentations/drawing documents</defaultinline></switchinline>."
-msgstr ""
+msgstr "Chaque application $[officename] dispose de sa propre fenêtre <emph>Styles</emph>. Il existe par conséquent des fenêtres distinctes pour les <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"documents texte\">documents texte</link></caseinline><defaultinline>documents texte</defaultinline></switchinline>, pour les <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/05100000.xhp\" name=\"classeurs\">classeurs</link></caseinline><defaultinline>classeurs</defaultinline></switchinline> et pour les <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><link href=\"text/simpress/01/05100000.xhp\" name=\"présentations et dessins\">présentations et dessins</link></caseinline><caseinline select=\"DRAW\"><link href=\"text/simpress/01/05100000.xhp\" name=\"présentations et dessins\">présentations et dessins</link></caseinline><defaultinline>présentations et dessins</defaultinline></switchinline>."
#: 01230000.xhp
msgctxt ""
@@ -9518,7 +9518,7 @@ msgctxt ""
"par_idN10621\n"
"help.text"
msgid "To reset the selected objects to the default paragraph style, select <emph>Clear formatting</emph>. Select <emph>More Styles</emph> to open the <emph>Styles</emph> window."
-msgstr ""
+msgstr "Pour restaurer le style de paragraphe par défaut des objets sélectionnés, sélectionnez <emph>Effacer le formatage direct</emph>. Sélectionnez <emph>Autres styles</emph> pour ouvrir la fenêtre <emph>Styles</emph>."
#: 02010000.xhp
msgctxt ""
@@ -9526,7 +9526,7 @@ msgctxt ""
"par_idN10631\n"
"help.text"
msgid "Clicking on the <emph>Down Arrow</emph> button on the right of a style name shows a pop-up menu that allows you to update the style from the current selection or to edit the style."
-msgstr ""
+msgstr "Un clic sur le bouton <emph>Flèche vers le bas</emph> à droite du nom du style affiche un menu contextuel qui vous permet de mettre à jour le style à partir de la sélection active ou d'éditer le style."
#: 02010000.xhp
msgctxt ""
@@ -9630,7 +9630,7 @@ msgctxt ""
"par_id3148550\n"
"help.text"
msgid "<variable id=\"vorschautext\">You can see the name of the fonts formatted in their respective font if you mark the <emph>Show preview of fonts</emph> field in <link href=\"text/shared/optionen/01010800.xhp\" name=\"$[officename] - View\"><emph>$[officename] - View</emph></link> in the <emph>Options</emph> dialog box.</variable>"
-msgstr ""
+msgstr "<variable id=\"vorschautext\">Vous pouvez voir le nom des polices formaté dans leur police respective si vous cochez le champ <emph>Afficher l'aperçu des polices</emph> dans <link href=\"text/shared/optionen/01010800.xhp\" name=\"$[officename] - Affichage\"><emph>$[officename] - Affichage</emph></link> dans la boîte de dialogue <emph>Options</emph>.</variable>"
#: 02020000.xhp
msgctxt ""
@@ -9806,7 +9806,7 @@ msgctxt ""
"par_id3154186\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you previously increased the indentation for several collectively selected paragraphs, this command can decrease the indentation for all of the selected paragraphs.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Si vous avez au préalable augmenté le retrait de plusieurs paragraphes sélectionnés ensemble, cette commande réduit le retrait de tous ces paragraphes.</caseinline><caseinline select=\"CALC\">Le contenu des cellules est aligné selon la valeur indiquée sous <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cellule - Alignement\"><emph>Format - Cellule - Alignement</emph></link>.</caseinline></switchinline>"
#: 02130000.xhp
msgctxt ""
@@ -9830,7 +9830,7 @@ msgctxt ""
"par_id3153031\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you click the <emph>Decrease Indent</emph> icon while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> key, the indent for the selected paragraph is moved by the default tab stop that has been set under <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - General\"><emph>%PRODUCTNAME Writer - General</emph></link> in the <emph>Options</emph> dialog box.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Si vous cliquez sur l'icône <emph>Diminuer le retrait</emph> en maintenant la touche <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> enfoncée, le retrait du paragraphe sélectionné est décalé de la tabulation par défaut qui a été définie sous <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - General\"><emph>%PRODUCTNAME Writer - Général</emph></link> dans la boîte de dialogue <emph>Options</emph>.</caseinline></switchinline>"
#: 02140000.xhp
msgctxt ""
@@ -9862,7 +9862,7 @@ msgctxt ""
"par_id3151330\n"
"help.text"
msgid "<ahelp hid=\".\">Click the <emph>Increase Indent</emph> icon to increase the left indent of the current paragraph or cell content and set it to the next default tab position.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Cliquez sur l'icône <emph>Augmenter le retrait</emph> pour augmenter le retrait à gauche du contenu de la cellule ou du paragraphe actif et le définir à la tabulation suivante.</ahelp>"
#: 02140000.xhp
msgctxt ""
@@ -9870,7 +9870,7 @@ msgctxt ""
"par_id3149798\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If several paragraphs are selected, the indentation of all selected paragraphs is increased.</caseinline><caseinline select=\"CALC\">The cell content refers to the current value under <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\"><emph>Format - Cells - Alignment</emph></link> tab.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Si plusieurs paragraphes sont sélectionnés, le retrait de chacun de ces paragraphes est augmenté.</caseinline><caseinline select=\"CALC\">Le contenu des cellules est aligné selon la valeur indiquée dans l'onglet <link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cellule - Alignement\"><emph>Format - Cellule - Alignement</emph></link>.</caseinline></switchinline>"
#: 02140000.xhp
msgctxt ""
@@ -9894,7 +9894,7 @@ msgctxt ""
"par_id3152996\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Click the <emph>Increase Indent</emph> icon while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> key to move the indenting of the selected paragraph by the default tab distance set under <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - General\"><emph>%PRODUCTNAME Writer - General</emph></link> in the <emph>Options</emph> dialog box.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Cliquez sur l'icône <emph>Augmenter le retrait</emph> en maintenant la touche <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> enfoncée, pour décaler le retrait du paragraphe sélectionné de la tabulation par défaut définie sous <link href=\"text/shared/optionen/01040200.xhp\" name=\"Writer - General\"><emph>%PRODUCTNAME Writer - Général</emph></link> dans la boîte de dialogue <emph>Options</emph>.</caseinline></switchinline>"
#: 02140000.xhp
msgctxt ""
@@ -9934,7 +9934,7 @@ msgctxt ""
"par_id3153126\n"
"help.text"
msgid "Indent increased by the amount with the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> key."
-msgstr ""
+msgstr "Pour augmenter la valeur du retrait, utilisez la touche <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Commande</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>"
#: 02140000.xhp
msgctxt ""
@@ -10070,7 +10070,7 @@ msgctxt ""
"par_idN10757\n"
"help.text"
msgid "To turn off highlighting, press <emph>Esc</emph>."
-msgstr ""
+msgstr "Pour désactiver la mise en évidence, appuyez sur <emph>Échap</emph>."
#: 02160000.xhp
msgctxt ""
@@ -10158,7 +10158,7 @@ msgctxt ""
"par_id3156211\n"
"help.text"
msgid "<ahelp hid=\".uno:ParaspaceIncrease\">Click the <emph>Increase Spacing</emph> icon to increase the paragraph spacing above the selected paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ParaspaceIncrease\">Pour augmenter l'espacement entre les paragraphes situés au-dessus du paragraphe sélectionné, cliquez sur l'icône <emph>Augmenter l'espacement</emph>.</ahelp>"
#: 03110000.xhp
msgctxt ""
@@ -10182,7 +10182,7 @@ msgctxt ""
"par_id3155391\n"
"help.text"
msgid "You can make additional adjustments to the spacing by selecting <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph - Indents & Spacing\"><emph>Format - Paragraph - Indents & Spacing</emph></link>."
-msgstr ""
+msgstr "Pour procéder à des ajustements supplémentaires de l'espacement, sélectionnez<link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraphe - Retrait et espacement\"><emph>Format - Paragraphe - Retrait et espacement</emph></link>."
#: 03120000.xhp
msgctxt ""
@@ -10206,7 +10206,7 @@ msgctxt ""
"par_id3147143\n"
"help.text"
msgid "<ahelp hid=\".uno:ParaspaceDecrease\">Click the <emph>Decrease Spacing</emph> icon to decrease the paragraph spacing above the selected paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ParaspaceDecrease\">Cliquez sur l'icône <emph>Réduire l'espacement</emph> pour réduire l'espacement entre le paragraphe sélectionné et celui qui le précède.</ahelp>"
#: 03120000.xhp
msgctxt ""
@@ -10230,7 +10230,7 @@ msgctxt ""
"par_id3156410\n"
"help.text"
msgid "You can make additional adjustments to the spacing by selecting <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph - Indents & Spacing\"><emph>Format - Paragraph - Indents & Spacing</emph></link>."
-msgstr ""
+msgstr "Pour procéder à des ajustements supplémentaires de l'espacement, sélectionnez<link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraphe - Retrait et espacement\"><emph>Format - Paragraphe - Retrait et espacement</emph></link>."
#: 03130000.xhp
msgctxt ""
@@ -10270,7 +10270,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">To apply a particular type of border to a single cell, position the cursor in the cell, open the <emph>Border</emph> toolbar and select a border.</caseinline><defaultinline> Whenever you insert graphics or tables, they already have a complete border. To remove that border, select the graphic object or the entire table and click the <emph>no border</emph> icon on the <emph>Border</emph> toolbar.</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Pour appliquer un type de bordure à une seule cellule, placez le curseur dans la cellule, ouvrez la barre d'outils <emph>Bordure</emph> et sélectionnez une bordure.</caseinline><defaultinline> Les images ou les tableaux que vous insérez comportent déjà une bordure complète. Pour supprimer cette bordure, sélectionnez l'objet graphique ou le tableau entier, puis cliquez sur l'icône <emph>Aucune bordure</emph> de la barre d'outils <emph>Bordure</emph>.</defaultinline></switchinline>"
#: 03130000.xhp
msgctxt ""
@@ -10294,7 +10294,7 @@ msgctxt ""
"par_id3148990\n"
"help.text"
msgid "Further information can be found in the Help in <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"><emph>Borders</emph></link>. You can also find information on how to <link href=\"text/shared/guide/border_table.xhp\" name=\"format a text table\"><emph>format a text table</emph></link> with the <emph>Borders</emph> icon."
-msgstr ""
+msgstr "Pour plus d'informations, consultez la section <link href=\"text/shared/01/05030500.xhp\" name=\"Bordures\"><emph>Bordures</emph></link> de l'aide en ligne. Vous y trouverez également des informations sur la <link href=\"text/shared/guide/border_table.xhp\" name=\"mise en forme d'un tableau de texte\"><emph>mise en forme d'un tableau de texte</emph></link> à partir de l'icône <emph>Bordure</emph>."
#: 03140000.xhp
msgctxt ""
@@ -10350,7 +10350,7 @@ msgctxt ""
"par_id3153114\n"
"help.text"
msgid "For more information, see the <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"><emph>Borders</emph></link> section of the Help."
-msgstr ""
+msgstr "Pour plus d'informations, reportez-vous à la section <link href=\"text/shared/01/05030500.xhp\" name=\"Bordures\"><emph>Bordures</emph></link> de l'Aide."
#: 03150000.xhp
msgctxt ""
@@ -10398,7 +10398,7 @@ msgctxt ""
"par_id3154317\n"
"help.text"
msgid "For more information, see the <link href=\"text/shared/01/05030500.xhp\" name=\"Borders\"><emph>Borders</emph></link> section in the Help."
-msgstr ""
+msgstr "Pour plus d'informations, reportez-vous à la section <link href=\"text/shared/01/05030500.xhp\" name=\"Bordures\"><emph>Bordures</emph></link> de l'Aide."
#: 03200000.xhp
msgctxt ""
@@ -10430,7 +10430,7 @@ msgctxt ""
"par_id3150499\n"
"help.text"
msgid "<variable id=\"verankerungtext\"><ahelp hid=\".uno:ToggleAnchorType\">Allows you to switch between anchoring options.</ahelp></variable> The <emph>Change Anchor</emph> icon is only visible when an object such as a graphic or control field <switchinline select=\"appl\"><caseinline select=\"WRITER\">or frame</caseinline></switchinline> is selected."
-msgstr ""
+msgstr "<variable id=\"verankerungtext\"><ahelp hid=\".uno:ToggleAnchorType\">Permet de passer d'une option d'ancrage à une autre.</ahelp></variable> L'icône <emph>Changer d'ancrage</emph> n'est visible que si un objet, tel qu'une image ou un champ de contrôle <switchinline select=\"appl\"><caseinline select=\"WRITER\"> ou un cadre</caseinline></switchinline> est sélectionné."
#: 03200000.xhp
msgctxt ""
@@ -10438,7 +10438,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "Further information about the anchoring is contained in the <link href=\"text/shared/01/05260000.xhp\" name=\"Anchoring\"><emph>Anchoring</emph></link> help section."
-msgstr ""
+msgstr "Pour plus d'informations sur l'ancrage, reportez-vous à la rubrique d'aide <link href=\"text/shared/01/05260000.xhp\" name=\"Ancrage\"><emph>Ancrage</emph></link>."
#: 04210000.xhp
msgctxt ""
@@ -10582,7 +10582,7 @@ msgctxt ""
"par_id3149716\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Select an object and click the <emph>Rotate</emph> icon on the <emph>Drawing</emph> toolbar.</caseinline><caseinline select=\"DRAW\">Select an object and click the <emph>Rotate</emph> icon on the <emph>Drawing</emph> toolbar.</caseinline><defaultinline>Select an object and click the <emph>Rotate</emph> icon on the <emph>Drawing Object Properties</emph> toolbar.</defaultinline></switchinline> Drag a corner handle of the object in the direction you want to rotate it."
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Sélectionnez un objet et cliquez sur l'icône <emph>Pivoter</emph> dans la barre d'outils de <emph>dessin</emph>. </caseinline><caseinline select=\"DRAW\">Sélectionnez un objet et cliquez sur l'icône <emph>Pivoter</emph> dans la barre d'outils de <emph>dessin</emph>. </caseinline><defaultinline>Sélectionnez un objet et cliquez sur l'icône <emph>Pivoter</emph> dans la barre d'outils <emph>Propriétés de l'objet de dessin</emph>.</defaultinline></switchinline> Faites glisser la poignée d'angle d'un objet dans la direction dans laquelle vous voulez le faire pivoter."
#: 05090000.xhp
msgctxt ""
@@ -10678,7 +10678,7 @@ msgctxt ""
"par_id3149549\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The<emph> Demote One Level </emph>icon is on the <emph>Bullets and Numbering</emph> bar, which appears when the cursor is positioned on a numbering or bullets item.</caseinline><caseinline select=\"IMPRESS\">The <emph>Demote</emph> icon is on the <emph>Text Formatting</emph> bar, which appears when working in the outline view.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">L'icône <emph>Abaisser d'un niveau</emph> se trouve sur la barre <emph>Puces et numérotation</emph> qui s'affiche lorsque le curseur est placé sur un élément de numérotation ou de liste à puces. </caseinline><caseinline select=\"IMPRESS\">L'icône <emph>Abaisser</emph> se trouve sur la barre de <emph>formatage de texte</emph> qui s'affiche en mode Plan. </caseinline></switchinline>"
#: 06050000.xhp
msgctxt ""
@@ -10694,7 +10694,7 @@ msgctxt ""
"par_id3149096\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Demote One Level</caseinline><defaultinline>Demote</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Abaisser d'un niveau</caseinline><defaultinline>Abaisser</defaultinline></switchinline>"
#: 06060000.xhp
msgctxt ""
@@ -10726,7 +10726,7 @@ msgctxt ""
"par_id3149205\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The <emph>Promote One Level</emph> icon is on the <emph>Bullets and Numbering</emph> bar, which appears when the cursor is positioned on a numbering or bullets item.</caseinline><caseinline select=\"IMPRESS\">The <emph>Promote</emph> icon is on the <emph>Text Formatting</emph> bar, which appears when working in the outline view.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">L'icône <emph>Hausser d'un niveau</emph> se trouve sur la barre <emph>Puces et numérotation</emph> qui s'affiche lorsque le curseur est placé sur un élément de numérotation ou de liste à puces.</caseinline><caseinline select=\"IMPRESS\">L'icône <emph>Hausser d'un niveau</emph> se trouve sur la barre de <emph>formatage de texte</emph> qui s'affiche en mode Plan.</caseinline></switchinline>"
#: 06060000.xhp
msgctxt ""
@@ -10742,7 +10742,7 @@ msgctxt ""
"par_id3146958\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Promote One Level</caseinline><defaultinline>Promote</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Hausser d'un niveau</caseinline><defaultinline>Hausser</defaultinline></switchinline>"
#: 06100000.xhp
msgctxt ""
@@ -10774,7 +10774,7 @@ msgctxt ""
"par_id3149283\n"
"help.text"
msgid "If you have numbered paragraphs and click the <emph>Move Up</emph> icon, the numbers will be adjusted to the current order. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The <emph>Move Up</emph> icon is only visible when the cursor is positioned in a bulleted or numbered list.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The <emph>Move Up</emph> icon appears on the <emph>Text Formatting</emph> bar when you use the outline view.</caseinline></switchinline>"
-msgstr ""
+msgstr "Si vous avez numéroté des paragraphes et que vous cliquez sur l'icône <emph>Déplacer vers le haut</emph>, les numéros sont replacés dans le nouvel ordre. <switchinline select=\"appl\"><caseinline select=\"WRITER\">L'icône <emph>Déplacer vers le haut</emph> n'est visible que lorsque le curseur est positionné sur une liste à puces ou une liste numérotée.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">L'icône <emph>Déplacer vers le haut</emph> s'affiche dans la barre de <emph>formatage de texte</emph> lorsque vous êtes en mode Plan.</caseinline></switchinline>"
#: 06100000.xhp
msgctxt ""
@@ -10782,7 +10782,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "This function can be called by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Up Arrow</emph>."
-msgstr ""
+msgstr "La fonction peut être appelée en appuyant sur <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Commande</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Flèche vers le haut</emph>."
#: 06100000.xhp
msgctxt ""
@@ -10830,7 +10830,7 @@ msgctxt ""
"par_id3158405\n"
"help.text"
msgid "If you have numbered paragraphs and click the <emph>Move Down</emph> icon, the numbers will be adjusted to the current order. <switchinline select=\"appl\"><caseinline select=\"WRITER\">The <emph>Move Down</emph> icon is only visible when the cursor is positioned in a bulleted or numbered list.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The <emph>Move Down</emph> icon appears on the <emph>Text Formatting</emph> bar when you use the outline view.</caseinline></switchinline>"
-msgstr ""
+msgstr "Si vous avez numéroté des paragraphes et que vous cliquez sur l'icône <emph>Déplacer vers le bas</emph>, les numéros sont placés dans le nouvel ordre. <switchinline select=\"appl\"><caseinline select=\"WRITER\">L'icône <emph>Déplacer vers le bas</emph> n'est visible que lorsque le curseur est positionné sur une liste à puces ou une liste numérotée. </caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">L'icône <emph>Déplacer vers le bas</emph> s'affiche dans la barre de <emph>formatage de texte</emph> lorsque vous êtes en mode Plan. </caseinline></switchinline>"
#: 06110000.xhp
msgctxt ""
@@ -10838,7 +10838,7 @@ msgctxt ""
"par_id3149751\n"
"help.text"
msgid "This function can be called by pressing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Down Arrow</emph>."
-msgstr ""
+msgstr "La fonction peut être appelée en appuyant sur <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Commande</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>Flèche vers le bas</emph>."
#: 06110000.xhp
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"par_id3155150\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bullet options such as type and position are defined in the <link href=\"text/shared/01/06050000.xhp\" name=\"Bullets and Numbering\"><emph>Bullets and Numbering</emph></link> dialog. To open this dialog, click the <emph>Bullets and Numbering</emph> icon on the <link href=\"text/swriter/main0206.xhp\" name=\"Bullets and Numbering Bar\"><emph>Bullets and Numbering</emph> bar</link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Les options des puces telles que le type et la position sont définies dans la boîte de dialogue <link href=\"text/shared/01/06050000.xhp\" name=\"Bullets and Numbering\"><emph>Puces et numérotation</emph></link>. Pour ouvrir cette boîte de dialogue, cliquez sur l'icône <emph>Puces et numérotation</emph> dans la barre <link href=\"text/swriter/main0206.xhp\" name=\"Bullets and Numbering Bar\"><emph>Puces et numérotation</emph></link>.</caseinline></switchinline>"
#: 06120000.xhp
msgctxt ""
@@ -10894,7 +10894,7 @@ msgctxt ""
"par_id3145669\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Bullet options such as type and position are defined in the <link href=\"text/shared/01/06050000.xhp\" name=\"Bullets and Numbering\"><emph>Bullets and Numbering</emph></link> dialog. To open this dialog, click the <emph>Bullets and Numbering</emph> icon on the <emph>Text Formatting</emph> bar.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Les options relatives aux puces, telles que le type et la disposition de celles-ci, sont définies dans la boîte de dialogue <link href=\"text/shared/01/06050000.xhp\" name=\"Puces et numérotation\"><emph>Puces et numérotation</emph></link>. Pour ouvrir cette boîte de dialogue, cliquez sur l'icône <emph>Puces et numérotation</emph> de la barre de <emph>formatage de texte</emph>. </caseinline></switchinline>"
#: 06120000.xhp
msgctxt ""
@@ -10902,7 +10902,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">In the <link href=\"text/swriter/01/03120000.xhp\" name=\"Web Layout\"><emph>Web Layout</emph></link>, some numbering/bullet options are not available.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Certaines options de numérotation et de puces ne sont pas disponibles pour la <link href=\"text/swriter/01/03120000.xhp\" name=\"mise en page Web\"><emph>mise en page Web</emph></link>.</caseinline></switchinline>"
#: 06120000.xhp
msgctxt ""
@@ -10910,7 +10910,7 @@ msgctxt ""
"par_id3154317\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">The distance between the text and the left text frame and the position of the bullets can be determined in the dialog under <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraph\"><emph>Format - Paragraph</emph></link> by entering the left indent and the first-line indent.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">La distance entre le texte, le cadre texte gauche et la disposition des puces peut être déterminée dans la boîte de dialogue sous <link href=\"text/shared/01/05030100.xhp\" name=\"Format - Paragraphe\"><emph>Format - Paragraphe</emph></link>. Il suffit d'insérer un retrait à gauche et un alinéa.</caseinline></switchinline>"
#: 06120000.xhp
msgctxt ""
@@ -10958,7 +10958,7 @@ msgctxt ""
"par_idN108C6\n"
"help.text"
msgid "Enable <emph>Load URL</emph> with the <emph>Visible Buttons</emph> command (right-click the toolbar)."
-msgstr ""
+msgstr "Activer <emph>Charger l'URL</emph> avec la commande <emph>Boutons visibles</emph> (clic droit sur la barre d'outils)."
#: 07060000.xhp
msgctxt ""
@@ -11054,7 +11054,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "<ahelp hid=\"HID_HELP_TEXT_SELECTION_MODE\">You can enable a selection cursor in a read-only text document or in the Help. Choose <emph>Edit - Select Text</emph> or open the context menu of a read-only document and choose <emph>Select Text</emph>. The selection cursor does not blink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_HELP_TEXT_SELECTION_MODE\">Active ou désactive le curseur de sélection dans un texte en lecture seule ou dans l'aide. Choisissez <emph>Édition - Sélectionner le texte</emph> ou bien, dans un document en lecture seule, ouvrez le menu contextuel, puis choisissez <emph>Sélectionner le texte</emph>. Le curseur de sélection ne clignote pas.</ahelp>"
#: 07070100.xhp
msgctxt ""
@@ -11118,7 +11118,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "To make changes in a database used by more than one person, you <emph>must have</emph> the appropriate access rights. When you edit an external database, there is <emph>no</emph> intermediate storage by $[officename] of the changes made. They are sent <emph>directly</emph> to the database."
-msgstr ""
+msgstr "Pour apporter des modifications dans une base de données utilisée par plusieurs personnes, vous <emph>devez bénéficier</emph> des droits d'accès appropriés. Lorsque vous éditez une base de données externe, <emph>aucune</emph> sauvegarde intermédiaire des modifications apportées n'est effectuée par $[officename]. Ces modifications sont appliquées <emph>directement</emph> dans la base de données."
#: 07070200.xhp
msgctxt ""
@@ -11150,7 +11150,7 @@ msgctxt ""
"par_id3163829\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the current database table record.</ahelp> The <emph>Save Record</emph> icon is found on the <link href=\"text/shared/main0212.xhp\" name=\"Database Bar\"><emph>Table Data</emph> bar</link>."
-msgstr ""
+msgstr "<ahelp hid=\".\">Enregistre l'enregistrement actif de la table de base de données.</ahelp> L'icône <emph>Enregistrer l'enregistrement</emph> se trouve sur la <link href=\"text/shared/main0212.xhp\" name=\"barre de base de données\">barre des <emph>données de la table</emph></link>"
#: 07070200.xhp
msgctxt ""
@@ -11182,7 +11182,7 @@ msgctxt ""
"par_id3149495\n"
"help.text"
msgid "<ahelp hid=\".uno:Stop\">Click to interrupt the current loading process, <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+click to interrupt all loading processes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Stop\">Cliquer pour interrompre le processus de chargement actuel, <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+clic pour interrompre tous les processus de chargement.</ahelp>"
#: 07090000.xhp
msgctxt ""
@@ -11206,7 +11206,7 @@ msgctxt ""
"par_id3085157\n"
"help.text"
msgid "<ahelp hid=\".uno:ExportDirectToPDF\" visibility=\"visible\">Exports the current document directly as <emph>PDF</emph>. No settings dialog is shown.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ExportDirectToPDF\" visibility=\"visible\">Effectue un export du document actif au format <emph>PDF</emph>. Aucune boîte de dialogue de paramètres ne s'affiche.</ahelp>"
#: 08010000.xhp
msgctxt ""
@@ -11254,7 +11254,7 @@ msgctxt ""
"par_id3143284\n"
"help.text"
msgid "<ahelp hid=\".uno:StatusGetPosition\">Displays the current cursor position in the <emph>%PRODUCTNAME</emph> Basic document. The row number is specified, then the column number.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:StatusGetPosition\">Affiche la position actuelle du curseur dans le document <emph>%PRODUCTNAME</emph> Basic. Le nombre de lignes, puis le nombre de colonnes est spécifié.</ahelp>"
#: 09070000.xhp
msgctxt ""
@@ -11318,7 +11318,7 @@ msgctxt ""
"par_id0122200902231573\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the <emph>Hyperlink</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ouvre la boîte de dialogue <emph>Hyperlien</emph>.</ahelp>"
#: 09070000.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"par_id3154230\n"
"help.text"
msgid "<ahelp hid=\".\">Use the <emph>Internet</emph> page of the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link> to edit hyperlinks with <emph>WWW</emph> or <emph>FTP</emph> addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Utilisez la page <emph>Internet</emph> de la boîte de dialogue <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlien\"><emph>Hyperlien</emph></link> pour éditer des hyperliens vers des adresses <emph>WWW</emph> ou <emph>FTP</emph>.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11454,7 +11454,7 @@ msgctxt ""
"par_id3145071\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_internet\">Creates an \"<emph>http://</emph>\" hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_internet\">Crée un hyperlien \"<emph>http://</emph>\".</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11470,7 +11470,7 @@ msgctxt ""
"par_id3150693\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_ftp\">Creates an \"<emph>FTP://</emph>\" hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkinternetpage/linktyp_ftp\">Crée un hyperlien \"<emph>FTP://</emph>\".</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11614,7 +11614,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <emph>Assign Macro</emph> dialog, in which you can give events such as \"<emph>mouse over object</emph>\" or \"<emph>trigger hyperlink</emph>\" their own program codes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ouvre la boîte de dialogue <emph>Assignation de macro</emph> permettant de définir le code de programmation d'événements spécifiques, tels que \"<emph>Souris sur l'objet</emph>\" ou \"<emph>Déclencher l'hyperlien</emph>\".</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11646,7 +11646,7 @@ msgctxt ""
"par_id2801599\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a name for the hyperlink.</ahelp> $[officename] inserts a <emph>NAME</emph> tag in the hyperlink."
-msgstr ""
+msgstr "<ahelp hid=\".\">Saisissez un nom pour l'hyperlien.</ahelp> $[officename] insère une balise <emph>NAME</emph> dans l'hyperlien."
#: 09070200.xhp
msgctxt ""
@@ -11670,7 +11670,7 @@ msgctxt ""
"par_id3153049\n"
"help.text"
msgid "<ahelp hid=\".\">On the <emph>Mail</emph> page in the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link> you can edit hyperlinks for e-mail addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">La page <emph>Mail</emph> de la boîte de dialogue <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlien\"><emph>Hyperlien</emph></link> permet d'éditer les hyperliens relatifs à des adresses e-mail.</ahelp>"
#: 09070200.xhp
msgctxt ""
@@ -11694,7 +11694,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\".\">Assigns the specified <emph>e-mail address</emph> to the hyperlink.</ahelp> Clicking the new hyperlink in the document will open a new message document, addressed to the receiver specified in the <emph>Recipient</emph> field."
-msgstr ""
+msgstr "<ahelp hid=\".\">Assigne l'<emph>adresse e-mail</emph> spécifiée à l'hyperlien.</ahelp> Un clic sur le nouvel hyperlien dans le document ouvre un nouveau message adressé au destinataire spécifié dans le champ <emph>Destinataire</emph>."
#: 09070200.xhp
msgctxt ""
@@ -11710,7 +11710,7 @@ msgctxt ""
"par_id3149514\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkmailpage/adressbook\">Hides or shows the <emph>data source</emph> browser.</ahelp> Drag the receiver's <emph>E-mail</emph> data field from the data source browser into the <emph>Recipient</emph> text field."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkmailpage/adressbook\">Affiche ou masque le navigateur de <emph>sources de données</emph>.</ahelp> Faites glisser les données du champ <emph>E-mail</emph> du destinataire depuis le navigateur de sources de données vers le champ <emph>Destinataire</emph>."
#: 09070200.xhp
msgctxt ""
@@ -11726,7 +11726,7 @@ msgctxt ""
"par_id3153821\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkmailpage/subject\">Specifies the <emph>subject</emph> that is inserted in the subject line of the new message document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkmailpage/subject\">Spécifie l'<emph>objet</emph> du message, indiqué sur la ligne de l'objet du nouveau message.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -11750,7 +11750,7 @@ msgctxt ""
"par_id3154682\n"
"help.text"
msgid "<ahelp hid=\".\">Hyperlinks to any document or targets in documents can be edited using the <emph>Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Les hyperliens vers tout document ou toute cible dans un document peuvent être édités avec l'onglet <emph>Document</emph> de la <link href=\"text/shared/02/09070000.xhp\" name=\"boîte de dialogue Hyperlien\">boîte de dialogue <emph>Hyperlien</emph></link></ahelp>."
#: 09070300.xhp
msgctxt ""
@@ -11774,7 +11774,7 @@ msgctxt ""
"par_id9462263\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a <emph>URL</emph> for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Saisissez un <emph>URL</emph> pour le fichier que vous voulez ouvrir quand vous cliquez sur l'hyperlien. Si vous ne spécifiez pas de cadre cible, le fichier s'ouvre dans le document actif ou dans le cadre.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -11790,7 +11790,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkdocpage/fileopen\">Opens the <emph>Open</emph> dialog, where you can select a file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkdocpage/fileopen\">Ouvre la boîte de dialogue <emph>Ouvrir</emph> dans laquelle vous pouvez sélectionner un fichier.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -11870,7 +11870,7 @@ msgctxt ""
"par_id3150445\n"
"help.text"
msgid "<ahelp hid=\".\">Use the <emph>New Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\"><emph>Hyperlink</emph> dialog</link> to set up a hyperlink to a new document and create the new document simultaneously.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Utilisez l'onglet <emph>Nouveau document</emph> de la <link href=\"text/shared/02/09070000.xhp\" name=\"boîte de dialogue Hyperlien\">boîte de dialogue <emph>Hyperlien</emph></link> pour définir un hyperlien vers un nouveau document et créer simultanément celui-ci.</ahelp>"
#: 09070400.xhp
msgctxt ""
@@ -11934,7 +11934,7 @@ msgctxt ""
"par_id8894009\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinknewdocpage/path\">Enter a <emph>URL</emph> for the file that you want to open when you click the hyperlink.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinknewdocpage/path\">Saisissez une <emph>URL</emph> pour le fichier à ouvrir lorsque vous cliquez sur l'hyperlien.</ahelp>"
#: 09070400.xhp
msgctxt ""
@@ -12094,7 +12094,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "To Document End/Last Page"
-msgstr ""
+msgstr "À la fin du document/À la dernière page"
#: 10040000.xhp
msgctxt ""
@@ -12102,7 +12102,7 @@ msgctxt ""
"hd_id3154840\n"
"help.text"
msgid "<switchinline select=\"appl\"> <caseinline select=\"WRITER\"><link href=\"text/shared/02/10040000.xhp\" name=\"To Document End\">To Document End</link></caseinline><defaultinline><link href=\"text/shared/02/10040000.xhp\" name=\"Last Page\">Last Page</link></defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/02/10040000.xhp\" name=\"À la fin du document\">À la fin du document</link></caseinline><defaultinline><link href=\"text/shared/02/10040000.xhp\" name=\"Dernière page\">Dernière page</link></defaultinline></switchinline>"
#: 10040000.xhp
msgctxt ""
@@ -12126,7 +12126,7 @@ msgctxt ""
"par_id3145313\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To Document End</caseinline><defaultinline>Last Page</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">À la fin du document</caseinline><defaultinline>Dernière page</defaultinline></switchinline>"
#: 10100000.xhp
msgctxt ""
@@ -12150,7 +12150,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "<ahelp hid=\".uno:CloseWin\">Closes the current window.</ahelp> Choose <emph>Window - Close Window</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>F4</emph>. In the print preview of $[officename] Writer and Calc, you can close the current window by clicking the <emph>Close Preview</emph> button."
-msgstr ""
+msgstr "<ahelp hid=\".uno:CloseWin\">Ferme la fenêtre active.</ahelp> Choisissez <emph>Fenêtre - Fermer la fenêtre</emph>, ou appuyez sur <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline>+<emph>F4</emph>. Dans l'aperçu de $[officename] Writer et Calc, vous pouvez fermer la fenêtre active en cliquant sur le bouton <emph>Fermer l'aperçu</emph>."
#: 10100000.xhp
msgctxt ""
@@ -12454,7 +12454,7 @@ msgctxt ""
"par_id3146130\n"
"help.text"
msgid "<image src=\"cmd/sc_removefilter.png\" id=\"img_id3151315\" width=\"38px\" height=\"38px\"><alt id=\"alt_id3151315\">Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_removefilter.png\" id=\"img_id3151315\" width=\"38px\" height=\"38px\"><alt id=\"alt_id3151315\">Icône</alt></image>"
#: 12040000.xhp
msgctxt ""
@@ -13606,7 +13606,7 @@ msgctxt ""
"par_id3149549\n"
"help.text"
msgid "While the functions <link href=\"text/shared/02/12010000.xhp\" name=\"Sort in Ascending Order\"><emph>Sort in Ascending Order</emph></link> and <link href=\"text/shared/02/12020000.xhp\" name=\"Sort in Descending Order\"><emph>Sort in Descending Order</emph></link> sort by one criterion only, you can combine several criteria in the <emph>Sort Order</emph> dialog."
-msgstr ""
+msgstr "Alors qu'avec les fonctions <link href=\"text/shared/02/12010000.xhp\" name=\"Tri croissant\"><emph>Tri croissant</emph></link> et <link href=\"text/shared/02/12020000.xhp\" name=\"Tri décroissant\"><emph>Tri décroissant</emph></link> vous ne pouvez utiliser qu'un seul critère de tri, la boîte de dialogue <emph>Trier</emph> vous permet de combiner plusieurs critères."
#: 12100100.xhp
msgctxt ""
@@ -13638,7 +13638,7 @@ msgctxt ""
"par_id3148620\n"
"help.text"
msgid "If you sort the field name \"First name\" in ascending order and the field name \"Last name\" in descending order, all records will be sorted in ascending order by first name, and then within the first names, in descending order by last name."
-msgstr ""
+msgstr "Si vous triez le champ de données \"Prénom\" par ordre croissant et le champ de données \"Nom\" par ordre décroissant, tous les enregistrements seront triés par ordre croissant des prénoms, puis à nouveau triés par ordre décroissant des noms au niveau des prénoms."
#: 12100100.xhp
msgctxt ""
@@ -13702,7 +13702,7 @@ msgctxt ""
"bm_id3146936\n"
"help.text"
msgid "<bookmark_value>tables in databases; searching</bookmark_value><bookmark_value>forms; browsing</bookmark_value><bookmark_value>records; searching in databases</bookmark_value><bookmark_value>searching; databases</bookmark_value><bookmark_value>databases; searching records</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Tables de base de données;recherche</bookmark_value><bookmark_value>Formulaires;navigation</bookmark_value><bookmark_value>Enregistrements;recherche dans les bases de données</bookmark_value><bookmark_value>Recherche;bases de données</bookmark_value><bookmark_value>Bases de données;recherche d'enregistrements</bookmark_value>"
#: 12100200.xhp
msgctxt ""
@@ -13718,7 +13718,7 @@ msgctxt ""
"par_id3147588\n"
"help.text"
msgid "<variable id=\"suchentext\"><ahelp hid=\".uno:RecSearch\" visibility=\"hidden\">Searches database tables and forms.</ahelp> In forms or database tables, you can search through data fields, list boxes, and check boxes for specific values.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchentext\"><ahelp hid=\".uno:RecSearch\" visibility=\"hidden\">Effectue des recherches dans les tables de base de données et dans les formulaires. </ahelp>Vous pouvez rechercher des valeurs spécifiques dans les champs de données, zones de liste et cases à cocher de formulaires ou de tables de base de données.</variable>"
#: 12100200.xhp
msgctxt ""
@@ -13734,7 +13734,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "The search described here is carried out by <item type=\"productname\">%PRODUCTNAME</item>. If you want to use the SQL server to search in a database, then you should use the <link href=\"text/shared/02/12110000.xhp\" name=\"Form-based Filters\"><emph>Form-based Filters</emph></link> icon on the <link href=\"text/shared/main0213.xhp\" name=\"Form Bar\"><emph>Form</emph> bar</link>."
-msgstr ""
+msgstr "La recherche décrite ici est effectuée par <item type=\"productname\">%PRODUCTNAME</item>. Si vous souhaitez utiliser le serveur SQL pour effectuer une recherche dans une base de données, vous devez utiliser l'icône <link href=\"text/shared/02/12110000.xhp\" name=\"Filtre formulaire\"><emph>Filtre formulaire</emph></link> de la <link href=\"text/shared/main0213.xhp\" name=\"Barre de formulaire\">Barre de <emph>formulaire</emph></link>."
#: 12100200.xhp
msgctxt ""
@@ -14078,7 +14078,7 @@ msgctxt ""
"par_id3149959\n"
"help.text"
msgid "You have a date field, which is saved in \"<emph>DD.MM.YY</emph>\" format in the database (for example, <emph>17.02.65</emph>). The format of the entry is changed in the data source view to \"<emph>DD MMM YYYY</emph>\" (<emph>17 Feb 1965</emph>). Following this example, a record containing February 17 is only found when the <emph>Apply field format</emph> option is on:"
-msgstr ""
+msgstr "Vous disposez d'un champ de date enregistré au format \"<emph>JJ.MM.AA</emph>\" dans la base de données (<emph>17/02/65</emph>, par exemple). Le format de l'entrée est remplacé, dans la vue des sources de données, par \"<emph>JJ. MMM AAAA</emph>\" (<emph>17 fév 1965</emph>). Dans cet exemple, un enregistrement contenant 17 février n'est trouvé que si l'option <emph>Appliquer le format de champ</emph> est activée :"
#: 12100200.xhp
msgctxt ""
@@ -14166,7 +14166,7 @@ msgctxt ""
"par_id3153836\n"
"help.text"
msgid "\"5\" returns \"14:00:00\" as a time."
-msgstr ""
+msgstr "\"5\" renvoie l'heure \"14:00:00\"."
#: 12100200.xhp
msgctxt ""
@@ -14174,7 +14174,7 @@ msgctxt ""
"par_id3156332\n"
"help.text"
msgid "Time fields are not defined for <emph>dBASE</emph> databases and must be simulated. To internally display the time \"<emph>14:00:00</emph>\", a \"<emph>5</emph>\" is necessary."
-msgstr ""
+msgstr "Les champs Horaire ne sont pas définis dans les bases de données <emph>dBase</emph> et doivent être simulés. Le \"<emph>5</emph>\" est nécessaire pour afficher l'heure en interne \"<emph>14:00:00</emph>\"."
#: 12100200.xhp
msgctxt ""
@@ -14182,7 +14182,7 @@ msgctxt ""
"par_id3157965\n"
"help.text"
msgid "\"00:00:00\" returns all records of a standard date field."
-msgstr ""
+msgstr "\"00:00:00\" renvoie tous les enregistrements d'un champ de date."
#: 12100200.xhp
msgctxt ""
@@ -14206,7 +14206,7 @@ msgctxt ""
"par_id3155518\n"
"help.text"
msgid "The view shown does not match what is stored internally. For example, if value \"<emph>45.789</emph>\" is stored in the database as a field of type \"<emph>Number/Double</emph>\" and the shown formatting is set to display only two decimals, \"<emph>45.79</emph>\" is only returned in searches with field formatting."
-msgstr ""
+msgstr "L'affichage qui apparaît ne correspond pas à l'enregistrement interne. Si la valeur \"<emph>45,789</emph>\" est contenue dans un champ de type \"<emph>nombre/double</emph>\" de la base de données et que le formatage affiché est paramétré pour ne faire apparaître que deux chiffres à droite de la virgule, la valeur \"<emph>45,79</emph>\" peut être retrouvée uniquement par une recherche avec un formatage de champ."
#: 12100200.xhp
msgctxt ""
@@ -14222,7 +14222,7 @@ msgctxt ""
"par_id3154507\n"
"help.text"
msgid "However, searching without <emph>Apply field format</emph> is appropriate for larger databases with no formatting issues, because it is faster."
-msgstr ""
+msgstr "Néanmoins, une recherche sans <emph>Appliquer le format de champ</emph> convient aux bases de données plus volumineuses sans problème de formatage, car elle est plus rapide."
#: 12100200.xhp
msgctxt ""
@@ -14302,7 +14302,7 @@ msgctxt ""
"par_id3149255\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/fmsearchdialog/cbWildCard\" visibility=\"hidden\">Allows a search with a <emph>*</emph> or <emph>?</emph> wildcard.</ahelp> You can use the following wildcards:"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/fmsearchdialog/cbWildCard\" visibility=\"hidden\">Autorise une recherche avec un caractère générique <emph>*</emph> ou <emph>?</emph>.</ahelp> Vous pouvez utiliser les caractères génériques suivants :"
#: 12100200.xhp
msgctxt ""
@@ -14398,7 +14398,7 @@ msgctxt ""
"par_id3145762\n"
"help.text"
msgid "If you want to search for the actual characters <emph>?</emph> or <emph>*</emph>, precede them with a backslash: \"<emph>\\?</emph>\" or \"<emph>\\*</emph>\". However, this is only necessary when <emph>Wildcard expression</emph> is enabled. When the option is not enabled, the wildcard characters are processed like normal characters."
-msgstr ""
+msgstr "Si vous voulez rechercher les caractères <emph>?</emph> ou <emph>*</emph>, faites-les précéder d'une barre oblique inverse : \"<emph>\\?</emph>\" ou \"<emph>\\*</emph>\". Cependant, ceci n'est nécessaire que si <emph>Expression régulière</emph> est cochée. Si cette option n'est pas activée, les caractères génériques sont traités comme des caractères normaux."
#: 12100200.xhp
msgctxt ""
@@ -14414,7 +14414,7 @@ msgctxt ""
"par_id3150982\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/fmsearchdialog/cbRegular\">Searches with regular expressions.</ahelp> The same regular expressions that are supported here are also supported in the <item type=\"productname\">%PRODUCTNAME</item> <link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace dialog\"><emph>Find & Replace</emph> dialog</link>."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/fmsearchdialog/cbRegular\">Recherches avec expressions régulières.</ahelp> Les expressions régulières qui sont prises en charge ici sont également prises en charge dans la boîte de dialogue <item type=\"productname\">%PRODUCTNAME</item> <link href=\"text/shared/01/02100000.xhp\" name=\"Boîte de dialogue Rechercher & remplacer\"><emph>Rechercher & remplacer</emph></link>."
#: 12100200.xhp
msgctxt ""
@@ -14494,7 +14494,7 @@ msgctxt ""
"par_id3163720\n"
"help.text"
msgid "In very large databases, finding the record in reverse search order can take some time. In this case, the <emph>status bar</emph> informs you that the records are still being counted."
-msgstr ""
+msgstr "Retrouver un enregistrement par une recherche en sens inverse effectuée sur des volumes de données importants peut nécessiter plus de temps. Une indication vous informant que la recherche est poursuivie sur les enregistrements apparaît dans la <emph>barre d'état</emph>."
#: 12100200.xhp
msgctxt ""
@@ -14502,7 +14502,7 @@ msgctxt ""
"hd_id3147389\n"
"help.text"
msgid "Search/Cancel"
-msgstr ""
+msgstr "Rechercher / Annuler"
#: 12100200.xhp
msgctxt ""
@@ -14566,7 +14566,7 @@ msgctxt ""
"par_id3152918\n"
"help.text"
msgid "Unlike the normal search, which is activated by the <link href=\"text/shared/02/12100200.xhp\" name=\"Find Record\"><emph>Find Record</emph></link> icon on the <emph>Form</emph> bar, you can search more quickly by using the form-based filter. Usually a quick database server is charged with the search. Also, you can enter more complex search conditions."
-msgstr ""
+msgstr "En utilisant le filtre de formulaire, vous pouvez effectuer une recherche plus rapide que la recherche normale, qui peut être activée avec l'icône <link href=\"text/shared/02/12100200.xhp\" name=\"Rechercher un enregistrement\"><emph>Rechercher un enregistrement</emph></link> de la <emph>barre de formulaire</emph>. La recherche est généralement confiée à un serveur de base de données rapide. Vous pouvez également saisir des critères de recherche plus complexes."
#: 12110000.xhp
msgctxt ""
@@ -14614,7 +14614,7 @@ msgctxt ""
"par_id3149999\n"
"help.text"
msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3146130\" width=\"38px\" height=\"38px\"><alt id=\"alt_id3146130\">Icon</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3146130\" width=\"38px\" height=\"38px\"><alt id=\"alt_id3146130\">Icône</alt></image>"
#: 12120000.xhp
msgctxt ""
@@ -14630,7 +14630,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "The <emph>Apply Filter</emph> function retains <link href=\"text/shared/02/12110000.xhp\" name=\"form-based filters\"><emph>form-based filters</emph></link> that have been set. You do not need to redefine them."
-msgstr ""
+msgstr "La fonction <emph>Appliquer le filtre</emph> conserve les <link href=\"text/shared/02/12110000.xhp\" name=\"filtres formulaire\"><emph>filtres formulaire</emph></link> qui ont été définis. Il est inutile de les redéfinir."
#: 12130000.xhp
msgctxt ""
@@ -14662,7 +14662,7 @@ msgctxt ""
"par_id3163829\n"
"help.text"
msgid "<ahelp hid=\".uno:ViewFormAsGrid\">Activates an additional table view when in the form view.</ahelp> When the <emph>Data source as table</emph> function is activated, you see the table in an area above the form."
-msgstr ""
+msgstr "<ahelp hid=\".uno:ViewFormAsGrid\">Active une vue de table supplémentaire lorsque vous êtes en mode formulaire.</ahelp> Lorsque la fonction <emph>Source de données comme table</emph> est activée, la table s'affiche dans une zone au-dessus du formulaire."
#: 12130000.xhp
msgctxt ""
@@ -14686,7 +14686,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "The <emph>Table view</emph> and <emph>Form view</emph> reflect the same data. Changes made in the table are also visible in the form, and changes to the form are visible in the table."
-msgstr ""
+msgstr "La <emph>vue de table</emph> et la <emph>vue de formulaire</emph> présentent les mêmes données. Les modifications effectuées dans la table sont également visibles dans le formulaire et réciproquement."
#: 12130000.xhp
msgctxt ""
@@ -14902,7 +14902,7 @@ msgctxt ""
"par_id3154307\n"
"help.text"
msgid "Drag the bottom left mark to the right while pressing the mouse button."
-msgstr ""
+msgstr "Faites glisser vers la droite le triangle inférieur gauche en maintenant le bouton de la souris enfoncé."
#: 13020000.xhp
msgctxt ""
@@ -14918,7 +14918,7 @@ msgctxt ""
"par_id3145673\n"
"help.text"
msgid "Drag the top left mark to the right while pressing the mouse button."
-msgstr ""
+msgstr "Faites glisser vers la droite le triangle supérieur gauche en maintenant le bouton de la souris enfoncé."
#: 13020000.xhp
msgctxt ""
@@ -14934,7 +14934,7 @@ msgctxt ""
"par_id3153761\n"
"help.text"
msgid "Drag the mark on the right to the left while pressing the mouse button."
-msgstr ""
+msgstr "Faites glisser le repère vers la gauche en maintenant le bouton de la souris enfoncé."
#: 13020000.xhp
msgctxt ""
@@ -14942,7 +14942,7 @@ msgctxt ""
"par_id3154760\n"
"help.text"
msgid "In order to change the left indent starting with the second line of a paragraph, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> key, click the triangle on the bottom left, and drag it to the right."
-msgstr ""
+msgstr "Pour modifier le retrait de gauche commençant par la deuxième ligne d'un paragraphe, tenez enfoncée la touche <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Commande</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline> et cliquez sur le triangle en bas à gauche puis tirez le vers la droite."
#: 13020000.xhp
msgctxt ""
@@ -14982,7 +14982,7 @@ msgctxt ""
"par_id3149893\n"
"help.text"
msgid "The <emph>Run Query</emph> function allows you to check the query. When you save the query, it is stored in the <emph>Query</emph> tab page."
-msgstr ""
+msgstr "La fonction <emph>Exécuter la requête</emph> permet de vérifier la requête. Lorsque vous enregistrez la requête, celle-ci est stockée dans l'onglet <emph>Requête</emph>."
#: 14010000.xhp
msgctxt ""
@@ -15078,7 +15078,7 @@ msgctxt ""
"par_id3152821\n"
"help.text"
msgid "<variable id=\"tabellehinzufuegentext\"><ahelp hid=\"dbaccess/ui/tablesjoindialog/tablelist\" visibility=\"hidden\">Specifies the tables to be inserted into the design window.</ahelp> In the <emph>Add Tables</emph> dialog, select the tables you need for your current task.</variable> When creating a query or a new table presentation, select the corresponding table to which the query or table presentation should refer. When working with relational databases, select the tables between which you want to build relationships."
-msgstr ""
+msgstr "<variable id=\"tabellehinzufuegentext\"><ahelp hid=\"dbaccess/ui/tablesjoindialog/tablelist\" visibility=\"hidden\">Indique les tables à insérer dans la fenêtre d'ébauche.</ahelp> Dans la boîte de dialogue <emph>Ajouter des tables</emph>, sélectionnez les tables nécessaires pour exécuter la tâche en cours.</variable> Lors de la création d'une requête ou d'une nouvelle présentation de table, sélectionnez la table à laquelle la requête ou la présentation doit se référer. Lors de l'utilisation de bases de données relationnelles, sélectionnez les tables entre lesquelles vous souhaitez établir des relations."
#: 14020100.xhp
msgctxt ""
@@ -15166,7 +15166,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Switch Design View On/Off"
-msgstr ""
+msgstr "(Dés)activer le mode Ébauche"
#: 14020200.xhp
msgctxt ""
@@ -15174,7 +15174,7 @@ msgctxt ""
"hd_id3159411\n"
"help.text"
msgid "<link href=\"text/shared/02/14020200.xhp\" name=\"Switch Design View On / Off\">Switch Design View On/Off</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/14020200.xhp\" name=\"(Dés)activer le mode Ébauche\">(Dés)activer le mode Ébauche</link>"
#: 14020200.xhp
msgctxt ""
@@ -15198,7 +15198,7 @@ msgctxt ""
"par_id3147399\n"
"help.text"
msgid "Switch Design View On/Off"
-msgstr ""
+msgstr "(Dés)activer le mode Ébauche"
#: 14030000.xhp
msgctxt ""
@@ -15222,7 +15222,7 @@ msgctxt ""
"par_id3155364\n"
"help.text"
msgid "<ahelp hid=\".uno:SbaNativeSql\">In <emph>Native SQL</emph> mode you can enter SQL commands that are not interpreted by $[officename], but are instead passed directly to the data source.</ahelp> If you do not display these changes in the design view, you cannot change back to the design view."
-msgstr ""
+msgstr "<ahelp hid=\".uno:SbaNativeSql\">En mode <emph>SQL natif</emph>, vous pouvez saisir les commandes SQL qui ne sont pas interprétées par $[officename], mais qui sont transmises directement à la source de données.</ahelp> Vous ne pouvez pas repasser en mode Ébauche, si vous affichez ces modifications dans un autre mode."
#: 14030000.xhp
msgctxt ""
@@ -15254,7 +15254,7 @@ msgctxt ""
"par_id3155535\n"
"help.text"
msgid "Click the icon again to return to normal mode, in which the changes in the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"New Query Design\"><emph>New Query Design</emph></link> are synchronized with the permitted changes through SQL."
-msgstr ""
+msgstr "Cliquez à nouveau sur l'icône pour repasser dans le mode Standard, dans lequel les modifications de l'<link href=\"text/shared/explorer/database/02010100.xhp\" name=\"ébauche de requête\"><emph>ébauche de requête</emph></link> sont synchronisées par SQL avec les modifications autorisées."
#: 14040000.xhp
msgctxt ""
@@ -15278,7 +15278,7 @@ msgctxt ""
"par_id3159224\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">Displays the <emph>Function</emph> row in the lower part of the design view of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link> window.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:DBViewFunctions\">Affiche la ligne <emph>Fonction</emph> dans la partie inférieure de la vue en mode Ébauche de la fenêtre <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Ébauche de requête\"><emph>Ébauche de requête</emph></link>.</ahelp>"
#: 14040000.xhp
msgctxt ""
@@ -15318,7 +15318,7 @@ msgctxt ""
"par_id3154232\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the <emph>Table</emph> row in the lower part of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Affiche la ligne <emph>Table</emph> dans la partie inférieure de la fenêtre <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Ébauche de requête\"><emph>Ébauche de requête</emph></link>.</ahelp>"
#: 14050000.xhp
msgctxt ""
@@ -15358,7 +15358,7 @@ msgctxt ""
"par_id3148731\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">Displays the <emph>Alias</emph> row in the lower part of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Query Design\"><emph>Query Design</emph></link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\".uno:DBViewAliases\">Affiche la ligne <emph>Alias</emph> dans la partie inférieure de la fenêtre <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"Ébauche de requête\"><emph>Ébauche de requête</emph></link>.</ahelp>"
#: 14060000.xhp
msgctxt ""
@@ -15406,7 +15406,7 @@ msgctxt ""
"par_id3154894\n"
"help.text"
msgid "<ahelp hid=\".uno:DBDistinctValues\">Expands the created select statement of the <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"SQL Query\"><emph>SQL Query</emph></link> in the current column by the parameter <emph>DISTINCT</emph>.</ahelp> The consequence is that identical values occurring multiple times are listed only once."
-msgstr ""
+msgstr "<ahelp hid=\".uno:DBDistinctValues\">Étend l'instruction SELECT créée pour la <link href=\"text/shared/explorer/database/02010100.xhp\" name=\"requête SQL\"><emph>requête SQL</emph></link> dans la colonne active au moyen du paramètre <emph>DISTINCT</emph>.</ahelp> Ainsi, les valeurs identiques répétées sont mentionnées une seule fois."
#: 14070000.xhp
msgctxt ""
@@ -15470,7 +15470,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "To select an object, click the object with the arrow. To select more than one object, drag a selection frame around the objects. To add an object to a selection, press <emph>Shift</emph>, and then click the object. <switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>The objects selected together can then be defined as a <link href=\"text/shared/01/05290000.xhp\" name=\"group\">group</link>, turning them into a single group object.</defaultinline></switchinline>"
-msgstr ""
+msgstr "Pour sélectionner un objet, cliquez dessus avec la flèche. Pour en sélectionner plusieurs, dessinez un cadre de sélection en faisant glisser le curseur autour des objets en question. Pour ajouter un objet à une sélection, appuyez sur <emph>Maj</emph> puis cliquez sur l'objet. <switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>Les objets qui font partie d'une même sélection peuvent ensuite être définis en tant que <link href=\"text/shared/01/05290000.xhp\" name=\"groupe\">groupe</link> et devenir un objet groupe unique.</defaultinline></switchinline>"
#: 18010000.xhp
msgctxt ""
@@ -15478,7 +15478,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>You can edit individual elements of a group. You can also delete elements from a group with <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Shift</emph></defaultinline></switchinline>+click.</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>Vous pouvez éditer séparément les éléments d'un groupe. Vous pouvez également supprimer des éléments d'un groupe en appuyant sur <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Commande</emph></caseinline><defaultinline><emph>Maj</emph></defaultinline></switchinline>+clic.</defaultinline></switchinline>"
#: 18010000.xhp
msgctxt ""
@@ -15486,7 +15486,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>You can select single objects from a group by double-clicking, if you first disable the <emph>Double-click to edit Text</emph> icon on the <emph>Option</emph> bar.</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>Vous pouvez sélectionner des objets précis d'un groupe en double-cliquant dessus. Pour cela, vous devez avoir désactivé au préalable l'icône <emph>Double-clic pour éditer du texte</emph> dans la <emph>barre d'options</emph>.</defaultinline></switchinline>"
#: 18030000.xhp
msgctxt ""
@@ -15510,7 +15510,7 @@ msgctxt ""
"par_id3150040\n"
"help.text"
msgid "<image src=\"cmd/sc_spellonline.png\" id=\"img_id3150808\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150808\">Automatic Spell Checking On/Off</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_spellonline.png\" id=\"img_id3150808\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150808\">(Dés)activer la vérification automatique de l'orthographe</alt></image>"
#: 18030000.xhp
msgctxt ""
@@ -15558,7 +15558,7 @@ msgctxt ""
"par_id3149760\n"
"help.text"
msgid "In <emph>HTML Source</emph> mode, you can view and edit the <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tags\">tags</link> of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>. Save the document as a plain text document. Assign an <emph>.html</emph> or <emph>.htm</emph> extension to designate the document as HTML."
-msgstr ""
+msgstr "En mode <emph>Source HTML</emph>, vous pouvez afficher et éditer les <link href=\"text/shared/00/00000002.xhp#tags\" name=\"balises\">balises</link> de documents <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link>. Enregistrez le document en tant que document texte brut. Assignez une extension <emph>.html</emph> ou <emph>.htm</emph> pour convertir le document en document HTML."
#: 20020000.xhp
msgctxt ""
@@ -15590,7 +15590,7 @@ msgctxt ""
"par_id3148731\n"
"help.text"
msgid "<ahelp hid=\".uno:LayoutStatus\">Displays the current <emph>Page Style</emph>. Double-click to edit the style, right-click to select another style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:LayoutStatus\">Affiche le <emph>style de page</emph> actif. Double-cliquez pour éditer le style, cliquez avec le bouton droit de la souris pour sélectionner un autre style.</ahelp>"
#: 20020000.xhp
msgctxt ""
@@ -15598,7 +15598,7 @@ msgctxt ""
"par_id3149283\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Double-click the <emph>Page Style</emph> field to open the <link href=\"text/swriter/01/05040000.xhp\" name=\"Page Style\"><emph>Page Style</emph></link> dialog, in which you can edit the style for the current page. In the context menu of this field, you can apply a page style.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Double-cliquez sur le champ <emph>Style de page</emph> pour ouvrir la boîte de dialogue <link href=\"text/swriter/01/05040000.xhp\" name=\"Style de page\"><emph>Style de page</emph></link> dans laquelle vous pouvez éditer le style de la page active. Le menu contextuel de ce champ permet d'appliquer un style de page.</caseinline></switchinline>"
#: 20020000.xhp
msgctxt ""
@@ -15606,7 +15606,7 @@ msgctxt ""
"par_id3151234\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Double-click the <emph>Page Style</emph> field to open the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\"><emph>Page Style</emph></link> dialog, in which you can edit the style for the current page.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Double cliquez sur le champ <emph>Style de page</emph> pour ouvrir la boîte de dialogue <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\"><emph>Style de page</emph></link>, dans laquelle vous pouvez éditer le style de la page active.</caseinline></switchinline>"
#: 20020000.xhp
msgctxt ""
@@ -15614,7 +15614,7 @@ msgctxt ""
"par_id3149346\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Double-click this field to open the <link href=\"text/simpress/01/05120000.xhp\" name=\"Page Style\"><emph>Slide Design</emph></link> dialog in which you can select the style for the current slide. You can select a different paper format or background.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Double-cliquez sur le champ pour ouvrir la boîte de dialogue <link href=\"text/simpress/01/05120000.xhp\" name=\"Style de page\"><emph>Style de diapo</emph></link> qui permet de sélectionner le style de la page active. Vous pouvez sélectionner un format de papier ou un arrière-plan différent.</caseinline></switchinline>"
#: 20020000.xhp
msgctxt ""
@@ -15622,7 +15622,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Double-click this field to open the <link href=\"text/simpress/01/05120000.xhp\" name=\"Page Style\"><emph>Slide Design</emph></link> dialog in which you select the style for the current page. You can select a different paper format or background.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Double-cliquez sur le champ pour ouvrir la boîte de dialogue <link href=\"text/simpress/01/05120000.xhp\" name=\"Style de page\"><emph>Style de diapo</emph></link> qui permet de sélectionner le style de la page active. Vous pouvez sélectionner un format de papier ou un arrière-plan différent. </caseinline></switchinline>"
#: 20030000.xhp
msgctxt ""
@@ -15662,7 +15662,7 @@ msgctxt ""
"par_id3150935\n"
"help.text"
msgid "Double-clicking this field opens the <link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\"><emph>Zoom</emph></link> dialog, where you can change the current zoom factor."
-msgstr ""
+msgstr "Un double-clic sur ce champ ouvre la boîte de dialogue <link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\"><emph>Zoom</emph></link>, dans laquelle vous pouvez modifier le facteur de zoom."
#: 20030000.xhp
msgctxt ""
@@ -15694,7 +15694,7 @@ msgctxt ""
"par_id3152363\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertMode\">Displays the current insert mode. You can toggle between <emph>INSRT</emph> = insert and <emph>OVER</emph> = overwrite.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\"> This field is only active if the cursor is in the input line of the formula bar or in a cell.</caseinline></switchinline>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertMode\">Affiche le mode d'insertion actif. Vous pouvez basculer entre <emph>INS</emph> = insérer et <emph>RFP</emph> = écraser.</ahelp><switchinline select=\"appl\"><caseinline select=\"CALC\">Ce champ n'est actif que si le curseur se trouve sur la ligne de saisie de la barre de formule ou dans une cellule.</caseinline></switchinline>"
#: 20040000.xhp
msgctxt ""
@@ -15702,7 +15702,7 @@ msgctxt ""
"par_id3154422\n"
"help.text"
msgid "Click in the field to toggle the modes (except in the $[officename] Basic IDE, where only the <emph>Insert</emph> mode is active). If the cursor is positioned in a text document, you may also use the <emph>Insert</emph> key (if available on your keyboard) to toggle the modes."
-msgstr ""
+msgstr "Cliquez dans le champ pour basculer entre les différents modes (sauf dans $[officename] Basic EDI, où seule la touche <emph>Inser</emph> est active). Si le curseur est positionné dans un document, vous pouvez aussi utiliser la touche <emph>Inser</emph> (si elle est disponible sur votre clavier) pour basculer entre les différents modes."
#: 20040000.xhp
msgctxt ""
@@ -15822,7 +15822,7 @@ msgctxt ""
"par_id3147209\n"
"help.text"
msgid "This is the default selection mode for text documents. With the keyboard, selections can be performed by <emph>Shift</emph>+navigation key (<item type=\"keycode\">arrows, Home, End, Page Up, Page Down</item>). With the mouse, click in the text where the selection is to start, hold the left mouse button and move to the end of the selection. Release the mouse key to end selection."
-msgstr ""
+msgstr "C'est le mode de sélection par défaut des documents texte. Les sélections peuvent être effectuées au clavier en combinant <emph>Maj</emph>+Touche de navigation (<item type=\"keycode\">flèches, Début, Fin, Page haut, Page bas</item>). Cliquez avec la souris dans le texte où la sélection doit commencer, maintenez le bouton gauche de la souris et déplacez-la jusqu'à la fin de la sélection. Relâchez le bouton de la souris pour terminer la sélection."
#: 20050000.xhp
msgctxt ""
@@ -15838,7 +15838,7 @@ msgctxt ""
"par_id3153717\n"
"help.text"
msgid "By using the <emph>arrow</emph> keys or the <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> keys you can extend or crop the current selection. Clicking into the text selects the text between the current cursor position and the click position."
-msgstr ""
+msgstr "En utilisant les touches <emph>fléchées</emph> ou les touches <item type=\"keycode\">Origine</item> et <item type=\"keycode\">Fin</item> vous pouvez étendre ou couper la sélection active. Cliquer dans le texte sélectionne le texte entre la position actuelle du curseur et la position du clic."
#: 20050000.xhp
msgctxt ""
@@ -15910,7 +15910,7 @@ msgctxt ""
"par_id3148731\n"
"help.text"
msgid "<ahelp hid=\"SID_MODIFYSTATUS\">If changes to the document have not yet been saved, a \"<emph>*</emph>\" is displayed in this field on the <emph>Status</emph> bar. This also applies to new, not yet saved documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SID_MODIFYSTATUS\">Si les modifications apportées au document n'ont pas encore été enregistrées sur le disque dur, un \"<emph>*</emph>\" s'affiche dans ce champ dans la <emph>barre d'état</emph>. Cela s'applique également aux nouveaux documents qui n'ont pas encore été enregistrés.</ahelp>"
#: 20090000.xhp
msgctxt ""
@@ -17342,7 +17342,7 @@ msgctxt ""
"par_id3153761\n"
"help.text"
msgid "In the Query Design View, choose <emph>Edit - Query Properties</emph>."
-msgstr ""
+msgstr "Dans la vue d'ébauche de requête, chosissez <emph>Éditer - Propriétés de la requête</emph>."
#: querypropdlg.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/guide.po b/source/fr/helpcontent2/source/text/shared/guide.po
index bcb40ef8ede..cf9abefebb0 100644
--- a/source/fr/helpcontent2/source/text/shared/guide.po
+++ b/source/fr/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-11-18 16:21+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-31 14:24+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1542558070.000000\n"
+"X-POOTLE-MTIME: 1559312645.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -1911,7 +1911,7 @@ msgctxt ""
"par_id150820161816031470\n"
"help.text"
msgid "Select <item type=\"menuitem\">File - Open Remote</item>"
-msgstr ""
+msgstr "Sélectionnez <item type=\"menuitem\">Fichier - Ouvrir distant</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -1919,7 +1919,7 @@ msgctxt ""
"par_id150820161816037870\n"
"help.text"
msgid "Select <item type=\"menuitem\">File - Save Remote</item>"
-msgstr ""
+msgstr "Sélectionner <item type=\"menuitem\">Fichier - Enregistrer distant</item>"
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -1927,7 +1927,7 @@ msgctxt ""
"par_id150820161816033600\n"
"help.text"
msgid "Then press <widget>Add Service</widget> button in the dialog to open the File Services dialog."
-msgstr ""
+msgstr "Puis appuyer sur le bouton <widget>Ajouter un service</widget> dans la boîte de dialogue pour ouvrir la boîte de dialogue Services de fichiers."
#: cmis-remote-files-setup.xhp
msgctxt ""
@@ -2295,7 +2295,7 @@ msgctxt ""
"par_id17082016160541995\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Open Remote</item> in any %PRODUCTNAME module"
-msgstr ""
+msgstr "Choisissez <item type=\"menuitem\">Fichier - Ouvrir distant</item> dans l'un des modules %PRODUCTNAME"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2447,7 +2447,7 @@ msgctxt ""
"par_id190820161707166344\n"
"help.text"
msgid "If the file is not stored in a CMIS server, choose <item type=\"menuitem\">File - Save Remote</item> or long-click the <emph>Save</emph> icon and select <emph>Save Remote File</emph>."
-msgstr ""
+msgstr "Si le fichier n'est pas stocké sur un serveur CMIS, choisissez <item type=\"menuitem\">Fichier - Enregistrer distant</item> ou cliquez longtemps sur l'icône <emph>Enregistrer</emph> et sélectionnez <emph>Enregistrer le fichier distant</emph>."
#: cmis-remote-files.xhp
msgctxt ""
@@ -3039,7 +3039,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "File Conversion Filters Tables"
-msgstr ""
+msgstr "Tables des filtres de conversion de fichiers"
#: convertfilters.xhp
msgctxt ""
@@ -3047,7 +3047,7 @@ msgctxt ""
"bm_id541554406270299\n"
"help.text"
msgid "<bookmark_value>filters;document conversion</bookmark_value><bookmark_value>document conversion;filters</bookmark_value><bookmark_value>convert-to;filters</bookmark_value><bookmark_value>command line document conversion;filters</bookmark_value><bookmark_value>module file filters</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Filtres;conversion de document</bookmark_value><bookmark_value>Conversion de document;filtres</bookmark_value><bookmark_value>Convertir en;filtres</bookmark_value><bookmark_value>Conversion de documents en ligne de commande;filtres</bookmark_value><bookmark_value>Filtres de fichier de module</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -3055,7 +3055,7 @@ msgctxt ""
"hd_id771554399002497\n"
"help.text"
msgid "<link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">File Conversion Filter Names</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">Noms des filtres de conversion de fichiers</link>"
#: convertfilters.xhp
msgctxt ""
@@ -3063,7 +3063,7 @@ msgctxt ""
"par_id581554399002498\n"
"help.text"
msgid "<variable id=\"variable name\"><ahelp hid=\".\">Tables with filter names for command line document conversion.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"variable name\"><ahelp hid=\".\">Tables avec les noms des filtres pour la conversion de documents en ligne de commandes.</ahelp></variable>"
#: convertfilters.xhp
msgctxt ""
@@ -3071,7 +3071,7 @@ msgctxt ""
"par_id00tablehead\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\"><variable visibility=\"hidden\" id=\"filtername\">Filter name</variable><variable visibility=\"hidden\" id=\"mediatype\">Media type</variable><variable visibility=\"hidden\" id=\"fileextensions\">File name extensions</variable></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\"><variable visibility=\"hidden\" id=\"filtername\">Nom du filtre</variable><variable visibility=\"hidden\" id=\"mediatype\">Type de média</variable><variable visibility=\"hidden\" id=\"fileextensions\">Extensions du nom de fichier</variable></ahelp>"
#: convertfilters.xhp
msgctxt ""
@@ -3079,7 +3079,7 @@ msgctxt ""
"bm_000writer\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for WRITER</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Conversion de documents en ligne de commandes;filtres pour Writer</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -3087,7 +3087,7 @@ msgctxt ""
"hd_000writer\n"
"help.text"
msgid "Filters for WRITER"
-msgstr ""
+msgstr "Filtres pour Writer"
#: convertfilters.xhp
msgctxt ""
@@ -3095,15 +3095,7 @@ msgctxt ""
"par_writer0\n"
"help.text"
msgid "AbiWord Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
+msgstr "Document AbiWord"
#: convertfilters.xhp
msgctxt ""
@@ -3111,15 +3103,7 @@ msgctxt ""
"par_writer3\n"
"help.text"
msgid "Apple Pages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
+msgstr "Apple Pages"
#: convertfilters.xhp
msgctxt ""
@@ -3127,15 +3111,7 @@ msgctxt ""
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
+msgstr "BroadBand eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3143,15 +3119,7 @@ msgctxt ""
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Document ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -3159,15 +3127,7 @@ msgctxt ""
"par_writer12\n"
"help.text"
msgid "EPUB Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
+msgstr "Document EPUB"
#: convertfilters.xhp
msgctxt ""
@@ -3175,15 +3135,7 @@ msgctxt ""
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
+msgstr "FictionBook 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -3191,15 +3143,7 @@ msgctxt ""
"par_writer18\n"
"help.text"
msgid "HTML Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
+msgstr "Document HTML"
#: convertfilters.xhp
msgctxt ""
@@ -3207,15 +3151,7 @@ msgctxt ""
"par_writer21\n"
"help.text"
msgid "HTML Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
+msgstr "Document HTML"
#: convertfilters.xhp
msgctxt ""
@@ -3223,15 +3159,7 @@ msgctxt ""
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
+msgstr "Hangul WP 97"
#: convertfilters.xhp
msgctxt ""
@@ -3239,7 +3167,7 @@ msgctxt ""
"par_writer27\n"
"help.text"
msgid "Help content"
-msgstr ""
+msgstr "Contenu de l'aide"
#: convertfilters.xhp
msgctxt ""
@@ -3247,7 +3175,7 @@ msgctxt ""
"par_writer28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -3255,7 +3183,7 @@ msgctxt ""
"par_writer30\n"
"help.text"
msgid "Legacy Mac Text Document"
-msgstr ""
+msgstr "Ancien Document Texte Mac"
#: convertfilters.xhp
msgctxt ""
@@ -3263,7 +3191,7 @@ msgctxt ""
"par_writer31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -3271,7 +3199,7 @@ msgctxt ""
"par_writer33\n"
"help.text"
msgid "Legacy StarOffice Text Document"
-msgstr ""
+msgstr "Ancien document texte StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -3279,7 +3207,7 @@ msgctxt ""
"par_writer34\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -3287,15 +3215,7 @@ msgctxt ""
"par_writer36\n"
"help.text"
msgid "LotusWordPro Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
+msgstr "Document LotusWordPro"
#: convertfilters.xhp
msgctxt ""
@@ -3303,15 +3223,7 @@ msgctxt ""
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Modèle MS Word 95"
#: convertfilters.xhp
msgctxt ""
@@ -3319,15 +3231,7 @@ msgctxt ""
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
+msgstr "Document MacWrite"
#: convertfilters.xhp
msgctxt ""
@@ -3335,7 +3239,7 @@ msgctxt ""
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
-msgstr ""
+msgstr "Mariner Write Mac Classic v1.6 - v3.5"
#: convertfilters.xhp
msgctxt ""
@@ -3343,15 +3247,7 @@ msgctxt ""
"par_writer48\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -3359,15 +3255,7 @@ msgctxt ""
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -3375,15 +3263,7 @@ msgctxt ""
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -3391,15 +3271,7 @@ msgctxt ""
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft WinWord 1/2/5"
#: convertfilters.xhp
msgctxt ""
@@ -3407,15 +3279,7 @@ msgctxt ""
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3423,15 +3287,7 @@ msgctxt ""
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 95"
#: convertfilters.xhp
msgctxt ""
@@ -3439,7 +3295,7 @@ msgctxt ""
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
-msgstr ""
+msgstr "Microsoft Word pour DOS"
#: convertfilters.xhp
msgctxt ""
@@ -3447,7 +3303,7 @@ msgctxt ""
"par_writer67\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -3455,15 +3311,7 @@ msgctxt ""
"par_writer69\n"
"help.text"
msgid "Microsoft Word for Mac (v1 - v5)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word pour Mac (v1 - v5)"
#: convertfilters.xhp
msgctxt ""
@@ -3471,15 +3319,7 @@ msgctxt ""
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Document Microsoft Works"
#: convertfilters.xhp
msgctxt ""
@@ -3487,15 +3327,7 @@ msgctxt ""
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Document Microsoft Works pour Mac (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -3503,15 +3335,7 @@ msgctxt ""
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
+msgstr "Microsoft Write"
#: convertfilters.xhp
msgctxt ""
@@ -3519,15 +3343,7 @@ msgctxt ""
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
+msgstr "Document texte Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -3535,15 +3351,7 @@ msgctxt ""
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
+msgstr "Modèle de texte Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -3551,15 +3359,7 @@ msgctxt ""
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
+msgstr "Texte OpenDocument (XML plat)"
#: convertfilters.xhp
msgctxt ""
@@ -3567,15 +3367,7 @@ msgctxt ""
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "Document texte OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -3583,15 +3375,7 @@ msgctxt ""
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "Document texte OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -3599,15 +3383,7 @@ msgctxt ""
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "Document texte OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -3615,15 +3391,7 @@ msgctxt ""
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3631,15 +3399,7 @@ msgctxt ""
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3647,15 +3407,7 @@ msgctxt ""
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3663,15 +3415,7 @@ msgctxt ""
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
+msgstr "Document texte Palm"
#: convertfilters.xhp
msgctxt ""
@@ -3679,15 +3423,7 @@ msgctxt ""
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
+msgstr "PalmDoc eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3695,15 +3431,7 @@ msgctxt ""
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
+msgstr "Plucker eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3711,15 +3439,7 @@ msgctxt ""
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
@@ -3727,15 +3447,7 @@ msgctxt ""
"par_writer120\n"
"help.text"
msgid "T602 Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
+msgstr "T602 Document"
#: convertfilters.xhp
msgctxt ""
@@ -3743,7 +3455,7 @@ msgctxt ""
"par_writer123\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Texte"
#: convertfilters.xhp
msgctxt ""
@@ -3751,7 +3463,7 @@ msgctxt ""
"par_writer124\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3759,7 +3471,7 @@ msgctxt ""
"par_writer126\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Texte"
#: convertfilters.xhp
msgctxt ""
@@ -3767,7 +3479,7 @@ msgctxt ""
"par_writer127\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3775,7 +3487,7 @@ msgctxt ""
"par_writer129\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Texte"
#: convertfilters.xhp
msgctxt ""
@@ -3783,7 +3495,7 @@ msgctxt ""
"par_writer130\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3791,15 +3503,7 @@ msgctxt ""
"par_writer132\n"
"help.text"
msgid "Word 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -3807,15 +3511,7 @@ msgctxt ""
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Modèle Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -3823,15 +3519,7 @@ msgctxt ""
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "VBA Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -3839,15 +3527,7 @@ msgctxt ""
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Modèle Word 97-2000"
#: convertfilters.xhp
msgctxt ""
@@ -3855,15 +3535,7 @@ msgctxt ""
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -3871,15 +3543,7 @@ msgctxt ""
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
+msgstr "Document WordPerfect"
#: convertfilters.xhp
msgctxt ""
@@ -3887,7 +3551,7 @@ msgctxt ""
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
-msgstr ""
+msgstr "Document WriteNow"
#: convertfilters.xhp
msgctxt ""
@@ -3895,15 +3559,7 @@ msgctxt ""
"par_writer153\n"
"help.text"
msgid "Writer 6.0 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
+msgstr "Document maître Writer 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3911,15 +3567,7 @@ msgctxt ""
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
+msgstr "Modèle Writer 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3927,15 +3575,7 @@ msgctxt ""
"par_writer159\n"
"help.text"
msgid "Writer 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
+msgstr "Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3943,15 +3583,7 @@ msgctxt ""
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
+msgstr "Document maître Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3959,15 +3591,7 @@ msgctxt ""
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
+msgstr "Modèle de document maître Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3975,15 +3599,7 @@ msgctxt ""
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
+msgstr "Modèle Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3991,7 +3607,7 @@ msgctxt ""
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
-msgstr ""
+msgstr "Writer Layout Dump"
#: convertfilters.xhp
msgctxt ""
@@ -3999,7 +3615,7 @@ msgctxt ""
"par_writer172\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4007,15 +3623,7 @@ msgctxt ""
"par_writer174\n"
"help.text"
msgid "Writer/Web 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
+msgstr "Modèle Writer/Web 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4023,15 +3631,7 @@ msgctxt ""
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
+msgstr "Modèle Writer/Web 8"
#: convertfilters.xhp
msgctxt ""
@@ -4039,7 +3639,7 @@ msgctxt ""
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Conversion de documents en ligne de commandes;filtres pour CALC</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -4047,7 +3647,7 @@ msgctxt ""
"hd_000calc\n"
"help.text"
msgid "Filters for CALC"
-msgstr ""
+msgstr "Filtres pour CALC"
#: convertfilters.xhp
msgctxt ""
@@ -4055,15 +3655,7 @@ msgctxt ""
"par_calc0\n"
"help.text"
msgid "Apple Numbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
+msgstr "Apple Numbers"
#: convertfilters.xhp
msgctxt ""
@@ -4071,15 +3663,7 @@ msgctxt ""
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
+msgstr "Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4087,15 +3671,7 @@ msgctxt ""
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
+msgstr "Modèle Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4103,15 +3679,7 @@ msgctxt ""
"par_calc9\n"
"help.text"
msgid "Calc 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
+msgstr "Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -4119,15 +3687,7 @@ msgctxt ""
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
+msgstr "Modèle Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -4135,15 +3695,7 @@ msgctxt ""
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Document ClarisResolve"
#: convertfilters.xhp
msgctxt ""
@@ -4151,15 +3703,7 @@ msgctxt ""
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Document ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -4167,7 +3711,7 @@ msgctxt ""
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
-msgstr ""
+msgstr "Data Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -4175,7 +3719,7 @@ msgctxt ""
"par_calc22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4183,15 +3727,7 @@ msgctxt ""
"par_calc24\n"
"help.text"
msgid "Excel 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Excel 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4199,15 +3735,7 @@ msgctxt ""
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Modèle Excel 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4215,15 +3743,7 @@ msgctxt ""
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Modèle Excel 97-2000"
#: convertfilters.xhp
msgctxt ""
@@ -4231,15 +3751,7 @@ msgctxt ""
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Excel 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -4247,15 +3759,7 @@ msgctxt ""
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
+msgstr "Classeur Gnumeric"
#: convertfilters.xhp
msgctxt ""
@@ -4263,7 +3767,7 @@ msgctxt ""
"par_calc39\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "Document HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4271,7 +3775,7 @@ msgctxt ""
"par_calc40\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4279,7 +3783,7 @@ msgctxt ""
"par_calc42\n"
"help.text"
msgid "HTML Table"
-msgstr ""
+msgstr "Tableau HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4287,7 +3791,7 @@ msgctxt ""
"par_calc43\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4295,7 +3799,7 @@ msgctxt ""
"par_calc45\n"
"help.text"
msgid "Legacy Mac Database"
-msgstr ""
+msgstr "Ancienne Base de Données Mac"
#: convertfilters.xhp
msgctxt ""
@@ -4303,7 +3807,7 @@ msgctxt ""
"par_calc46\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4311,7 +3815,7 @@ msgctxt ""
"par_calc48\n"
"help.text"
msgid "Legacy Mac Spreadsheet"
-msgstr ""
+msgstr "Ancien Classeur Mac"
#: convertfilters.xhp
msgctxt ""
@@ -4319,7 +3823,7 @@ msgctxt ""
"par_calc49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4327,7 +3831,7 @@ msgctxt ""
"par_calc51\n"
"help.text"
msgid "Legacy StarOffice Spreadsheet"
-msgstr ""
+msgstr "Ancien classeur StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -4335,7 +3839,7 @@ msgctxt ""
"par_calc52\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4343,15 +3847,7 @@ msgctxt ""
"par_calc54\n"
"help.text"
msgid "Lotus"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
+msgstr "Lotus"
#: convertfilters.xhp
msgctxt ""
@@ -4359,7 +3855,7 @@ msgctxt ""
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
-msgstr ""
+msgstr "Lotus Wk1-Wk3"
#: convertfilters.xhp
msgctxt ""
@@ -4367,7 +3863,7 @@ msgctxt ""
"par_calc58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4375,15 +3871,7 @@ msgctxt ""
"par_calc60\n"
"help.text"
msgid "MS Excel 4.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Modèle MS Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -4391,15 +3879,7 @@ msgctxt ""
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Modèle MS Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -4407,15 +3887,7 @@ msgctxt ""
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Modèle MS Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -4423,7 +3895,7 @@ msgctxt ""
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr ""
+msgstr "Binaire Microsoft Excel 2007"
#: convertfilters.xhp
msgctxt ""
@@ -4431,7 +3903,7 @@ msgctxt ""
"par_calc70\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4439,15 +3911,7 @@ msgctxt ""
"par_calc72\n"
"help.text"
msgid "Microsoft Excel 2007-2016 VBA XML"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
+msgstr "Microsoft Excel 2007-2016 VBA XML"
#: convertfilters.xhp
msgctxt ""
@@ -4455,15 +3919,7 @@ msgctxt ""
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -4471,15 +3927,7 @@ msgctxt ""
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -4487,15 +3935,7 @@ msgctxt ""
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -4503,7 +3943,7 @@ msgctxt ""
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: convertfilters.xhp
msgctxt ""
@@ -4511,7 +3951,7 @@ msgctxt ""
"par_calc85\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4519,7 +3959,7 @@ msgctxt ""
"par_calc87\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Document Microsoft Works"
#: convertfilters.xhp
msgctxt ""
@@ -4527,7 +3967,7 @@ msgctxt ""
"par_calc88\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4535,15 +3975,7 @@ msgctxt ""
"par_calc90\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Document Microsoft Works pour Mac (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -4551,15 +3983,7 @@ msgctxt ""
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Classeur Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4567,15 +3991,7 @@ msgctxt ""
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Modèle de classeur Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4583,15 +3999,7 @@ msgctxt ""
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
+msgstr "Classeur OpenDocument (XML plat)"
#: convertfilters.xhp
msgctxt ""
@@ -4599,15 +4007,7 @@ msgctxt ""
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4615,7 +4015,7 @@ msgctxt ""
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
-msgstr ""
+msgstr "Quattro Pro 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4623,7 +4023,7 @@ msgctxt ""
"par_calc106\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4631,7 +4031,7 @@ msgctxt ""
"par_calc108\n"
"help.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "Document QuattroPro"
#: convertfilters.xhp
msgctxt ""
@@ -4639,7 +4039,7 @@ msgctxt ""
"par_calc109\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4647,15 +4047,7 @@ msgctxt ""
"par_calc111\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
@@ -4663,7 +4055,7 @@ msgctxt ""
"par_calc114\n"
"help.text"
msgid "SYLK"
-msgstr ""
+msgstr "SYLK"
#: convertfilters.xhp
msgctxt ""
@@ -4671,7 +4063,7 @@ msgctxt ""
"par_calc115\n"
"help.text"
msgid "text/spreadsheet"
-msgstr ""
+msgstr "texte/classeur"
#: convertfilters.xhp
msgctxt ""
@@ -4679,7 +4071,7 @@ msgctxt ""
"par_calc117\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Texte"
#: convertfilters.xhp
msgctxt ""
@@ -4687,7 +4079,7 @@ msgctxt ""
"par_calc118\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -4695,7 +4087,7 @@ msgctxt ""
"par_calc120\n"
"help.text"
msgid "dBASE"
-msgstr ""
+msgstr "dBASE"
#: convertfilters.xhp
msgctxt ""
@@ -4703,7 +4095,7 @@ msgctxt ""
"par_calc121\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4711,7 +4103,7 @@ msgctxt ""
"bm_000impress\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for IMPRESS</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Conversion de documents en ligne de commandes;filtres pur IMPRESS</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -4719,7 +4111,7 @@ msgctxt ""
"hd_000impress\n"
"help.text"
msgid "Filters for IMPRESS"
-msgstr ""
+msgstr "Filtres pour IMPRESS"
#: convertfilters.xhp
msgctxt ""
@@ -4727,15 +4119,7 @@ msgctxt ""
"par_impress0\n"
"help.text"
msgid "Apple Keynote"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
+msgstr "Apple Keynote"
#: convertfilters.xhp
msgctxt ""
@@ -4743,15 +4127,7 @@ msgctxt ""
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Présentation ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -4759,15 +4135,7 @@ msgctxt ""
"par_impress6\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4775,15 +4143,7 @@ msgctxt ""
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
+msgstr "Modèle Impress 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4791,15 +4151,7 @@ msgctxt ""
"par_impress12\n"
"help.text"
msgid "Impress 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
+msgstr "Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4807,15 +4159,7 @@ msgctxt ""
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
+msgstr "Modèle Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4823,7 +4167,7 @@ msgctxt ""
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
-msgstr ""
+msgstr "Ancienne présentation Mac"
#: convertfilters.xhp
msgctxt ""
@@ -4831,7 +4175,7 @@ msgctxt ""
"par_impress19\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4839,7 +4183,7 @@ msgctxt ""
"par_impress21\n"
"help.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Ancienne présentation StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -4847,7 +4191,7 @@ msgctxt ""
"par_impress22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4855,7 +4199,7 @@ msgctxt ""
"par_impress24\n"
"help.text"
msgid "Microsoft PowerPoint 1-4"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4"
#: convertfilters.xhp
msgctxt ""
@@ -4863,7 +4207,7 @@ msgctxt ""
"par_impress25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -4871,15 +4215,7 @@ msgctxt ""
"par_impress27\n"
"help.text"
msgid "Office Open XML Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "Présentation Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4887,15 +4223,7 @@ msgctxt ""
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "Présentation Office Open XML AutoPlay"
#: convertfilters.xhp
msgctxt ""
@@ -4903,15 +4231,7 @@ msgctxt ""
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "Modèle de présentation Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4919,15 +4239,7 @@ msgctxt ""
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
+msgstr "Présentation OpenDocument (XML plat)"
#: convertfilters.xhp
msgctxt ""
@@ -4935,15 +4247,7 @@ msgctxt ""
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "Dessin OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -4951,15 +4255,7 @@ msgctxt ""
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
+msgstr "Présentation OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -4967,15 +4263,7 @@ msgctxt ""
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4983,15 +4271,7 @@ msgctxt ""
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4999,15 +4279,7 @@ msgctxt ""
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -5015,15 +4287,7 @@ msgctxt ""
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "Modèle PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -5031,15 +4295,7 @@ msgctxt ""
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
+msgstr "VBA PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -5047,15 +4303,7 @@ msgctxt ""
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "Modèle PowerPoint 97–2000"
#: convertfilters.xhp
msgctxt ""
@@ -5063,15 +4311,7 @@ msgctxt ""
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -5079,15 +4319,7 @@ msgctxt ""
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -5095,7 +4327,7 @@ msgctxt ""
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Conversion de documents en ligne de commandes;filtres pour DRAW</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -5103,7 +4335,7 @@ msgctxt ""
"hd_000draw\n"
"help.text"
msgid "Filters for DRAW"
-msgstr ""
+msgstr "Filtres pour DRAW"
#: convertfilters.xhp
msgctxt ""
@@ -5111,15 +4343,7 @@ msgctxt ""
"par_draw0\n"
"help.text"
msgid "Adobe PageMaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
+msgstr "Adobe PageMaker"
#: convertfilters.xhp
msgctxt ""
@@ -5127,15 +4351,7 @@ msgctxt ""
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
+msgstr "Adobe/Macromedia Freehand"
#: convertfilters.xhp
msgctxt ""
@@ -5143,15 +4359,7 @@ msgctxt ""
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Document ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -5159,15 +4367,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "Corel Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
+msgstr "Corel Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5175,15 +4375,7 @@ msgctxt ""
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
+msgstr "Corel Presentation Exchange"
#: convertfilters.xhp
msgctxt ""
@@ -5191,15 +4383,7 @@ msgctxt ""
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
+msgstr "Modèle Draw 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -5207,15 +4391,7 @@ msgctxt ""
"par_draw18\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -5223,15 +4399,7 @@ msgctxt ""
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
+msgstr "Modèle Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -5239,7 +4407,7 @@ msgctxt ""
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
-msgstr ""
+msgstr "Ancien Bitmap Mac"
#: convertfilters.xhp
msgctxt ""
@@ -5247,7 +4415,7 @@ msgctxt ""
"par_draw25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -5255,7 +4423,7 @@ msgctxt ""
"par_draw27\n"
"help.text"
msgid "Legacy Mac Drawing"
-msgstr ""
+msgstr "Ancien Dessin Mac"
#: convertfilters.xhp
msgctxt ""
@@ -5263,7 +4431,7 @@ msgctxt ""
"par_draw28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -5271,7 +4439,7 @@ msgctxt ""
"par_draw30\n"
"help.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Ancien dessin StarOffice"
#: convertfilters.xhp
msgctxt ""
@@ -5279,7 +4447,7 @@ msgctxt ""
"par_draw31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -5287,15 +4455,7 @@ msgctxt ""
"par_draw33\n"
"help.text"
msgid "Microsoft Publisher 2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
+msgstr "Microsoft Publisher 2003"
#: convertfilters.xhp
msgctxt ""
@@ -5303,15 +4463,7 @@ msgctxt ""
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
+msgstr "Microsoft Visio"
#: convertfilters.xhp
msgctxt ""
@@ -5319,15 +4471,7 @@ msgctxt ""
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
+msgstr "Dessin OpenDocument (XML plat)"
#: convertfilters.xhp
msgctxt ""
@@ -5335,15 +4479,7 @@ msgctxt ""
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "Dessin OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -5351,15 +4487,7 @@ msgctxt ""
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -5367,7 +4495,7 @@ msgctxt ""
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
-msgstr ""
+msgstr "QuarkXPress"
#: convertfilters.xhp
msgctxt ""
@@ -5375,7 +4503,7 @@ msgctxt ""
"par_draw49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -5383,15 +4511,7 @@ msgctxt ""
"par_draw51\n"
"help.text"
msgid "WordPerfect Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
+msgstr "WordPerfect Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -5399,7 +4519,7 @@ msgctxt ""
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Dessin Zoner Callisto"
#: convertfilters.xhp
msgctxt ""
@@ -5407,7 +4527,7 @@ msgctxt ""
"par_draw55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -5415,7 +4535,7 @@ msgctxt ""
"bm_000math\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for MATH</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Conversion de documents en ligne de commandes;filtres pour MATH</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -5423,7 +4543,7 @@ msgctxt ""
"hd_000math\n"
"help.text"
msgid "Filters for MATH"
-msgstr ""
+msgstr "Filtres pour MATH"
#: convertfilters.xhp
msgctxt ""
@@ -5431,15 +4551,7 @@ msgctxt ""
"par_math0\n"
"help.text"
msgid "Math 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
+msgstr "Math 8"
#: convertfilters.xhp
msgctxt ""
@@ -5447,15 +4559,7 @@ msgctxt ""
"par_math3\n"
"help.text"
msgid "MathML 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
+msgstr "MathML 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -5463,7 +4567,7 @@ msgctxt ""
"par_math6\n"
"help.text"
msgid "MathType3.x"
-msgstr ""
+msgstr "MathType3.x"
#: convertfilters.xhp
msgctxt ""
@@ -5471,7 +4575,7 @@ msgctxt ""
"par_math7\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -5479,15 +4583,7 @@ msgctxt ""
"par_math9\n"
"help.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
+msgstr "Formule OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -5495,15 +4591,7 @@ msgctxt ""
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -5511,7 +4599,7 @@ msgctxt ""
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Conversion de documents en ligne de commandes;filtres pour BASE</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -5519,7 +4607,7 @@ msgctxt ""
"hd_000base\n"
"help.text"
msgid "Filters for BASE"
-msgstr ""
+msgstr "Filtres pour BASE"
#: convertfilters.xhp
msgctxt ""
@@ -5527,15 +4615,7 @@ msgctxt ""
"par_base0\n"
"help.text"
msgid "OpenDocument Database"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
+msgstr "Base de données OpenDocument"
#: convertfilters.xhp
msgctxt ""
@@ -5543,7 +4623,7 @@ msgctxt ""
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Conversion de documents en ligne de commandes;filtres pour GRAPHICFILTER</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -5551,7 +4631,7 @@ msgctxt ""
"hd_000graphicfilter\n"
"help.text"
msgid "Filters for GRAPHICFILTER"
-msgstr ""
+msgstr "Filtres pour GRAPHICFILTER"
#: convertfilters.xhp
msgctxt ""
@@ -5559,15 +4639,7 @@ msgctxt ""
"par_graphicfilter0\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP - Windows Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5575,15 +4647,7 @@ msgctxt ""
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP - Windows Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5591,15 +4655,7 @@ msgctxt ""
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
+msgstr "CGM - Computer Graphics Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5607,15 +4663,7 @@ msgctxt ""
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
+msgstr "DXF - AutoCAD Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -5623,15 +4671,7 @@ msgctxt ""
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF - Enhanced Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -5639,15 +4679,7 @@ msgctxt ""
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF - Enhanced Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -5655,15 +4687,7 @@ msgctxt ""
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS - Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5671,15 +4695,7 @@ msgctxt ""
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS - Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5687,15 +4703,7 @@ msgctxt ""
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -5703,15 +4711,7 @@ msgctxt ""
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -5719,7 +4719,7 @@ msgctxt ""
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5727,7 +4727,7 @@ msgctxt ""
"par_graphicfilter31\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -5735,7 +4735,7 @@ msgctxt ""
"par_graphicfilter33\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5743,7 +4743,7 @@ msgctxt ""
"par_graphicfilter34\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -5751,15 +4751,7 @@ msgctxt ""
"par_graphicfilter36\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5767,15 +4759,7 @@ msgctxt ""
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5783,15 +4767,7 @@ msgctxt ""
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5799,15 +4775,7 @@ msgctxt ""
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET - OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5815,15 +4783,7 @@ msgctxt ""
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET - OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5831,15 +4791,7 @@ msgctxt ""
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
+msgstr "MOV - Format de fichier QuickTime"
#: convertfilters.xhp
msgctxt ""
@@ -5847,7 +4799,7 @@ msgctxt ""
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5855,7 +4807,7 @@ msgctxt ""
"par_graphicfilter55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -5863,7 +4815,7 @@ msgctxt ""
"par_graphicfilter57\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5871,7 +4823,7 @@ msgctxt ""
"par_graphicfilter58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Aucune"
#: convertfilters.xhp
msgctxt ""
@@ -5879,15 +4831,7 @@ msgctxt ""
"par_graphicfilter60\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5895,15 +4839,7 @@ msgctxt ""
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5911,15 +4847,7 @@ msgctxt ""
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base"
#: convertfilters.xhp
msgctxt ""
@@ -5927,15 +4855,7 @@ msgctxt ""
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base16"
#: convertfilters.xhp
msgctxt ""
@@ -5943,15 +4863,7 @@ msgctxt ""
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base4"
#: convertfilters.xhp
msgctxt ""
@@ -5959,15 +4871,7 @@ msgctxt ""
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -5975,15 +4879,7 @@ msgctxt ""
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -5991,15 +4887,7 @@ msgctxt ""
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
+msgstr "PCX - Zsoft Paintbrush"
#: convertfilters.xhp
msgctxt ""
@@ -6007,15 +4895,7 @@ msgctxt ""
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -6023,15 +4903,7 @@ msgctxt ""
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -6039,15 +4911,7 @@ msgctxt ""
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6055,15 +4919,7 @@ msgctxt ""
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6071,15 +4927,7 @@ msgctxt ""
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6087,15 +4935,7 @@ msgctxt ""
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6103,15 +4943,7 @@ msgctxt ""
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -6119,15 +4951,7 @@ msgctxt ""
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -6135,15 +4959,7 @@ msgctxt ""
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
+msgstr "PSD - Adobe Photoshop"
#: convertfilters.xhp
msgctxt ""
@@ -6151,15 +4967,7 @@ msgctxt ""
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -6167,15 +4975,7 @@ msgctxt ""
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -6183,15 +4983,7 @@ msgctxt ""
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -6199,15 +4991,7 @@ msgctxt ""
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -6215,15 +4999,7 @@ msgctxt ""
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -6231,15 +5007,7 @@ msgctxt ""
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -6247,15 +5015,7 @@ msgctxt ""
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics Draw"
#: convertfilters.xhp
msgctxt ""
@@ -6263,15 +5023,7 @@ msgctxt ""
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics Draw"
#: convertfilters.xhp
msgctxt ""
@@ -6279,15 +5031,7 @@ msgctxt ""
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
+msgstr "SVM - StarView Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -6295,15 +5039,7 @@ msgctxt ""
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
+msgstr "SVM - StarView Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -6311,15 +5047,7 @@ msgctxt ""
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
+msgstr "TGA - Truevision Targa"
#: convertfilters.xhp
msgctxt ""
@@ -6327,15 +5055,7 @@ msgctxt ""
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
+msgstr "TIFF - Tagged Image File Format"
#: convertfilters.xhp
msgctxt ""
@@ -6343,15 +5063,7 @@ msgctxt ""
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
+msgstr "TIFF - Tagged Image File Format"
#: convertfilters.xhp
msgctxt ""
@@ -6359,15 +5071,7 @@ msgctxt ""
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
+msgstr "WMF - Windows Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -6375,15 +5079,7 @@ msgctxt ""
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
+msgstr "WMF - Windows Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -6391,15 +5087,7 @@ msgctxt ""
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
+msgstr "XBM - X Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -6407,15 +5095,7 @@ msgctxt ""
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: convertfilters.xhp
msgctxt ""
@@ -6423,15 +5103,7 @@ msgctxt ""
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: copy_drawfunctions.xhp
msgctxt ""
@@ -9407,7 +8079,7 @@ msgctxt ""
"par_idN10640\n"
"help.text"
msgid "You can get a certificate from a certification authority. No matter if you choose a governmental institution or a private company it is common to be charged for this service, for example when they certify your identity. Few other authorities issue certificates free of costs, like the Open Source Project <link href=\"https://www.CAcert.org/\"><emph>CAcert</emph></link> which is based on the well-known and reliable Web of Trust model and is of growing popularity."
-msgstr ""
+msgstr "Vous pouvez obtenir un certificat à partir d'une autorité de certification. Peu importe que vous choisissiez une institution gouvernementale ou une société privée, il est habituel que ce service soit payant, par exemple lorsqu'ils certifient votre identité. Quelques autre autorités fournissent des certificats gratuitement, comme le projet Open Source <link href=\"https://www.CAcert.org/\"><emph>CAcert</emph></link> qui est basé sur le modèle fameux et fiable Web of Trust et dont la popularité est croissante."
#: digitalsign_send.xhp
msgctxt ""
@@ -9527,7 +8199,7 @@ msgctxt ""
"par_idN10698\n"
"help.text"
msgid "After saving, you see the <link href=\"text/shared/01/digitalsignatures.xhp\"><emph>Digital Signatures</emph></link> dialog. Click <emph>Add</emph> to add a public key to the document."
-msgstr ""
+msgstr "Après l'enregistrement, la boîte de dialogue <link href=\"text/shared/01/digitalsignatures.xhp\"><emph>Signatures numériques</emph></link> s'affiche. Cliquez sur <emph>Ajouter</emph> pour ajouter une clé publique au document."
#: digitalsign_send.xhp
msgctxt ""
@@ -9535,7 +8207,7 @@ msgctxt ""
"par_idN106AE\n"
"help.text"
msgid "In the <link href=\"text/shared/01/selectcertificate.xhp\"><emph>Select Certificate</emph></link> dialog, select your certificate and click <emph>OK</emph>."
-msgstr ""
+msgstr "Dans la boîte de dialogue <link href=\"text/shared/01/selectcertificate.xhp\"><emph>Sélectionner un certificat</emph></link>, sélectionnez votre certificat et cliquez sur <emph>OK</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -9559,7 +8231,7 @@ msgctxt ""
"par_id2008200911381426\n"
"help.text"
msgid "The result of the signature validation is displayed in the status bar and within the <emph>Digital Signature</emph> dialog. Several documents and macro signatures can exist inside an ODF document. If there is a problem with one signature, then the validation result of that one signature is assumed for all signatures. That is, if there are ten valid signatures and one invalid signature, then the status bar and the status field in the dialog will flag the signature as <emph>invalid</emph>."
-msgstr ""
+msgstr "Le résultat de la validation de la signature est affiché dans la barre d'état et dans la boîte de dialogue <emph>Signature numérique</emph>. Plusieurs signatures de documents et de macros peuvent exister dans un document ODF. S'il y a un problème avec une signature, alors le résultat de la validation de cette signature est supposé pour toutes les signatures. C'est à dire que s'il y a dix signatures valides et une signature non valide, alors la barre d'état et le champ de statut dans la boîte de dialogue marqueront la signature comme <emph>incorrecte</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -9599,7 +8271,7 @@ msgctxt ""
"par_idN106F5\n"
"help.text"
msgid "When you open the Basic IDE that contains signed macros, you see an icon<image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\">Icon</alt></image> in the status bar.<br/>You can double-click the icon in the status bar to view the certificate."
-msgstr ""
+msgstr "Lorsque vous ouvrez l'EDI Basic contenant des macros signées, une icône <image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\">icône</alt></image> s'affiche dans la barre d'état. <br/>Double-cliquez sur cette icône de la barre d'état pour afficher le certificat."
#: digitalsign_send.xhp
msgctxt ""
@@ -9607,7 +8279,7 @@ msgctxt ""
"par_id5734733\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to open the <emph>View Certificate</emph> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cliquez pour ouvrir la boîte de dialogue <emph>Affichage des certificats</emph>.</ahelp>"
#: digitalsign_send.xhp
msgctxt ""
@@ -9631,7 +8303,7 @@ msgctxt ""
"par_id3204443\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\">English Wiki page on digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\">Page de Wiki en anglais sur les signatures numériques</link>"
#: digitalsign_send.xhp
msgctxt ""
@@ -9783,7 +8455,7 @@ msgctxt ""
"bm_id3147834\n"
"help.text"
msgid "<bookmark_value>opening; documents</bookmark_value> <bookmark_value>documents; opening</bookmark_value> <bookmark_value>files; opening</bookmark_value> <bookmark_value>loading; documents</bookmark_value> <bookmark_value>spreadsheets;creating/opening</bookmark_value> <bookmark_value>presentations;creating/opening</bookmark_value> <bookmark_value>new documents</bookmark_value> <bookmark_value>empty documents</bookmark_value> <bookmark_value>text documents;creating/opening</bookmark_value> <bookmark_value>drawings; creating/opening</bookmark_value> <bookmark_value>HTML documents; new</bookmark_value> <bookmark_value>formulas; new</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Ouverture;documents</bookmark_value><bookmark_value>Documents;ouverture</bookmark_value><bookmark_value>Fichiers;ouverture</bookmark_value><bookmark_value>Chargement;documents</bookmark_value><bookmark_value>Feuilles de calcul;création/ouverture</bookmark_value><bookmark_value>Présentations;création/ouverture</bookmark_value><bookmark_value>Nouveaux documents</bookmark_value><bookmark_value>Documents vierges</bookmark_value><bookmark_value>Documents texte;création/Ouverture</bookmark_value><bookmark_value>Dessins;création/ouverture</bookmark_value><bookmark_value>Documents HTML;nouveaux</bookmark_value><bookmark_value>Formules;nouvelles</bookmark_value>"
#: doc_open.xhp
msgctxt ""
@@ -9815,7 +8487,7 @@ msgctxt ""
"par_idN107A9\n"
"help.text"
msgid "Choose <menuitem>File – Open</menuitem>"
-msgstr ""
+msgstr "Choisissez <menuitem>Fichier - Ouvrir</menuitem>"
#: doc_open.xhp
msgctxt ""
@@ -9823,7 +8495,7 @@ msgctxt ""
"par_id210820160859353525\n"
"help.text"
msgid "Choose<menuitem> File – Open Remote</menuitem>"
-msgstr ""
+msgstr "Choisissez <menuitem>Fichier - Ouvrir distant</menuitem>"
#: doc_open.xhp
msgctxt ""
@@ -9879,7 +8551,7 @@ msgctxt ""
"par_id6594744\n"
"help.text"
msgid "One exception appears when the author of a Writer text document saves and reopens a document: The cursor will be at the same position where it has been when the document was saved. This only works when the name of the author was entered in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - User Data</menuitem>."
-msgstr ""
+msgstr "Il y a une exception lorsque l'auteur d'un document texte Writer enregistre et ouvre de nouveau un document : le curseur sera à la même position que lors de l'enregistrement du document. Cela ne fonctionne que lorsque le nom de l'auteur a été saisi dans <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Préférences</menuitem></caseinline><defaultinline><menuitem>Outils - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Données d'identité</menuitem>."
#: doc_open.xhp
msgctxt ""
@@ -9887,7 +8559,7 @@ msgctxt ""
"par_id3422650\n"
"help.text"
msgid "Press <keycode>Shift+F5</keycode> to set the cursor to the last saved position."
-msgstr ""
+msgstr "Appuyez sur <keycode>Maj+F5</keycode> pour placer le curseur sur la dernière position enregistrée."
#: doc_open.xhp
msgctxt ""
@@ -12871,7 +11543,7 @@ msgctxt ""
"par_idN1068A\n"
"help.text"
msgid "With the image selected, choose <emph>Edit - ImageMap</emph> in Writer and Calc or <emph>Tools - ImageMap</emph> in Impress and Draw. You see the <link href=\"text/shared/01/02220000.xhp\">ImageMap Editor</link>, which displays the image at the background."
-msgstr ""
+msgstr "Une fois l'image sélectionnée, choisissez <emph>Édition - Image Map</emph> dans Writer et Calc ou <emph>Outils - ImageMap</emph> dans Impress et Draw. L'<link href=\"text/shared/01/02220000.xhp\">éditeur d'image Map</link> qui s'affiche montre l'image à l'arrière-plan."
#: imagemap.xhp
msgctxt ""
@@ -15295,7 +13967,7 @@ msgctxt ""
"par_id3150753\n"
"help.text"
msgid "Then open the context menu in the <emph>Styles</emph> window and select <emph>Modify</emph>. This opens the <emph>Character Style</emph> dialog."
-msgstr ""
+msgstr "Ensuite, ouvrez le menu contextuel de la fenêtre <emph>Styles</emph> et sélectionnez <emph>Modifier</emph>. La boîte de dialogue <emph>Style de caractères</emph> s'ouvre."
#: language_select.xhp
msgctxt ""
@@ -15351,7 +14023,7 @@ msgctxt ""
"par_id2897427\n"
"help.text"
msgid "In the next page, click the <emph>Get It</emph> icon to download the dictionary extension. Note the folder name to which your browser downloads the file. Download additional dictionaries as you like."
-msgstr ""
+msgstr "À la page suivante, cliquez sur l'icône <emph>Get it</emph> pour télécharger l'extension de dictionnaire. Notez le nom du dossier dans lequel le navigateur va télécharger le fichier. Téléchargez autant de dictionnaires supplémentaires que souhaité."
#: language_select.xhp
msgctxt ""
@@ -15359,7 +14031,7 @@ msgctxt ""
"par_id3906979\n"
"help.text"
msgid "In %PRODUCTNAME, choose <item type=\"menuitem\">Tools - Extension Manager</item> and click <emph>Add</emph> to install the downloaded extensions."
-msgstr ""
+msgstr "Dans %PRODUCTNAME, choisissez <item type=\"menuitem\">Outils - Gestionnaire des extensions</item> et cliquez sur <emph>Ajouter</emph> pour installer les extensions téléchargées."
#: language_select.xhp
msgctxt ""
@@ -15415,7 +14087,7 @@ msgctxt ""
"par_id3806878\n"
"help.text"
msgid "Click <emph>OK</emph> and restart the %PRODUCTNAME software."
-msgstr ""
+msgstr "Cliquez sur <emph>OK</emph> et redémarrez le logiciel %PRODUCTNAME."
#: language_select.xhp
msgctxt ""
@@ -15447,7 +14119,7 @@ msgctxt ""
"par_id3791925\n"
"help.text"
msgid "Run %PRODUCTNAME installer, choose <emph>Modify</emph>, then select the language that you would like to install from the <emph>Additional user interface languages</emph> group."
-msgstr ""
+msgstr "Exécutez l'installeur %PRODUCTNAME, choisissez <emph>Modifier</emph>, puis sélectionnez la langue que vous souhaitez installer à partir du groupe <emph>Langue supplémentaire pour l'interface utilisateur</emph>."
#: language_select.xhp
msgctxt ""
@@ -15487,7 +14159,7 @@ msgctxt ""
"par_id2216559\n"
"help.text"
msgid "Open your web browser and enter <link href=\"https://www.libreoffice.org/download/\"><emph>https://www.libreoffice.org/download/</emph></link>."
-msgstr ""
+msgstr "Ouvrez votre navigateur Web et saisissez <link href=\"https://www.libreoffice.org/download/\"><emph>https://www.libreoffice.org/download/</emph></link>"
#: language_select.xhp
msgctxt ""
@@ -15519,7 +14191,7 @@ msgctxt ""
"par_id221655a\n"
"help.text"
msgid "Open your web browser and enter <link href=\"https://www.libreoffice.org/download/\"><emph>https://www.libreoffice.org/download/</emph></link>."
-msgstr ""
+msgstr "Ouvrez votre navigateur Web et saisissez <link href=\"https://www.libreoffice.org/download/\"><emph>https://www.libreoffice.org/download/</emph></link>"
#: language_select.xhp
msgctxt ""
@@ -17855,7 +16527,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "OpenPGP"
-msgstr ""
+msgstr "OpenPGP"
#: openpgp.xhp
msgctxt ""
@@ -17863,7 +16535,7 @@ msgctxt ""
"bm_id361543701916002\n"
"help.text"
msgid "<bookmark_value>OpenPGP;document encryption</bookmark_value> <bookmark_value>file encryption;OpenPGP</bookmark_value> <bookmark_value>public key;file encryption</bookmark_value> <bookmark_value>private key;file encryption</bookmark_value> <bookmark_value>file encryption;symmetric keys</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>OpenPGP;chiffrement de document</bookmark_value><bookmark_value>Chiffrement de fichier;OpenPGP</bookmark_value><bookmark_value>Clé publique;chiffrement de fichier</bookmark_value><bookmark_value>Clé privée;chiffrement de fichier</bookmark_value><bookmark_value>Chiffrement de fichier;clés symétriques</bookmark_value>"
#: openpgp.xhp
msgctxt ""
@@ -17871,7 +16543,7 @@ msgctxt ""
"hd_id131543693200115\n"
"help.text"
msgid "<link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp\">Encrypting Documents with OpenPGP</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/openpgp.xhp\" name=\"openpgp\">Chiffrement de documents avec OpenPGP</link>"
#: openpgp.xhp
msgctxt ""
@@ -17879,7 +16551,7 @@ msgctxt ""
"par_id531543693200117\n"
"help.text"
msgid "<ahelp hid=\".\">%PRODUCTNAME can encrypt documents using OpenPGP public key cryptography. The document is encrypted using a symmetric encryption algorithm.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">%PRODUCTNAME peut chiffrer les documents en utilisant le chiffrement à clé publique OpenPGP. Le document est chiffré en utilisant un algorithme de chiffrement symétrique.</ahelp>"
#: openpgp.xhp
msgctxt ""
@@ -17887,7 +16559,7 @@ msgctxt ""
"par_id551543694091730\n"
"help.text"
msgid "Choose menu <menuitem>File - Save as</menuitem>, select <widget>Encrypt with GPG key</widget>, Click <widget>Save</widget>."
-msgstr ""
+msgstr "Choisissez le menu <menuitem>Fichier - Enregistrer sous</menuitem> sélectionnez <widget>Chiffrer avec une clé GPG</widget>, cliquez sur <widget>Enregistrer</widget>."
#: openpgp.xhp
msgctxt ""
@@ -17895,7 +16567,7 @@ msgctxt ""
"par_id421543694016897\n"
"help.text"
msgid "%PRODUCTNAME can encrypt documents confidentially using OpenPGP. The document is encrypted using a symmetric encryption algorithm, which requires a symmetric key. Each symmetric key is used only once and is also called a session key. The document and its session key are sent to the recipient. The session key must be sent to the recipients so they know how to decrypt the document, but to protect it during transmission it is encrypted with the recipient's public key. Only the private key belonging to the recipient can decrypt the session key."
-msgstr ""
+msgstr "%PRODUCTNAME peut chiffrer les documents confidentiellement en utilisant OpenPGP. Le document est chiffré en utilisant un algorithme de chiffrement symétrique, qui nécessite une clé symétrique. Chaque clé symétrique est utilisée seulement une fois et est également appelée une clé de session. Le document et sa clé de session sont envoyés au récipiendaire. La clé de session doit être envoyée au récipiendaires afin qu'ils sachent comment déchiffrer le document, mais pour le protéger pendant la transmission, il est chiffré avec la clé publique du récipiendaire. Seule la clé privée appartenant au récipiendaire peut déchiffrer la clé de session."
#: openpgp.xhp
msgctxt ""
@@ -17903,7 +16575,7 @@ msgctxt ""
"par_id931543694032072\n"
"help.text"
msgid "%PRODUCTNAME uses the OpenPGP software installed in your computer. If no OpenPGP software is available you must download and install one suitable for your operating system, likely from your application store or software distribution channel."
-msgstr ""
+msgstr "%PRODUCTNAME utilise le logiciel OpenPGP installé sur votre ordinateur. S'il n'y a pas de logiciel OpenPGP disponible, vous devez en télécharger et en installer un compatible avec votre système d'exploitation, sans doute à partir du magasin d'applications ou du canal de distribution des logiciels."
#: openpgp.xhp
msgctxt ""
@@ -17911,7 +16583,7 @@ msgctxt ""
"par_id131543846940809\n"
"help.text"
msgid "Here are some external GPG applications known to work with %PRODUCTNAME:"
-msgstr ""
+msgstr "Voici quelques applications GPG externes connues pour fonctionner avec %PRODUCTNAME :"
#: openpgp.xhp
msgctxt ""
@@ -17919,7 +16591,7 @@ msgctxt ""
"par_id831543846877587\n"
"help.text"
msgid "<emph>gpg4win</emph> on Windows"
-msgstr ""
+msgstr "<emph>gpg4win</emph> sous Windows"
#: openpgp.xhp
msgctxt ""
@@ -17927,7 +16599,7 @@ msgctxt ""
"par_id191543846891252\n"
"help.text"
msgid "<emph>GPGTools</emph> on MacOS"
-msgstr ""
+msgstr "<emph>GPGTools</emph> sous MacOS"
#: openpgp.xhp
msgctxt ""
@@ -17935,7 +16607,7 @@ msgctxt ""
"par_id791543846905735\n"
"help.text"
msgid "On Linux, usually already installed:"
-msgstr ""
+msgstr "Sous Linux, en général déjà installés :"
#: openpgp.xhp
msgctxt ""
@@ -17943,7 +16615,7 @@ msgctxt ""
"par_id411544099245722\n"
"help.text"
msgid "<emph>gnupg</emph> - a command line utility for signing, encrypting and key management."
-msgstr ""
+msgstr "<emph>gnupg</emph> - un utilitaire en ligne de commande pour signer, chiffrer et gérer les clés."
#: openpgp.xhp
msgctxt ""
@@ -17951,7 +16623,7 @@ msgctxt ""
"par_id811544099299847\n"
"help.text"
msgid "Graphical applications for gnupg such as <emph>Seahorse</emph> (gnome), <emph>Kleopatra</emph> and <emph>KGpg</emph> (KDE)."
-msgstr ""
+msgstr "Les applications graphiques pour gnupg telles que <emph>Seahorse</emph> (gnome), <emph>Kleopatra</emph> et <emph>KGpg</emph> (KDE)."
#: openpgp.xhp
msgctxt ""
@@ -17959,7 +16631,7 @@ msgctxt ""
"par_id631544099446081\n"
"help.text"
msgid "<emph>gpgme</emph> - an application program interface (API) to develop applications with GPG."
-msgstr ""
+msgstr "<emph>gpgme</emph> - une interface de programmation d'applications (API) pour développer des applications avec GPG."
#: openpgp.xhp
msgctxt ""
@@ -17967,7 +16639,7 @@ msgctxt ""
"par_id461543694043196\n"
"help.text"
msgid "You must define a personal pair of cryptography keys with the OpenPGP application. Refer to the OpenPGP software installed on how to create a pair of keys, it is usually the first step to execute after the software installation."
-msgstr ""
+msgstr "Vous devez définir une paire personnelle de clés de chiffrement avec l'application OpenPGP. Référez-vous au logiciel OpenPGP installé pour savoir comment créer une paire de clés, c'est généralement la première étape à exécuter après l'installation du logiciel."
#: openpgp.xhp
msgctxt ""
@@ -17975,7 +16647,7 @@ msgctxt ""
"hd_id881543694319935\n"
"help.text"
msgid "%PRODUCTNAME Encryption Setup"
-msgstr ""
+msgstr "Configuration du chiffrement %PRODUCTNAME "
#: openpgp.xhp
msgctxt ""
@@ -17983,7 +16655,7 @@ msgctxt ""
"par_id611543699681558\n"
"help.text"
msgid "Choose menu <menuitem>Tools – Options – User Data</menuitem>. In the <emph>Cryptography</emph> area:"
-msgstr ""
+msgstr "Choisissez le menu <menuitem>Outils - Options - Données utilisateur</menuitem>. Dans la zone <emph>Chiffrement</emph> :"
#: openpgp.xhp
msgctxt ""
@@ -17991,7 +16663,7 @@ msgctxt ""
"hd_id251543694437685\n"
"help.text"
msgid "Encrypting documents"
-msgstr ""
+msgstr "Chiffrer des documents"
#: openpgp.xhp
msgctxt ""
@@ -17999,7 +16671,7 @@ msgctxt ""
"par_id121543694447798\n"
"help.text"
msgid "OpenPGP encryption requires the use of the public key of the recipient and this key must be available in the OpenPGP key chain stored in your computer. To encrypt a document:"
-msgstr ""
+msgstr "Le chiffrement OpenPGP nécessite l'utilisation de la clé publique du récipiendaire et cette clé doit être disponiblre dans la chaîne de clés OpenPGP stockée sur votre ordinateur. Pour chiffrer un document :"
#: openpgp.xhp
msgctxt ""
@@ -18007,7 +16679,7 @@ msgctxt ""
"par_id501543694474227\n"
"help.text"
msgid "Choose <menuitem>File – Save As</menuitem>,"
-msgstr ""
+msgstr "Choisissez <menuitem>Fichier - Enregistrer sous</menuitem>,"
#: openpgp.xhp
msgctxt ""
@@ -18015,7 +16687,7 @@ msgctxt ""
"par_id641543694535615\n"
"help.text"
msgid "Enter a name for the file."
-msgstr ""
+msgstr "Saisissez un nom pour le fichier."
#: openpgp.xhp
msgctxt ""
@@ -18023,7 +16695,7 @@ msgctxt ""
"par_id621543694550648\n"
"help.text"
msgid "Mark the <widget>Encrypt with GPG key</widget> checkbox."
-msgstr ""
+msgstr "Cochez la case à cocher <widget>Chiffrer avec une clé GPG</widget>."
#: openpgp.xhp
msgctxt ""
@@ -18031,7 +16703,7 @@ msgctxt ""
"par_id91543694595310\n"
"help.text"
msgid "Click <widget>Save</widget>. %PRODUCTNAME opens the OpenPGP public key selection dialog."
-msgstr ""
+msgstr "Cliquez sur <widget>Enregistrer</widget>. %PRODUCTNAME ouvre la boîte de dialogue de sélection de clé publique OpenPGP."
#: openpgp.xhp
msgctxt ""
@@ -18039,7 +16711,7 @@ msgctxt ""
"par_id31543694619204\n"
"help.text"
msgid "Choose the public key of the recipient. You can select multiple keys at the time."
-msgstr ""
+msgstr "Choisissez la clé publique du récipiendaire. Vous pouvez sélectionner plusieurs clés en même temps."
#: openpgp.xhp
msgctxt ""
@@ -18047,7 +16719,7 @@ msgctxt ""
"par_id811543694660297\n"
"help.text"
msgid "Click <widget>OK</widget> to close the dialog and save the file."
-msgstr ""
+msgstr "Cliquez sur <widget>OK</widget> pour fermer la boîte de dialogue et enregistrer le fichier."
#: openpgp.xhp
msgctxt ""
@@ -18055,7 +16727,7 @@ msgctxt ""
"par_id981543694776604\n"
"help.text"
msgid "The file is saved encrypted with the selected public keys."
-msgstr ""
+msgstr "Le fichier est enregistré chiffré avec les clés publiques sélectionnées."
#: openpgp.xhp
msgctxt ""
@@ -18063,7 +16735,7 @@ msgctxt ""
"par_id851543694185733\n"
"help.text"
msgid "Only the private key belonging to the recipient can decrypt the document, unless you also encrypt for yourself."
-msgstr ""
+msgstr "Seule la clé privée appartenant au récipiendaire peut déchiffrer le document, à moins que vous ne l'ayez également chiffré pour vous-même."
#: openpgp.xhp
msgctxt ""
@@ -18071,7 +16743,7 @@ msgctxt ""
"hd_id81543694812238\n"
"help.text"
msgid "Decrypting documents"
-msgstr ""
+msgstr "Déchiffrer des documents"
#: openpgp.xhp
msgctxt ""
@@ -18079,7 +16751,7 @@ msgctxt ""
"par_id731543694835151\n"
"help.text"
msgid "You can only decrypt documents that have been encrypted with your public key. To decrypt a document:"
-msgstr ""
+msgstr "Vous ne pouvez déchiffrer que les documents qui ont été chiffrés avec votre clé publique. Pour déchiffrer un document :"
#: openpgp.xhp
msgctxt ""
@@ -18087,7 +16759,7 @@ msgctxt ""
"par_id801543694880414\n"
"help.text"
msgid "Open the document. An Enter password prompt shows."
-msgstr ""
+msgstr "Ouvrez le document. Une invite pour saisir un mot de passe s'ouvre."
#: openpgp.xhp
msgctxt ""
@@ -18095,7 +16767,7 @@ msgctxt ""
"par_id891543694892170\n"
"help.text"
msgid "Enter the password of the OpenPGP private key. The document is decrypted and the contents is available."
-msgstr ""
+msgstr "Saisissez le mot de passe de la clé privée OpenPGP. Le document est déchiffré et le contenu est disponible."
#: openpgp.xhp
msgctxt ""
@@ -18103,7 +16775,7 @@ msgctxt ""
"hd_id811543694928568\n"
"help.text"
msgid "Difference between document encryption with OpenPGP and Save with password"
-msgstr ""
+msgstr "Différence entre un document chiffrée avec OpenPGP et enregistré avec un mot de passe"
#: openpgp.xhp
msgctxt ""
@@ -18111,7 +16783,7 @@ msgctxt ""
"par_id391543694940352\n"
"help.text"
msgid "Both commands address confidentiality, but in different ways."
-msgstr ""
+msgstr "Les deux commandes répondent à la confidentialité du document, mais de façon différentes."
#: openpgp.xhp
msgctxt ""
@@ -18119,7 +16791,7 @@ msgctxt ""
"par_id331543694947279\n"
"help.text"
msgid "When you save a document with a password, you must remember the password inserted to open the document later. Anyone else that needs to open the document must also know the password used at save time. Therefore, the Save password must be transmitted to be known by other users."
-msgstr ""
+msgstr "Lorsque vous enregistrez un document avec un mot de passe, vous devez vous souvenir du mot de passe inséré pour ouvrir le document par la suite. Toute personne devant ouvrir le document doit également connaître le mot de passe utilisé au moment de l'enregistrement. Le mot de passe enregistré doit donc être transmis pour être connu des autres utilisateurs."
#: openpgp.xhp
msgctxt ""
@@ -18127,7 +16799,7 @@ msgctxt ""
"par_id351543694955038\n"
"help.text"
msgid "Files encrypted with the save password cannot be decrypted unless the save password is supplied."
-msgstr ""
+msgstr "Les fichiers chiffrés avec le mot de passe ne peuvent pas déchiffrés à moins que le mot de passe d'enregistrement soit fourni. "
#: openpgp.xhp
msgctxt ""
@@ -18135,7 +16807,7 @@ msgctxt ""
"par_id681543694965846\n"
"help.text"
msgid "With document OpenPGP encryption, you define the set of users that can decrypt the document and you don’t need to send passwords through channels which security is unknown. Besides, the OpenPGP application manages the key chain of public keys more efficiently."
-msgstr ""
+msgstr "Avec le document chiffré OpenPGP, vous définissez un ensemble d'utilisateur qui peuvent déchiffrer le document et vous n'avez pas besoin d'envoyer les mots de passe à travers des canaux dont la sécurité est inconnue. De plus, l'application OpenPGP gère la chaîne de clés de clés publique plus efficacement."
#: openpgp.xhp
msgctxt ""
@@ -18143,7 +16815,7 @@ msgctxt ""
"par_id51543697316590\n"
"help.text"
msgid "<link href=\"https://en.wikipedia.org/wiki/Pretty_Good_Privacy#OpenPGP\" name=\"Wikipedia on OpenPGP\">Wikipedia on OpenPGP</link>"
-msgstr ""
+msgstr "<link href=\"https://fr.wikipedia.org/wiki/OpenPGP\" name=\"Wikipedia on OpenPGP\">Wikipedia sur OpenPGP</link>"
#: pageformat_max.xhp
msgctxt ""
@@ -21063,7 +19735,7 @@ msgctxt ""
"par_id315053o\n"
"help.text"
msgid "Forces an input filter type, if possible. For example:"
-msgstr ""
+msgstr "Force un type de filtre d'entrée, si possible. Par exemple :"
#: start_parameters.xhp
msgctxt ""
@@ -21439,7 +20111,7 @@ msgctxt ""
"par_id781554408625219\n"
"help.text"
msgid "See the <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">list of document filters</link> for file conversion."
-msgstr ""
+msgstr "Voir la <link href=\"text/shared/guide/convertfilters.xhp\" name=\"list of document filters\">liste des filtres de document</link> pour la conversion de fichiers."
#: start_parameters.xhp
msgctxt ""
@@ -21463,7 +20135,7 @@ msgctxt ""
"par_id2016120401348732\n"
"help.text"
msgid "Applies filter \"txt:Text\" to the following text documents and dump text content to console (implies <emph>--headless</emph>). Cannot be used with <emph>--convert-to</emph>."
-msgstr ""
+msgstr "Applique le filtre \"txt: Text\" aux documents texte suivants et transfère le contenu texte vers la console (implique <emph>--headless</emph>). Ne peut pas être utilisé avec <emph>--convert-to</emph>."
#: start_parameters.xhp
msgctxt ""
@@ -23079,7 +21751,7 @@ msgctxt ""
"par_idN106F5\n"
"help.text"
msgid "XForms are a new type of web form that was developed by the World Wide Web Consortium. The XForm model is defined in Extensible Markup Language (XML). The model uses separate sections to describe what a form does and what a form looks like. You can view the specification for XForms at: <link href=\"https://www.w3.org/MarkUp/Forms/\"><emph>https://www.w3.org/MarkUp/Forms/</emph></link>."
-msgstr ""
+msgstr "Développés par le Consortium World Wide Web, les documents XForms appartiennent à une nouvelle génération de formulaires Web. Les modèles XForms sont basés sur le langage XML (Extensible Markup Language) et proposent différentes sections décrivant le rôle et l'aspect d'un formulaire. Pour plus d'informations sur les spécifications XForms, visitez le site : <link href=\"https://www.w3.org/MarkUp/Forms/\"><emph>https://www.w3.org/MarkUp/Forms/</emph></link>."
#: xforms.xhp
msgctxt ""
@@ -23095,7 +21767,7 @@ msgctxt ""
"par_idN1074A\n"
"help.text"
msgid "In %PRODUCTNAME, an XForms document is a special type of Writer document. The <emph>Design Mode</emph> for an XForm document has additional toolbars and panes."
-msgstr ""
+msgstr "Dans %PRODUCTNAME, les documents XForms constituent un type particulier de documents Writer. Le <emph>mode Conception</emph> des documents XForms propose des barres d'outils et des volets supplémentaires."
#: xforms.xhp
msgctxt ""
@@ -23151,7 +21823,7 @@ msgctxt ""
"par_idN10722\n"
"help.text"
msgid "In the <emph>Data Navigator</emph>, add an element to the instance."
-msgstr ""
+msgstr "Dans le <emph>Navigateur de Données</emph>, ajoutez un élément à l'instance."
#: xforms.xhp
msgctxt ""
@@ -23279,7 +21951,7 @@ msgctxt ""
"par_idN10947\n"
"help.text"
msgid "<emph>Import Filters</emph> - load external XML files and transform the format of the files into the OpenDocument XML file format. After you install an import filter, the name of the filter is added to the list of file types in the <link href=\"text/shared/01/01020000.xhp\"><emph>File Open</emph></link> dialog."
-msgstr ""
+msgstr "<emph>Filtres d'import</emph> - chargent les fichiers XML externes et convertissent le format de fichiers en format de fichier OpenDocument XML. Une fois le filtre d'import installé, son nom est ajouté à la liste des types de fichiers dans la <link href=\"text/shared/01/01020000.xhp\">boîte de dialogue <emph>Ouvrir du menu Fichier</emph></link>."
#: xsltfilter.xhp
msgctxt ""
@@ -23287,7 +21959,7 @@ msgctxt ""
"par_idN10960\n"
"help.text"
msgid "<emph>Export Filters</emph> - transform OpenDocument XML files and <emph>save</emph> the files to a different XML format. After you install an export filter, the name of the filter is added to the list of file types in the <link href=\"text/shared/01/01070001.xhp\"><emph>Export</emph></link> dialog."
-msgstr ""
+msgstr "Les <emph>filtres d'export</emph> - convertissent les fichiers OpenDocument XML et les <emph>enregistrent</emph> dans un format XML différent. Après l'installation d'un filtre d'export, le nom du filtre est ajouté à la liste des types de fichiers dans la <link href=\"text/shared/01/01070001.xhp\">boîte de dialogue d'<emph>export</emph></link>."
#: xsltfilter.xhp
msgctxt ""
@@ -23295,7 +21967,7 @@ msgctxt ""
"par_idN10979\n"
"help.text"
msgid "<emph>Import/Export Filters</emph> - load and save OpenDocument XML files into a different XML <emph>format</emph>. After you install these filters, the names of the filters are added to the list of file types in the <link href=\"text/shared/01/01020000.xhp\"><emph>File Open</emph></link> dialog and the <link href=\"text/shared/01/01070000.xhp\"><emph>File Save As</emph></link> dialog."
-msgstr ""
+msgstr "Les <emph>filtres d'import et d'export</emph> - chargent et enregistrent les fichiers OpenDocument XML dans un <emph>format</emph> XML différent. Après l'installation de ces filtres, les noms des filtres sont ajoutés à la liste des types de fichiers de la <link href=\"text/shared/01/01020000.xhp\">boîte de dialogue <emph>Ouvrir du menu Fichier</emph></link> et de la <link href=\"text/shared/01/01070000.xhp\">boîte de dialogue <emph>Enregistrer sous</emph> du menu Fichier</link>."
#: xsltfilter.xhp
msgctxt ""
@@ -23303,7 +21975,7 @@ msgctxt ""
"par_idN10B39\n"
"help.text"
msgid "<link href=\"https://www.w3.org/Style/XSL/\">World Wide Web Consortium Pages on Extensible <emph>Stylesheet</emph> Language (XSL)</link>"
-msgstr ""
+msgstr "<link href=\"https://www.w3.org/Style/XSL/\">Pages du Consortium World Wide Web relatives au <emph>langage XSL</emph> (eXtensible Stylesheet Language)</link>"
#: xsltfilter.xhp
msgctxt ""
@@ -23311,7 +21983,7 @@ msgctxt ""
"par_idN10B4E\n"
"help.text"
msgid "<link href=\"https://www.w3.org/XML/\">World Wide Web Consortium Pages on Extensible Markup Language (XML)</link>"
-msgstr ""
+msgstr "<link href=\"https://www.w3.org/XML/\">Pages du Consortium World Wide Web relatives au langage XML (eXtensible Markup Language)</link>"
#: xsltfilter.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/help.po b/source/fr/helpcontent2/source/text/shared/help.po
index d65581725b4..231eacbe12e 100644
--- a/source/fr/helpcontent2/source/text/shared/help.po
+++ b/source/fr/helpcontent2/source/text/shared/help.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-12-17 18:34+0000\n"
+"PO-Revision-Date: 2019-05-29 14:40+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1545071671.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559140855.000000\n"
#: browserhelp.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id191525734190260\n"
"help.text"
msgid "<variable id=\"donate\">Please support us!</variable>"
-msgstr ""
+msgstr "<variable id=\"donate\">Aidez-nous !</variable>"
#: browserhelp.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/optionen.po b/source/fr/helpcontent2/source/text/shared/optionen.po
index b3517329661..81c9b3fefb1 100644
--- a/source/fr/helpcontent2/source/text/shared/optionen.po
+++ b/source/fr/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-12-01 11:08+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
@@ -14785,182 +14785,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "pour plus d'information sur OpenCL, visiter <link href=\"https://www.khronos.org/opencl/\">le site OpenCL</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personnalisation"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>thèmes;options de configuration</bookmark_value><bookmark_value>options de configuration;thèmes</bookmark_value><bookmark_value>personnalisation;Thèmes Mozilla Firefox</bookmark_value><bookmark_value>personas;personnalisation</bookmark_value><bookmark_value>personnalisation;personas</bookmark_value><bookmark_value>Thèmes Mozilla Firefox;personnalisation</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personnalisation</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Vous pouvez personnaliser %PRODUCTNAME avec les mêmes thèmes que ceux disponibles pour Mozilla Firefox. La barre de menus, les barres d'outils supérieures et inférieures afficheront le thème choisi en arrière-plan."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Les thèmes Mozilla Firefox sont disponibles sur le site web de Mozilla à l'adresse suivante : <link href=\"https://addons.mozilla.org/fr/firefox/themes/\">https://addons.mozilla.org/fr/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "N'importe quel thème compatible avec Firefox fonctionnera avec %PRODUCTNAME. Toutefois tous les thèmes ne donneront pas de bons résultats visuels—si l'image est trop chargée elle risque d'impacter la lisibilité des icônes et des menus."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Thèmes Firefox :"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Les options suivantes sont disponibles :"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Apparence par défaut, ne pas utiliser les thèmes"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Les arrière-plans de barres d'outils héritent des paramètres d'arrière-plan du gestionnaire de fenêtres de votre ordinateur.</ahelp> C'est la configuration par défaut pour %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Thème préinstallé"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choisissez cette option pour utiliser l'un des thèmes préinstallés.</ahelp> En plus des options par défaut, l'administrateur système a pu ajouter un thème personnalisé pendant l'installation de %PRODUCTNAME. Cette option l'affichera."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Thème personnel"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choisissez cette option pour ouvrir la boîte de dialogue \"Sélectionner un thème Firefox\" et faites votre choix.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Boîte de dialogue Sélectionner un thème Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Cette boîte de dialogue vous permet d'installer un thème spécifique ou vous donne un aperçu sur d'autres thèmes intéressants provenant du site web de Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Rechercher"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Fournissez un terme de recherche pour rechercher sur le site d'add-ons de Mozilla ou collez une adresse de thème pour récupérer directement un thème spécifique.</ahelp> Pour obtenir l'adresse, utilisez votre navigateur pour naviguer jusqu'à la page Web du thème et copiez l'URL affichée dans la barre d'adresse. Puis copiez-la dans la boîte de dialogue de recherche. Cliquez sur <item type=\"menuitem\">Rechercher</item> ou appuyez sur <item type=\"keycode\">Entrée</item> pour le télécharger et l'installer dans %PRODUCTNAME. "
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Explorer des thèmes par catégories"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Affiche un choix aléatoire de neuf thèmes basés sur les catégories affichées dans les boutons.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Cliquez sur l'un des cinq boutons pour afficher dans la zone d'image inférieure un choix aléatoire de neuf thèmes correspondant à la catégorie indiquée sur le bouton."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Pour sélectionner un des thèmes affichés, cliquez sur son image et appuyez sur <item type=\"menuitem\">OK</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/fr/helpcontent2/source/text/simpress.po b/source/fr/helpcontent2/source/text/simpress.po
index c42b9e67ee5..bb9fb0bd425 100644
--- a/source/fr/helpcontent2/source/text/simpress.po
+++ b/source/fr/helpcontent2/source/text/simpress.po
@@ -4,18 +4,18 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2017-10-09 18:35+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"PO-Revision-Date: 2019-05-15 14:53+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1507574151.000000\n"
+"X-POOTLE-MTIME: 1557932011.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1287,7 +1287,7 @@ msgctxt ""
"par_id3148610\n"
"help.text"
msgid "You can also assign a number of dynamic effects to your slides, including animation and transition effects."
-msgstr ""
+msgstr "Vous pouvez également assigner nombre d'effets dynamiques à vos diapos, y compris des effets d'animation et de transition."
#: main0503.xhp
msgctxt ""
@@ -1351,7 +1351,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Édition"
#: main_edit.xhp
msgctxt ""
@@ -1359,7 +1359,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Édition</link>"
#: main_edit.xhp
msgctxt ""
@@ -1367,7 +1367,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ce menu contient des commandes pour l'édition du contenu du document actif.</ahelp>"
#: main_edit.xhp
msgctxt ""
@@ -1375,7 +1375,7 @@ msgctxt ""
"hd_id3154649\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
#: main_edit.xhp
msgctxt ""
@@ -1383,7 +1383,7 @@ msgctxt ""
"par_id3154766\n"
"help.text"
msgid "Switches the <emph>Edit Points</emph> mode on and off."
-msgstr ""
+msgstr "Active ou désactive le mode <emph>Éditer des points</emph>."
#: main_edit.xhp
msgctxt ""
@@ -1391,7 +1391,7 @@ msgctxt ""
"hd_id3145116\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Points de collage\">Points de collage</link>"
#: main_edit.xhp
msgctxt ""
@@ -1399,7 +1399,7 @@ msgctxt ""
"par_id3147403\n"
"help.text"
msgid "Switches the <emph>Edit Glue Points</emph> mode on and off."
-msgstr ""
+msgstr "Active ou désactive le mode <emph>Éditer des points de collage</emph>."
#: main_edit.xhp
msgctxt ""
@@ -1407,7 +1407,7 @@ msgctxt ""
"hd_id3150396\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Champs\">Champs</link>"
#: main_edit.xhp
msgctxt ""
@@ -1415,7 +1415,7 @@ msgctxt ""
"hd_id3149355\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Liens\">Liens</link>"
#: main_edit.xhp
msgctxt ""
@@ -1423,7 +1423,7 @@ msgctxt ""
"hd_id0914201502131542\n"
"help.text"
msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Objet\">Objet</link>"
#: main_format.xhp
msgctxt ""
@@ -1431,7 +1431,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Format"
#: main_format.xhp
msgctxt ""
@@ -1439,7 +1439,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
#: main_format.xhp
msgctxt ""
@@ -1447,7 +1447,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Contient des commandes de formatage de la mise en page et du contenu du document.</ahelp>"
#: main_format.xhp
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"hd_id3147401\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Caractère\">Caractère</link>"
#: main_format.xhp
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"hd_id3149941\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraphe\">Paragraphe</link>"
#: main_format.xhp
msgctxt ""
@@ -1471,7 +1471,7 @@ msgctxt ""
"hd_id3147299\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numérotation/Puces\">Puces et numérotation</link>"
#: main_format.xhp
msgctxt ""
@@ -1479,7 +1479,7 @@ msgctxt ""
"hd_id3149499\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position et taille\">Position et taille</link>"
#: main_format.xhp
msgctxt ""
@@ -1487,7 +1487,7 @@ msgctxt ""
"hd_id3154510\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Ligne\">Ligne</link>"
#: main_format.xhp
msgctxt ""
@@ -1495,7 +1495,7 @@ msgctxt ""
"hd_id3149021\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Remplissage\">Remplissage</link>"
#: main_format.xhp
msgctxt ""
@@ -1503,7 +1503,7 @@ msgctxt ""
"hd_id3155961\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Texte\">Texte</link>"
#: main_format.xhp
msgctxt ""
@@ -1511,7 +1511,7 @@ msgctxt ""
"hd_id3156286\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Mise en page\">Conception de diapo</link>"
#: main_format.xhp
msgctxt ""
@@ -1519,7 +1519,7 @@ msgctxt ""
"hd_id3163827\n"
"help.text"
msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modifier la mise en page\">Mise en page des diapos</link>"
#: main_slide.xhp
msgctxt ""
@@ -1527,7 +1527,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Diapo"
#: main_slide.xhp
msgctxt ""
@@ -1535,7 +1535,7 @@ msgctxt ""
"hd_id0908201507475698\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Diapo</link>"
#: main_slide.xhp
msgctxt ""
@@ -1543,7 +1543,7 @@ msgctxt ""
"par_id0908201507482661\n"
"help.text"
msgid "This menu provides slide management and navigation commands."
-msgstr ""
+msgstr "Ce menu fournit des commandes de navigation et de gestion des diapos."
#: main_slide.xhp
msgctxt ""
@@ -1551,7 +1551,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">Nouvelle diapo</link>"
#: main_slide.xhp
msgctxt ""
@@ -1559,7 +1559,7 @@ msgctxt ""
"hd_id551556824896520\n"
"help.text"
msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Propriétés</link>"
#: main_tools.xhp
msgctxt ""
@@ -1567,7 +1567,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "Outils"
#: main_tools.xhp
msgctxt ""
@@ -1575,7 +1575,7 @@ msgctxt ""
"hd_id3154017\n"
"help.text"
msgid "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Outils</link>"
#: main_tools.xhp
msgctxt ""
@@ -1583,7 +1583,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Contient des outils linguistiques, une galerie d'objets artistiques que vous pouvez ajouter à votre document, des outils pour les configurer ainsi que des préférences de paramétrage de programme.</ahelp>"
#: main_tools.xhp
msgctxt ""
@@ -1591,7 +1591,7 @@ msgctxt ""
"hd_id3145590\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
#: main_tools.xhp
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"hd_id3153248\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrection\">Options d'AutoCorrection</link>"
#: main_tools.xhp
msgctxt ""
@@ -1607,4 +1607,4 @@ msgctxt ""
"hd_id3149130\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Personnaliser\">Personnaliser</link>"
diff --git a/source/fr/helpcontent2/source/text/simpress/01.po b/source/fr/helpcontent2/source/text/simpress/01.po
index def79c3ef66..ee2319409b7 100644
--- a/source/fr/helpcontent2/source/text/simpress/01.po
+++ b/source/fr/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-04 17:14+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
@@ -8182,7 +8182,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/fr/helpcontent2/source/text/swriter/00.po b/source/fr/helpcontent2/source/text/swriter/00.po
index c9ca2b2fc1a..32b54bbc151 100644
--- a/source/fr/helpcontent2/source/text/swriter/00.po
+++ b/source/fr/helpcontent2/source/text/swriter/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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-11-18 15:55+0000\n"
+"PO-Revision-Date: 2019-05-14 15:37+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1542556537.000000\n"
+"X-POOTLE-MTIME: 1557848222.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1279,7 +1279,7 @@ msgctxt ""
"par_id3153618\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Drop Caps</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Paragraphe - Lettrines</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1287,7 +1287,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Drop Caps</emph> tab."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles -</emph>, ouvrez le menu contextuel et sélectionnez l'onglet <emph>Modifier/Nouveau - Lettrines</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1295,7 +1295,7 @@ msgctxt ""
"par_id3154697\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Text Flow</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Paragraphe - Enchaînements</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1303,7 +1303,7 @@ msgctxt ""
"par_id3154260\n"
"help.text"
msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Text Flow</emph> tab."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles -</emph> ouvrez le menu contextuel et sélectionnez l'onglet <emph>Modifier/Nouveau - Enchaînements</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1311,7 +1311,7 @@ msgctxt ""
"par_id3154275\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace - Format - Text Flow</emph> tab."
-msgstr ""
+msgstr "Choisissez le menu puis l'onglet <emph>Édition - Rechercher & Remplacer - Format - Enchaînements</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1319,7 +1319,7 @@ msgctxt ""
"par_idN10715\n"
"help.text"
msgid "Right-click a paragraph with style <item type=\"literal\">Text body</item>. Choose <emph>Edit Paragraph Style - Condition</emph> tab."
-msgstr ""
+msgstr "Cliquez avec le bouton droit de la souris sur un paragraphe possédant le style <item type=\"literal\">Corps de texte</item>. Choisissez l'onglet <emph>Éditer le style de paragraphe - Condition</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1335,7 +1335,7 @@ msgctxt ""
"par_id3152947\n"
"help.text"
msgid "Choose <emph>Format - Page</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Format - Page</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1343,7 +1343,7 @@ msgctxt ""
"par_id3153536\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu <emph>New/Modify</emph> (for Page Styles)."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles </emph> - dans le menu contextuel, sélectionnez <emph>Modifier/Nouveau</emph> (pour les styles de pages)."
#: 00000405.xhp
msgctxt ""
@@ -1351,7 +1351,7 @@ msgctxt ""
"par_id3154470\n"
"help.text"
msgid "Choose <emph>Format - Paragraph - Outline & Numbering</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Paragraphe - Plan et numérotation</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1359,7 +1359,7 @@ msgctxt ""
"par_id3147525\n"
"help.text"
msgid "Choose <emph>View - Styles -</emph> open context menu <emph>Modify/New - Outline & Numbering</emph> tab (Paragraph Styles)."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles -</emph> ouvrez le menu contextuel et sélectionnez l'onglet <emph>Modifier/Nouveau - Plan et numérotation</emph> (Styles de paragraphe)."
#: 00000405.xhp
msgctxt ""
@@ -1367,7 +1367,7 @@ msgctxt ""
"par_id3152960\n"
"help.text"
msgid "<variable id=\"spaltenber\">Choose <emph>Format - Sections - Options</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"spaltenber\">Choisissez le menu puis le bouton <emph>Format - Sections - Options</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1375,7 +1375,7 @@ msgctxt ""
"par_id3150836\n"
"help.text"
msgid "Choose <emph>Format - Page - Columns</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Page - Colonnes</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1383,7 +1383,7 @@ msgctxt ""
"par_id3149687\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Columns</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Cadre et objet - Propriétés - Colonnes</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1391,7 +1391,7 @@ msgctxt ""
"par_id3149298\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New - Columns</emph> tab."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles </emph>, ouvrez le menu contextuel et sélectionnez l'onglet <emph>Modifier/Nouveau - Colonnes</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1399,7 +1399,7 @@ msgctxt ""
"par_id3151336\n"
"help.text"
msgid "Choose <emph>Insert - Frame - Frame - Columns</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Insertion - Cadre - Colonnes</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1407,7 +1407,7 @@ msgctxt ""
"par_id3143276\n"
"help.text"
msgid "Choose <emph>Insert/Format - Section(s) - Columns</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Insertion / Format - Section(s) - Colonnes</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1415,7 +1415,7 @@ msgctxt ""
"par_id3149817\n"
"help.text"
msgid "Choose <emph>Format - Page - Footnote</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Page - Note de bas de page</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1423,7 +1423,7 @@ msgctxt ""
"par_id3149109\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New - Footnote</emph> tab."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles</emph>, ouvrez le menu contextuel et sélectionnez l'onglet <emph>Modifier/Nouveau - Note de bas de page</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1431,7 +1431,7 @@ msgctxt ""
"par_id3148970\n"
"help.text"
msgid "Choose <emph>Insert - Section - Footnotes/Endnotes</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Insertion - Section - Notes de bas de page / de fin</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1439,7 +1439,7 @@ msgctxt ""
"par_id3147094\n"
"help.text"
msgid "Choose <emph>Format - Sections - Options</emph> button <emph>Footnotes/Endnotes</emph> tab."
-msgstr ""
+msgstr "Choisissez le bouton <emph>Format - Sections - Options</emph> onglet <emph>Notes de bas de page / de fin</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1447,7 +1447,7 @@ msgctxt ""
"par_id3155140\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New</emph> (for Paragraph Styles)."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles</emph>, dans le menu contextuel sélectionnez <emph>Modifier/Nouveau</emph> (pour les styles de paragraphe)."
#: 00000405.xhp
msgctxt ""
@@ -1455,7 +1455,7 @@ msgctxt ""
"par_id3153356\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New</emph> (for Character Styles)."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles</emph>, dans le menu contextuel sélectionnez <emph>Modifier/Nouveau</emph> (pour les styles de caractère)."
#: 00000405.xhp
msgctxt ""
@@ -1463,7 +1463,7 @@ msgctxt ""
"par_id3149179\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New</emph> (for Frame Styles)."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles</emph>, dans le menu contextuel sélectionnez <emph>Modifier/Nouveau</emph> (pour les styles de cadres)."
#: 00000405.xhp
msgctxt ""
@@ -1471,7 +1471,7 @@ msgctxt ""
"par_id3156364\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New</emph> (for List Styles)."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles</emph>, dans le menu contextuel sélectionnez <emph>Modifier/Nouveau</emph> (pour les styles de liste)."
#: 00000405.xhp
msgctxt ""
@@ -1479,7 +1479,7 @@ msgctxt ""
"par_id3151370\n"
"help.text"
msgid "<variable id=\"eingabe\">Choose <emph>Tools - AutoCorrect - While Typing</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"eingabe\">Choisissez <emph>Outils - AutoCorrection - Pendant la saisie</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1487,7 +1487,7 @@ msgctxt ""
"par_id3149538\n"
"help.text"
msgid "<variable id=\"autoformat1\">Choose <emph>Tools - AutoCorrect</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat1\">Choisissez <emph>Outils - AutoCorrection</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1495,7 +1495,7 @@ msgctxt ""
"par_id3150117\n"
"help.text"
msgid "<variable id=\"autoformat2\">Choose <emph>Tools - AutoCorrect - Apply</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat2\">Choisissez <emph>Outils - AutoCorrection - Appliquer</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1503,7 +1503,7 @@ msgctxt ""
"par_id3155870\n"
"help.text"
msgid "<variable id=\"autoformat3\">Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat3\">Choisissez <emph>Outils - AutoCorrection - Appliquer et éditer les modifications</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1511,7 +1511,7 @@ msgctxt ""
"par_id3147413\n"
"help.text"
msgid "<variable id=\"autoformattab\">Choose <emph>Table - AutoFormat Styles</emph> (with cursor in a table).</variable>"
-msgstr ""
+msgstr "<variable id=\"autoformattab\">Choisissez <emph>Tableau - Style d'AutoFormat</emph> (le curseur doit se trouver dans un tableau).</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1519,7 +1519,7 @@ msgctxt ""
"par_id3147484\n"
"help.text"
msgid "Choose <emph>Format - Image</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Format - Image</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1527,7 +1527,7 @@ msgctxt ""
"par_id3147504\n"
"help.text"
msgid "Choose <emph>Insert - Image - From File - Properties</emph> button."
-msgstr ""
+msgstr "Choisissez le bouton<emph>Insertion - Image - À partir d'un fichier - Propriétés</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1535,7 +1535,7 @@ msgctxt ""
"par_id3145256\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Insert - Image - From File</emph> (when graphics are selected).</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choisissez <emph>Insertion - Image - À partir d'un fichier</emph> (lorsque des images sont sélectionnées).</caseinline></switchinline>"
#: 00000405.xhp
msgctxt ""
@@ -1543,7 +1543,7 @@ msgctxt ""
"par_id3149562\n"
"help.text"
msgid "On the <emph>Image</emph> bar (when images are selected), click"
-msgstr ""
+msgstr "Dans la barre <emph>Image</emph>(une fois les images sélectionnées), cliquez sur"
#: 00000405.xhp
msgctxt ""
@@ -1567,7 +1567,7 @@ msgctxt ""
"par_id3146337\n"
"help.text"
msgid "Choose <emph>Format - Image - Properties - Type</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Image - Propriétés - Type</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1575,7 +1575,7 @@ msgctxt ""
"par_id3149841\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Type</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Cadre et objet - Propriétés - Type</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1583,7 +1583,7 @@ msgctxt ""
"par_id3148856\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> - open context menu <emph>Modify/New - Type</emph> tab."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles</emph>, ouvrez le menu contextuel et sélectionnez l'entrée puis l'onglet <emph>Modifier/Nouveau - Type</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1591,7 +1591,7 @@ msgctxt ""
"par_id3147067\n"
"help.text"
msgid "Choose <emph>Insert - Frame - Frame - Type</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Insertion - Cadre - Cadre - Type</emph>"
#: 00000405.xhp
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"par_id3151082\n"
"help.text"
msgid "Choose <emph>Format - Image - Properties - Wrap</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Image - Propriétés - Adaptation du texte</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1607,7 +1607,7 @@ msgctxt ""
"par_id3148437\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Wrap</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Cadre et objet - Propriétés - Adaptation du texte</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1615,7 +1615,7 @@ msgctxt ""
"par_id3150169\n"
"help.text"
msgid "Choose <emph>Insert - Frame - Frame - Wrap</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Insertion - Cadre - Adaptation du texte</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1623,7 +1623,7 @@ msgctxt ""
"par_id3153299\n"
"help.text"
msgid "Choose <emph>Format - Wrap - Edit - Wrap</emph> tab."
-msgstr ""
+msgstr "Choisissez le menu puis l'onglet <emph>Format - Adaptation du texte - Éditer - Adapter</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1631,7 +1631,7 @@ msgctxt ""
"par_id3150454\n"
"help.text"
msgid "<variable id=\"kontureditor\">Choose <emph>Format - Wrap - Edit Contour</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"kontureditor\">Choisissez <emph>Format - Adaptation du texte - Éditer le contour</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1639,7 +1639,7 @@ msgctxt ""
"par_id3153984\n"
"help.text"
msgid "Choose <emph>Format - Image - Properties - Hyperlink</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Image - Propriétés - Hyperlien</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1647,7 +1647,7 @@ msgctxt ""
"par_id3156130\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Hyperlink</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Cadre et objet - Propriété - Hyperlien</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1655,7 +1655,7 @@ msgctxt ""
"par_id3145337\n"
"help.text"
msgid "Choose <emph>Insert - Frame - Frame - Hyperlink</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Insertion - Cadre - Hyperlien</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1663,7 +1663,7 @@ msgctxt ""
"par_id3154724\n"
"help.text"
msgid "Choose <emph>Format - Image - Properties - Options</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Image - Propriétés - Options</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1671,7 +1671,7 @@ msgctxt ""
"par_id3145636\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Options</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Cadre et objet - Propriétés - Options</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1679,7 +1679,7 @@ msgctxt ""
"par_id3149774\n"
"help.text"
msgid "Choose <emph>View - Styles</emph> -open context menu <emph>Modify/New - Options</emph> tab."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Styles</emph> ouvrez le menu contextuel et sélectionnez l'onglet <emph>Modifier/Nouveau - Options</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1687,7 +1687,7 @@ msgctxt ""
"par_id3150922\n"
"help.text"
msgid "Choose <emph>Insert - Frame - Frame - Options</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Insertion - Cadre - Options</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1695,7 +1695,7 @@ msgctxt ""
"par_id3155088\n"
"help.text"
msgid "<variable id=\"grafik1\">Choose <emph>Format - Image - Properties - Image</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"grafik1\">Choisissez l'onglet <emph>Format - Image - Propriétés - Image</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1703,7 +1703,7 @@ msgctxt ""
"par_id3146938\n"
"help.text"
msgid "Choose <emph>Insert/Format - Image - Properties - Macro</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Insertion/Format - Image - Propriétés - Macro</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1711,7 +1711,7 @@ msgctxt ""
"par_id3154323\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties - Macro</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Cadre et objet - Propriétés - Macro</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1719,7 +1719,7 @@ msgctxt ""
"par_id3153238\n"
"help.text"
msgid "Choose <emph>Tools - AutoText - AutoText (button) - Macro</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Outils - AutoTexte - AutoTexte (bouton) - Macro</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1727,7 +1727,7 @@ msgctxt ""
"par_id3148792\n"
"help.text"
msgid "Choose <emph>Edit - ImageMap</emph> - open context menu <emph>Macro</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Édition - ImageMap</emph>, ouvre le menu contextuel <emph>Macro</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1735,7 +1735,7 @@ msgctxt ""
"par_id3150039\n"
"help.text"
msgid "Choose <emph>Format - Character - Hyperlink</emph> tab - <emph>Events</emph> button."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Caractère - Hyperlien</emph>, bouton <emph>Événements</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1743,7 +1743,7 @@ msgctxt ""
"par_id3155114\n"
"help.text"
msgid "<variable id=\"formattabelle\">Choose <emph>Table - Properties</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"formattabelle\">Choisissez <emph>Tableau - Propriétés</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1751,7 +1751,7 @@ msgctxt ""
"par_id3149377\n"
"help.text"
msgid "<variable id=\"tabauf\">Choose <emph>Table - Split Table</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabauf\">Choisissez <emph>Tableau - Scinder le tableau</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1759,7 +1759,7 @@ msgctxt ""
"par_id3155810\n"
"help.text"
msgid "<variable id=\"tabverb\">Choose <emph>Table - Merge Table</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabverb\">Choisissez <emph>Tableau - Fusionner le tableau</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1767,7 +1767,7 @@ msgctxt ""
"par_id3151233\n"
"help.text"
msgid "<variable id=\"tabformat\">Choose <emph>Table - Properties - Table</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabformat\">Choisissez l'onglet <emph>Tableau - Propriétés - Tableau</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1775,7 +1775,7 @@ msgctxt ""
"par_id3154255\n"
"help.text"
msgid "<variable id=\"spaltentab\">Choose <emph>Table - Properties - Columns</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"spaltentab\">Choisissez l'onglet <emph>Tableau - Propriétés - Colonnes</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1783,7 +1783,7 @@ msgctxt ""
"par_id3153140\n"
"help.text"
msgid "<variable id=\"tabelletextfluss\">Choose <emph>Table - Properties - Text Flow</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabelletextfluss\">Choisissez l'onglet <emph>Tableau - Propriétés - Enchaînements</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1791,7 +1791,7 @@ msgctxt ""
"par_id3148823\n"
"help.text"
msgid "<variable id=\"zelle\">Right-click in a table, choose <emph>Cell</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"zelle\">Cliquez avec le bouton droit de la souris dans un tableau, choisissez <emph>Cellule</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1799,7 +1799,7 @@ msgctxt ""
"par_id3154351\n"
"help.text"
msgid "Choose <emph>Table - Merge Cells</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Tableau - Fusionner des cellules</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1807,7 +1807,7 @@ msgctxt ""
"par_id3154370\n"
"help.text"
msgid "On the <emph>Table</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Tableau</emph>, cliquez sur"
#: 00000405.xhp
msgctxt ""
@@ -1831,7 +1831,7 @@ msgctxt ""
"par_id3154024\n"
"help.text"
msgid "Choose <emph>Table - Split Cells</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Tableau - Scinder des cellules</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1839,7 +1839,7 @@ msgctxt ""
"par_id3154042\n"
"help.text"
msgid "On the <emph>Table</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Tableau</emph>, cliquez sur"
#: 00000405.xhp
msgctxt ""
@@ -1863,7 +1863,7 @@ msgctxt ""
"par_id3149617\n"
"help.text"
msgid "<variable id=\"schtzenze\">In the context menu of a cell, choose <emph>Cell - Protect</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"schtzenze\">Dans le menu contextuel d'une cellule, choisissez <emph>Cellule - Protéger</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1871,7 +1871,7 @@ msgctxt ""
"par_id3150786\n"
"help.text"
msgid "In the context menu of a cell, choose <emph>Cell - Unprotect</emph>."
-msgstr ""
+msgstr "Dans le menu contextuel d'une cellule, choisissez <emph>Cellule - Annuler la protection</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1879,7 +1879,7 @@ msgctxt ""
"par_id3145656\n"
"help.text"
msgid "Open context menu in <emph>Navigator</emph> for tables."
-msgstr ""
+msgstr "Ouvrez le menu contextuel du <emph>Navigateur</emph> pour les tableaux"
#: 00000405.xhp
msgctxt ""
@@ -1887,7 +1887,7 @@ msgctxt ""
"par_id3148716\n"
"help.text"
msgid "<variable id=\"zeile\">In the context menu of a cell, choose <emph>Row</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"zeile\">Dans le menu contextuel d'une cellule, choisissez <emph>Ligne</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"par_id3155345\n"
"help.text"
msgid "<variable id=\"hoehez\">In the context menu of a cell, choose <emph>Row - Height</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"hoehez\">Dans le menu contextuel d'une cellule, choisissez <emph>Ligne - Hauteur</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1903,7 +1903,7 @@ msgctxt ""
"par_id3155536\n"
"help.text"
msgid "Choose <emph>Table - Autofit - Optimal Row Height</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Tableau - Adaptation - Hauteur de ligne optimale</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1911,7 +1911,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
-msgstr ""
+msgstr "Ouvrez la barre d'outils <emph>Optimiser la taille</emph> à partir de la barre d'outils <emph>Tableau</emph>, cliquez sur"
#: 00000405.xhp
msgctxt ""
@@ -1935,7 +1935,7 @@ msgctxt ""
"par_id3153569\n"
"help.text"
msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Tableau - Adaptation - Répartir les lignes régulièrement</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1943,7 +1943,7 @@ msgctxt ""
"par_id3153755\n"
"help.text"
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
-msgstr ""
+msgstr "Ouvrez la barre d'outils <emph>Optimiser la taille</emph> à partir de la barre d'outils <emph>Tableau</emph>, cliquez sur"
#: 00000405.xhp
msgctxt ""
@@ -1967,7 +1967,7 @@ msgctxt ""
"par_id3145095\n"
"help.text"
msgid "<variable id=\"selektierenz\">Choose <emph>Table - Select - Row</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"selektierenz\">Choisissez <emph>Tableau - Sélectionner - Lignes</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -1975,7 +1975,7 @@ msgctxt ""
"par_id3149573\n"
"help.text"
msgid "Choose <emph>Table - Delete - Rows</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Tableau - Supprimer - Lignes</emph>."
#: 00000405.xhp
msgctxt ""
@@ -1983,7 +1983,7 @@ msgctxt ""
"par_id3149591\n"
"help.text"
msgid "On <emph>Table</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Tableau</emph>, cliquez sur"
#: 00000405.xhp
msgctxt ""
@@ -2007,7 +2007,7 @@ msgctxt ""
"par_id3149383\n"
"help.text"
msgid "<variable id=\"spalte\">In the context menu of a cell, choose <emph>Column</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"spalte\">Dans le menu contextuel d'une cellule, choisissez <emph>Colonne</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -2015,7 +2015,7 @@ msgctxt ""
"par_id3149406\n"
"help.text"
msgid "<variable id=\"breites\">In the context menu of a cell, choose <emph>Column - Width</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"breites\">Dans le menu contextuel d'une cellule, choisissez <emph>Colonne - Largeur</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -2023,7 +2023,7 @@ msgctxt ""
"par_id3154752\n"
"help.text"
msgid "Choose <emph>Table - Autofit - Optimal Column Width</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Tableau - Adaptation - Largeur de colonne optimale</emph>."
#: 00000405.xhp
msgctxt ""
@@ -2031,7 +2031,7 @@ msgctxt ""
"par_id3148932\n"
"help.text"
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
-msgstr ""
+msgstr "Ouvrez la barre d'outils <emph>Optimiser la taille</emph> à partir de la barre d'outils <emph>Tableau</emph>, cliquez sur "
#: 00000405.xhp
msgctxt ""
@@ -2055,7 +2055,7 @@ msgctxt ""
"par_id3159219\n"
"help.text"
msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Tableau - Adapter - Répartir les colonnes régulièrement</emph>."
#: 00000405.xhp
msgctxt ""
@@ -2063,7 +2063,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "Open <emph>Optimize Size</emph> toolbar from <emph>Table</emph> bar, click"
-msgstr ""
+msgstr "Ouvrez la barre d'outils <emph>Optimiser la taille</emph> à partir de la barre d'outils <emph>Tableau</emph>, cliquez sur"
#: 00000405.xhp
msgctxt ""
@@ -2087,7 +2087,7 @@ msgctxt ""
"par_id3153172\n"
"help.text"
msgid "<variable id=\"spaltesel\">Choose <emph>Table - Select - Column</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"spaltesel\">Choisissez <emph>Tableau - Sélectionner - Colonne</emph>.</variable>"
#: 00000405.xhp
msgctxt ""
@@ -2095,7 +2095,7 @@ msgctxt ""
"par_id3156296\n"
"help.text"
msgid "Choose <emph>Table - Insert - Columns</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Tableau - Insérer - Colonnes</emph>."
#: 00000405.xhp
msgctxt ""
@@ -2103,7 +2103,7 @@ msgctxt ""
"par_id3150794\n"
"help.text"
msgid "Choose <emph>Table - Insert - Rows</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Tableau - Insérer - Lignes</emph>."
#: 00000405.xhp
msgctxt ""
@@ -2111,7 +2111,7 @@ msgctxt ""
"par_id3150813\n"
"help.text"
msgid "On <emph>Table</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Tableau</emph>, cliquez sur"
#: 00000405.xhp
msgctxt ""
@@ -2151,7 +2151,7 @@ msgctxt ""
"par_id3155310\n"
"help.text"
msgid "Choose <emph>Table - Delete - Columns</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Tableau - Supprimer - Colonnes</emph>."
#: 00000405.xhp
msgctxt ""
@@ -2159,7 +2159,7 @@ msgctxt ""
"par_id3155328\n"
"help.text"
msgid "On <emph>Table</emph> bar, click"
-msgstr ""
+msgstr "Dans la barre <emph>Tableau</emph>, cliquez sur"
#: 00000405.xhp
msgctxt ""
@@ -2183,7 +2183,7 @@ msgctxt ""
"par_id3156355\n"
"help.text"
msgid "Choose <emph>Format - Frame and Object - Properties</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Format - Cadre et objet - Propriétés</emph>."
#: 00000405.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/swriter/01.po b/source/fr/helpcontent2/source/text/swriter/01.po
index 6d2043b7bfa..68780f617ba 100644
--- a/source/fr/helpcontent2/source/text/swriter/01.po
+++ b/source/fr/helpcontent2/source/text/swriter/01.po
@@ -4,18 +4,18 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-11-09 13:47+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"PO-Revision-Date: 2019-05-21 21:14+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1541771277.000000\n"
+"X-POOTLE-MTIME: 1558473287.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -4815,7 +4815,7 @@ msgctxt ""
"par_id3145415\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/envaddresspage/addredit\" visibility=\"visible\">Enter the delivery address.</ahelp> You can also click in this box, and select a database, a table, and field, and then click the arrow button to insert the field in the address. If you want, you can apply formatting, such as bold and underline, to the address text."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/envaddresspage/addredit\" visibility=\"visible\">Saisissez l'adresse de livraison.</ahelp> Vous pouvez également cliquer dans cette zone et sélectionner une base de données, une table et un champ, puis cliquer sur le bouton fléché pour insérer le champ dans l'adresse. Si vous le souhaitez, vous pouvez appliquer un formatage tel que du gras ou un souligné au texte de l'adresse. "
#: 04070100.xhp
msgctxt ""
@@ -4831,7 +4831,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/envaddresspage/senderedit\">Includes a return address on the envelope. Select the <emph>Sender</emph> check box, and then enter the return address.</ahelp> $[officename] automatically inserts your user data in the <emph>Sender</emph> box, but you can also enter the data that you want."
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/envaddresspage/senderedit\">Inclut une adresse de retour sur l'enveloppe. Sélectionnez la case à cocher <emph>Expéditeur</emph> puis saisissez l'adresse de retour.</ahelp> $[officename] insère automatiquement vos données d'utilisateur dans la zone <emph>Expéditeur</emph>, mais vous pouvez aussi saisir ce que vous voulez. "
#: 04070100.xhp
msgctxt ""
@@ -10335,7 +10335,7 @@ msgctxt ""
"par_id3152772\n"
"help.text"
msgid "<variable id=\"vorlg\"><ahelp hid=\"modules/swriter/ui/tocindexpage/addstylescb\">Includes the paragraph styles that you specify in the <emph>Assign Styles</emph> dialog as index entries. To select the paragraph styles that you want to include in the index, click the <emph>Assign Styles (...)</emph> button to the right of this box.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"vorlg\"><ahelp hid=\"modules/swriter/ui/tocindexpage/addstylescb\">Inclut les styles de paragraphe spécifiés dans la boîte de dialogue <emph>Assigner le style</emph> en tant qu'entrées d'index. Pour sélectionner les styles de paragraphe à inclure dans l'index, cliquez sur le bouton <emph>Assigner les styles (...)</emph> situé à droite de cette case à cocher.</ahelp></variable>"
#: 04120211.xhp
msgctxt ""
@@ -10343,7 +10343,7 @@ msgctxt ""
"par_id41550528154857\n"
"help.text"
msgid "You can include the Figure Index Heading or Bibliography Heading styles, as well as any other relevant heading style, to the Table of Contents."
-msgstr ""
+msgstr "Vous pouvez inclure les styles En-têtes des index de figures ou En-tête de bibliographie ainsi que n'importe quel style d'en-tête adapté à la Table des matières."
#: 04120211.xhp
msgctxt ""
@@ -10359,7 +10359,7 @@ msgctxt ""
"par_id3145776\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Opens the <emph>Assign Styles</emph> dialog, where you can select the paragraph styles to include in the index. Choose the proper heading level on which the style will be included in the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Ouvre la boîte de dialogue <emph>Assigner les styles</emph>, dans laquelle vous pouvez sélectionner le style de paragraphe à inclure dans l'index. Choisissez le niveau d'en-tête correspondant au style qui va être inclus dans l'index.</ahelp>"
#: 04120211.xhp
msgctxt ""
@@ -15535,7 +15535,7 @@ msgctxt ""
"par_idN10A8E\n"
"help.text"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Conserver à l'intérieur des délimitations du texte."
#: 05060100.xhp
msgctxt ""
@@ -15551,7 +15551,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Keep inside text boundaries</emph> option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)."
-msgstr ""
+msgstr "Par défaut, l'option <emph>Conserver à l'intérieur des délimitations du texte</emph> est sélectionnée lorsque vous ouvrez un document qui a été créé dans une version de Writer antérieure à OpenOffice.org 2.0. Cependant, cette option n'est pas sélectionnée lorsque vous créez un document ou lorsque vous ouvrez un document au format Microsoft Word (*.doc)."
#: 05060100.xhp
msgctxt ""
@@ -15575,7 +15575,7 @@ msgctxt ""
"par_id3153231\n"
"help.text"
msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Format - Align\"><emph>Format - Align</emph></link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05070000.xhp\" name=\"Format - Align\"><emph>Format - Aligner</emph></link>"
#: 05060200.xhp
msgctxt ""
@@ -18359,7 +18359,7 @@ msgctxt ""
"par_idN10944\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textorientation\">Select the orientation for the text in the cells.</ahelp> You can use the following formatting options to specify the orientation of text in table cells:"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tabletextflowpage/textorientation\">Sélectionnez l'orientation du texte dans les cellules.</ahelp> Vous pouvez utiliser les options de formatage suivantes pour spécifier l'orientation du texte dans les cellules du tableau :"
#: 05090300.xhp
msgctxt ""
@@ -18375,7 +18375,7 @@ msgctxt ""
"par_idN10968\n"
"help.text"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Vertical (de haut en bas)"
#: 05090300.xhp
msgctxt ""
@@ -18391,7 +18391,7 @@ msgctxt ""
"par_idN10969\n"
"help.text"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Vertical (de bas en haut)"
#: 05090300.xhp
msgctxt ""
@@ -19511,7 +19511,7 @@ msgctxt ""
"par_id3149883\n"
"help.text"
msgid "Open a blank text document and write a short business letter with a header (<emph>Format - Page - Header</emph>)."
-msgstr ""
+msgstr "Ouvrez un document texte vierge et rédigez une courte lettre professionnelle en y incluant un en-tête (<emph>Format - Page - En-tête</emph>."
#: 05130100.xhp
msgctxt ""
@@ -19519,7 +19519,7 @@ msgctxt ""
"par_id3148768\n"
"help.text"
msgid "Define a new Paragraph Style by choosing <emph>New</emph> in the <emph>Styles</emph> window, and selecting all the paragraph properties that you want for your business letter in the <emph>Paragraph Style</emph> dialog. Name this style \"Business letter\"."
-msgstr "Pour définir un style de paragraphe, choisissez <emph>Nouveau</emph> dans la fenêtre <emph>Styles</emph>, puis sélectionnez toutes les propriétés de paragraphe que vous souhaitez appliquer à la lettre professionnelle dans la boîte de dialogue <emph>Style de paragraphe</emph>. Nommez ce style Lettre professionnelle."
+msgstr "Pour définir un style de paragraphe, choisissez <emph>Nouveau</emph> dans la fenêtre <emph>Styles</emph>, puis sélectionnez toutes les propriétés de paragraphe que vous souhaitez appliquer à la lettre professionnelle dans la boîte de dialogue <emph>Style de paragraphe</emph>. Nommez ce style \"Lettre professionnelle\"."
#: 05130100.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/swriter/guide.po b/source/fr/helpcontent2/source/text/swriter/guide.po
index 5801a02c0f6..83771c7e897 100644
--- a/source/fr/helpcontent2/source/text/swriter/guide.po
+++ b/source/fr/helpcontent2/source/text/swriter/guide.po
@@ -3,19 +3,19 @@ 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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2018-11-12 17:21+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-14 16:00+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1542043309.000000\n"
+"X-POOTLE-MTIME: 1557849649.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -230,16 +230,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Dans la <emph>barre Standard</emph>, cliquez sur l'icône du <emph>Navigateur</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> pour ouvrir le <emph>Navigateur</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "Dans le <emph>Navigateur</emph>, cliquez sur l'icône <emph>Affichage du contenu</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icône</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -262,8 +262,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Dans la liste du <emph>Navigateur</emph>, cliquez sur un titre, puis sur l'icône <emph>Hausser le chapitre</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">icône</alt></image> ou <emph>Abaisser le chapitre</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">icône</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -294,8 +294,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Cliquez sur l'icône <emph>Hausser d'un niveau</emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" ><alt id=\"alt_id5564488\">icône</alt></image> ou sur l'icône <emph>Abaisser d'un niveau</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">icône</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -310,8 +310,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Cliquez sur l'icône <emph>Niveaux de titres affichés</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" ><alt id=\"alt_id3151310\">icône</alt></image> et sélectionnez un numéro dans la liste."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
@@ -12231,7 +12231,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Regular Expressions in Text Searches"
-msgstr ""
+msgstr "Utiliser des expressions régulières dans les recherches textuelles"
#: search_regexp.xhp
msgctxt ""
@@ -12239,7 +12239,7 @@ msgctxt ""
"bm_id3150099\n"
"help.text"
msgid "<bookmark_value>wildcards, see regular expressions</bookmark_value><bookmark_value>searching; with regular expressions</bookmark_value><bookmark_value>regular expressions;searching</bookmark_value><bookmark_value>examples for regular expressions</bookmark_value><bookmark_value>characters;finding all</bookmark_value><bookmark_value>invisible characters;finding</bookmark_value><bookmark_value>paragraph marks;searching</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Caractères génériques, voir expressions régulières</bookmark_value><bookmark_value>Recherche;avec des expressions régulières</bookmark_value><bookmark_value>Expressions régulières;recherche</bookmark_value><bookmark_value>Exemples d'expressions régulières</bookmark_value><bookmark_value>Caractères;tous les rechercher</bookmark_value><bookmark_value>Caractères invisibles;recherche</bookmark_value><bookmark_value>Marques de paragraphe;recherche</bookmark_value>"
#: search_regexp.xhp
msgctxt ""
@@ -12247,7 +12247,7 @@ msgctxt ""
"hd_id3150099\n"
"help.text"
msgid "<variable id=\"search_regexp\"><link href=\"text/swriter/guide/search_regexp.xhp\">Using Regular Expressions in Text Searches</link></variable>"
-msgstr ""
+msgstr "<variable id=\"search_regexp\"><link href=\"text/swriter/guide/search_regexp.xhp\">Utiliser des expressions régulières dans les recherches textuelles</link></variable>"
#: search_regexp.xhp
msgctxt ""
@@ -12255,7 +12255,7 @@ msgctxt ""
"par_id0509200916345516\n"
"help.text"
msgid "Regular expressions can be used to search for some unspecified or even invisible characters."
-msgstr ""
+msgstr "Les expressions régulières peuvent être utilisées pour chercher certains caractères non spécifiés ou même des caractères invisibles."
#: search_regexp.xhp
msgctxt ""
@@ -12263,7 +12263,7 @@ msgctxt ""
"par_id421554926388821\n"
"help.text"
msgid "Searching with regular expressions is different from searching with wildcards. %PRODUCTNAME Writer only supports searching with regular expressions."
-msgstr ""
+msgstr "Rechercher avec des expressions régulières est différent de faire une recherche avec des caractères génériques. %PRODUCTNAME Writer ne prend en charge que la recherche avec les expressions régulières."
#: search_regexp.xhp
msgctxt ""
@@ -12271,7 +12271,7 @@ msgctxt ""
"par_id3155182\n"
"help.text"
msgid "You can use regular expressions when you find and replace text in a document. For example, \"s.n\" finds \"sun\" and \"son\"."
-msgstr ""
+msgstr "Vous pouvez utiliser des expressions régulières dans les chaînes de texte que vous recherchez ou remplacez dans un document. Par exemple, \"so.t\" permet de trouver les mots \"soit\" et \"sort\"."
#: search_regexp.xhp
msgctxt ""
@@ -12303,7 +12303,7 @@ msgctxt ""
"par_id3149843\n"
"help.text"
msgid "In the <item type=\"menuitem\">Find</item> box, type the search term and the regular expression(s) that you want to use in your search."
-msgstr ""
+msgstr "Dans la zone <item type=\"menuitem\">Rechercher</item>, saisissez le terme recherché et le ou les expressions génériques que vous souhaitez utiliser dans la recherche."
#: search_regexp.xhp
msgctxt ""
@@ -12327,7 +12327,7 @@ msgctxt ""
"par_id3149641\n"
"help.text"
msgid "The regular expression for a single character is a period (.)."
-msgstr ""
+msgstr "L'expression régulières pour un caractère unique est le point (.)."
#: search_regexp.xhp
msgctxt ""
@@ -12335,7 +12335,7 @@ msgctxt ""
"par_id3153136\n"
"help.text"
msgid "The regular expression for zero or more occurrences of the previous character is an asterisk. For example: \"123*\" finds \"12\" \"123\", and \"1233\"."
-msgstr ""
+msgstr "L'expression régulière \"astérisque\" (*) permet de spécifier plusieurs occurrences du caractère précédent. Exemple : \"123*\" permet de trouver \"12\", \"123\" et \"1233\"."
#: search_regexp.xhp
msgctxt ""
@@ -12343,7 +12343,7 @@ msgctxt ""
"par_id3149609\n"
"help.text"
msgid "The regular expression combination to search for zero or more occurrences of any character is a period and asterisk (.*)."
-msgstr ""
+msgstr "La combinaison des expressions régulières \"point\" et \"astérisque\" (.*) permet d'effectuer une recherche sur tous les caractères."
#: search_regexp.xhp
msgctxt ""
@@ -12351,7 +12351,7 @@ msgctxt ""
"par_id3149854\n"
"help.text"
msgid "The regular expression for the end of a paragraph is a dollar sign ($). The regular expression character combination for the start of a paragraph is a caret and a period (^.)."
-msgstr ""
+msgstr "Le signe dollar ($) est l'expression régulière correspondant à une marque de paragraphe et la combinaison des expressions régulières \"caret\" et \"point\" (^.) indique le premier caractère d'un paragraphe."
#: search_regexp.xhp
msgctxt ""
@@ -12359,7 +12359,7 @@ msgctxt ""
"par_id0509200916345545\n"
"help.text"
msgid "The regular expression for a tab character is \\t."
-msgstr ""
+msgstr "L'expression régulières pour un caractère de tabulation est \\t."
#: search_regexp.xhp
msgctxt ""
@@ -12375,7 +12375,7 @@ msgctxt ""
"par_id3149875\n"
"help.text"
msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of regular expressions\">List of regular expressions</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02100001.xhp\" name=\"List of regular expressions\">Liste des expressions régulières</link>"
#: section_edit.xhp
msgctxt ""
diff --git a/source/fr/officecfg/registry/data/org/openoffice/Office.po b/source/fr/officecfg/registry/data/org/openoffice/Office.po
index be6fa13ec6b..1e3358e8c65 100644
--- a/source/fr/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/fr/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-11-25 20:29+0000\n"
+"PO-Revision-Date: 2019-05-25 12:05+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1543177790.000000\n"
+"X-POOTLE-MTIME: 1558785923.000000\n"
#: Addons.xcu
msgctxt ""
@@ -1437,7 +1437,7 @@ msgctxt ""
"STR_WARN_UNSAVED_PRESENTATION\n"
"value.text"
msgid "Do you want to minimize presentation without saving?"
-msgstr ""
+msgstr "Voulez-vous réduire la taille de la présentation sans l'avoir enregistrée ?"
#: PresentationMinimizer.xcu
msgctxt ""
diff --git a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
index df69336d552..56fffb55c77 100644
--- a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fr/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-12-19 21:48+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 16:00+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1545256088.000000\n"
+"X-POOTLE-MTIME: 1559232039.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -1005,7 +1005,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert or Edit Pivot Table"
-msgstr ""
+msgstr "Insérer ou éditer une table dynamique"
#: CalcCommands.xcu
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Properties..."
-msgstr ""
+msgstr "~Propriétés..."
#: CalcCommands.xcu
msgctxt ""
@@ -1023,7 +1023,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Insert or Edit..."
-msgstr ""
+msgstr "~Insérer ou éditer..."
#: CalcCommands.xcu
msgctxt ""
@@ -1581,7 +1581,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Down"
-msgstr ""
+msgstr "Remplir vers le ~bas"
#: CalcCommands.xcu
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Right"
-msgstr ""
+msgstr "Remplir vers la d~roite"
#: CalcCommands.xcu
msgctxt ""
@@ -1617,7 +1617,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Up"
-msgstr ""
+msgstr "Remplir vers le ~haut"
#: CalcCommands.xcu
msgctxt ""
@@ -1635,7 +1635,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Left"
-msgstr ""
+msgstr "Remplir vers la ~gauche"
#: CalcCommands.xcu
msgctxt ""
@@ -1671,7 +1671,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill ~Sheets..."
-msgstr ""
+msgstr "Remplir les feuille~s..."
#: CalcCommands.xcu
msgctxt ""
@@ -1689,7 +1689,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill S~eries..."
-msgstr ""
+msgstr "Remplir la séri~e..."
#: CalcCommands.xcu
msgctxt ""
@@ -1707,7 +1707,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Fill R~andom Number..."
-msgstr ""
+msgstr "Remplir de nombres ~aléatoires..."
#: CalcCommands.xcu
msgctxt ""
@@ -1815,7 +1815,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Z-test..."
-msgstr ""
+msgstr "~Z-test..."
#: CalcCommands.xcu
msgctxt ""
@@ -1833,7 +1833,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ourier Analysis..."
-msgstr ""
+msgstr "Analyse de F~ourier..."
#: CalcCommands.xcu
msgctxt ""
@@ -3678,7 +3678,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~Microsoft Excel..."
-msgstr ""
+msgstr "Envoyer par courriel sous forme de classeur Microsoft Excel..."
#: CalcCommands.xcu
msgctxt ""
@@ -3687,7 +3687,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~OpenDocument Spreadsheet..."
-msgstr ""
+msgstr "Envoyer par courriel sous forme de classeur OpenDocument"
#: CalcCommands.xcu
msgctxt ""
@@ -4146,7 +4146,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Par défaut"
#: CalcCommands.xcu
msgctxt ""
@@ -4155,7 +4155,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Default Cell Style"
-msgstr ""
+msgstr "Style de cellule par défaut"
#: CalcCommands.xcu
msgctxt ""
@@ -4173,7 +4173,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 1"
-msgstr ""
+msgstr "Accent 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 1 Cell Style"
-msgstr ""
+msgstr "Style de cellule Accent 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4200,7 +4200,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 2"
-msgstr ""
+msgstr "Accent 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4209,7 +4209,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 2 Cell Style"
-msgstr ""
+msgstr "Style de cellule Accent 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4227,7 +4227,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 3"
-msgstr ""
+msgstr "Accent 3"
#: CalcCommands.xcu
msgctxt ""
@@ -4236,7 +4236,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 3 Cell Style"
-msgstr ""
+msgstr "Style de cellule Accent 3"
#: CalcCommands.xcu
msgctxt ""
@@ -4254,7 +4254,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 1"
-msgstr ""
+msgstr "Titre 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4263,7 +4263,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 1 Cell Style"
-msgstr ""
+msgstr "Style de cellule Titre 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4281,7 +4281,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 2"
-msgstr ""
+msgstr "Titre 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4290,7 +4290,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 2 Cell Style"
-msgstr ""
+msgstr "Style de cellule Titre 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4308,7 +4308,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bad"
-msgstr ""
+msgstr "Incorrect"
#: CalcCommands.xcu
msgctxt ""
@@ -4317,7 +4317,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bad Cell Style"
-msgstr ""
+msgstr "Style de cellule Incorrect"
#: CalcCommands.xcu
msgctxt ""
@@ -4335,7 +4335,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Error"
-msgstr ""
+msgstr "Erreur"
#: CalcCommands.xcu
msgctxt ""
@@ -4344,7 +4344,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Error Cell Style"
-msgstr ""
+msgstr "Style de cellule Erreur"
#: CalcCommands.xcu
msgctxt ""
@@ -4362,7 +4362,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Good"
-msgstr ""
+msgstr "Correct"
#: CalcCommands.xcu
msgctxt ""
@@ -4371,7 +4371,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Good Cell Style"
-msgstr ""
+msgstr "Style de cellule Correct"
#: CalcCommands.xcu
msgctxt ""
@@ -4389,7 +4389,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Neutral"
-msgstr ""
+msgstr "Neutre"
#: CalcCommands.xcu
msgctxt ""
@@ -4398,7 +4398,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Neutral Cell Style"
-msgstr ""
+msgstr "Style de cellule Neutre"
#: CalcCommands.xcu
msgctxt ""
@@ -4416,7 +4416,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Warning"
-msgstr ""
+msgstr "Avertissement"
#: CalcCommands.xcu
msgctxt ""
@@ -4425,7 +4425,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Warning Cell Style"
-msgstr ""
+msgstr "Style de cellule Avertissement"
#: CalcCommands.xcu
msgctxt ""
@@ -4443,7 +4443,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Footnote"
-msgstr ""
+msgstr "Note de bas de page"
#: CalcCommands.xcu
msgctxt ""
@@ -4452,7 +4452,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Footnote Cell Style"
-msgstr ""
+msgstr "Style de cellule Note de bas de page"
#: CalcCommands.xcu
msgctxt ""
@@ -4470,7 +4470,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Note"
-msgstr ""
+msgstr "Note"
#: CalcCommands.xcu
msgctxt ""
@@ -4479,7 +4479,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Note Cell Style"
-msgstr ""
+msgstr "Style de cellule Note"
#: CalcWindowState.xcu
msgctxt ""
@@ -6981,7 +6981,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Report As Email..."
-msgstr ""
+msgstr "Rapport par courriel..."
#: DbuCommands.xcu
msgctxt ""
@@ -7197,7 +7197,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Impress R~emote..."
-msgstr ""
+msgstr "Contrôle à ~distance Impress..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8367,7 +8367,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Slide Master..."
-msgstr ""
+msgstr "Changer de diapo maîtresse..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8709,7 +8709,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export"
-msgstr ""
+msgstr "Export caviardé"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9123,7 +9123,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~Microsoft PowerPoint Presentation..."
-msgstr ""
+msgstr "Envoyer par courriel sous forme de présentation ~Microsoft PowerPoint..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9132,7 +9132,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~OpenDocument Presentation..."
-msgstr ""
+msgstr "Envoyer par courriel sous forme de présentation OpenDocument..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10221,7 +10221,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export (Black)"
-msgstr ""
+msgstr "Export caviardé (noir)"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10230,7 +10230,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export (White)"
-msgstr ""
+msgstr "Export caviardé (blanc)"
#: DrawWindowState.xcu
msgctxt ""
@@ -10590,7 +10590,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Redacted Export"
-msgstr ""
+msgstr "Export caviardé"
#: DrawWindowState.xcu
msgctxt ""
@@ -10878,7 +10878,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Redaction"
-msgstr ""
+msgstr "Caviardage"
#: Effects.xcu
msgctxt ""
@@ -16854,7 +16854,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Rectangle"
-msgstr ""
+msgstr "Rectangle"
#: GenericCommands.xcu
msgctxt ""
@@ -16863,7 +16863,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Rectangle Redaction"
-msgstr ""
+msgstr "Caviardage rectangle"
#: GenericCommands.xcu
msgctxt ""
@@ -18098,7 +18098,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~New Style from Selection"
-msgstr ""
+msgstr "~Nouveau style à partir de la sélection"
#: GenericCommands.xcu
msgctxt ""
@@ -18134,7 +18134,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Update Selected Style"
-msgstr ""
+msgstr "Mettre à jour le style sélectionné"
#: GenericCommands.xcu
msgctxt ""
@@ -18242,7 +18242,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Hyperlink Control"
-msgstr ""
+msgstr "Contrôle hyperlien"
#: GenericCommands.xcu
msgctxt ""
@@ -18872,7 +18872,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Styles de tableau"
#: GenericCommands.xcu
msgctxt ""
@@ -20501,7 +20501,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Freeform"
-msgstr ""
+msgstr "À main levée"
#: GenericCommands.xcu
msgctxt ""
@@ -20510,7 +20510,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Freeform Redaction"
-msgstr ""
+msgstr "Caviardage à main levée"
#: GenericCommands.xcu
msgctxt ""
@@ -20771,7 +20771,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as P~DF..."
-msgstr ""
+msgstr "Envoyer par courriel en P~DF..."
#: GenericCommands.xcu
msgctxt ""
@@ -20843,7 +20843,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Export Directly as PDF"
-msgstr ""
+msgstr "Export direct au format PDF"
#: GenericCommands.xcu
msgctxt ""
@@ -20852,7 +20852,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sanitized PDF"
-msgstr ""
+msgstr "PDF expurgé"
#: GenericCommands.xcu
msgctxt ""
@@ -20861,7 +20861,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Export Directly to PDF as Bitmap"
-msgstr ""
+msgstr "Exporter directement au format PDF en tant que Bitmap"
#: GenericCommands.xcu
msgctxt ""
@@ -20870,7 +20870,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Export Directly to PDF as Bitmap"
-msgstr ""
+msgstr "Exporter directement au format PDF en tant que Bitmap"
#: GenericCommands.xcu
msgctxt ""
@@ -20933,7 +20933,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redact"
-msgstr ""
+msgstr "Caviardage"
#: GenericCommands.xcu
msgctxt ""
@@ -20942,7 +20942,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Redact"
-msgstr ""
+msgstr "Caviardage"
#: GenericCommands.xcu
msgctxt ""
@@ -20951,7 +20951,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Redact Document"
-msgstr ""
+msgstr "Caviardage du document"
#: GenericCommands.xcu
msgctxt ""
@@ -21797,7 +21797,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email"
-msgstr ""
+msgstr "Courriel"
#: GenericCommands.xcu
msgctxt ""
@@ -21806,7 +21806,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Email Document..."
-msgstr ""
+msgstr "~Envoyer le document par courriel..."
#: GenericCommands.xcu
msgctxt ""
@@ -21815,7 +21815,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Attach to Email"
-msgstr ""
+msgstr "Joindre à un courriel"
#: GenericCommands.xcu
msgctxt ""
@@ -22580,7 +22580,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Text Form Field"
-msgstr ""
+msgstr "Champ de formulaire texte"
#: GenericCommands.xcu
msgctxt ""
@@ -22589,7 +22589,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Check Box Form Field"
-msgstr ""
+msgstr "Champ de formulaire case à cocher"
#: GenericCommands.xcu
msgctxt ""
@@ -22598,7 +22598,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Drop-Down Form Field"
-msgstr ""
+msgstr "Champ de formulaire liste déroulante"
#: GenericCommands.xcu
msgctxt ""
@@ -23039,7 +23039,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Control"
-msgstr ""
+msgstr "Contrôle tableau"
#: GenericCommands.xcu
msgctxt ""
@@ -23066,7 +23066,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert non-br~eaking hyphen"
-msgstr ""
+msgstr "Insérer un tir~et insécable"
#: GenericCommands.xcu
msgctxt ""
@@ -23075,7 +23075,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert s~oft Hyphen"
-msgstr ""
+msgstr "Insérer un trait d'uni~on conditionnel"
#: GenericCommands.xcu
msgctxt ""
@@ -23084,7 +23084,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert ~non-breaking space"
-msgstr ""
+msgstr "Insérer u~n espace insécable"
#: GenericCommands.xcu
msgctxt ""
@@ -23093,7 +23093,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert n~arrow no-break space (U+202F)"
-msgstr ""
+msgstr "Insérer un esp~ace fin insécable (U+202F)"
#: GenericCommands.xcu
msgctxt ""
@@ -23102,7 +23102,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "No-~width Optional Break"
-msgstr ""
+msgstr "Pseudo-ligature ~sans chasse"
#: GenericCommands.xcu
msgctxt ""
@@ -23111,7 +23111,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "No-width No ~Break"
-msgstr ""
+msgstr "Espace sans chasse ~insécable"
#: GenericCommands.xcu
msgctxt ""
@@ -23120,7 +23120,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Left-to-right Mark"
-msgstr ""
+msgstr "~Marque gauche à droite"
#: GenericCommands.xcu
msgctxt ""
@@ -23129,7 +23129,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Right-to-left Mark"
-msgstr ""
+msgstr "Marque ~droite à gauche"
#: GenericCommands.xcu
msgctxt ""
@@ -23228,7 +23228,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~Microsoft Format..."
-msgstr ""
+msgstr "Envoyer par courriel au format ~Microsoft..."
#: GenericCommands.xcu
msgctxt ""
@@ -23237,7 +23237,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~OpenDocument Format..."
-msgstr ""
+msgstr "Envoyer par courriel au format ~OpenDocument..."
#: GenericCommands.xcu
msgctxt ""
@@ -23282,7 +23282,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage Document Classification"
-msgstr ""
+msgstr "Gérer la classification du document"
#: GenericCommands.xcu
msgctxt ""
@@ -23291,7 +23291,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage Paragraph Classification"
-msgstr ""
+msgstr "Gérer la classification des paragraphes"
#: GenericCommands.xcu
msgctxt ""
@@ -23401,6 +23401,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Autres champs"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Régénérer le diagramme"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25298,7 +25307,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Lists"
-msgstr ""
+msgstr "Listes"
#: Sidebar.xcu
msgctxt ""
@@ -25690,6 +25699,15 @@ msgstr "Onglets"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25708,6 +25726,15 @@ msgstr "Barre groupée"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -26837,7 +26864,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Send Email Messages"
-msgstr ""
+msgstr "Envoyer les courriels"
#: WriterCommands.xcu
msgctxt ""
@@ -28736,7 +28763,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Sélectionner une phrase"
#: WriterCommands.xcu
msgctxt ""
@@ -29726,7 +29753,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~Microsoft Word..."
-msgstr ""
+msgstr "Envoyer par courriel sous forme de document ~Word..."
#: WriterCommands.xcu
msgctxt ""
@@ -29735,7 +29762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Email as ~OpenDocument Text..."
-msgstr ""
+msgstr "Envoyer par courriel sous forme de texte ~OpenDocument..."
#: WriterCommands.xcu
msgctxt ""
@@ -30014,7 +30041,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal ~Line"
-msgstr ""
+msgstr "~Ligne horizontale"
#: WriterCommands.xcu
msgctxt ""
@@ -30779,7 +30806,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Cell Background Color"
-msgstr ""
+msgstr "Couleur d'arrière-plan de cellule"
#: WriterCommands.xcu
msgctxt ""
@@ -30788,7 +30815,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "ActiveX Controls"
-msgstr ""
+msgstr "Contrôles ActiveX"
#: WriterCommands.xcu
msgctxt ""
@@ -30797,7 +30824,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Legacy Form Fields"
-msgstr ""
+msgstr "Anciens champs de formulaire"
#: WriterCommands.xcu
msgctxt ""
@@ -30806,7 +30833,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Content Controls"
-msgstr ""
+msgstr "Contrôles de contenu"
#: WriterFormWindowState.xcu
msgctxt ""
diff --git a/source/fr/sc/messages.po b/source/fr/sc/messages.po
index 84d081a9980..5b9400e2ceb 100644
--- a/source/fr/sc/messages.po
+++ b/source/fr/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-01-04 15:26+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 20:17+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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: 1546615610.000000\n"
+"X-POOTLE-MTIME: 1559247442.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -2335,6 +2335,9 @@ msgid ""
"\n"
"Do you want to recalculate all formula cells now?"
msgstr ""
+"Ce document a été enregistré au format de fichier Excel (.xlsx). Certaines cellules avec formule peuvent produire un résultat différent lorsqu'elles sont recalculées.\n"
+"\n"
+"Voulez-vous recalculer maintenant toutes les cellules avec formule ?"
#: sc/inc/globstr.hrc:475
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
@@ -15214,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(accès exclusif)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15767,12 +15775,12 @@ msgstr "Gérer le formatage conditionnel"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16990,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulaire de données"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Fermer"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nouvel enregistrement"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nouveau"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Supprimer"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restaurer"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Enregistrement précédent"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Enregistrement _suivant"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Fermer"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Flux de données en direct"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL :"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Saisissez ici l'URL du document source dans le système de fichier local ou sur Internet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Parcourir..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Plage de base de données :"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Fournisseur de données :"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Chaîne de recherche :"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Flux source"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18780,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Résultats à :"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Données"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Colonnes"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Lignes"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Groupé par"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervalle :"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Paramètres"
@@ -18945,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Aide"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fichier"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Spécifier les bordures des cellules sélectionnées."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Augmenter le retrait"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Diminuer le retrait"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Origine"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Origine"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Champ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insérer"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insérer"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Mise en page"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Mise en page"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistiques"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Données"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Données"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Révision"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Révision"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Afficher"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Afficher"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dessin"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dessin"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objet"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objet"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Média"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimer"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimer"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulaire"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulaire"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Outils"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Outils"
@@ -21586,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Résultats de la recherche"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23466,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Symboles du plan"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Fenêtre"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Lignes de la _grille :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Couleur :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Afficher"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Afficher dans les cellules colorées"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Masquer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Sauts de _page"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Lignes d'aide _lors du déplacement"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Aides visuelles"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Objets/images :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Diagrammes :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Objets de d_essin :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Afficher"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Masquer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Afficher"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Masquer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Afficher"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Masquer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objets"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "_Synchroniser les feuilles"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoom"
diff --git a/source/fr/scp2/source/ooo.po b/source/fr/scp2/source/ooo.po
index c3dc2bce81b..d0ad7a220a0 100644
--- a/source/fr/scp2/source/ooo.po
+++ b/source/fr/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-17 20:46+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-24 21:33+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1555533982.000000\n"
+"X-POOTLE-MTIME: 1558733600.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -36,6 +36,14 @@ msgstr "Ouvrir un document"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (Mode sans échec)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/fr/scp2/source/winexplorerext.po b/source/fr/scp2/source/winexplorerext.po
index f9ffd15a262..3d0c9de2185 100644
--- a/source/fr/scp2/source/winexplorerext.po
+++ b/source/fr/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 10:59+0200\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:27+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369351670.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permet à l'Explorateur Microsoft Windows d'afficher les informations relatives aux documents %PRODUCTNAME, tels que des aperçus miniatures."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/fr/sd/messages.po b/source/fr/sd/messages.po
index c199c5058ee..3efd4c570c4 100644
--- a/source/fr/sd/messages.po
+++ b/source/fr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-12 18:57+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\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: 1557687439.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Cliquer pour ouvrir le lien :"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nom pour la conception HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fichier"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Aide"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fichier"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Origine"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Origine"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Champ"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insérer"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insérer"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Page"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Page"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Révision"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Révision"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Afficher"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Affichage"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_exte"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~exte"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tableau"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tableau"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dessin"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dessin"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objet"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objet"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Média"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulaire"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulaire"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Outils"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Outils"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Afficher les formes"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fichier"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Aide"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fichier"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Origine"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Origine"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Champ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insérer"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insérer"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "D_iapo"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "D~iapo"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Diaporama"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Diaporama"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Révision"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Révision"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Afficher"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Affichage"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tableau"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tableau"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dessin"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dessin"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objet"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objet"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Média"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulaire"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulaire"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Outils"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Outils"
diff --git a/source/fr/sfx2/messages.po b/source/fr/sfx2/messages.po
index 1e3e2010cd0..c611531affd 100644
--- a/source/fr/sfx2/messages.po
+++ b/source/fr/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-12-19 21:52+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-25 11:49+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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: 1545256346.000000\n"
+"X-POOTLE-MTIME: 1558784972.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "A : %1 M : %2 J : %3 H : %4 M : %5 S : %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Supprimer la propriété"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"La valeur saisie ne correspond pas au type spécifié.\n"
"La valeur va être stockée comme texte."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Le style existe déjà. L'écraser ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Réinitialiser"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Ce nom est déjà utilisé."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Ce style n'existe pas."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Ce style ne peut pas être utilisé comme style de base,\n"
"parce que cela résulterait en une référence récursive."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Ce nom existe déjà comme style standard.\n"
"Veuillez choisir un autre nom."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Si vous supprimez ces styles, le texte reviendra au style parent.\n"
"Souhaitez-vous toujours supprimer ces styles?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Styles utilisés :"
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigateur"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Confirmation du mot de passe erronée"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Envoyer"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Police"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Afficher les aperçus"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Afficher le commentaire de version"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(aucun nom défini)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Liste de style"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hiérarchie"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Mode Tout remplir"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nouveau style à partir de la sélection"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
-msgstr ""
+msgstr "Actions sur les styles"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Actualiser le style"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Voulez-vous vraiment annuler l'enregistrement ? Toutes les informations enregistrées jusqu'à présent seront perdues."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Annuler l'enregistrement"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Initialisation des modèles pour une première utilisation."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Aucune imprimante par défaut trouvée.\n"
"Choisissez une imprimante et réessayez."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Impossible de démarrer l'imprimante !\n"
"Vérifiez-en la configuration."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Imprimante occupée"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(lecture seule)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Souhaitez-vous enregistrer les nouveaux paramètres dans le\n"
"document actif ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Voulez-vous enregistrer les paramètres modifiés\n"
"dans le document ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Souhaitez-vous enregistrer les nouveaux paramètres dans le\n"
"document actif ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,15 +1131,17 @@ msgstr ""
"Le document ne peut pas être fermé,\n"
"une tâche d'impression est actuellement en cours."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
"Please check the %PRODUCTNAME settings or your email program settings."
msgstr ""
+"Une erreur est survenue lors de l'envoi du message. Les erreurs possibles sont un compte utilisateur manquant ou un paramétrage défectueux.\n"
+"Veuillez vérifier les paramètres de %PRODUCTNAME ou les paramètres de votre programme de messagerie."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1155,17 +1152,17 @@ msgstr ""
"\n"
"Le code d'erreur est $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Erreur lors de l'envoie du message."
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Ce document ne peut pas être édité, sans doute à cause de droits d'accès manquants. Voulez-vous éditer une copie du document ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1176,349 +1173,359 @@ msgstr ""
"\n"
"Vous pouvez également essayer d'ignorer le verrou et ouvrir le fichier pour édition."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Ouvrir une ~copie"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Ouvrir"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (document réparé)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Le document n'est pas extrait du serveur"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Aidez-nous à améliorer %PRODUCTNAME !"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Participer"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Vos dons soutiennent notre communauté mondiale."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Faire un don"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Vous exécutez pour la première fois la version %PRODUCTVERSION de %PRODUCTNAME, voulez-vous en découvrir ce qu'il y a de nouveau ?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Notes de version"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Ce document est ouvert en mode lecture seule."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Ce PDF est ouvert en mode lecture seule pour autoriser la signature du fichier existant."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "L'étiquette de classification de ce document est %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Ce document doit être classifié avant que le presse-papier puisse être collé."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Ce document a un niveau de classification plus bas que celui du presse-papier."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Niveau"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Sécurité nationale :"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Contrôle à l'export :"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Sortie"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Éditer le document"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Signer le document"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Ce document a une signature invalide."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "La signature est valide, mais le document a été modifié"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "La signature du document est correcte, mais le certificat n'a pas pu être validé."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "La signature est correcte, mais le document est seulement partiellement signé."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Le certificat n'a pas pu être validé et le document n'est que partiellement signé."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Ce document est signé numériquement et la signature est valide."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Afficher les signatures"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Fermer le volet"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Ancrer"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Détacher"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Plus d'options"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Fermer le volet latéral"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Paramètres du volet latéral"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personnalisation"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Rétablir les valeurs par défaut"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Fermer la barre latérale"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Ruche"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Courbe bleue"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Plans bleus"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Bleu clair"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Rouge chic"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Oiseau de forêt"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impression"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lumières"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verdoyant"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Bleu nuit"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Illustration naturelle"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Crayon"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progression"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Crépuscule"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Millésime"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivid"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Résumé"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Par défaut"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Lettre commerciale moderne sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Lettre commerciale moderne serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Carte de visite avec logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Supprimer"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tout supprimer"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longueur du mot de passe"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Le mot de passe saisi provoque un problème d'interopérabilité. Veuillez saisir un mot de passe qui est plus court que 52 octets ou plus long que 55 octets."
@@ -1571,7 +1578,7 @@ msgstr "Éditeur"
#: sfx2/inc/dinfdlg.hrc:36
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
msgid "Email"
-msgstr ""
+msgstr "Courriel"
#: sfx2/inc/dinfdlg.hrc:37
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
@@ -1863,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Commentaire de version :"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nom"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Type"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valeur"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Oui"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Non"
@@ -1898,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Ajouter une _propriété"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nom"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valeur"
@@ -2038,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Emplacement :"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Type :"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Modifier le _mot de passe"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Modèle :"
@@ -2058,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Propriétés de \"%1\""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Général "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Description"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Propriétés personnalisées"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Propriétés CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Sécurité"
@@ -2161,17 +2153,17 @@ msgstr "Durée"
#: sfx2/uiconfig/ui/errorfindemaildialog.ui:7
msgctxt "errorfindemaildialog|ErrorFindEmailDialog"
msgid "No email configuration"
-msgstr ""
+msgstr "Aucune configuration de messagerie"
#: sfx2/uiconfig/ui/errorfindemaildialog.ui:14
msgctxt "errorfindemaildialog|ErrorFindEmailDialog"
msgid "%PRODUCTNAME was unable to find a working email configuration."
-msgstr ""
+msgstr "%PRODUCTNAME n'a pas trouvé de configuration de courrier électronique fonctionnelle."
#: sfx2/uiconfig/ui/errorfindemaildialog.ui:15
msgctxt "errorfindemaildialog|ErrorFindEmailDialog"
msgid "Please save this document locally instead and attach it from within your email client."
-msgstr ""
+msgstr "À la place, veuillez enregistrer le document localement et le joindre à un courriel envoyé depuis votre client de messagerie électronique."
#: sfx2/uiconfig/ui/floatingrecord.ui:9
msgctxt "floatingrecord|FloatingRecord"
@@ -2291,6 +2283,35 @@ msgid ""
"\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 est mis à disposition selon les termes de la licence Mozilla Public License, v. 2.0. Une copie de la MPL est disponible à http://mozilla.org/MPL/2.0/.\n"
+"\n"
+"Les parties de code tiers, les autres avis de droit d'auteur et les conditions de licence applicables à des parties du Logiciel figurent dans le fichier LICENSE.html ; choisissez Afficher la licence pour voir les détails exacts en anglais.\n"
+"\n"
+"Toutes les marques et marques déposées mentionnées dans ce document sont la propriété de leurs propriétaires respectifs.\n"
+"\n"
+"Copyright © 2000–2019 collaborateurs LibreOffice. Tous droits réservés.\n"
+"\n"
+"Ce produit a été créé par %OOOVENDOR, basé sur OpenOffice.org, qui est Copyright 2000, 2011 Oracle et/ou ses filiales. %OOOVENDOR remercie tous les membres de la communauté, veuillez consulter http://www.libreoffice.org/ pour plus de détails."
+
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
@@ -2890,7 +2911,7 @@ msgstr "ou créer une nouvelle catégorie"
#: sfx2/uiconfig/ui/templatedlg.ui:45
msgctxt "colsmenu|insert"
msgid "Reset Default Template"
-msgstr ""
+msgstr "Rétablir le modèle par défaut"
#: sfx2/uiconfig/ui/templatedlg.ui:61
msgctxt "templatedlg|TemplateDialog"
diff --git a/source/fr/shell/messages.po b/source/fr/shell/messages.po
new file mode 100644
index 00000000000..a0991ca0780
--- /dev/null
+++ b/source/fr/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-24 21:37+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: fr\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558733865.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Ouvrir le document"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Vous êtes en train d'ouvrir le document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Voulez-vous l'ouvrir pour l'afficher ou pour l'éditer ?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Afficher"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Édition"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Annuler"
diff --git a/source/fr/starmath/messages.po b/source/fr/starmath/messages.po
index 0537c5754e9..0ab7d660dd1 100644
--- a/source/fr/starmath/messages.po
+++ b/source/fr/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Exemples"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Italique"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Gras"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "noir"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "bleu"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "vert"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "rouge"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "citron"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marron"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "navy"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olive"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "violet"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "argent"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "bleu canard"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "jaune"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "masquer"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "taille"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "police"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "gauche"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "droite"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Commandes"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formule"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Enregistrement du document..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Formule %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERREUR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caractère imprévu"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Paramètre inattendu"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' requis"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' requis"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' requis"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' requis"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Symboles gauche et droit incohérents"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "\"fixed\", \"sans\" ou \"serif\" était attendu"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "\"size\" est suivi par un paramètre inattendu"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "L'alignement redoublé n'est pas autorisé"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Doubles indices/exposants ne sont pas autorisés"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' requis"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Couleur requise"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' requis"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contenu"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titre"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Texte de la ~formule"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~ordures"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Taille"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Taille d'o~rigine"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Adapter à la ~page"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Échelle"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Éléments"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/fr/svtools/messages.po b/source/fr/svtools/messages.po
index 65e7bfeecb5..650f8de8280 100644
--- a/source/fr/svtools/messages.po
+++ b/source/fr/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-12 20:30+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,1521 +13,1523 @@ 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: 1557693014.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Annuler :"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Rétablir :"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Ré~péter :"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Texte non formaté"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Texte non formaté (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Image bitmap (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Métafichier Graphics Device Interface (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Format de dessin %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitmap/animation StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Info statut de Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Lien %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Signets Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format serveur Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format objet Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objet applet"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objet plug-in"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objet StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objet StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objet StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objet StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objet StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objet StarWriter/Maître 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objet StarWriter/Maître 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objet StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objet StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objet StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objet StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objet StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objet StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objet StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objet StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objet StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objet StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objet StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objet StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objet StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objet StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objet StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objet StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objet StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "HyperText Markup Language simplifié (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Format binaire d'échange Microsoft Excel 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Format binaire d'échange Microsoft Excel 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (lien DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objet Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objet StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objet document Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Info document Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Document sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objet StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objet graphique"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objet Writer OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objet Writer/Web OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objet Maître/Writer OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objet Draw OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objet Impress OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objet Calc OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objet Chart OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objet Math OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Métafichier Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objet de source de données"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Table de source de données"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Requête SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialogue OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Lien"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Format HTML sans commentaires"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Impossible d'insérer l'objet %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Impossible d'insérer l'objet à partir du fichier %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Autres objets"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Source inconnue"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nom"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Taille"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Date de modification"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Type de contenu"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Octets"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "Ko"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "Mo"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "Go"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ligne : %1, colonne : %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", type : %1, URL : %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Dossier"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fichier"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Champ vide"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumérique"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Jeu de caractères"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionnaire"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trait (stroke)"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Annuaire téléphonique"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Phonétique (alphanumérique en premier)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Phonétique (alphanumérique en dernier)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alphanumérique"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionnaire"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trait (stroke)"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Phonétique (alphanumérique en premier, groupement par syllabes)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Phonétique (alphanumérique en premier, groupement par consonnes)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Phonétique (alphanumérique en dernier, groupement par syllabes)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Phonétique (alphanumérique en dernier, groupement par consonnes)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Aujourd'hui"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Aucun"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Maigre"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Italique maigre"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Italique"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Gras"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Italique gras"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Extra-gras"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Italique extra-gras"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Normal"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Gras oblique"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensé"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensé gras"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensé gras italique"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensé gras oblique"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensé italique"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensé oblique"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extrafin"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extrafin italique"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblique"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Demi gras"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Demi gras italique"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "La même police est utilisée pour l'impression et l'affichage à l'écran."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Police d'imprimante. L'affichage et l'impression ne seront pas toujours identiques."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Ce style de police sera imité ou le style le plus approprié sera utilisé."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Ce type de police n'a pas été installé. Le type de police le plus approprié va être utilisé."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Parcourir..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Déplacer vers l'origine"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Déplacer à gauche"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Déplacer à droite"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Déplacer vers la fin"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Ajouter"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Règle horizontale"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Règle verticale"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Valeur de seuil 1 bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Dithering (diffusion) 1 bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Niveaux de gris 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Couleur 4 bits"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Niveaux de gris 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Couleur 8 bits"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Couleurs 24 bits (True color)"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "L'image nécessite environ %1 Ko de mémoire."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "L'image nécessite environ %1 Ko de mémoire, la taille du fichier est de %2 Ko."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "La taille du fichier est de %1 Ko."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "hôte"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Autre CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Disponible"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Arrêté"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Suppression imminente"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Système occupé"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialisation"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "En attente"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Préchauffage"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Traitement"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Impression"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Hors ligne"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Erreur"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Serveur inconnu"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Bourrage papier"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Manque de papier"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentation manuelle"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problème d'alimentation de papier"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S active"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Le bac de sortie est plein"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Faible réserve de toner"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Pas de toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Suppression de page"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Intervention de l'utilisateur requise"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Mémoire insuffisante"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Capot ouvert"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mode économie d'énergie"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Imprimante par défaut"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Terminer"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Suivant >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Précédent"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Étapes"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<aucun>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Société"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Service"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Prénom"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Nom"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Rue"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Pays"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Code Postal"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ville"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titre"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Fonction"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Appellation"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initiales"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Formule finale"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tél. domicile"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tél. travail"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Remarque"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Utilisateur 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Utilisateur 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Utilisateur 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Utilisateur 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "État"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tél. bureau"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Tél. portable"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tél. autre"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendrier"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invitation"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME nécessite un environnement d'exécution Java (JRE) pour exécuter cette tâche. Veuillez installer un JRE et redémarrer %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME nécessite un environnement d'exécution java (JRE) %BITNESS-bit pour réaliser cette tâche. Veuillez installer un JRE puis redémarrer %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME nécessite Java Development Kit (JDK) Oracle sur macOS 10.10 ou supérieur pour exécuter cette tâche. Veuillez l'installer et redémarrer %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuration de %PRODUCTNAME a été modifiée. Sous %PRODUCTNAME - Préférences - %PRODUCTNAME - Avancé, sélectionnez l'environnement d'exécution Java que vous voulez que %PRODUCTNAME utilise."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuration de %PRODUCTNAME a été modifiée. Sous Outils - Options - %PRODUCTNAME - Avancé, sélectionnez l'environnement d'exécution Java que vous voulez que %PRODUCTNAME utilise."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME nécessite un environnement d'exécution java (JRE) pour réaliser cette tâche. Le JRE sélectionné est défectueux. Veuillez sélectionner une autre version ou installer un nouveau JRE et le sélectionner sous %PRODUCTNAME - Préférences - %PRODUCTNAME - Avancé."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME nécessite un environnement d'exécution java (JRE) pour réaliser cette tâche. Le JRE sélectionné est défectueux. Veuillez sélectionner une autre version ou installer un nouveau JRE et le sélectionner sous Outils - Options - %PRODUCTNAME - Avancé."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE requis"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Sélection un JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE est défectueux"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Code source"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Fichier de marque-pages"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Images"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Fichier de configuration"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Application"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Table de base de données"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Fichier système"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Document MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Fichier d'aide"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Document HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Fichier archive"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Fichier journal"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de données StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Document maître StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Image StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Fichier texte"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Lier"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Modèle StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Document MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Modèle MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Fichier de traitement par lots"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fichier"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Dossier"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Texte"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Classeur"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Présentation"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dessin"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Document HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Document maître"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formule"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de données"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Modèle de classeur OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Modèle de dessin OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Modèle de présentation OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Modèle de document texte OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unité locale"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unité de disque"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unité CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Connexion réseau"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Document MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Modèle MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Diaporama MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Formule OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagramme OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dessin OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Classeur OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Présentation OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Document texte OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Document maître OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Document MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de données OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dessin OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Formule OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Document maître OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Présentation OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Classeur OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Texte OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Modèle de classeur OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Modèle de dessin OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Modèle de présentation OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Modèle de texte OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extension %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Vérificateur orthographique Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Coupeur de mots Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Dictionnaire des synonymes MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Liste des mots ignorés"
diff --git a/source/fr/svx/messages.po b/source/fr/svx/messages.po
index 49f5fcf4f78..6b3b17845d1 100644
--- a/source/fr/svx/messages.po
+++ b/source/fr/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-28 19:55+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-24 21:34+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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: 1556481315.000000\n"
+"X-POOTLE-MTIME: 1558733654.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "De gauche à droite (vertical)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "De bas en haut, de gauche à droite (vertical)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Numéro de la partie :"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Partie de texte :"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Source de lumière 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Couleur de lumière 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Couleur de lumière 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Couleur de lumière 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Couleur de lumière 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Couleur de lumière 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Couleur de lumière 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Couleur de lumière 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Couleur de lumière 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Spécifiez le pourcentage de décalage vertical à partir du centre pour le style d'ombrage du dégradé. 50% est le centre vertical."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Éditeur de contour"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Appliquer"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Zone de travail"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Sélectionner"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygone"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Éditer des points"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Déplacer des points"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insérer des points"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Supprimer des points"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoContour"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Annuler"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Rétablir"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipette"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolérance chromatique"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Pied de page"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Éditeur d'Image Map"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Appliquer"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Ouvrir..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Enregistrer..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Fermer"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Sélectionner"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygone"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Polygone à main levée"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Éditer des points"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Déplacer des points"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Insérer des points"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Supprimer des points"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Annuler"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Rétablir"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Actif"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Propriétés..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresse :"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Cadre :"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Texte :"
@@ -13368,12 +13373,12 @@ msgstr "Commentaire"
#: svx/uiconfig/ui/redlineviewpage.ui:146
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Modifications"
#: svx/uiconfig/ui/redlineviewpage.ui:245
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Modifications"
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME fonctionne maintenant en mode sans échec qui désactive temporairement votre configuration utilisateur et vos extensions.\n"
+"\n"
+"Vous pouvez faire une ou plusieurs des modifications suivantes de votre profil utilisateur pour ramener %PRODUCTNAME à un état fonctionnel."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/fr/sw/messages.po b/source/fr/sw/messages.po
index 1955f518f66..ada34bb6d41 100644
--- a/source/fr/sw/messages.po
+++ b/source/fr/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-12-26 21:55+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-30 18:50+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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: 1545861314.000000\n"
+"X-POOTLE-MTIME: 1559242254.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -264,7 +264,7 @@ msgstr "Numéro de téléphone professionnel"
#: sw/inc/dbui.hrc:57
msgctxt "SA_ADDRESS_HEADER"
msgid "Email Address"
-msgstr ""
+msgstr "Adresse de courriel"
#: sw/inc/dbui.hrc:58
msgctxt "SA_ADDRESS_HEADER"
@@ -1115,7 +1115,7 @@ msgstr "Puce 5 suivante"
#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
-msgstr ""
+msgstr "En-tête et pied de page"
#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_HEADER"
@@ -1509,31 +1509,31 @@ msgstr "Numérotation ivx"
#: sw/inc/strings.hrc:207
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
-msgstr ""
+msgstr "Puce •"
#. Bullet \u2013
#: sw/inc/strings.hrc:209
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
-msgstr ""
+msgstr "Puce –"
#. Bullet \uE4C4
#: sw/inc/strings.hrc:211
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
-msgstr ""
+msgstr "Puce "
#. Bullet \uE49E
#: sw/inc/strings.hrc:213
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
-msgstr ""
+msgstr "Puce "
#. Bullet \uE20B
#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
-msgstr ""
+msgstr "Puce "
#: sw/inc/strings.hrc:216
msgctxt "STR_COLUMN_VALUESET_ITEM0"
@@ -1720,7 +1720,7 @@ msgstr "Statistiques"
#: sw/inc/strings.hrc:255
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
-msgstr ""
+msgstr "Cette option est désactivée lorsque la numérotation des chapitres est assignée à un style de paragraphe"
#. Statusbar-titles
#: sw/inc/strings.hrc:257
@@ -3118,7 +3118,7 @@ msgid "Change object title of $1"
msgstr "Modifier le titre d'objet de $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Modifier la description d'objet de $1"
@@ -3145,7 +3145,7 @@ msgstr "Supprimer le tableau"
#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
-msgstr ""
+msgstr "Insérer un champ de formulaire"
#: sw/inc/strings.hrc:551
msgctxt "STR_ACCESS_DOC_NAME"
@@ -3376,7 +3376,7 @@ msgstr "Imprimer le texte en ~noir"
#: sw/inc/strings.hrc:600
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
-msgstr ""
+msgstr "Pages :"
#: sw/inc/strings.hrc:601
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
@@ -3431,27 +3431,27 @@ msgstr "Script de droite à gauche"
#: sw/inc/strings.hrc:611
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "Toutes les ~pages"
#: sw/inc/strings.hrc:612
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "Pa~ges :"
#: sw/inc/strings.hrc:613
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "Pag~es paires"
#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "Pages ~impaires"
#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
-msgstr ""
+msgstr "~Sélection"
#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
@@ -3511,7 +3511,7 @@ msgstr "Mode Glisser"
#: sw/inc/strings.hrc:629
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
-msgstr ""
+msgstr "Envoyer le plan vers le presse-papiers"
#: sw/inc/strings.hrc:630
msgctxt "STR_HYPERLINK"
@@ -3964,7 +3964,7 @@ msgstr "Non publié"
#: sw/inc/strings.hrc:723
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
-msgstr ""
+msgstr "Courriel"
#: sw/inc/strings.hrc:724
msgctxt "STR_AUTH_TYPE_WWW"
@@ -4448,6 +4448,9 @@ msgid ""
"\n"
"Do you want to enter email account information now?"
msgstr ""
+"Pour pouvoir envoyer des documents fusionnés par courriel, %PRODUCTNAME a besoin d'informations à propos du compte courriel à utiliser.\n"
+"\n"
+"Souhaitez-vous saisir les informations de compte courriel maintenant ?"
#: sw/inc/strings.hrc:827
msgctxt "ST_FILTERNAME"
@@ -4457,32 +4460,32 @@ msgstr "Liste d'adresses %PRODUCTNAME (.csv)"
#: sw/inc/strings.hrc:829
msgctxt "ST_STARTING"
msgid "Select Starting Document"
-msgstr ""
+msgstr "Sélectionner le document de base"
#: sw/inc/strings.hrc:830
msgctxt "ST_DOCUMENTTYPE"
msgid "Select Document Type"
-msgstr ""
+msgstr "Sélectionner un type de document"
#: sw/inc/strings.hrc:831
msgctxt "ST_ADDRESSBLOCK"
msgid "Insert Address Block"
-msgstr ""
+msgstr "Insérer un bloc d'adresse"
#: sw/inc/strings.hrc:832
msgctxt "ST_ADDRESSLIST"
msgid "Select Address List"
-msgstr ""
+msgstr "Sélectionner une liste d'adresses"
#: sw/inc/strings.hrc:833
msgctxt "ST_GREETINGSLINE"
msgid "Create Salutation"
-msgstr ""
+msgstr "Créer une salutation"
#: sw/inc/strings.hrc:834
msgctxt "ST_LAYOUT"
msgid "Adjust Layout"
-msgstr ""
+msgstr "Adapter la mise en page"
#: sw/inc/strings.hrc:835
msgctxt "ST_EXCLUDE"
@@ -4522,7 +4525,7 @@ msgstr "La vérification de l'orthographe est terminée."
#: sw/inc/strings.hrc:844
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
-msgstr ""
+msgstr "Aucun dictionnaire disponible"
#. --------------------------------------------------------------------
#. Description: strings for the types
@@ -4879,12 +4882,12 @@ msgstr "Tél. (bureau)"
#: sw/inc/strings.hrc:931
msgctxt "FLD_EU_FAX"
msgid "Fax"
-msgstr ""
+msgstr "Fax"
#: sw/inc/strings.hrc:932
msgctxt "FLD_EU_EMAIL"
msgid "Email"
-msgstr ""
+msgstr "Courriel"
#: sw/inc/strings.hrc:933
msgctxt "FLD_EU_STATE"
@@ -6110,7 +6113,7 @@ msgstr "Formater le pied de page..."
#: sw/inc/strings.hrc:1210
msgctxt "STR_UNFLOAT_TABLE"
msgid "Un-float Table"
-msgstr ""
+msgstr "Tableau non flottant"
#: sw/inc/strings.hrc:1212
msgctxt "STR_GRFILTER_OPENERROR"
@@ -6170,7 +6173,7 @@ msgstr "AutoCorrection"
#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
-msgstr ""
+msgstr "Formats"
#: sw/inc/strings.hrc:1224
msgctxt "STR_REDLINE_TABLECHG"
@@ -6535,7 +6538,7 @@ msgstr "Impossible de fusionner les documents."
#: sw/inc/strings.hrc:1308
msgctxt "STR_NO_BASE_FOR_MERGE"
msgid "%PRODUCTNAME Base component is absent, and it is required to use Mail Merge."
-msgstr ""
+msgstr "Le composant %PRODUCTNAME Base est absent, mais est requis pour le publipostage (mailing)."
#: sw/inc/strings.hrc:1309
msgctxt "STR_ERR_SRCSTREAM"
@@ -6660,7 +6663,7 @@ msgstr "~Vers le bas"
#: sw/inc/strings.hrc:1339
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
-msgstr ""
+msgstr "Aucun élément spécifié"
#. --------------------------------------------------------------------
#. Description: Classification strings
@@ -6706,7 +6709,7 @@ msgstr "Cartes de visite"
#: sw/inc/strings.hrc:1358
msgctxt "STR_MAILCONFIG_DLG_TITLE"
msgid "Email settings"
-msgstr ""
+msgstr "Paramètres de courriel"
#: sw/inc/utlui.hrc:27
msgctxt "RID_SHELLRES_AUTOFMTSTRS"
@@ -7016,17 +7019,17 @@ msgstr "Assigner les champs de la source de données pour les faire correspondre
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:185
msgctxt "assignfieldsdialog|ST_ADDRESSELEMENT"
msgid "Address elements"
-msgstr ""
+msgstr "Éléments d'adresse"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:197
msgctxt "assignfieldsdialog|ST_PREVIEW"
msgid "Preview"
-msgstr ""
+msgstr "Aperçu"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:210
msgctxt "assignfieldsdialog|ST_MATCHESTO"
msgid "Matches to field"
-msgstr ""
+msgstr "Correspond au champ"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:236
msgctxt "assignfieldsdialog|PREVIEW_LABEL"
@@ -7431,7 +7434,7 @@ msgstr "Numéro de téléphone personnel"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:105
msgctxt "businessdatapage|faxft"
msgid "Homepage/email:"
-msgstr ""
+msgstr "Page d'accueil / Courriel :"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:127
msgctxt "businessdatapage|company-atkobject"
@@ -7451,7 +7454,7 @@ msgstr "Numéro de téléphone personnel"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:214
msgctxt "businessdatapage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Numéro de fax"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:231
msgctxt "businessdatapage|email-atkobject"
@@ -7661,7 +7664,7 @@ msgstr "_Cci :"
#: sw/uiconfig/swriter/ui/ccdialog.ui:130
msgctxt "ccdialog|label4"
msgid "Note: Separate email addresses with a semicolon (;)."
-msgstr ""
+msgstr "Remarque : séparez les adresses courriel par un point-virgule (;)."
#: sw/uiconfig/swriter/ui/ccdialog.ui:170
msgctxt "ccdialog|label1"
@@ -7676,7 +7679,7 @@ msgstr "Caractère"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Standard"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -8366,27 +8369,27 @@ msgstr "Éditer"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:16
msgctxt "dropdownformfielddialog|DropDownFormFieldDialog"
msgid "Drop-down Form Field"
-msgstr ""
+msgstr "Champ de formulaire liste déroulante"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:96
msgctxt "dropdownformfielddialog|item_label"
msgid "Item"
-msgstr ""
+msgstr "Élément"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:146
msgctxt "dropdownformfielddialog|listitem_label"
msgid "Items on list"
-msgstr ""
+msgstr "Éléments de la liste"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:218
msgctxt "dropdownformfielddialog|up"
msgid "Move Up"
-msgstr ""
+msgstr "Déplacer vers le haut"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:232
msgctxt "dropdownformfielddialog|down"
msgid "Move Down"
-msgstr ""
+msgstr "Déplacer vers le bas"
#: sw/uiconfig/swriter/ui/editcategories.ui:18
msgctxt "editcategories|EditCategoriesDialog"
@@ -9895,7 +9898,7 @@ msgstr "En _vis-à-vis sur les pages paires"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Conserver à l'intérieur des délimitations du texte"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|label11"
@@ -10285,27 +10288,27 @@ msgstr "Sous _condition"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:198
msgctxt "insertbookmark|page"
msgid "Page"
-msgstr ""
+msgstr "Page"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:211
msgctxt "insertbookmark|name"
msgid "Name"
-msgstr ""
+msgstr "Nom"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:224
msgctxt "insertbookmark|text"
msgid "Text"
-msgstr ""
+msgstr "Texte"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:237
msgctxt "insertbookmark|hidden"
msgid "Hidden"
-msgstr ""
+msgstr "Masqué"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:250
msgctxt "insertbookmark|condition"
msgid "Condition"
-msgstr ""
+msgstr "Condition"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:275
msgctxt "insertbookmark|goto"
@@ -10970,12 +10973,12 @@ msgstr "_Votre nom :"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:96
msgctxt "mailconfigpage|address_label"
msgid "_Email address:"
-msgstr ""
+msgstr "Adresse courri_el :"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:107
msgctxt "mailconfigpage|replytocb"
msgid "Send replies to _different email address"
-msgstr ""
+msgstr "Envoyer les réponses à une adresse courriel _différente"
#: sw/uiconfig/swriter/ui/mailconfigpage.ui:126
msgctxt "mailconfigpage|replyto_label"
@@ -11440,7 +11443,7 @@ msgstr "Adapter la mise en page du bloc d'adresses et des salutations"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:8
msgctxt "mmmailbody|MailBodyDialog"
msgid "Email Message"
-msgstr ""
+msgstr "Courriel"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:90
msgctxt "mmmailbody|bodyft"
@@ -11450,7 +11453,7 @@ msgstr "Écrivez votre message ici"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:138
msgctxt "mmmailbody|greeting"
msgid "This email should contain a salutation"
-msgstr ""
+msgstr "Ce courriel devrait contenir des salutations"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:167
msgctxt "mmmailbody|generalft"
@@ -11505,7 +11508,7 @@ msgstr "Envoyer des lettres à un groupe de destinataires. Ces lettres peuvent c
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:62
msgctxt "mmoutputtypepage|emailft"
msgid "Send email messages to a group of recipients. The email messages can contain a salutation. The email messages can be personalized for each recipient."
-msgstr ""
+msgstr "Envoyer des courriels à un groupe de destinataires. Vous pouvez inclure des salutations dans vos courriels. Vous pouvez personnaliser vos courriels en fonction du destinataire."
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:78
msgctxt "mmoutputtypepage|letter"
@@ -11515,7 +11518,7 @@ msgstr "_Lettre"
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:94
msgctxt "mmoutputtypepage|email"
msgid "_Email message"
-msgstr ""
+msgstr "_Courriel"
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:134
msgctxt "mmoutputtypepage|label1"
@@ -11525,7 +11528,7 @@ msgstr "Quel type de document souhaitez-vous créer ?"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:18
msgctxt "mmresultemaildialog|MMResultEmailDialog"
msgid "Email merged document"
-msgstr ""
+msgstr "Envoyer le document fusionné par courriel"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:37
msgctxt "mmresultemaildialog|ok"
@@ -11590,7 +11593,7 @@ msgstr "Nom du fichier _joint"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:276
msgctxt "mmresultemaildialog|label2"
msgid "Email options"
-msgstr ""
+msgstr "Options de courrier électronique"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:308
msgctxt "mmresultemaildialog|sendallrb"
@@ -11815,7 +11818,7 @@ msgstr "Sélectionner le document de base pour le mailing"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:11
msgctxt "mmsendmails|SendMailsDialog"
msgid "Sending Email messages"
-msgstr ""
+msgstr "Envoyer des courriels"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:26
msgctxt "mmsendmails|stop"
@@ -11835,7 +11838,7 @@ msgstr "Statut de la connexion"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:148
msgctxt "mmsendmails|transferstatus"
msgid "%1 of %2 emails sent"
-msgstr ""
+msgstr "%1 courriel(s) sur %2 envoyé(s)"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:164
msgctxt "mmsendmails|paused"
@@ -11845,7 +11848,7 @@ msgstr "Envoi suspendu"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:199
msgctxt "mmsendmails|errorstatus"
msgid "Emails not sent: %1"
-msgstr ""
+msgstr "Courriel(s) non envoyé(s) : %1"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:227
msgctxt "mmsendmails|label5"
@@ -12007,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Aide"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fichier"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Origine"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Origine"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Insérer"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insérer"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Mise en page"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Mise en page"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Référence_s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Référence~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Révision"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Révision"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Afficher"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Affichage"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tableau"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tableau"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ima_ge"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~ge"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Dessin"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Dessin"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objet"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objet"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Média"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Imprimer"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimer"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulaire"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulaire"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Outils"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Outils"
@@ -12157,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Fichier"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Fichier"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Origine"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Origine"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Insérer"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Insertion"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Adaptation"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Mise en page"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Mise en page"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Référence_s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Référence~s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Réviser"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Révision"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Afficher"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Affichage"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_ableau"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tableau"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Image"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Ima~ge"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Dra_w"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Dessiner"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objet"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objet"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Média"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Média"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Imprimer"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Imprimer"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulaire"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmulaire"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Outils"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Outils"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12419,7 +12422,7 @@ msgstr "3_D"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7409
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Fontwork"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7523
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8608
@@ -12446,7 +12449,7 @@ msgstr "_Objet"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "Cad_re"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12656,7 +12659,7 @@ msgstr "_Média"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objet"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13369,8 +13372,8 @@ msgstr "Étendre l'espace entre les mots sur les lignes comportant un retour à
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Protéger le formulaire"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13405,12 +13408,12 @@ msgstr "Options de compatibilité pour “%DOCNAME”"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:166
msgctxt "optcompatpage|globalcompatoptions"
msgid "Reorganize Forms menu to have it MS compatible"
-msgstr ""
+msgstr "Réorganiser le menu Formulaire pour le rendre compatible MS"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:184
msgctxt "optcompatpage|label2"
msgid "Global compatibility options"
-msgstr ""
+msgstr "Options de compatibilité globales"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -14714,7 +14717,7 @@ msgstr "Contrôles de formulaires"
#: sw/uiconfig/swriter/ui/printeroptions.ui:118
msgctxt "printeroptions|formcontrols"
msgid "Comments:"
-msgstr ""
+msgstr "Commentaires :"
#: sw/uiconfig/swriter/ui/printeroptions.ui:154
msgctxt "printeroptions|label4"
@@ -14899,7 +14902,7 @@ msgstr "Numéro de téléphone personnel"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:105
msgctxt "privateuserpage|faxft"
msgid "Homepage/email:"
-msgstr ""
+msgstr "Page d'accueil / Courriel :"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:127
msgctxt "privateuserpage|firstname-atkobject"
@@ -14934,7 +14937,7 @@ msgstr "Numéro de téléphone personnel"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:265
msgctxt "privateuserpage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Numéro de fax"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:282
msgctxt "privateuserpage|email-atkobject"
@@ -15523,12 +15526,12 @@ msgstr "Le fichier que vous avez sélectionné contient plus d'une table. Veuill
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:139
msgctxt "selecttabledialog|column1"
msgid "Name"
-msgstr ""
+msgstr "Nom"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:152
msgctxt "selecttabledialog|column2"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:179
msgctxt "selecttabledialog|preview"
@@ -16108,7 +16111,7 @@ msgstr "Horizontal"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Vertical (de haut en bas)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
msgctxt "tabletextflowpage|liststore1"
@@ -16118,7 +16121,7 @@ msgstr "Utiliser les paramètres de l'objet supérieur"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:301
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Vertical (de bas en haut)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:322
msgctxt "tabletextflowpage|headline"
@@ -16393,7 +16396,7 @@ msgstr "Style de page"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:71
msgctxt "templatedialog8|standard"
msgid "Standard"
-msgstr ""
+msgstr "Standard"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:166
msgctxt "templatedialog8|organizer"
@@ -16478,7 +16481,7 @@ msgstr "Échec"
#: sw/uiconfig/swriter/ui/testmailsettings.ui:224
msgctxt "testmailsettings|label8"
msgid "%PRODUCTNAME is testing the email account settings..."
-msgstr ""
+msgstr "%PRODUCTNAME teste les paramètres du compte de courriel..."
#: sw/uiconfig/swriter/ui/testmailsettings.ui:290
msgctxt "testmailsettings|label1"
@@ -16650,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Table des matières, index ou bibliographie"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Aperçu"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Aperçu"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Type"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entrées"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Styles"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Colonnes"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Arrière-plan"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Aperçu"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Ni_veau"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Type"
@@ -16920,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "É_diter..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titre :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Type :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Table des matières"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Index lexical"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Index des figures"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Index des tableaux"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Index personnalisé"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Index des objets"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliographie"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protégé contre toute modification manuelle"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Type et titre"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Pour :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Document entier"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Chapitre"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Évaluer jusqu'au niveau :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Créer un index ou une table des matières"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Plan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Marques d'index"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tables"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "_Cadres de texte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Images"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Objets OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Utiliser le niveau du chapitre d'origine"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Styles supplémentaires"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "St_yles"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Assigner les styles..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Légendes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Noms d'objet"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Catégorie :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Afficher :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Références"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Catégorie et numéro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Texte de légende"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Créer à partir de"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Créer à partir des objets suivants"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Accolades :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Entrées _numériques"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[aucun]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatage des entrées"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Regrouper les entrées identiques"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Avec _sv"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Avec -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Respecter la casse"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Entrées en majuscules (autom.)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Clés comme entrées séparées"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Fichier de _concordance"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Fichier"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Options"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Langue :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Type de clé :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Trier"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Niveaux"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Style de paragraphe"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Par _défaut"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "É_diter"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Assignation"
@@ -17268,17 +17271,17 @@ msgstr "Affichage"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:223
msgctxt "viewoptionspage|hiddentextfield"
msgid "Hidden te_xt"
-msgstr ""
+msgstr "Te_xte masqué"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:237
msgctxt "viewoptionspage|hiddenparafield"
msgid "Hidden p_aragraphs"
-msgstr ""
+msgstr "P_aragraphes masqués"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:257
msgctxt "viewoptionspage|fieldslabel"
msgid "Display fields"
-msgstr ""
+msgstr "Champs d'affichage"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:301
msgctxt "viewoptionspage|smoothscroll"
@@ -17339,7 +17342,7 @@ msgstr "Vérifier les paramètres de connexion..."
#: sw/uiconfig/swriter/ui/warnemaildialog.ui:16
msgctxt "warnemaildialog|WarnEmailDialog"
msgid "Emails could not be sent"
-msgstr ""
+msgstr "Les courriels n'ont pas pu être envoyés"
#: sw/uiconfig/swriter/ui/warnemaildialog.ui:17
msgctxt "warnemaildialog|WarnEmailDialog"
diff --git a/source/fr/vcl/messages.po b/source/fr/vcl/messages.po
index c8a8a4c7f08..5337447cad9 100644
--- a/source/fr/vcl/messages.po
+++ b/source/fr/vcl/messages.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2018-12-19 21:48+0000\n"
+"PO-Revision-Date: 2019-05-25 11:09+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1545256136.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558782573.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -115,7 +115,7 @@ msgstr "Diapo Dia"
#: vcl/inc/print.hrc:47
msgctxt "RID_STR_PAPERNAMES"
msgid "Screen 4:3"
-msgstr ""
+msgstr "Écran 4:3"
#: vcl/inc/print.hrc:48
msgctxt "RID_STR_PAPERNAMES"
@@ -140,7 +140,7 @@ msgstr "Directeur"
#: vcl/inc/print.hrc:52
msgctxt "RID_STR_PAPERNAMES"
msgid "German Legal Fanfold"
-msgstr ""
+msgstr "Répertoire juridique allemand"
#: vcl/inc/print.hrc:53
msgctxt "RID_STR_PAPERNAMES"
@@ -175,7 +175,7 @@ msgstr "#12 Enveloppe"
#: vcl/inc/print.hrc:59
msgctxt "RID_STR_PAPERNAMES"
msgid "16 Kai (16k)"
-msgstr ""
+msgstr "16 Kai (16k)"
#: vcl/inc/print.hrc:60
msgctxt "RID_STR_PAPERNAMES"
@@ -205,47 +205,47 @@ msgstr "B6 (JIS)"
#: vcl/inc/print.hrc:65
msgctxt "RID_STR_PAPERNAMES"
msgid "Ledger"
-msgstr ""
+msgstr "Ledger"
#: vcl/inc/print.hrc:66
msgctxt "RID_STR_PAPERNAMES"
msgid "Statement"
-msgstr ""
+msgstr "Statement"
#: vcl/inc/print.hrc:67
msgctxt "RID_STR_PAPERNAMES"
msgid "Quarto"
-msgstr ""
+msgstr "Quarto"
#: vcl/inc/print.hrc:68
msgctxt "RID_STR_PAPERNAMES"
msgid "10x14"
-msgstr ""
+msgstr "10x14"
#: vcl/inc/print.hrc:69
msgctxt "RID_STR_PAPERNAMES"
msgid "#14 Envelope"
-msgstr ""
+msgstr "#14 Envelope"
#: vcl/inc/print.hrc:70
msgctxt "RID_STR_PAPERNAMES"
msgid "C3 Envelope"
-msgstr ""
+msgstr "C3 Envelope"
#: vcl/inc/print.hrc:71
msgctxt "RID_STR_PAPERNAMES"
msgid "Italian Envelope"
-msgstr ""
+msgstr "Enveloppe italienne"
#: vcl/inc/print.hrc:72
msgctxt "RID_STR_PAPERNAMES"
msgid "U.S. Standard Fanfold"
-msgstr ""
+msgstr "U.S. Standard Fanfold"
#: vcl/inc/print.hrc:73
msgctxt "RID_STR_PAPERNAMES"
msgid "German Standard Fanfold"
-msgstr ""
+msgstr "German Standard Fanfold"
#: vcl/inc/print.hrc:74
msgctxt "RID_STR_PAPERNAMES"
@@ -255,178 +255,178 @@ msgstr "Carte postale japonaise"
#: vcl/inc/print.hrc:75
msgctxt "RID_STR_PAPERNAMES"
msgid "9x11"
-msgstr ""
+msgstr "9x11"
#: vcl/inc/print.hrc:76
msgctxt "RID_STR_PAPERNAMES"
msgid "10x11"
-msgstr ""
+msgstr "10x11"
#: vcl/inc/print.hrc:77
msgctxt "RID_STR_PAPERNAMES"
msgid "15x11"
-msgstr ""
+msgstr "15x11"
#: vcl/inc/print.hrc:78
msgctxt "RID_STR_PAPERNAMES"
msgid "Invitation Envelope"
-msgstr ""
+msgstr "Invitation Envelope"
#: vcl/inc/print.hrc:79
msgctxt "RID_STR_PAPERNAMES"
msgid "SuperA"
-msgstr ""
+msgstr "SuperA"
#: vcl/inc/print.hrc:80
msgctxt "RID_STR_PAPERNAMES"
msgid "SuperB"
-msgstr ""
+msgstr "SuperB"
#: vcl/inc/print.hrc:81
msgctxt "RID_STR_PAPERNAMES"
msgid "Letter Plus"
-msgstr ""
+msgstr "Letter Plus"
#: vcl/inc/print.hrc:82
msgctxt "RID_STR_PAPERNAMES"
msgid "A4 Plus"
-msgstr ""
+msgstr "A4 Plus"
#: vcl/inc/print.hrc:83
msgctxt "RID_STR_PAPERNAMES"
msgid "Double Postcard"
-msgstr ""
+msgstr "Double Postcard"
#: vcl/inc/print.hrc:84
msgctxt "RID_STR_PAPERNAMES"
msgid "A6"
-msgstr ""
+msgstr "A6"
#: vcl/inc/print.hrc:85
msgctxt "RID_STR_PAPERNAMES"
msgid "12x11"
-msgstr ""
+msgstr "12x11"
#: vcl/inc/print.hrc:86
msgctxt "RID_STR_PAPERNAMES"
msgid "A7"
-msgstr ""
+msgstr "A7"
#: vcl/inc/print.hrc:87
msgctxt "RID_STR_PAPERNAMES"
msgid "A8"
-msgstr ""
+msgstr "A8"
#: vcl/inc/print.hrc:88
msgctxt "RID_STR_PAPERNAMES"
msgid "A9"
-msgstr ""
+msgstr "A9"
#: vcl/inc/print.hrc:89
msgctxt "RID_STR_PAPERNAMES"
msgid "A10"
-msgstr ""
+msgstr "A10"
#: vcl/inc/print.hrc:90
msgctxt "RID_STR_PAPERNAMES"
msgid "B0 (ISO)"
-msgstr ""
+msgstr "B0 (ISO)"
#: vcl/inc/print.hrc:91
msgctxt "RID_STR_PAPERNAMES"
msgid "B1 (ISO)"
-msgstr ""
+msgstr "B1 (ISO)"
#: vcl/inc/print.hrc:92
msgctxt "RID_STR_PAPERNAMES"
msgid "B2 (ISO)"
-msgstr ""
+msgstr "B2 (ISO)"
#: vcl/inc/print.hrc:93
msgctxt "RID_STR_PAPERNAMES"
msgid "B3 (ISO)"
-msgstr ""
+msgstr "B3 (ISO)"
#: vcl/inc/print.hrc:94
msgctxt "RID_STR_PAPERNAMES"
msgid "B7 (ISO)"
-msgstr ""
+msgstr "B7 (ISO)"
#: vcl/inc/print.hrc:95
msgctxt "RID_STR_PAPERNAMES"
msgid "B8 (ISO)"
-msgstr ""
+msgstr "B8 (ISO)"
#: vcl/inc/print.hrc:96
msgctxt "RID_STR_PAPERNAMES"
msgid "B9 (ISO)"
-msgstr ""
+msgstr "B9 (ISO)"
#: vcl/inc/print.hrc:97
msgctxt "RID_STR_PAPERNAMES"
msgid "B10 (ISO)"
-msgstr ""
+msgstr "B10 (ISO)"
#: vcl/inc/print.hrc:98
msgctxt "RID_STR_PAPERNAMES"
msgid "C2 Envelope"
-msgstr ""
+msgstr "C2 Envelope"
#: vcl/inc/print.hrc:99
msgctxt "RID_STR_PAPERNAMES"
msgid "C7 Envelope"
-msgstr ""
+msgstr "C7 Envelope"
#: vcl/inc/print.hrc:100
msgctxt "RID_STR_PAPERNAMES"
msgid "C8 Envelope"
-msgstr ""
+msgstr "C8 Envelope"
#: vcl/inc/print.hrc:101
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch A"
-msgstr ""
+msgstr "Arch A"
#: vcl/inc/print.hrc:102
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch B"
-msgstr ""
+msgstr "Arch B"
#: vcl/inc/print.hrc:103
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch C"
-msgstr ""
+msgstr "Arch C"
#: vcl/inc/print.hrc:104
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch D"
-msgstr ""
+msgstr "Arch D"
#: vcl/inc/print.hrc:105
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch E"
-msgstr ""
+msgstr "Arch E"
#: vcl/inc/print.hrc:106
msgctxt "RID_STR_PAPERNAMES"
msgid "Screen 16:9"
-msgstr ""
+msgstr "Écran 16:9"
#: vcl/inc/print.hrc:107
msgctxt "RID_STR_PAPERNAMES"
msgid "Screen 16:10"
-msgstr ""
+msgstr "Écran 16:10"
#: vcl/inc/print.hrc:108
msgctxt "RID_STR_PAPERNAMES"
msgid "16k (195 x 270)"
-msgstr ""
+msgstr "16k (195 x 270)"
#. To translators: This is the last entry of the sequence of paper size names
#: vcl/inc/print.hrc:110
msgctxt "RID_STR_PAPERNAMES"
msgid "16k (197 x 273)"
-msgstr ""
+msgstr "16k (197 x 273)"
#: vcl/inc/printaccessoryview.hrc:27
msgctxt "SV_PRINT_NATIVE_STRINGS"
@@ -856,7 +856,7 @@ msgstr "Aucune page"
#: vcl/inc/strings.hrc:116
msgctxt "SV_PRINT_NOPREVIEW"
msgid "Preview is disabled"
-msgstr ""
+msgstr "L'aperçu est désactivé"
#: vcl/inc/strings.hrc:117
msgctxt "SV_PRINT_TOFILE_TXT"
@@ -977,17 +977,17 @@ msgstr "Champ vide"
#: vcl/inc/strings.hrc:147
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
-msgstr ""
+msgstr "Jour"
#: vcl/inc/strings.hrc:148
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
-msgstr ""
+msgstr "Semaine"
#: vcl/inc/strings.hrc:149
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
-msgstr ""
+msgstr "Aujourd'hui"
#. To translators: This is the first entry of a sequence of measurement unit names
#: vcl/inc/units.hrc:28
@@ -1205,7 +1205,7 @@ msgstr "Final Glyph on Line Alternates"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:43
msgctxt "STR_FONT_FEATURE_ID_FRAC"
msgid "Fraction style:"
-msgstr ""
+msgstr "Style de fraction :"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:44
msgctxt "STR_FONT_FEATURE_ID_FRAC_PARAM_1"
@@ -1520,7 +1520,7 @@ msgstr "Saisissez vos données d'authentification pour le serveur \"%s\""
#: vcl/uiconfig/ui/cupspassworddialog.ui:145
msgctxt "cupspassworddialog|label1"
msgid "_Domain:"
-msgstr ""
+msgstr "_Domaine :"
#: vcl/uiconfig/ui/editmenu.ui:12
msgctxt "editmenu|undo"
@@ -1590,12 +1590,12 @@ msgstr "Veuillez choisir une imprimante et essayer de nouveau"
#: vcl/uiconfig/ui/moreoptionsdialog.ui:8
msgctxt "moreoptionsdialog|moreprintingoptions"
msgid "More Printing Options"
-msgstr ""
+msgstr "Plus d'options d'impression"
#: vcl/uiconfig/ui/moreoptionsdialog.ui:71
msgctxt "moreoptionsdialog|singlejobs"
msgid "Create separate print jobs for collated output"
-msgstr ""
+msgstr "Créer des tâches d'impression séparées pour les sorties assemblées"
#: vcl/uiconfig/ui/printdialog.ui:65
msgctxt "printdialog|liststore1"
@@ -1605,22 +1605,22 @@ msgstr "Personnaliser"
#: vcl/uiconfig/ui/printdialog.ui:77
msgctxt "printdialog|liststore2"
msgid "Left to right, then down"
-msgstr ""
+msgstr "De gauche à droite, puis vers le bas"
#: vcl/uiconfig/ui/printdialog.ui:80
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then right"
-msgstr ""
+msgstr "De haut en bas, puis vers la droite"
#: vcl/uiconfig/ui/printdialog.ui:83
msgctxt "printdialog|liststore2"
msgid "Top to bottom, then left"
-msgstr ""
+msgstr "De haut en bas, puis vers la gauche"
#: vcl/uiconfig/ui/printdialog.ui:86
msgctxt "printdialog|liststore2"
msgid "Right to left, then down"
-msgstr ""
+msgstr "De droite à gauche, puis vers le bas"
#: vcl/uiconfig/ui/printdialog.ui:97
msgctxt "printdialog|liststore3"
@@ -1640,17 +1640,17 @@ msgstr "Paysage"
#: vcl/uiconfig/ui/printdialog.ui:114
msgctxt "printdialog|liststore4"
msgid "Print only in one side"
-msgstr ""
+msgstr "Impression d'un seul côté"
#: vcl/uiconfig/ui/printdialog.ui:117
msgctxt "printdialog|liststore4"
msgid "Print in both sides (long edge)"
-msgstr ""
+msgstr "Impression recto-verso (bord long)"
#: vcl/uiconfig/ui/printdialog.ui:120
msgctxt "printdialog|liststore4"
msgid "Print in both sides (short edge)"
-msgstr ""
+msgstr "Impression recto-verso (bord court)"
#: vcl/uiconfig/ui/printdialog.ui:127
msgctxt "printdialog|PrintDialog"
@@ -1660,7 +1660,7 @@ msgstr "Imprimer"
#: vcl/uiconfig/ui/printdialog.ui:158
msgctxt "printdialog|moreoptions"
msgid "More Options..."
-msgstr ""
+msgstr "Plus d'options..."
#: vcl/uiconfig/ui/printdialog.ui:262
msgctxt "printdialog|forward"
@@ -1680,17 +1680,17 @@ msgstr "Page précédente"
#: vcl/uiconfig/ui/printdialog.ui:328
msgctxt "printdialog|previewbox"
msgid "Preview"
-msgstr ""
+msgstr "Aperçu"
#: vcl/uiconfig/ui/printdialog.ui:447
msgctxt "printdialog|labelstatus"
msgid "Status:"
-msgstr ""
+msgstr "État :"
#: vcl/uiconfig/ui/printdialog.ui:462
msgctxt "printdialog|status"
msgid "Default Printer"
-msgstr ""
+msgstr "Imprimante par défaut"
#: vcl/uiconfig/ui/printdialog.ui:475
msgctxt "printdialog|setup"
@@ -1700,97 +1700,97 @@ msgstr "Propriétés..."
#: vcl/uiconfig/ui/printdialog.ui:503
msgctxt "printdialog|labelprinter"
msgid "Printer"
-msgstr ""
+msgstr "Imprimante"
#: vcl/uiconfig/ui/printdialog.ui:540
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
-msgstr ""
+msgstr "Toutes les _pages"
#: vcl/uiconfig/ui/printdialog.ui:556
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
-msgstr ""
+msgstr "_Pages :"
#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|pagerange"
msgid "e.g.: 1, 3-5, 7, 9"
-msgstr ""
+msgstr "par ex. : 1, 3-5, 7, 9"
#: vcl/uiconfig/ui/printdialog.ui:587
msgctxt "printdialog|rmEvenPages"
msgid "_Even pages"
-msgstr ""
+msgstr "Pag_es paires"
#: vcl/uiconfig/ui/printdialog.ui:605
msgctxt "printdialog|rbOddPages"
msgid "_Odd pages"
-msgstr ""
+msgstr "Pages _impaires"
#: vcl/uiconfig/ui/printdialog.ui:625
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
-msgstr ""
+msgstr "_Dont imprimer :"
#: vcl/uiconfig/ui/printdialog.ui:650
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
-msgstr ""
+msgstr "_côtés du papier :"
#: vcl/uiconfig/ui/printdialog.ui:677
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
-msgstr ""
+msgstr "_Nombre d'exemplaires :"
#: vcl/uiconfig/ui/printdialog.ui:701
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
-msgstr ""
+msgstr "Imprimer dans l'ordre _inverse"
#: vcl/uiconfig/ui/printdialog.ui:722
msgctxt "printdialog|collate"
msgid "_Collate"
-msgstr ""
+msgstr "_Assembler"
#: vcl/uiconfig/ui/printdialog.ui:758
msgctxt "printdialog|cbPrintOrder"
msgid "_Order:"
-msgstr ""
+msgstr "_Ordre :"
#: vcl/uiconfig/ui/printdialog.ui:780
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
-msgstr ""
+msgstr "_Sélection"
#: vcl/uiconfig/ui/printdialog.ui:828
msgctxt "printdialog|label2"
msgid "Range and Copies"
-msgstr ""
+msgstr "Plage et exemplaires"
#: vcl/uiconfig/ui/printdialog.ui:867
msgctxt "printdialog|labelorientation"
msgid "Orientation:"
-msgstr ""
+msgstr "Orientation :"
#: vcl/uiconfig/ui/printdialog.ui:881
msgctxt "printdialog|labelsize"
msgid "Paper size:"
-msgstr ""
+msgstr "Taille du papier :"
#: vcl/uiconfig/ui/printdialog.ui:895
msgctxt "printdialog|labelorder"
msgid "Order:"
-msgstr ""
+msgstr "Ordre :"
#: vcl/uiconfig/ui/printdialog.ui:957
msgctxt "printdialog|pagemargintxt1"
msgid "Margin:"
-msgstr ""
+msgstr "Marge :"
#: vcl/uiconfig/ui/printdialog.ui:979
msgctxt "printdialog|sheetmargintxt1"
msgid "Distance:"
-msgstr ""
+msgstr "Distance :"
#: vcl/uiconfig/ui/printdialog.ui:1001
msgctxt "printdialog|pagemargintxt2"
@@ -1820,22 +1820,22 @@ msgstr "Dessiner une bordure autour de chaque page"
#: vcl/uiconfig/ui/printdialog.ui:1090
msgctxt "printdialog|pagespersheetbtn"
msgid "Pages per sheet:"
-msgstr ""
+msgstr "Pages par feuille :"
#: vcl/uiconfig/ui/printdialog.ui:1129
msgctxt "printdialog|pagespersheettxt"
msgid "Pages:"
-msgstr ""
+msgstr "Pages :"
#: vcl/uiconfig/ui/printdialog.ui:1172
msgctxt "printdialog|label3"
msgid "Page Layout"
-msgstr ""
+msgstr "Mise en page"
#: vcl/uiconfig/ui/printdialog.ui:1195
msgctxt "printdialog|generallabel"
msgid "General"
-msgstr ""
+msgstr "Standard"
#: vcl/uiconfig/ui/printdialog.ui:1219
msgctxt "printdialog|customlabel"
diff --git a/source/fr/wizards/messages.po b/source/fr/wizards/messages.po
index 2b94488b65f..e018133fef4 100644
--- a/source/fr/wizards/messages.po
+++ b/source/fr/wizards/messages.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2017-10-09 16:08+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-24 21:43+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507565319.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558734180.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -145,17 +145,17 @@ msgstr "Étiquette9"
#: wizards/com/sun/star/wizards/common/strings.hrc:58
msgctxt "RID_LETTERWIZARDDIALOG_START_3"
msgid "~Business Letter"
-msgstr ""
+msgstr "~Lettre professionnelle"
#: wizards/com/sun/star/wizards/common/strings.hrc:59
msgctxt "RID_LETTERWIZARDDIALOG_START_4"
msgid "~Formal Personal Letter"
-msgstr ""
+msgstr "~Lettre privée officielle"
#: wizards/com/sun/star/wizards/common/strings.hrc:60
msgctxt "RID_LETTERWIZARDDIALOG_START_5"
msgid "~Personal Letter"
-msgstr ""
+msgstr "Lettre ~privée"
#: wizards/com/sun/star/wizards/common/strings.hrc:61
msgctxt "RID_LETTERWIZARDDIALOG_START_6"
@@ -195,7 +195,7 @@ msgstr "~Adresse de l'expéditeur dans la fenêtre de l'enveloppe"
#: wizards/com/sun/star/wizards/common/strings.hrc:68
msgctxt "RID_LETTERWIZARDDIALOG_START_13"
msgid "Letter signs"
-msgstr ""
+msgstr "Symboles littéraux"
#: wizards/com/sun/star/wizards/common/strings.hrc:69
msgctxt "RID_LETTERWIZARDDIALOG_START_14"
@@ -490,22 +490,22 @@ msgstr "À bientôt"
#: wizards/com/sun/star/wizards/common/strings.hrc:133
msgctxt "RID_LETTERWIZARDROADMAP_START_1"
msgid "Page Design"
-msgstr ""
+msgstr "Modèle de page"
#: wizards/com/sun/star/wizards/common/strings.hrc:134
msgctxt "RID_LETTERWIZARDROADMAP_START_2"
msgid "Letterhead Layout"
-msgstr ""
+msgstr "Mise en page de l'en-tête"
#: wizards/com/sun/star/wizards/common/strings.hrc:135
msgctxt "RID_LETTERWIZARDROADMAP_START_3"
msgid "Printed Items"
-msgstr ""
+msgstr "Éléments imprimés"
#: wizards/com/sun/star/wizards/common/strings.hrc:136
msgctxt "RID_LETTERWIZARDROADMAP_START_4"
msgid "Recipient and Sender"
-msgstr ""
+msgstr "Destinataire et expéditeur"
#: wizards/com/sun/star/wizards/common/strings.hrc:137
msgctxt "RID_LETTERWIZARDROADMAP_START_5"
@@ -515,7 +515,7 @@ msgstr "Pied de page"
#: wizards/com/sun/star/wizards/common/strings.hrc:138
msgctxt "RID_LETTERWIZARDROADMAP_START_6"
msgid "Name and Location"
-msgstr ""
+msgstr "Nom et adresse"
#: wizards/com/sun/star/wizards/common/strings.hrc:141
msgctxt "RID_FAXWIZARDDIALOG_START_1"
@@ -640,7 +640,7 @@ msgstr "Pour créer un autre fax à partir du modèle, sélectionnez le modèle
#: wizards/com/sun/star/wizards/common/strings.hrc:165
msgctxt "RID_FAXWIZARDDIALOG_START_25"
msgid "Template name:"
-msgstr ""
+msgstr "Nom du modèle :"
#: wizards/com/sun/star/wizards/common/strings.hrc:166
msgctxt "RID_FAXWIZARDDIALOG_START_26"
@@ -740,7 +740,7 @@ msgstr "Tél :"
#: wizards/com/sun/star/wizards/common/strings.hrc:185
msgctxt "RID_FAXWIZARDDIALOG_START_45"
msgid "Email:"
-msgstr ""
+msgstr "Courriel :"
#: wizards/com/sun/star/wizards/common/strings.hrc:186
msgctxt "RID_FAXWIZARDDIALOG_START_46"
@@ -855,12 +855,12 @@ msgstr "Mes amitiés"
#: wizards/com/sun/star/wizards/common/strings.hrc:216
msgctxt "RID_FAXWIZARDROADMAP_START_1"
msgid "Page Design"
-msgstr ""
+msgstr "Modèle de page"
#: wizards/com/sun/star/wizards/common/strings.hrc:217
msgctxt "RID_FAXWIZARDROADMAP_START_2"
msgid "Items to Include"
-msgstr ""
+msgstr "Éléments à inclure"
#: wizards/com/sun/star/wizards/common/strings.hrc:218
msgctxt "RID_FAXWIZARDROADMAP_START_3"
@@ -875,7 +875,7 @@ msgstr "Pied de page"
#: wizards/com/sun/star/wizards/common/strings.hrc:220
msgctxt "RID_FAXWIZARDROADMAP_START_5"
msgid "Name and Location"
-msgstr ""
+msgstr "Nom et adresse"
#: wizards/com/sun/star/wizards/common/strings.hrc:223
msgctxt "RID_AGENDAWIZARDDIALOG_START_1"
@@ -1085,7 +1085,7 @@ msgstr "Mon modèle d'agenda"
#: wizards/com/sun/star/wizards/common/strings.hrc:264
msgctxt "RID_AGENDAWIZARDDIALOG_START_43"
msgid "An error occurred while saving the agenda template."
-msgstr ""
+msgstr "Une erreur s'est produite lors de l'enregistrement du modèle d'agenda."
#: wizards/com/sun/star/wizards/common/strings.hrc:265
msgctxt "RID_AGENDAWIZARDDIALOG_START_44"
@@ -1115,17 +1115,17 @@ msgstr "Cliquez ici pour remplacer ce texte"
#: wizards/com/sun/star/wizards/common/strings.hrc:270
msgctxt "RID_AGENDAWIZARDDIALOG_START_50"
msgid "Page Design"
-msgstr ""
+msgstr "Modèle de page"
#: wizards/com/sun/star/wizards/common/strings.hrc:271
msgctxt "RID_AGENDAWIZARDDIALOG_START_51"
msgid "General Information"
-msgstr ""
+msgstr "Informations générales"
#: wizards/com/sun/star/wizards/common/strings.hrc:272
msgctxt "RID_AGENDAWIZARDDIALOG_START_52"
msgid "Headings to Include"
-msgstr ""
+msgstr "En-têtes à inclure"
#: wizards/com/sun/star/wizards/common/strings.hrc:273
msgctxt "RID_AGENDAWIZARDDIALOG_START_53"
@@ -1135,17 +1135,17 @@ msgstr "Noms"
#: wizards/com/sun/star/wizards/common/strings.hrc:274
msgctxt "RID_AGENDAWIZARDDIALOG_START_54"
msgid "Agenda Items"
-msgstr ""
+msgstr "Points de l'ordre du jour"
#: wizards/com/sun/star/wizards/common/strings.hrc:275
msgctxt "RID_AGENDAWIZARDDIALOG_START_55"
msgid "Name and Location"
-msgstr ""
+msgstr "Nom et adresse"
#: wizards/com/sun/star/wizards/common/strings.hrc:276
msgctxt "RID_AGENDAWIZARDDIALOG_START_56"
msgid "An error occurred while opening the agenda template."
-msgstr ""
+msgstr "Une erreur s'est produite lors de l'ouverture du modèle d'agenda."
#: wizards/com/sun/star/wizards/common/strings.hrc:277
msgctxt "RID_AGENDAWIZARDDIALOG_START_57"
diff --git a/source/fr/wizards/source/resources.po b/source/fr/wizards/source/resources.po
index c950826e087..f861d7b130f 100644
--- a/source/fr/wizards/source/resources.po
+++ b/source/fr/wizards/source/resources.po
@@ -4,17 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2017-12-10 18:22+0000\n"
-"Last-Translator: jumbo444 <Laurent.Balland-Poirier@laposte.net>\n"
+"PO-Revision-Date: 2019-05-24 21:43+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\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"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512930120.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558734194.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -4206,7 +4206,7 @@ msgctxt ""
"RTErrorDesc\n"
"property.text"
msgid "An error has occurred in the wizard."
-msgstr ""
+msgstr "Une erreur s'est produite dans l'assistant."
#: resources_en_US.properties
msgctxt ""
diff --git a/source/fy/cui/messages.po b/source/fy/cui/messages.po
index d99ee30627c..20d38212f4f 100644
--- a/source/fy/cui/messages.po
+++ b/source/fy/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-04-21 12:28+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-31 11:50+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\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: 1555849729.000000\n"
+"X-POOTLE-MTIME: 1559303449.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Fier in jildich adres yn foar in tema of syk kritearia."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Gjin rânen ynstelle"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Allinne bûtenste rânen ynstelle"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Bûtenste rânen en horizontale linen ynstelle"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Bûtenste rânen en alle binnenste linen ynstelle"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Bûtenste rânen ynstelle sûnder de binnenste linen te feroarjen"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Allinne diagonale linen ynstelle"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Alle fjouwer rânen ynstelle"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Allinne lofter- en rjochterrâne ynstelle"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Allinne boppe- en ûnderrâne ynstelle"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Allinne lofterrâne ynstelle"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Boppe en ûnderrânen ynstelle en ek al de binnenste linen"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Lofter en rjochter rânen en alle binnenste rânen ynstelle"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Gjin skaad"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Skaad rjochtsûnder folle litte"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Skaad rjochtsboppe folle litte"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Skaad loftsûnder folle litte"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Skaad linksboppe folle litte"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Undertekene troch: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Alle triemmen"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Registrearre gegevensbank"
@@ -1746,13 +1741,13 @@ msgstr "Registrearre gegevensbank"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME kin triemmen, d't mei CMIS bewarre binne op eksterne tsjinners, iepenje en bewarje."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr ""
+msgstr "Ark > AutoKorreksje > AutoKorreksje opsjes… >Ferfangen jout in list mei faaks foarkommende ferfangingen. Sjoch der ris nei en folje it oan mei jo eigen ferfangingen."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Ynfo oer %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Tanksi_zzing"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Webstee"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Bou ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Locale: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "UI taal: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Sjoch loch: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME is in moderne, maklik te brûken, iepen boarne produktiviteitssuite foar tekstferwurking, rekkenblêden, presintaasjes en mear."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 LibreOffice bydragers."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice is basearre op OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME is ôfleit fan LibreOffice hokker basearre is op OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Dizze útjefte wurde levere troch %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Ferfange"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Ferfan_ge"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Troch:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Allinne tekst"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimale wurd lingte"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Eigenskippen"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL-adres:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "R_amt:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Namme:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternative _tekst:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Beskriuwing:"
@@ -9019,80 +9179,80 @@ msgstr "\"Gjin help help sûnder ferbining ynstallearre\" popup sjen litte"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME dialoochskerm br_ûke"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialoochskerm Iepenje/Bewarje"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME _dialoochskerm brûke"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialoochskerm printsje"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printsje set de tastân op \"dokumint feroare\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumint tastân"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Ynterpretearren as jierren tusken "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "en "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jier (twa sifers)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Gegevens brûkme fersamelje en stjoer it nei The Dokument Foudation ta"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help %PRODUCTNAME te ferbetterjen"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME lade as it systeem úteinset"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Fluchstarter op systeembalke ynskeakelje"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Fluchstarter"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Foar ynstallearre tema"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Eigen tema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Firefox tema lade"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Of, selektearje fan de tema's dy't fia tafoegingen ynstallearre binne:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox tema's"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Feiligens opsjes"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Firefox tema selektearje"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Sykopdracht of adres"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "K_ategory:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstrakt"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Barren"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Mode"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film en TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Frije dei"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musyk"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natuer"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Oare"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Lânskip"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Seizoen"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Effen"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sporten"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Websteeën"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Mooglikheden"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/fy/extensions/messages.po b/source/fy/extensions/messages.po
index 4d9500ad703..d7b47392386 100644
--- a/source/fy/extensions/messages.po
+++ b/source/fy/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-21 12:31+0000\n"
"Last-Translator: Berend Ytsma <berendy@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: 1555849889.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Kolomyndieling foar tabel “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Koarte namme"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Skriuwer(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Utjouwer"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Haadstik"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Bewurker"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Jier"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tite_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dres"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Si_de(n)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ut_jefte"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Boektitel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Folume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Publikaasje t_ype"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_saasje"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Yns_telling"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versiteit"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Ra_pport type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Moanne"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Dei_boek"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Ta_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_ries"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "N_otysje"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Notysje"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL-adres"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Brûker fjild _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Brûker fjild _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Brûker fjild _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Brûker fjild _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Brûker fjild _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Kolomnammen"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Fier in namme yn foar de nije gegevenstype:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Fjilden keppelje"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suggestje"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Sub formulieren kinne brûkt wurde om detaillearre ynformaasje sjen te litten oer it aktive record fan it haadformulier. Dit kinne jo dwaan troch oan te jaan hokker kolommen yn it sub formulier en it haadfomulier oerienmomme."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "lebel"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "lebel"
diff --git a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
index 7dda7924b05..63e2cf36e1e 100644
--- a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fy/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-10 17:28+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 11:41+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\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: 1557509286.000000\n"
+"X-POOTLE-MTIME: 1559302882.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Tabel stilen"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Mear fjilden"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Diagram regenerearje"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Ljepper"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Groepearre"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Sin selektearje"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/fy/sc/messages.po b/source/fy/sc/messages.po
index 917ee1a4425..822eae66a2f 100644
--- a/source/fy/sc/messages.po
+++ b/source/fy/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 11:39+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 11:43+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\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: 1557661177.000000\n"
+"X-POOTLE-MTIME: 1559303000.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(eksklusive tagong)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "Gjin neamde berikken beskikber yn it selektearre dokumint"
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,13 +15775,13 @@ msgstr "Opmaak mei betingst beheare"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Berik"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
-msgstr ""
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Earste kondysje"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Gegevens formulier"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Slute"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nij record"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nij"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Wiskje"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Ferhelje"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Foarich record"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Folg_jend record"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Slute"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Live gegevensstream"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL-adres:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Fier it URL-adres fan it boarne dokumint yn de lokale triem systeem of ynternet hjir yn."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Blêdzje..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Databank berik:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Gegevens ferskaffer:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Tekst om te sykjen:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Boarne gegevens stream"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultaten nei:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Ynfier berik beheine ta wiere gegevens ynhâld"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Gegevens"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolommen"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rigen"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Groepearre troch"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Tuskenskoft:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parameters"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Triem"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "De rânen fan de selektearre sellen oantsjutte."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Ynsprong fergrutsje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Ynsprong ferlytsje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "T_hús"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Thús"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fjil_d"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ynfoegje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ynfoegje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Yndieling"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objekt rjochting"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Yndieling"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistiken"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Gegevens"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Gegevens"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Resinsje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Resinsje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Werjefte"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Byld"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ofbyldin_g"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ofbyldin~g"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tekenje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tekenje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Printsje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Printsje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulier"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ark"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Ark"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Sykresultaten"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "_Dit dialoochskerm sjen litte"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "It dialoochskerm wer ynskeakelje yn Ark > Opsjes > Kalk > Byld"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Blêd"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Sel"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Ynhâld"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Oersicht tekens"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "Gearfetting fa_n 't sykjen"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Finster"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Roaster linen:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Kleur:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Sjen litte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Op kleurde sellen sjen litte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Ferbergje"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Side einen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Helplinen by it _ferpleatsen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Fisuele helpmiddels"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jekten/ôfbyldingen:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diag_rammen:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Tekenobjekten:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Sjen litte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Ferbergje"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Sjen litte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Ferbergje"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Sjen litte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Ferbergje"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekten"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Rekkenblêden syngronisearje"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoom"
diff --git a/source/fy/scp2/source/ooo.po b/source/fy/scp2/source/ooo.po
index ace68b90842..4f495d08a79 100644
--- a/source/fy/scp2/source/ooo.po
+++ b/source/fy/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-05-10 17:28+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-31 11:43+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\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: 1557509294.000000\n"
+"X-POOTLE-MTIME: 1559303016.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Dokumint iepenje"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (Feilige modus)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/fy/scp2/source/winexplorerext.po b/source/fy/scp2/source/winexplorerext.po
index e5e45a7d2f0..e2042654bfd 100644
--- a/source/fy/scp2/source/winexplorerext.po
+++ b/source/fy/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-04-20 08:39+0000\n"
"Last-Translator: Berend Ytsma <berendy@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: 1524213540.000000\n"
#: module_winexplorerext.ulf
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Mei help hjirfan kin Microsoft Windows Verkenner ynformaasje oer %PRODUCTNAME dokuminten sjen litte, lykas miniatuerôfbyldingen."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/fy/sd/messages.po b/source/fy/sd/messages.po
index 5b7921c66e0..64d47c6fd99 100644
--- a/source/fy/sd/messages.po
+++ b/source/fy/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-10 17:29+0000\n"
"Last-Translator: Berend Ytsma <berendy@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: 1557509396.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Klik om de ferwizing te iepenjen: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Namme HTML ûntwerp"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Triem"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Triem"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Thús"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Thús"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fjil_d"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ynfoegje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ynfoegje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Side"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Side"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Resinsje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Resinsje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Werjefte"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Byld"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omsette"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ofbyldin_g"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ofbyldin~g"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tekenje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tekenje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulier"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ark"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "A~rk"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Foarmen sjen litte"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Triem"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Triem"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "T_hús"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Thús"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Fjil_d"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ynfoegje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ynfoegje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "D_ia"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "~Dia"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Dia foarstelling"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "D~ia foarstelling"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Resinsje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Resinsje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Werjefte"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Werjefte"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omsette"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ofbyldin_g"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ofbyldin~g"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tekenje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tekenje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulier"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ark"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "A~rk"
diff --git a/source/fy/sfx2/messages.po b/source/fy/sfx2/messages.po
index 480275460c1..f4532697106 100644
--- a/source/fy/sfx2/messages.po
+++ b/source/fy/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-05-10 17:28+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 11:44+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\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: 1557509307.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559303072.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " J: %1 M: %2 D: %3 O: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Eigenskip wiskje"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"De ynfierde wearde komt net oerien mei it oantsjutte type.\n"
"De wearde sil as tekst bewarre wurde."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Styl bestiet al. Oerskriuwe?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Weromsette"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Dizze namme wurdt al brûkt."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Dizze styl bestiet net."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Dizze styl kin net brûkt wurde as basis styl,\n"
"omdat der in krús ferwizing ûntstean soe."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Namme bestiet al as standert styl.\n"
"Kies in oare namme."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"As jo dizze stilen wiskje, sil de tekst de standert styl krije?\n"
"Wolle jo dizze stilen wiskje?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stilen yn brûkme: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Ferkearde befêstiging fan wachtwurd"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Ferstjoere"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Lettertype"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Foarbylden sjen litte"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Ferzje taljochting besjen"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(gjin namme setten)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Styl list"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierargysk"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Foljen opmaak modus"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nije styl fan seleksje"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Stilen aksje"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Styl fernije"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Wolle jo it opnimme ôfbrekke? Alle stappen opnaam oant no ta, sille ferlern gean."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Opnimmen ôfbrekke"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "De sjabloanen wurde taret foar it earste brûkme."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Gjin standert printer fûn.\n"
"Kies in printer en besykje nochris."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Printer kin net start wurde.\n"
"Kontrolearje de printer ynstellingen."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Printer is dwaande"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (allinne lêzen)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Wolle jo de nije ynstellingen oernimme\n"
"yn it aktive dokumint?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Wolle jo de nije ynstellingen oernimme\n"
"yn it aktive dokumint?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Wolle jo de nije ynstellingen oernimme\n"
"yn it aktive dokumint?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"It dokumint kin op it stuit net sluten wurde omdat\n"
" in opdracht fan printsjen noch dwaande is."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Kontrolearje de ynstellingen fan %PRODUCTNAME of dy fan jo e-post programma."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Flater koade is $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Flater by it ferstjoeren fan e-post"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "It dokumint kin net iepene wurde op te bewurkjen, mooglik om ûntbrekkend foech. Wolle jo in kopy fan it dokumint bewurkje?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Jo kine ek besykje de skoatteling te negearje en de triem te iepenjen om it te bewurkjen."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "~Kopy iepenje"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Iepenje"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (ferholpen dokumint)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "It dokumint is net ôfmeld fan de tsjinner."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Help ús om %PRODUCTNAME noch better te meitsjen!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Wurd belutsen"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Jo donaasjes stypje ús wrâldwide mienskip."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Donearje"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Jo ha ferzje %PRODUCTVERSION fan %PRODUCTNAME foar it earst te rinnen. Wolle jo witte wat der nij is?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Utjefte notysjes"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dit dokumint is iepen yn allinne lêze modus."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Dizze PDF is iepene yn allinne lêze modus sadat de besteande triem ûndertekene kin wurde."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "De klassifikaasje lebel fan dit dokumint is %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Dit dokumint moat klassifisearre wurde foardat it klamboerd plakt kin wurde."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Dit dokumint hat in legere klassifikaasje nivo dan it klamboerd."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Nivo"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nasjonale feiligens:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Bestjoeringelemint eksportearje:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Check out"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Dokumint bewurkje"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Dokumint ûndertekenje"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dit dokumint hat in ûnjildige ûndertekening."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "De ûndertekening is jildich, mar it dokumint is feroare"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "De ûndertekening is Okee, mar it sertifikaat koe net ferifiearre wurde."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "De ûndertekening is Okee, mar it dokumint is mar foar in diel ûndertekene."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "It sertifikaat kin net ferifiearre wurde en it dokumint is mar foar in part ûndertekene."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dit dokumint is digitaal ûndertekene en de ûndertekening is jildich."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Undertekeningen sjen litte"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Paniel slute"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Fêstsette"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Los meitsje"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Mear opsjes"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sydbalke slute"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Sydbalke ynstellingen"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Oanpasse"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Standert ferhelje"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Sydbalke slute"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bijekoer"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blauwe bôge"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blaudruk plannen"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Helderblau"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klassyk read"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Boskfûgel"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Ynspiraasje"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ljochten"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Oerfloedich grien"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Nachtblau"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natuer yllustraasje"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Poatlead"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Avensaasje"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sinneûndergong"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Yntinsyf"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Gearfetting"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standert"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modern saaklike brief sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modern saaklike brief serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Nammekaartsje mei logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Wiskje"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alles wiskje"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wachtwurd lingte"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "It wachtwurd dat jo ynfierd ha, feroarsaket ynteroperabiliteit swierrigens. Fier in wachtwurd yn dat koarter is dan 52 bytes of langer dan 55 bytes."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Ferzje taljochting:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Namme"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Type"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Wearde"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ja"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nee"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Ei_genskip taheakje"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Namme"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Wearde"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Lokaasje:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Type:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Wachtwurd _feroarje"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Sjabloan:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Eigenskippen fan “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Algemien "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Beskriuwing"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Oanpaste eigenskippen"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS eigenskippen"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Befeiliging"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Dit produkt is makke troch %OOOVENDOR, basearre op OpenOffice.org, dat is Copyright 2000, 2011 Oracle en/of har dochterûndernimming. %OOOVENDOR is tankber foar alle leden fan de mienskip, sjoch http://www.libreoffice.org/ foar mear ynformaasje."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/fy/shell/messages.po b/source/fy/shell/messages.po
new file mode 100644
index 00000000000..8e4b090a496
--- /dev/null
+++ b/source/fy/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-31 11:45+0000\n"
+"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: fy\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559303123.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Dokumint iepenje"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Jo iepenje it dokumint\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Wolle jo it iepenje om te besjen of te bewurkjen?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Werjefte"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Bewurkje"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Ofbrekke"
diff --git a/source/fy/starmath/messages.po b/source/fy/starmath/messages.po
index ba6de32ef51..e9606710966 100644
--- a/source/fy/starmath/messages.po
+++ b/source/fy/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-10 19:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Foarbylden"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standert"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Skeanprinte"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Fet"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "swart"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blau"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "grien"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "read"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyaan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "griis"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "Limoen"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kastanjebrûn"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "navyblau"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliifgrien"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "pears"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silver"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "grienblau"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "giel"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ferbergje"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "grutte"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "letterype"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "links"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Sintraal"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "rjochts"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Kommado's"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formule"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokumint wurdt bewarre..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formule"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FLATER : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Unferwachts teken"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Unferwachts teken"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' ferwacht"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' ferwacht"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' ferwacht"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' ferwacht"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Linker en rjochter symboalen komme net oerien"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', of 'serif' ferwacht"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'grutte' folge troch in ûnferwachte teken"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dûbele rjochting is net tastean"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dûbele boppe-/ûnderskriuwen is net tastien"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' ferwacht"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Kleur fereaske"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RJOCHTS' ferwacht"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Ynhâld"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formule tekst"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Râ~nen"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Grutte"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "O~rizjinele grutte"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Oanpasse oan ~side"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skale"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Eleminten"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/fy/svtools/messages.po b/source/fy/svtools/messages.po
index 0b33bba6059..276df5c488a 100644
--- a/source/fy/svtools/messages.po
+++ b/source/fy/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-10 17:31+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-14 11:41+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557509476.000000\n"
+"X-POOTLE-MTIME: 1557834073.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Ungedien meitsje: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Op 'e nij ~dwaan: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Werhelje: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Net opmakke tekst"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Net opmakke tekst (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap ôfbylding (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Grafyske apparaat ynterfaasje meta triem (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Opmakke tekst (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Opmakke tekst (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME Tekening yndieling"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmap/animation (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Tastân ynformaasje fan Svx ynterne keppeling"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Keppeling (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape blêdwizer"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server opmaak"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Start objekt opmaak"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet objekt"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Ynstekker objekt"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 objekt"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 objekt"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 objekt"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 objekt"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 objekt"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 objekt"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 objekt"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StartDraw objekt"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 objekt"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 objekt"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 objekt"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc objekt"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 objekt"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 objekt"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart objekt"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 objekt"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage objekt"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 objekt"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 objekt"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath objekt"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 objekt"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 objekt"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObjekt Paint objekt"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripte HyperText Markup Language (ynfâldige HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange yndieling 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange yndieling 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE keppeling)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word objekt"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet objekt"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office dokumint objekt"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notysjes dokumint ynformaasje"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokumint"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Ofbylding objekt"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer objekt"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web objekt"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master objekt"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw objekt"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress objekt"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc objekt"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart objekt"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math objekt"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows meta triem"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Gegevensboarne objekt"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Gegevensboarne tabel"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL query"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dialoochskerm"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Keppeling"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML opmaak sûnder taljochtingen"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % koe net ynfoege wurde."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt fan triem % koe net ynfoege wurde."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Oare objekten"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Unbekende boarne"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Namme"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Grutte"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Feroare op"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Type"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Rige: %1, Kolom: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Type: %1, URL-adres: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Map"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Triem"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Leech fjild"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeryk"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normaal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Tekenset"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Wurdboek"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Streek"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unykoade"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Tillefoanboek"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetysk (alfanumeryk earst)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetysk (alfanumeryk lêst)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeryk"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Wurdboek"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikaal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Streek"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetysk (alfanumeryk earst, groepearre neffens lettergrepen)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetysk (alfanumeryk earst, groepearre neffens bylûden)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetysk (alfanumeryk lêst, groepearre neffens lettergrepen)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetysk (alfanumeryk lêst, groepearre neffens bylûden)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Hjoed"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Gjint"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Licht"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Licht skeanprinte"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Algemien"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Skeanprinte"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Fet"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Fet skeanprinte"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Swart"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Swart skeanprinte"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Boek"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Fet skean"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Fersmelle"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Fersmelle fet"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Fersmelle fet skeanprinte"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Fersmelle fet skean"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Fersmelle skeanprinte"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Fersmelle skeanprinte"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ekstra licht"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstra licht skeanprinte"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Skeanprinte"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semy fet"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semy fet skeanprinte"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Dit lettertype sil brûkt wurde foar sawol jo printer as jo skerm."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Dit is in printer lettertype. De werjefte op it skerm kin ôfwike."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Dizze lettertype styl sil simulearre wurde of de meast yn de buert kommende styl sil brûkt wurde."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Dizze lettertype is net ynstallearre. It tichteby beskikber lettertype sil brûkt wurde."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Blêdzje..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Ferpleats nei begjin"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Ferpleats nei links"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Ferpleats nei rjochts"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Ferpleats nei ein"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Taheakje"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontale liniaal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Fertikale liniaal"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bits drompelwearde"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit roastere"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bits griiswearde"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bits kleur"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bits griiswearde"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bits kleur"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bits wiere kleur"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "De ôfbylding brûkt ûngefear %1 KB ûnthâld."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "De ôfbylding hat ûngefear %1 KB fan ûnthâld nedich en de triem grutte is %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "De triem grutte is %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "poarte"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Oare CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Klear"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Skoftet"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Wachtsjen op wiskjen"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Dwaande"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Tarieden"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Wachtsje"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Opwaarmje"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Ferwurkjen"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Printe"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Net ferbûn"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Flater"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Unbekende tsjinner"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papier klem"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Gjin papier"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Sels papier ynfiere"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papier swierrigens"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktyf"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Postfak út is fol"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Leech toner stân"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Gjin toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Side wiskje"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Yngripen troch brûker needsaak"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Net genôch ûnthâld"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Kap iepen"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Enerzjybesparring modus"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standert printer"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokuminten"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Foltôgje"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Folgjende >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Foari~ge"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Stappen"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<gjint>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Bedriuw"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Ofdieling"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Foarnamme"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Namme"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Strjitte"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Lân"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postkoade"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Wenplak"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posysje"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Oanhef"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inisjalen"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Slotformule"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefoan privee"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefoan wurk"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-post"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL-adres"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notysje"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Brûker 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Brûker 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Brûker 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Brûker 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provinsje"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefoan kantoar"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Semifoan"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Bûstillefoan"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Oare telefoan"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalinder"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Utnûgje"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME fereasket in Java runtime environment (JRE) foar it útfieren fan dizze taak. Ynstallearje in JRE en werstart %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME fereasket in %BITNESS-bit Java runtime environment (JRE) foar it útfieren fan dizze taak. Ynstallearje in JRE en werstart %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME fereasket Oracle's Java Development Kit (JDK) op Mac OS X 10.10 of heger foar it útfieren fan dizze taak. Ynstallearje dizze werstart %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "De ynstellingen fan %PRODUCTNAME binne feroare. Under %PRODUCTNAME - Foarkar - %PRODUCTNAME - Avansearre, selektearje jo de Java runtime environment dy't jo troch %PRODUCTNAME brûke wolle."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "De ynstellingen fan %PRODUCTNAME binne feroare. Under Ark - opsjes - %PRODUCTNAME - Avansearre, selektearje jo de Java runtime environment dy't jo troch %PRODUCTNAME brûke wolle."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME fereasket in Java Runtime environment (JRE) foar it útfieren fan dizze taak. De selektearre JRE is defekt. Selektearje in oare ferzje of ynstallearje in nije JRE en selektearje dizze ûnder %PRODUCTNAME - Foarkar - %PRODUCTNAME - Avansearre."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME fereasket in Java Runtime environment (JRE) foar it útfieren fan dizze taak. De selektearre JRE is defekt. Selektearje in oare ferzje of ynstallearje in nije JRE en selektearje dizze ûnder Ark - Opsjes - %PRODUCTNAME - Avansearre."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE Fereaske"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE selektearje"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Defekte JRE"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Boarne koade"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Blêdwizer triem"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Ofbyldingen"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfiguraasje triem"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Programma"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Gegevensbank tabel"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systeem triem"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word dokumint"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Help triem"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokumint"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Argyf triem"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Lochboek triem"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice gegevensbank"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 haad dokumint"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice byld"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekst triem"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Keppeling"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 sjabloan"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel dokumint"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel sjabloan"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch triem"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Triem"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Map"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekst dokumint"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Rekkenblêd"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presintaasje"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tekening"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokumint"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Haad dokumint"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formule"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Gegevensbank"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 rekkenblêd sjabloan"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 tekenjen sjabloan"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 presintaasje sjabloan"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 tekstdokumint sjabloan"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokaal stasjon"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskette stasjon"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Kompaktskiif stasjon"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Netwurk ferbining"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint dokumint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint sjabloan"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Ms PowerPoint presintaasje"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 Formule"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Diagram"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Tekening"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Rekkenblêd"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 Presintaasje"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Tekstdokumint"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 haad dokumint"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokumint"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument gegevensbank"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Tekening"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formule"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Haad dokumint"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument presintaasje"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Rekkenblêd"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Tekst"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Rekkenblêd sjabloan"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Tekening sjabloan"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Presintaasje sjabloan"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Tekst sjabloan"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Tafoeging"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell staveringshifker"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen keppelteken"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes synonimenlist"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "List mei negearre wurden"
@@ -4127,7 +4129,7 @@ msgstr "Iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Ingelsk (Zambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/fy/svx/messages.po b/source/fy/svx/messages.po
index bc5df4f2942..badadef8150 100644
--- a/source/fy/svx/messages.po
+++ b/source/fy/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 11:40+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-31 11:47+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\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: 1557661236.000000\n"
+"X-POOTLE-MTIME: 1559303255.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Links nei rjochts (fertikaal)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Under-nei-boppe, links-nei-rjochts (fertikaal)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Part nûmer:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Diel tekst:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Ljochtboarne 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Ljocht 1 kleur"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Ljocht 2 kleur"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Ljocht 3 kleur"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Ljocht 4 kleur"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Ljocht 5 kleur"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Ljocht 6 kleur"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Ljocht 7 kleur"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Ljocht 8 kleur"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "De fertikale ferskowing persintaazje oantsjutte fan ôf it midden foar de kleurferrin skaad styl. 50% is it horizontale midden."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Kontoeren bewurkje"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Tapasse"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Wurkromte"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Selektearje"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rjochthoeke"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellips"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygoan"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Punten bewurkje"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Punten ferpleatsen"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Punten ynfoegje"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Punten wiskje"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoOmtrek"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Ungedien meitsje "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Op 'e nij dwaan"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipet"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Kleur tolerânsje"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Fuottekst"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ImageMap bewurker"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Tapasse"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Iepenje..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Bewarje..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Slute"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Selektearje"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rjochthoeke"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellips"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygoan"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Frije foarm polygoan"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Punten bewurkje"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Punten ferpleatsen"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Punten ynfoegje"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Punten wiskje"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Ungedien meitsje "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Op 'e nij dwaan"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktyf"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Eigenskippen..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adres:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Ramt:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekst:"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME stiet no yn de feilige modus hokker tydlik jo brûkers ynstellingen en tafoegingen sil útskeakelje.\n"
+"\n"
+"Jo kinne ien of mear fan de folgjende feroaringen oan jo brûkers profyl dwaan om nei in wurkbere tastân fan %PRODUCTNAME werom te kearen."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/fy/sw/messages.po b/source/fy/sw/messages.po
index fcd462ecadb..9520d8a9ee6 100644
--- a/source/fy/sw/messages.po
+++ b/source/fy/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\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: 1557661640.000000\n"
+"X-POOTLE-MTIME: 1559303263.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3096,7 +3096,7 @@ msgid "Change object title of $1"
msgstr "Titel fan objekt $1 feroarje"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Beskriuwing fan objekt $1 feroarje"
@@ -7657,7 +7657,7 @@ msgstr "Teken"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Standert"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -11988,147 +11988,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Triem"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "T_hús"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Thús"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ynfoegje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ynfoegje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Yndieling"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Yndieling"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Ferwizing_en"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referinsje~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Resinsje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Resinsje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Werjefte"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Werjefte"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ofbyldin_g"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ofbyldin~g"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tekenje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tekenje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Printsje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Printsje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulier"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ark"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "A~rk"
@@ -12138,155 +12138,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Triem"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Triem"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "T_hús"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Thús"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Ynfoegje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Ynfoegje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Omrinne"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Yndieling"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Yndieling"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Ferwizing_en"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Referinsje~s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Resinsearje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Resinsje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Werjefte"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Byld"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abel"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Ofbylding"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Ofbyldin~g"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Te_kenje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Tekenje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Printsje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Printsje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulier"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmulier"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ark"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "A~rk"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12427,7 +12427,7 @@ msgstr "_Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "R_amt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12637,7 +12637,7 @@ msgstr "_Media"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13350,8 +13350,8 @@ msgstr "Fergrutsje de wurd romte yn rigels mei rigeleinen yn sels behear yn útf
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Formulier befeiligje"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13386,12 +13386,12 @@ msgstr "Kompatibiliteit opsjes foar “%DOCNAME”"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:166
msgctxt "optcompatpage|globalcompatoptions"
msgid "Reorganize Forms menu to have it MS compatible"
-msgstr ""
+msgstr "Formulier menu organisearje sadat it MS kompatibel is"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:184
msgctxt "optcompatpage|label2"
msgid "Global compatibility options"
-msgstr ""
+msgstr "Globale kompatibiliteits opsjes"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -14915,7 +14915,7 @@ msgstr "Privee tillefoannûmer"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:265
msgctxt "privateuserpage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Faksnûmer"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:282
msgctxt "privateuserpage|email-atkobject"
@@ -15504,12 +15504,12 @@ msgstr "De selektearre triem befettet mear dan ien tabel. Selektearje de tabel m
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:139
msgctxt "selecttabledialog|column1"
msgid "Name"
-msgstr ""
+msgstr "Namme"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:152
msgctxt "selecttabledialog|column2"
msgid "Type"
-msgstr ""
+msgstr "Type"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:179
msgctxt "selecttabledialog|preview"
@@ -16089,7 +16089,7 @@ msgstr "Horizontaal"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Fertikaal (fan boppe nei ûnderen)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
msgctxt "tabletextflowpage|liststore1"
@@ -16099,7 +16099,7 @@ msgstr "De ynstellingen fan it hegere objekt brûke"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:301
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Fertikaal (fan ûnderen nei boppe)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:322
msgctxt "tabletextflowpage|headline"
@@ -16374,7 +16374,7 @@ msgstr "Side styl"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:71
msgctxt "templatedialog8|standard"
msgid "Standard"
-msgstr ""
+msgstr "Standert"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:166
msgctxt "templatedialog8|organizer"
@@ -16631,47 +16631,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Ynhâldsopjefte, yndeks of literatuerlist"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Foarbyld"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Foarbyld"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Type"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Ynstjoeringen"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stilen"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Kolommen"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Eftergrûn"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Foarbyld"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Nivo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Type"
@@ -16901,302 +16901,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Bewurkje..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Type:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Ynhâldsopjefte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Alfabetyske yndeks"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Tabel fan figueren"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Tabellen register"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Brûker fêststeld"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tabel mei objekten"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Literatuerlist"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Befeilige tsjin feroaringen mei de hân"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Soarte en titel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Foar:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Hiele dokumint"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Haadstik"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evaluearje ta nivo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Yndeks fan ynhâldopjefte meitsje"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Oersicht"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Yndeks markearringen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabellen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Te_kst ramten"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Ofbyldingen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE objekten"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Nivo út oarspronklik haadstik brûke"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Oanfoljende stilen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stil_en"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Stilen tawize..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Byskriften"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objekt nammen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategory:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Werjaan:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Ferwizingen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategory en nûmer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Byskrift tekst"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Oanmeitsje út"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Oanmeitsje út de folgjende objekten"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Heakjes:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Items _nûmerje"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[gjint]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Items opmeitje"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Identike items kombinearje"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Identike items mei _e.v. kombinearje"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Kombinearje mei -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Haadlettergefoelich"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Items automatysk mei haadletter"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Kaai as ekstra item"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Konkordânsje triem"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Triem"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opsjes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Taal:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Kaai type:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sortearje"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Nivo's"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Alinea _stilen"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Standert"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Bewurkje"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Tawizing"
@@ -17249,17 +17249,17 @@ msgstr "Werjaan"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:223
msgctxt "viewoptionspage|hiddentextfield"
msgid "Hidden te_xt"
-msgstr ""
+msgstr "Ferburgen te_kst"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:237
msgctxt "viewoptionspage|hiddenparafield"
msgid "Hidden p_aragraphs"
-msgstr ""
+msgstr "Fe_rburgen alinea's"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:257
msgctxt "viewoptionspage|fieldslabel"
msgid "Display fields"
-msgstr ""
+msgstr "Fjilden werjaan"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:301
msgctxt "viewoptionspage|smoothscroll"
diff --git a/source/fy/vcl/messages.po b/source/fy/vcl/messages.po
index 764316289bf..e59e481df4b 100644
--- a/source/fy/vcl/messages.po
+++ b/source/fy/vcl/messages.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-05 11:28+0000\n"
+"PO-Revision-Date: 2019-05-31 11:47+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554463693.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559303229.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -977,17 +977,17 @@ msgstr "Leech fjild"
#: vcl/inc/strings.hrc:147
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
-msgstr ""
+msgstr "Dei"
#: vcl/inc/strings.hrc:148
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
-msgstr ""
+msgstr "Wike"
#: vcl/inc/strings.hrc:149
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
-msgstr ""
+msgstr "Hjoed"
#. To translators: This is the first entry of a sequence of measurement unit names
#: vcl/inc/units.hrc:28
@@ -1520,7 +1520,7 @@ msgstr "Fier jo ferifikaasje gegevens yn foar de tsjinner “%s”"
#: vcl/uiconfig/ui/cupspassworddialog.ui:145
msgctxt "cupspassworddialog|label1"
msgid "_Domain:"
-msgstr ""
+msgstr "_Domein:"
#: vcl/uiconfig/ui/editmenu.ui:12
msgctxt "editmenu|undo"
@@ -1705,12 +1705,12 @@ msgstr "Printer"
#: vcl/uiconfig/ui/printdialog.ui:540
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
-msgstr ""
+msgstr "_Alle siden"
#: vcl/uiconfig/ui/printdialog.ui:556
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
-msgstr ""
+msgstr "_Siden:"
#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|pagerange"
@@ -1720,47 +1720,47 @@ msgstr "bgl.: 1, 3-5, 7, 9"
#: vcl/uiconfig/ui/printdialog.ui:587
msgctxt "printdialog|rmEvenPages"
msgid "_Even pages"
-msgstr ""
+msgstr "_Even siden"
#: vcl/uiconfig/ui/printdialog.ui:605
msgctxt "printdialog|rbOddPages"
msgid "_Odd pages"
-msgstr ""
+msgstr "_Uneven siden"
#: vcl/uiconfig/ui/printdialog.ui:625
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
-msgstr ""
+msgstr "P_rint berik:"
#: vcl/uiconfig/ui/printdialog.ui:650
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
-msgstr ""
+msgstr "Papier _siden:"
#: vcl/uiconfig/ui/printdialog.ui:677
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
-msgstr ""
+msgstr "_Tal kopyen:"
#: vcl/uiconfig/ui/printdialog.ui:701
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
-msgstr ""
+msgstr "Printsje yn _omkearde oarder"
#: vcl/uiconfig/ui/printdialog.ui:722
msgctxt "printdialog|collate"
msgid "_Collate"
-msgstr ""
+msgstr "_Steapelje"
#: vcl/uiconfig/ui/printdialog.ui:758
msgctxt "printdialog|cbPrintOrder"
msgid "_Order:"
-msgstr ""
+msgstr "_Oarder:"
#: vcl/uiconfig/ui/printdialog.ui:780
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
-msgstr ""
+msgstr "_Seleksje"
#: vcl/uiconfig/ui/printdialog.ui:828
msgctxt "printdialog|label2"
diff --git a/source/fy/wizards/messages.po b/source/fy/wizards/messages.po
index 624356ed039..789bad4c842 100644
--- a/source/fy/wizards/messages.po
+++ b/source/fy/wizards/messages.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-04-05 11:29+0000\n"
+"PO-Revision-Date: 2019-05-31 11:48+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554463782.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559303304.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -1085,7 +1085,7 @@ msgstr "Myn aginda sjabloan"
#: wizards/com/sun/star/wizards/common/strings.hrc:264
msgctxt "RID_AGENDAWIZARDDIALOG_START_43"
msgid "An error occurred while saving the agenda template."
-msgstr ""
+msgstr "Der barde in flater by it bewarjen fan it aginda sjabloan."
#: wizards/com/sun/star/wizards/common/strings.hrc:265
msgctxt "RID_AGENDAWIZARDDIALOG_START_44"
@@ -1145,7 +1145,7 @@ msgstr "Namme en lokaasje"
#: wizards/com/sun/star/wizards/common/strings.hrc:276
msgctxt "RID_AGENDAWIZARDDIALOG_START_56"
msgid "An error occurred while opening the agenda template."
-msgstr ""
+msgstr "Der barde in flater by it iepenjen fan it aginda sjabloan."
#: wizards/com/sun/star/wizards/common/strings.hrc:277
msgctxt "RID_AGENDAWIZARDDIALOG_START_57"
diff --git a/source/fy/wizards/source/resources.po b/source/fy/wizards/source/resources.po
index eefdf3dcadf..a5e59e3a0f5 100644
--- a/source/fy/wizards/source/resources.po
+++ b/source/fy/wizards/source/resources.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2018-05-10 19:43+0000\n"
+"PO-Revision-Date: 2019-05-31 11:48+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525981412.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559303313.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -4206,7 +4206,7 @@ msgctxt ""
"RTErrorDesc\n"
"property.text"
msgid "An error has occurred in the wizard."
-msgstr ""
+msgstr "Der barde in flater yn de assistint."
#: resources_en_US.properties
msgctxt ""
diff --git a/source/ga/cui/messages.po b/source/ga/cui/messages.po
index 252a6aeebfa..d173e0975be 100644
--- a/source/ga/cui/messages.po
+++ b/source/ga/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-03-20 13:48+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Cuir isteach seoladh bailí do théama nó téarma cuardaigh."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Ná Socraigh Imlínte"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Scoraigh Imlíne Amuigh Amháin"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Socraigh Imlíne Amuigh agus Línte Cothrománacha"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Socraigh Imlíne Amuigh agus Gach Líne Istigh"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Socraigh Imlíne Amuigh ach Ná hAthraigh Línte Istigh"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Socraigh Línte Trasnánacha Amháin"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Socraigh gach ceann de na ceithre imlíne"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Socraigh Imlínte Ar Chlé/Dheis Amháin"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Socraigh Imlínte ag an mBarr/mBun Amháin"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Socraigh an Imlíne ar Chlé Amháin"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Socraigh Imlínte ag an mBarr/mBun, agus Gach Líne Istigh"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Socraigh Imlínte Ar Chlé/Dheis, agus Gach Líne Istigh"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Gan Scáth"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Cuir an Scáth chuig Bun an Deis"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Cuir an Scáth chuig Barr an Deis"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Cuir an Scáth chuig Bun an Chlé"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Cuir an Scáth chuig Barr an Chlé"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Sínithe ag: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Gach comhad"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Maidir le %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "A_dmhálacha"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Suíomh _Gréasáin"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Aitheantas an Leagain: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Logchaighdeán: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Teanga an chomhéadain: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Féach logchomhad: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "Is cnuasach soláimhsithe ríomhchlár táirgiúlachta, bunaithe ar fhoinse oscailte, é %PRODUCTNAME um próiseáil focal, scarbhileoga, cur i láthair agus tuilleadh a chur i gcrích."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2014 Rannpháirtithe LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "Bhí LibreOffice bunaithe ar OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "Tá %PRODUCTNAME bunaithe ar LibreOffice a bhí bunaithe ar OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Is táirge de chuid %OOOVENDOR é seo."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Ionadaigh"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "I_onadaigh"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Le:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Téacs amháin"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Fad Íosta Focal"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Airíonna"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "F_ráma:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Ai_nm:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Téacs mar mhalairt:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Cur Síos:"
@@ -9019,80 +9179,80 @@ msgstr "Taispeáin preabfhuinneog \"Níl cabhair as líne suiteáilte\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Cabhair"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ú_sáid dialóga %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialóga Oscail/Sábháil"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ú_sáid dialóga %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialóga Priontála"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Socraíonn _priontáil an stádas \"cáipéis athraithe\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stádas na Cáipéise"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Léigh mar bhliain idir "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "agus "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Bliain (Dhá Dhigit)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Bailigh sonraí úsáide agus seol chuig The Document Foundation iad"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Cabhraigh linn %PRODUCTNAME a fheabhsú"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Luchtaigh %PRODUCTNAME i rith thosú an chórais"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Cumasaigh an meardhúisire i dtráidire an chórais"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Meardhúisire %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Téama Réamhshuiteáilte"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Mo Phearsantacht Féin"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Lódáil téama Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Nó, roghnaigh ceann de na Téamaí a shuiteáiltear trí eisínteacht:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Pearsantachtaí Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Roghanna Slándála"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Roghnaigh Téama Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Téarma cuardaigh nó seoladh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ca_tagóir:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Teibí"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Cúiseanna"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Faisean"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Scannáin agus Teilifís"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Laethanta Saoire"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Ceol"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Nádúr"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Eile"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Radharc Tíre"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Séasúrach"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Soladach"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Spórt"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Suímh Ghréasáin"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Mór-le-Rá"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ga/extensions/messages.po b/source/ga/extensions/messages.po
index 9ec02e25711..b4967d550bc 100644
--- a/source/ga/extensions/messages.po
+++ b/source/ga/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-05 22:09+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Leagan Amach na gColún - Tábla “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Ainm _gearr"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Úd_a(i)r"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Foilsitheoir"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Caibidil"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Eagarthóir"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Cineál"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Bliain"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Teidea_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Seola_dh"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Leathanai_gh"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "_Eagrán"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Teideal an lea_bhair"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Imleabhar"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Cineál _foilseacháin"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Eagra_s"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "I_nstitiúid"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Oll_scoil"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Cineál _tuairisce"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mí"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Iris"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Uimh_ir"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "S_raith"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "A_nótáil"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nóta"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Réimse Saincheaptha _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Réimse Saincheaptha _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Réimse Saincheaptha _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Réimse Saincheaptha _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Réimse Saincheaptha _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Ainmneacha na gColún"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Cuir ainm ar an gcineál nua sonraí:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Nasc réimsí"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Mol"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Is féidir fofhoirmeacha a úsáid le mionsonraí maidir le taifead reatha na máistirfhoirme a thaispeáint. Chuige seo, is féidir leat na colúin san fhofhoirm atá ar aon dul le colúin sa phríomhfhoirm a shonrú."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "lipéad"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "lipéad"
diff --git a/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
index 578021b5ab4..0e94f4e2eab 100644
--- a/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-07 16:11+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: \n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Tuilleadh Réimsí"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "I gCluaisíní"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Barra Grúpáilte"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ga/sc/messages.po b/source/ga/sc/messages.po
index a52fe0b1be3..870b0bcb396 100644
--- a/source/ga/sc/messages.po
+++ b/source/ga/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-20 13:54+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15226,6 +15226,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(rochtain eisiach)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15779,12 +15784,12 @@ msgstr "Bainistigh Formáidiú Coinníollach"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17002,81 +17007,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Foirm Sonraí"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Dún"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Taifead Nua"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nua"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Scrios"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Athchóirigh"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "An Taifead _Roimhe Seo"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "An _Chéad Taifead Eile"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Dún"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Sruthanna Sonraí Beo"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Cuir isteach URL na cáipéise foinsí anseo, sa chóras comhaid áitiúil nó ar an Idirlíon."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Brabhsáil..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Raon Bhunachair Sonraí:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Soláthraí Sonraí:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Teaghrán Cuardaigh:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Sruth Foinseach"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18792,32 +18757,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Torthaí go:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Sonraí"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Colúin"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rónna"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Grúpáilte de réir"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Eatramh:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Paraiméadair"
@@ -18957,167 +18927,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Cab_hair"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Comhad"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Roghnaigh imlínte na gceall roghnaithe."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Méadaigh an tEangú"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Laghdaigh an tEangú"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Baile"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Baile"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Réimse"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ionsáigh"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ionsáigh"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Leagan Amach"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Leagan Amach"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Staitisticí"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Sonraí"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Sonraí"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Athbhreithniú"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Athbhreithniú"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Amharc"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Amharc"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ío_mhá"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ío~mhá"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Réad"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Réad"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meáin"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meáin"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Priontáil"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Priontáil"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi_rm"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Uirlisí"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Uirlisí"
@@ -21598,17 +21570,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Torthaí Cuardaigh"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23478,107 +23460,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Si_ombailí imlíneacha"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Fuinneog"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Línte _greille:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Dath:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Taispeáin"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Taispeáin ar chealla dathaithe"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Folaigh"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Bristeacha leathanaigh"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Línte treoracha le linn _bogtha"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Áiseanna Amhairc"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Réa_da/Íomhánna:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Cai_rteacha:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Réada _líníochta:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Taispeáin"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Folaigh"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Taispeáin"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Folaigh"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Taispeáin"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Folaigh"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Réada"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_ioncronaigh na bileoga"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zúmáil"
diff --git a/source/ga/scp2/source/ooo.po b/source/ga/scp2/source/ooo.po
index 26e6b1842ff..eb6e9573a21 100644
--- a/source/ga/scp2/source/ooo.po
+++ b/source/ga/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-20 19:23+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: \n"
@@ -35,6 +35,14 @@ msgstr "Oscail Cáipéis"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ga/scp2/source/winexplorerext.po b/source/ga/scp2/source/winexplorerext.po
index 3386399c099..dda70d1c3d2 100644
--- a/source/ga/scp2/source/winexplorerext.po
+++ b/source/ga/scp2/source/winexplorerext.po
@@ -2,17 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: LO\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-11-19 16:30-0000\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 07:26+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: \n"
"Language: ga\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=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :(n>6 && n<11) ? 3 : 4;\\n\";\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369380396.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Ceadaíonn do Microsoft Windows Explorer faisnéis faoi cháipéisí %PRODUCTNAME a thaispeáint, mar shampla réamhamhairc bheaga."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ga/sd/messages.po b/source/ga/sd/messages.po
index 4f2ddb0db24..1c2011ea915 100644
--- a/source/ga/sd/messages.po
+++ b/source/ga/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-07 15:10+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Cliceáil chun an hipearnasc a oscailt: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Ainmnigh Dearadh HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Comhad"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Cab_hair"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Comhad"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Baile"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Baile"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Réimse"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ionsáigh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ionsáigh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Leathanach"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Leathanach"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Athbhreithniú"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Athbhreithniú"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Amharc"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Amharc"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "Té_acs"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "Té~acs"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tábla"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tábla"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Tiontaigh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ío_mhá"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ío~mhá"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Réad"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Réad"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meáin"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meáin"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi_rm"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Uirlisí"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Uirlisí"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Taispeáin Cruthanna"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Comhad"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Cab_hair"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Comhad"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Baile"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Baile"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Réimse"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ionsáigh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ionsáigh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "S_leamhnán"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "S~leamhnán"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Taispeántas _Sleamhnán"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Taispeántas ~Sleamhnán"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Athbhreithniú"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Athbhreithniú"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Amharc"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Amharc"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tábla"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tábla"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Tiontaigh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ío_mhá"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ío~mhá"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Réad"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Réad"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meáin"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meáin"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi_rm"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Uirlisí"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Uirlisí"
diff --git a/source/ga/sfx2/messages.po b/source/ga/sfx2/messages.po
index 9bd124e381c..ba1832f102d 100644
--- a/source/ga/sfx2/messages.po
+++ b/source/ga/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-07 15:25+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " B: %1 M: %2 L: %3 U: %4 N: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Bain an tAirí"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Níl an luach a cuireadh isteach comhoiriúnach don chineál roghnaithe.\n"
"Stórálfar an luach mar ghnáth-théacs."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Tá an stíl ann cheana. Forscríobh?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Athshoc~raigh"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Tá an t-ainm seo in úsáid cheana."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Níl an Stíl seo ann."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Ní féidir an stíl seo a úsáid mar bhunstíl,\n"
"toisc go mbeadh tagairt athchúrsach ann."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Tá an t-ainm ann cheana mar Stíl réamhshocraithe.\n"
"Roghnaigh ainm eile le do thoil."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Dá scriosfá na stíleanna seo, d'fhillfeadh an téacs ar an máthairstíl.\n"
"An bhfuil tú cinnte gur mhaith leat na stíleanna seo a scriosadh?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stíleanna in úsáid: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Nascleantóir"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Dearbhú lochtach focail fhaire"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Seol"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Cló"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Taispeáin réamhamhairc"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Féach ar Nóta Leagain"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(níl ainm ann)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Liosta Stíleanna"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Ordlathach"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Mód Líonta Formáide"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Stíl Nua ón Roghnúchán"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Gnímh Stíleanna"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Nuashonraigh an Stíl"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "An bhfuil tú cinnte gur mian leat an taifeadadh a chealú? Caillfidh tú aon chéimeanna a taifeadadh go dtí seo."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Cealaigh an Taifeadadh"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Tá na teimpléid á dtúsú le húsáid den chéad uair."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Níl aon phrintéir réamhshocraithe agat.\n"
"Roghnaigh printéir agus triail arís, le do thoil."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Níorbh fhéidir an printéir a thosú.\n"
"Seiceáil cumraíocht do phrintéara."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Printéir gnóthach"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (inléite amháin)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"An bhfuil fonn ort na socruithe nua a shábháil\n"
"sa cháipéis reatha?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Ar cheart na socruithe nua a shábháil\n"
"sa cháipéis reatha?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"An bhfuil fonn ort na socruithe nua a shábháil\n"
"sa cháipéis reatha?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Ní féidir an cháipéis a dhúnadh toisc\n"
" go bhfuil jab priontála ar bun."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Seiceáil socruithe %PRODUCTNAME nó socruithe do chláir ríomhphoist."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Cód earráid: $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Earráid agus ríomhphost á sheoladh"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Ní féidir an cháipéis a chur in eagar; is dócha nach bhfuil cead rochtana agat. An bhfuil fonn ort cóip den cháipéis a chur in eagar?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Nó is féidir leat neamhaird a dhéanamh den ghlas agus an cháipéis a oscailt lena cur in eagar."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Oscail ~Cóip"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Oscail"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (cáipéis deisithe)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Níl an cháipéis seo seiceáilte amach ar an bhfreastalaí."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Cabhraigh linn feabhas a chur ar %PRODUCTNAME!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Glac páirt"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Tacaíonn do chuid sintiúis lenar gcomhphobal domhanda."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Tabhair sintiús"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Cáipéis oscailte i mód inléite amháin."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Osclaíodh an PDF seo i mód inléite amháin chun ligean duit an comhad atá ann a shíniú."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Is é %1 an lipéad aicmithe ar an gcáipéis seo."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Caithfear an cháipéis a aicmiú sular féidir leat an ghearrthaisce a ghreamú."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Tá leibhéal aicmithe na cáipéise seo níos ísle ná an ghearrthaisce."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Leibhéal"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Slándáil Náisiúnta:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Smacht ar Easpórtáil:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Seiceáil Amach"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Cuir an Cháipéis in Eagar"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Sínigh an Cháipéis"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Tá síniú neamhbhailí ar an gcáipéis seo."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Bhí an síniú bailí, ach athraíodh an cháipéis"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Tá an síniú ceart go leor, ach níorbh fhéidir an teastas a dheimhniú."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Tá an síniú ceart go leor, ach níl an cháipéis sínithe go hiomlán."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Níorbh fhéidir an teastas a bhailíochtú, agus níl an cháipéis ach leathshínithe."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Tá an cháipéis seo sínithe go digiteach agus tá an síniú bailí."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Taispeáin na Sínithe"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Dún an Pána"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Cuir i nDuga"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Tóg as Duga"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Níos Mó Roghanna"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Dún an Barra Taoibh"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Socruithe an Bharra Taoibh"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Saincheapadh"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Fill ar na Réamhshocruithe"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Dún an Barra Taoibh"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Coirceog"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Cuar Gorm"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Gormchló"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Gealghorm"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Dearg Galánta"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fócas"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Éan coille"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspioráid"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Soilse"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Glas Méith"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Ceannchathair"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Gorm an Mheán Oíche"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Léaráid Nádúir"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Peann Luaidhe"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Pianó"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Punann"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Dul chun cinn"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Luí Gréine"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Seanlaethanta"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Gléineach"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Résumé"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Réamhshocrú"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Nua-Aimseartha"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Litir ghnó nua-aimseartha, sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Litir ghnó nua-aimseartha, serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cárta gnó le lógó"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Bain"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Glan Uile"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Fad an fhocail faire"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Is cúis le fadhbanna comh-inoibritheachta é an focal faire a chuir tú isteach. Ba chóir duit focal faire níos giorra ná 52 beart nó níos faide ná 55 beart a roghnú."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Nóta leagain:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Ainm"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Cineál"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Luach"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Cineál"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Tá"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Níl"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Cuir _Airí Leis"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Ainm"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Cineál"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Luach"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Suíomh:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Cineál:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Athraigh _Focal Faire"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Teimpléad:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Airíonna “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Ginearálta "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Cur Síos"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Airíonna Saincheaptha"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Airíonna CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Slándáil"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Chruthaigh %OOOVENDOR an táirge seo, bunaithe ar OpenOffice.org, Cóipcheart 2000, 2011 Oracle agus/nó a chleamhnaithe. Aithníonn %OOOVENDOR an comhphobal ar fad, féach ar http://www.libreoffice.org/ chun tuilleadh eolais a fháil."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ga/shell/messages.po b/source/ga/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ga/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ga/starmath/messages.po b/source/ga/starmath/messages.po
index e26614c136b..9be76cd856d 100644
--- a/source/ga/starmath/messages.po
+++ b/source/ga/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Samplaí"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Caighdeánach"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cló Iodálach"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Trom"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "dubh"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "gorm"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "uaine"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "dearg"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cian"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "maigeanta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "liath"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "líoma"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marún"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "dúghorm"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "dath na holóige"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "corcra"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "airgead"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "gormghlas"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "buí"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "folaigh"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "méid"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "cló"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ar chlé"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "sa lár"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ar dheis"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Orduithe"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Foirmle"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Cáipéis á sábháil..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Foirmle %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "EARRÁID : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Carachtar gan choinne"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Teaghrán comharthach gan súil leis"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Bhíothas ag súil le '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Bhíothas ag súil le '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Bhíothas ag súil le '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Bhíothas ag súil le ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Siombailí ar chlé agus ar dheis mí-oiriúnaithe"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Bhíothas ag súil le 'fixed', 'sans', nó 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Teaghrán comharthach gan súil leis tar éis 'size'"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Ní cheadaítear ailíniú dúblach"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Ní cheadaítear foscripteanna/forscripteanna dúbailte"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Bhíothas ag súil le '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Dath de dhíth"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Bhíothas ag súil le 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Inneachar"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Teideal"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Téacs na ~foirmle"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Im~línte"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Méid"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Bun~mhéid"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Laghdaigh go dtí an ~leathanach"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Scálú"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Eilimintí"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ga/svtools/messages.po b/source/ga/svtools/messages.po
index c2302ae9c10..8718fc5c253 100644
--- a/source/ga/svtools/messages.po
+++ b/source/ga/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-20 13:43+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1553089414.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Cealaigh: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Athdhéan: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "A~rís: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Téacs neamhfhormáidithe"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Téacs neamhfhormáidithe (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Mapa Giotán (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Meiteachomhad Graphics Device Interface (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formáid líníochta %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Eolas Stádais ó Nasc Inmheánach Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Nasc %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Leabharmharc Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formáid Star server"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formáid Star object"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Réad Feidhmchláirín"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Réad Breiseáin"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Réad StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Réad StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Réad StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Réad StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Réad StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Réad StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Réad StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Réad StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Réad StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Réad StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Réad StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Réad StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Réad StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Réad StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Réad StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Réad StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Réad StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Réad StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Réad StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Réad StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Réad StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Réad StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Réad StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Réad StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Hypertext Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (nasc DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Réad Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Réad StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Réad cáipéise Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Faisnéis na cáipéise nótaí"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Cáipéis Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Réad StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Réad Grafaice"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Réad Writer ó OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Réad Writer/Web ó OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Réad Writer/Master ó OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Réad Draw ó OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Réad Impress ó OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Réad Calc ó OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Réad Chart ó OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Réad Math ó OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Meiteachomhad Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Réad foinse sonraí"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tábla foinse sonraí"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Iarratas SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialóg OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Nasc"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formáid HTML gan nótaí"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Níorbh fhéidir an réad % a ionsá."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Níorbh fhéidir an réad ón chomhad % a ionsá."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Réada breise"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Foinse anaithnid"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Ainm"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Méid"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Dáta athraithe"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Cineál"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Beart"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "kB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ró: %1, Colún: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Cineál: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Fillteán"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Comhad"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Réimse Folamh"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfa-Uimhriúil"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Gnáth"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Tacar carachtar"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Foclóir"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stríoc"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Fréamh"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Leabhar teileafóin"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foghrach (alfa-uimhriúil ar dtús)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foghrach (alfa-uimhriúil ar deireadh)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfa-Uimhriúil"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Foclóir"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Fréamh"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stríoc"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foghrach (alfa-uimhriúil ar dtús, grúpáilte de réir siollaí)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foghrach (alfa-uimhriúil ar dtús, grúpáilte de réir consan)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foghrach (alfa-uimhriúil ar deireadh, grúpáilte de réir siollaí)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foghrach (alfa-uimhriúil ar deireadh, grúpáilte de réir consan)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Inniu"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Tada"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Éadrom"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Cló Iodálach Éadrom"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Gnách"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cló Iodálach"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Trom"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Iodálach Trom"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Dubh"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Iodálach Dubh"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Leabhar"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Trom Fiar"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Comhdhlúite"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Comhdhlúite Trom"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Comhdhlúite Trom Iodálach"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Comhdhlúite Trom Fiar"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Comhdhlúite Iodálach"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Comhdhlúite Fiar"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "An-Éadrom"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "An-Éadrom Iodálach"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Fiar"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Leath-throm"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Leath-throm Iodálach"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Úsáidfear an cló céanna ar do phrintéir agus ar do scáileán."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Is cló printéara í seo. Seans go mbeidh an íomhá ar an scáileán difriúil."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Insamhlófar an stíl cló seo nó úsáidfear an stíl is gaire di."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Níl an cló seo suiteáilte. Úsáidfear an cló is gaire dó."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Brabhsáil..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Bog go dtí an Baile"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Bog Faoi Chlé"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Bog Faoi Dheis"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Bog go dtí an Deireadh"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Cuir Leis"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Rialóir Cothrománach"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Rialóir Ingearach"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Tairseach 1 ghiotáin"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Díodánach 1-ghiotán"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Liathscála 4-ghiotán"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Dath 4-ghiotán"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Liathscála 8-ngiotán"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Dath 8-ngiotán"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Fíordhath 24-giotán"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Tá thart ar %1 KB cuimhne ag teastáil le haghaidh an íomhá seo."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Tá thart ar %1 KB cuimhne ag teastáil le haghaidh an íomhá seo; %2 KB méid an chomhaid."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "%1 KB méid an chomhaid."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "óstríomhaire"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "CMIS Eile"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Réidh"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Sos"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Ag feitheamh le scriosadh"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Gafa"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Á Thúsú"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Ar Feitheamh"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Á théamh"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Á Phróiseáil"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Á Phriontáil"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "As Líne"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Earráid"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Freastalaí Anaithnid"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Tranglam páipéir"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Níl go leor páipéar ann"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Fotha láimhe"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Fadhb le páipéar"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/A gníomhach"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Bosca aschur lán"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tonóir gann"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Gan tonóir"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Scrios Leathanach"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Idirghabháil úsáideora de dhíth"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Cuimhne easnamhach"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Cumhdach oscailte"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mód sábhála cumhachta"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Printéir réamhshocraithe"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d cáipéis"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Críochnaigh"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Ar Aghaidh >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Siar"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Céimeanna"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<gan luach>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Comhlacht"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Roinn"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ainm"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Sloinne"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Sráid"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Tír"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Cód Poist"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Cathair"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Teideal"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Post"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Beannú"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Túslitreacha"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Beannú deiridh dea-mhéine"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Fón: Baile"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Fón: Obair"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Ríomhphost"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nóta"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Úsáideoir 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Úsáideoir 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Úsáideoir 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Úsáideoir 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Aitheantas"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Stát"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Fón: Oifig"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Glaoire"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Fón Póca"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Fón: Eile"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Féilire"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Tabhair cuireadh"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Tá timpeallacht amrite Java (JRE) de dhíth ar %PRODUCTNAME chun an tasc seo a chur i gcrích. Déan suiteáil ar JRE agus atosaigh %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Tá timpeallacht amrite Java (JRE) %BITNESS-giotán de dhíth ar %PRODUCTNAME chun an tasc seo a chur i gcrích. Déan suiteáil ar JRE agus atosaigh %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "Tá an Java Development Kit (JDK) ó Oracle ar Mac OS X 10.10 nó níos déanaí ag teastáil ó %PRODUCTNAME chun an tasc seo a chur i bhfeidhm. Suiteáil é agus atosaigh %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Athraíodh cumraíocht %PRODUCTNAME. Faoi %PRODUCTNAME - Sainroghanna - %PRODUCTNAME - Casta, roghnaigh an timpeallacht amrite Java gur mian leat a bheith úsáidte ag %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Athraíodh cumraíocht %PRODUCTNAME. Faoi Uirlisí - Roghanna - %PRODUCTNAME - Casta, roghnaigh an timpeallacht amrite Java gur mian leat a bheith úsáidte ag %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Tá timpeallacht amrite Java (JRE) de dhíth ar %PRODUCTNAME chun an tasc seo a chur i gcrích. Ach tá fadhbanna leis an JRE roghnaithe. Roghnaigh leagan eile, nó déan suiteáil ar JRE nua agus roghnaigh faoi %PRODUCTNAME - Sainroghanna - %PRODUCTNAME - Casta é."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Tá timpeallacht amrite Java (JRE) de dhíth ar %PRODUCTNAME chun an tasc seo a chur i gcrích. Ach tá fadhbanna leis an JRE roghnaithe. Roghnaigh leagan eile, nó déan suiteáil ar JRE nua agus roghnaigh faoi Uirlisí - Roghanna - %PRODUCTNAME - Casta é."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE De Dhíth"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Roghnaigh JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE lochtach"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Bunchód"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Comhad leabharmharc"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafaic"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Comhad cumraíochta"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Feidhmchlár"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tábla bunachair sonraí"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Comhad córais"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Cáipéis Microsoft Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Comhad cabhrach"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Cáipéis HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Comhad cartlainne"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Logchomhad"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Bunachar Sonraí StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Máistircháipéis StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Íomhá StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Comhad Téacs"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Nasc"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Teimpléad StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Cáipéis Microsoft Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Teimpléad Microsoft Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Baisc-chomad"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Comhad"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Fillteán"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Cáipéis Téacs"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Scarbhileog"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Láithreoireacht"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Líníocht"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Cáipéis HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Máistircháipéis"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Foirmle"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Bunachar Sonraí"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Teimpléad Scarbhileoige OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Teimpléad Líníochta OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Teimpléad Láithreoireachta OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Teimpléad Cáipéise Téacs OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Tiomántán logánta"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Tiomántán diosca"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Tiomántán CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Ceangal líonra"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Cáipéis Microsoft PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Teimpléad Microsoft PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Seó Microsoft PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Foirmle OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Cairt OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Líníocht OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Scarbhileog OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Láithreoireacht OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Cáipéis Téacs OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Máistircháipéis OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Cáipéis MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Bunachar Sonraí OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Líníocht OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Foirmle OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Máistircháipéis OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Láithreoireacht OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Scarbhileog OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Téacs OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Teimpléad Scarbhileoige OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Teimpléad Líníochta OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Teimpléad Láithreoireachta OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Teimpléad Téacs OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Eisínteacht %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Litreoir Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Fleiscínitheoir Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Teasáras MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ga/svx/messages.po b/source/ga/svx/messages.po
index 818bf8ba842..179fc0dfbe6 100644
--- a/source/ga/svx/messages.po
+++ b/source/ga/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-07 15:46+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Clé-go-deas (ingearach)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Sonraigh an fritháireamh ingearach ón lár don scáthlíniú grádáin, mar chéatadán. Ciallaíonn 50% an lár ingearach."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Eagarthóir Comhriain"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Cuir i bhFeidhm"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Spás oibre"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Roghnaigh"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Dronuilleog"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Éilips"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polagán"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Cuir Pointí in Eagar"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Bog Pointí"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Ionsáigh Pointí"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Scrios Pointí"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Uath-chomhrian"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Cealaigh "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Athdhéan"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pípéad"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Lamháltas Datha"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Buntásc"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Eagarthóir Mapa Íomhá"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Cuir i bhFeidhm"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Oscail..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Sábháil..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Dún"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Roghnaigh"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Dronuilleog"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Éilips"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polagán"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Polagán Saorfhoirm"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Cuir Pointí in Eagar"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Bog Pointí"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Ionsáigh Pointí"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Scrios Pointí"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Cealaigh "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Athdhéan"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Gníomhach"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macra..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Airíonna..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Seoladh:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Fráma:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Téacs:"
diff --git a/source/ga/sw/messages.po b/source/ga/sw/messages.po
index eebe8ad6217..49432102705 100644
--- a/source/ga/sw/messages.po
+++ b/source/ga/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-03-07 16:04+0000\n"
"Last-Translator: Séamus Ó Ciardhuáin <sociardhuain@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3136,9 +3136,9 @@ msgid "Change object title of $1"
msgstr "Athraigh teideal réada $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Athraigh cur síos réada $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12028,147 +12028,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Cab_hair"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Comhad"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Baile"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Baile"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ionsáigh"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ionsáigh"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "~Leagan Amach"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Leagan Amach"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Tagai_rtí"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Tagai~rtí"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Athbhreithniú"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Athbhreithniú"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Amharc"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Amharc"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tábla"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tábla"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ío_mhá"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ío~mhá"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Réad"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Réad"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meáin"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meáin"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Priontáil"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Priontáil"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi_rm"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Uirlisí"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Uirlisí"
@@ -12178,152 +12178,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Comhad"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Ionsáigh"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Timfhill"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Leagan Amach"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Tagai_rtí"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Athbhreithniú"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Amharc"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Tábl_a"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Íomhá"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Ta_rraing"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Réad"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Meáin"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Priontáil"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Uirlisí"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13390,8 +13390,8 @@ msgstr "Fairsingigh spás focail ar línte le bristeacha líne de láimh in ailt
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Cosain an fhoirm"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16671,47 +16671,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Clár na nÁbhar, Innéacs, nó Leabharliosta"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Réamhamharc"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Réamhamharc"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Cineál"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Iontrálacha"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stíleanna"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Colúin"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Cúlra"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Réamhamharc"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Leibhéal"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Cineál"
@@ -16941,302 +16941,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Eagar..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Teideal:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Cineál:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Clár Ábhair"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Innéacs Aibítreach"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Tábla na Léaráidí"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Innéacs na dTáblaí"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Saincheaptha"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Innéacs na Réad"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Leabharliosta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Cosanta ar athruithe déanta de láimh"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Cineál agus Teideal"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Le haghaidh:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Cáipéis iomlán"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Caibidil"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Luacháil suas go dtí leibhéal:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Cruthaigh Innéacs nó Clár na nÁbhar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Imlíne"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Marcanna innéa_cs"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Táblaí"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Frámaí téa_cs"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafaic"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Réada OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Úsáid leibhéal ón chaibidil fhoinseach"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Stíleann_a breise"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stíl_eanna"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Sann stíleanna..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Foscríbhinní"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Ainmneacha réada"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Catagóir:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Taispeáin:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Tagairtí"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Catagóir agus Uimhir"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Téacs na Foscríbhinne"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Cruthaigh ó"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Cruthaigh as na réada seo a leanas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Lúi_bíní:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Io_ntrálacha uimhreach"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[gan lúibíní]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formáidiú na nIontrálacha"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Comhshnaidhm iontrálacha comhionanna"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Comhshnaidhm iontrálacha comhionanna le p nó _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Comhshnaidhm le -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Cásíogair"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Scríobh le ceannlitreacha go huathoibríoch"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Eochracha mar iontrálacha faoi leith"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Comhad _comhchordachta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Comhad"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Roghanna"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Teanga:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Cineál eochrach:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sórtáil"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Leibhéil"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Stíleanna Ailt"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Réamhshocrú"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Eagar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Sannadh"
diff --git a/source/gd/cui/messages.po b/source/gd/cui/messages.po
index 590a236aa8e..d04ea942a1e 100644
--- a/source/gd/cui/messages.po
+++ b/source/gd/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-04-27 22:17+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Cuir a-steach seòladh dligheach airson ùrlar no briathar-luirg."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "Chan eil API nan ùrlaran Mozilla ri fhaighinn an-dràsta fhèin."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Na suidhich iomaill"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Suidhich an t-iomall a-muigh a-mhàin"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Suidhich an t-iomall a-muigh 's loidhnichean còmhnard"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Suidhich an t-iomall a-muigh 's gach loidhne a-staigh"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Suidhich an t-iomall a-muigh gun na loidhnichean a-staigh atharrachadh"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Suidhich loidhnichean trastanach a-mhàin"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Suidhich gach aon dhe na ceithir iomaill"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Suidhich an iomall deis is an t-iomall clì a-mhàin"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Suidhich an iomall aig a’ bhàrr is an t-iomall aig a’ bhonn a-mhàin"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Suidhich an t-iomall clì a-mhàin"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Suidhich na h-iomaill aig a’ bhàrr ’s aig a’ bhonn agus gach loidhne a-staigh"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Suidhich an t-iomall clì is an t-iomall deis agus gach loidhne a-staigh"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Gun sgàil"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Tilg sgàil gun bhonn air an làimh dheis"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Tilg sgàil gun bhàrr air an làimh dheis"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Tilg sgàil gun bhonn air an làimh chlì"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Tilg sgàil gun bhàrr air an làimh chlì"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Air a shoidhneadh le: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "A h-uile faidhle"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Stòir-dhàta chlàraichte"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Mu %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Crei_deasan"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Làrach-lìn"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Sgeama ionadail: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Cànan na h-eadar-aghaidh: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Faic an loga: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "Tha %PRODUCTNAME 'na shreath phrògraman oifis a tha ùr-nòsach, furasta ri chleachdadh agus le còd fosgailte a bheir dhut comas teacsaichean a sgrìobhadh, cliath-dhuilleagan is taisbeanaidhean a chruthachadh is mòran a bharrachd."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Còir-lethbhreac © 2000–2019 com-pàirtichean LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "Bha LibreOffice stèidhichte air OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "Tha %PRODUCTNAME stèidhichte air LibreOffice a tha e fhèin stèidhichte air OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Chaidh am bathar seo a sholar le %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://gd.libreoffice.org/mu-libreoffice/creideisean/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Cui_r 'na àite"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Cuir 'na àite"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Le:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Teacsa a-mhàin"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Faid as lugha de dh'fhacal"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Roghainnean"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "F_rèama:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Ainm:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Rogh_ainn teacsa eile:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Tuairisgeul:"
@@ -9019,80 +9179,80 @@ msgstr "Seall a’ phriob-uinneag “Cha deach a’ chobhair far loidhne a stàl
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Cobhair"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Cle_achd còmhraidhean %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Còmhraidhean fosglaidh ⁊ sàbhalaidh"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Cleach_d còmhraidhean %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Còmhraidhean a' chlò-bhualaidh"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Suidhichidh an clò-bhualadh a' choir \"sgrìobhainn air atharrachadh\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Staid na sgrìobhainne"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Leugh mar àireamh de bhliadhna eadar "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "agus "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Bliadhna (dà fhigear)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Cruinnich dàta cleachdaidh is cuir gun Document Foundation e"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Cuidich leinn a’ leasachadh %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Luchdaich %PRODUCTNAME rè tòiseachadh an t-siostaim"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Cuir an grad-thòisiche an comas ann an treidhe an t-siostaim"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Grad-thòisiche %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Ùrlar ro-stàlaichte"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "An t-ùrlar agam fhìn"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Luchdaich ùrlar Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "No tagh ùrlar am measg na feadhainn a chaidh a stàladh slighe leudachain:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Ùrlaran Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Roghainnean tèarainteachd"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Tagh ùrlar Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Facal-luirg no seòladh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "_Roinn-seòrsa:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Gearr-chunntas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Adhbharan"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Fasan"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film is Tbh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Saor-làithean"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Ceòl"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Nàdar"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Eile"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Cruth-tìre"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Ràitheil"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Soladach"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Spòrs"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Làraichean-lìn"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Brosnaichte"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/gd/dbaccess/messages.po b/source/gd/dbaccess/messages.po
index d8f4a612661..e888a093358 100644
--- a/source/gd/dbaccess/messages.po
+++ b/source/gd/dbaccess/messages.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: 2019-04-24 18:25+0200\n"
-"PO-Revision-Date: 2019-04-23 00:43+0000\n"
+"PO-Revision-Date: 2019-05-24 11:34+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gd\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555980187.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558697649.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1597,7 +1597,7 @@ msgstr "Mearachd rè a chruthachaidh"
#: dbaccess/inc/strings.hrc:341
msgctxt "STR_UNEXPECTED_ERROR"
msgid "An error occurred. The operation could not be performed."
-msgstr ""
+msgstr "Thachair mearachd. Cha b’ urrainn dhuinn an gnìomh a thoirt gu buil."
#: dbaccess/inc/strings.hrc:342
msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
diff --git a/source/gd/extensions/messages.po b/source/gd/extensions/messages.po
index ffaf02d64e0..16bb4a90b95 100644
--- a/source/gd/extensions/messages.po
+++ b/source/gd/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-23 00:43+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555980222.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Co-dhealbhachd nan colbhan airson a’ chlàir “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Ainm goirid"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Ùghd_ar(an)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Foillsichear"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Caibideal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Deasaiche"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Seòrsa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Bliadhna"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tiotai_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Seòla_dh"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Duillea_g(an)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "T_ionndadh"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Tiotal an lea_bhair"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Iom-leabhar"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Seòrsa an _fhoillseachaidh"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Buid_heann"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Eagracha_s"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "_Oilthigh"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Seòrsa na _h-aithisge"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mìos"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Iris"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Co mhe_ud"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "S_reath"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Nòta_ichean"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nòta"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Raon air a shònrachadh le cleachdaiche _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Raon air a shònrachadh le cleachdaiche _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Raon air a shònrachadh le cleachdaiche _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Raon air a shònrachadh le cleachdaiche _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Raon air a shònrachadh le cleachdaiche _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Ainmean nan colbhan"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Cuir a-steach ainm ùr airson an t-seòrsa dàta ùr:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Ceangail na raointean"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Mol"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "'S urrainn dhut fo-fhoirmean a chleachdadh gus dàta mionaideach a shealltainn mu reacord làithreach a' phrìomh-fhoirm. Gus seo a dhèanamh, 's urrainn dhut sònrachadh dè na colbhan san fho-fhoirm a fhreagras ri colbhan san fhoirm mhaighstir."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "leubail"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "leubail"
diff --git a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
index 4bb283a6e73..088aefd5cf4 100644
--- a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gd/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-23 00:45+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-24 11:36+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
"Language: gd\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1555980355.000000\n"
+"X-POOTLE-MTIME: 1558697795.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -4173,7 +4173,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 1"
-msgstr ""
+msgstr "Cuideam 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 1 Cell Style"
-msgstr ""
+msgstr "Stoidhle cealla “Cuideam 1”"
#: CalcCommands.xcu
msgctxt ""
@@ -4200,7 +4200,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 2"
-msgstr ""
+msgstr "Cuideam 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4209,7 +4209,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 2 Cell Style"
-msgstr ""
+msgstr "Stoidhle cealla “Cuideam 2”"
#: CalcCommands.xcu
msgctxt ""
@@ -4227,7 +4227,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 3"
-msgstr ""
+msgstr "Cuideam 3"
#: CalcCommands.xcu
msgctxt ""
@@ -4236,7 +4236,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 3 Cell Style"
-msgstr ""
+msgstr "Stoidhle cealla “Cuideam 3”"
#: CalcCommands.xcu
msgctxt ""
@@ -4254,7 +4254,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 1"
-msgstr ""
+msgstr "Ceann-sgrìobhadh 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4263,7 +4263,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 1 Cell Style"
-msgstr ""
+msgstr "Stoidhle cealla “Ceann-sgrìobhadh 1”"
#: CalcCommands.xcu
msgctxt ""
@@ -4281,7 +4281,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 2"
-msgstr ""
+msgstr "Ceann-sgrìobhadh 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4290,7 +4290,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 2 Cell Style"
-msgstr ""
+msgstr "Stoidhle cealla “Ceann-sgrìobhadh 2”"
#: CalcCommands.xcu
msgctxt ""
@@ -4308,7 +4308,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bad"
-msgstr ""
+msgstr "Dona"
#: CalcCommands.xcu
msgctxt ""
@@ -4317,7 +4317,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bad Cell Style"
-msgstr ""
+msgstr "Stoidhle cealla dona"
#: CalcCommands.xcu
msgctxt ""
@@ -4335,7 +4335,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Error"
-msgstr ""
+msgstr "Mearachd"
#: CalcCommands.xcu
msgctxt ""
@@ -4344,7 +4344,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Error Cell Style"
-msgstr ""
+msgstr "Stoidhle cealla mearachdaich"
#: CalcCommands.xcu
msgctxt ""
@@ -23401,6 +23401,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Barrachd raointean"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25690,6 +25699,15 @@ msgstr "Tabaichte"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25708,6 +25726,15 @@ msgstr "Bàr buidhnichte"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/gd/sc/messages.po b/source/gd/sc/messages.po
index 92b1e8cdecc..1ad46487999 100644
--- a/source/gd/sc/messages.po
+++ b/source/gd/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-23 00:46+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15225,6 +15225,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(inntrigeadh aonaranach)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15778,12 +15783,12 @@ msgstr "Stiùirich am fòrmatadh cumhach"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17001,81 +17006,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Cruth an dàta"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Dùin"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Reacord ùr"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "Ù_r"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Sgua_b às"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Aisig"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "An _reacord roimhe"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "An ath rea_cord"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Dùin"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Sruthan dàta beò"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Cuir a-steach URL tùs an dàta san t-siostam fhaidhlichean ionadail no air an eadar-lìon an-seo."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Brabhsaich..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Rainse an stòir-dhàta:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Solaraiche an dàta:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Faclan luirg:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "An tùs-sruth"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18791,32 +18756,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Toraidhean gu:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Dàta"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Colbhan"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Ràghan"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Buidhnichte a-rèir"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Eadaramh:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Paramadairean"
@@ -18956,167 +18926,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Cobhair"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Faidhle"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Sònraich iomallan nan ceallan a thagh thu."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Meudaich an eag"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Lùghdaich an eag"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Dachaigh"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "D~hachaigh"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ra_on"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Cu_ir a-steach"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Cu~ir a-steach"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "Co-dhea_lbhachd"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Co-thaobhadh an oibseict"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Co-dhea~lbhachd"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Stadastaireachd"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dàta"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dàta"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Lèi_rmheas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Lèi~rmheas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Sealladh"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Sealladh"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "D_ealbh"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "D~ealbh"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Oibseact"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Oibseact"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meadhanan"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meadhanan"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Clò-bhuail"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Clò-bh~uail"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi~rm"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Innealan"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Innea~lan"
@@ -21597,17 +21569,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Toraidhean an luirg"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Siota"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Cealla"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Susbaint"
@@ -23477,107 +23459,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Samhlaidhean _oir-loidhneach"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Uinneag"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Loidhnichean a' ghriod:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Dath:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Seall"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Seall ann an ceallan dathte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Falaich"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Brisidhean na duilleige"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Loidh_nichean cuideachaidh nuair a ghluaisear rud"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Taic lèirsinneach"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Oibseactan/Dealbhan:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Cai_rtean:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Oibseactan _tarraing:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Seall"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Falaich"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Seall"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Falaich"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Seall"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Falaich"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Oibseactan"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_ioncronaich na siotaichean"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Sùm"
diff --git a/source/gd/scp2/source/ooo.po b/source/gd/scp2/source/ooo.po
index e754930eff3..32b1cd1ea94 100644
--- a/source/gd/scp2/source/ooo.po
+++ b/source/gd/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-22 23:19+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1555975140.000000\n"
@@ -36,6 +36,14 @@ msgstr "Open Document"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/gd/scp2/source/winexplorerext.po b/source/gd/scp2/source/winexplorerext.po
index 8ebb225d383..cd7d1a9f8c6 100644
--- a/source/gd/scp2/source/winexplorerext.po
+++ b/source/gd/scp2/source/winexplorerext.po
@@ -2,19 +2,20 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-06-06 18:25+0200\n"
-"Last-Translator: Michael <fios@akerbeltz.org>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:30+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Akerbeltz\n"
"Language: gd\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
+"X-POOTLE-MTIME: 1369351839.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +30,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Bheir seo comas do Microsoft Windows Explorer fiosrachadh a shealltainn mu sgrìobhainnean %PRODUCTNAME, leithid dealbhagan ro-sheallaidh."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/gd/sd/messages.po b/source/gd/sd/messages.po
index 02806ed581a..9858dd6d47b 100644
--- a/source/gd/sd/messages.po
+++ b/source/gd/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-23 00:38+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Briogadh gus ceangal-lìn fhosgladh: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Cuir ainm air an dealbhadh HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Faidhle"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Cob_hair"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Faidhle"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Dachaigh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "D~hachaigh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ra_on"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Cu_ir a-steach"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Cu~ir a-steach"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "Duille_ag"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Duilleag"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Lèi_rmheasan"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Lèi~rmheas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Sealladh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "Sealla~dh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_eacsa"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "Tẽacsa"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Clà_r"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "Clà~r"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Iompaich"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "D_ealbh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "D~ealbh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Tarrai~ng"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oibseact"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oibseact"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meadhanan"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meadhanan"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi~rm"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Innealan"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Innea~lan"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Seall na cruthan"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Faidhle"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Cobhair"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Faidhle"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Dachaigh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "D~hachaigh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ra_on"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Cu_ir a-steach"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Cu~ir a-steach"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "S_leamhnag"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "S~leamhnag"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Taisbeanadh _shleamhnagan"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Taisbeanadh ~shleamhnagan"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Lèi_rmheasan"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Lèi~rmheas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Sealladh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Sealladh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Clà_r"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Clà~r"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Iompaich"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "D_ealbh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "D~ealbh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oibseact"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oibseact"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meadhanan"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meadhanan"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi~rm"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Innealan"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Innea~lan"
diff --git a/source/gd/sfx2/messages.po b/source/gd/sfx2/messages.po
index ee9f73b4e07..5b33ad73f11 100644
--- a/source/gd/sfx2/messages.po
+++ b/source/gd/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-23 00:31+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555979477.000000\n"
#: include/sfx2/strings.hrc:25
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " B: %1 M: %2 L: %3 U: %4 M: %5 D: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Thoir air falbh an roghainn"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Chan eil na chuir thu a-steach a' freagairt ris an t-seòrsa\n"
"a bu chòir a bhith ann. Thèid an luach a stòradh mar theacsa."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Tha an stoidhle seo ann mu thràth. A bheil thu airson sgrìobhadh thairis air?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Ath-shuidhich"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Tha an t-ainm seo 'ga chleachdadh mu thràth."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Chan eil an stoidhle seo ann."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Chan urrainn dhut an stoidhle seo a chleachdadh mar stoidhle\n"
"bhunaiteach oir dh'adhbharaicheadh e reifreans ath-chùrsach."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Tha an t-ainm seo air stoidhle bhunaiteach\n"
"mu thràth. Saoil an tagh thu ainm eile?"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Ma sguabas tu na stoidhlean seo às, tillidh an teacsa gun stoidhle phàraint.\n"
"A bheil thu airson na stoidhlean a sguabadh às fhathast?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stoidhlean a tha 'gan cleachdadh: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Seòladair"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Dearbhadh lochdach an fhacail-fhaire"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Cuir"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Cruth-clò"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Seall ro-sheallaidhean"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Cuir a-steach beachd mun tionndadh"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(cha deach ainm a shuidheachadh)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Liosta nan stoidhlean"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Rangach"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Am modh lìonadh fòrmait"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Stoidhle ùr on taghadh"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Gnìomhan stoidhlean"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Ùraich an stoidhle"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "A bheil thu cinnteach gu bheil thu airson sgur dhen chlàradh? Thèid ceum sam bith a chlàraich thu gu ruige seo air chall."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Sguir dhen chlàradh"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Tha na teamplaidean 'gan ullachadh gus an cleachdadh a' chiad turas."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Cha deach clò-bhualadair bunaiteach a lorg.\n"
"Tagh clò-bhualadair is feuch ris a-rithist."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Cha b’ urrainn dhuinn an clò-bhualadair a thòiseachadh.\n"
"Cuir sùil air rèiteachadh a’ chlò-bhualadair agad."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Tha an clò-bhualadair trang"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ri leughadh a-mhàin)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"A bheil thu airson na roghainnean ùra a\n"
"shàbhaladh san sgrìobhainn bheò?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"A bheil thu airson na roghainnean ùra\n"
"a shàbhaladh san sgrìobhainn bheò?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"A bheil thu airson na roghainnean ùra a\n"
"shàbhaladh san sgrìobhainn bheò?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Cha ghabh an sgrìobhainn a dhùnadh a chionn\n"
"'s gu bheil obair clò-bhualaidh 'ga dhèanamh."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Thoir sùil air roghainnean %PRODUCTNAME no roghainnean a’ phrògraim phuist-d agad."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"’S e $1 còd na mearachd"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Mearachd a’ cur a’ phuist"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Cha ghabh an sgrìobhainn seo a dheasachadh, ma dh'fhaoidte air sgàth cead inntrigidh a tha a dhìth. A bheil thu airson lethbhreac dhen sgrìobhainn a dheasachadh 'na àite?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"’S urrainn dhut cuideachd a’ ghlas a leigeil seachad is am faidhle fhosgladh airson deasachadh."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Fosgail ~lethbhreac dheth"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "F~osgail"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (sgrìobhainn air a chàradh)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Cha deach an sgrìobhainn a sheacadh a-mach air an fhrithealaiche."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Cuidich leinn a’ dèanamh %PRODUCTNAME fiù nas fhearr!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Gabh pàirt"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Tha do thabhartasan a’ cumail taic ris a’ choimhearsnachd eadar-nàiseanta agad."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Thoir tabhartas"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Chaidh an sgrìobhainn fhosgladh sa mhodh leughaidh a-mhàin."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Chaidh am PDF seo fhosgladh sa mhodh ri leughadh a-mhàin ach an gabh am faidhle làithreach a shoidhneadh."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "’S e %1 seòrsa na sgrìobhainne seo."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Feumaidh tu seòrsa a shònrachadh dhan sgrìobhainn seo mus urrainn dhut na tha air an stòr-bhòrd a chur ann."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Tha ìre seòrsa na sgrìobhainne nas ìsle na an stòr-bhòrd."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Leibheil"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Tèarainteachd nàiseanta:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Smachd air às-phortadh:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Seac a-mach"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Deasaich an sgrìobhainn"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Soidhnich an sgrìobhainn"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Tha soidhneadh mì-dhligheach aig an sgrìobhainn seo."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Tha an soidhneadh dligheach ach chaidh an sgrìobhainn atharrachadh."
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Tha an soidhneadh ceart gu leòr ach cha b’ urrainn dhuinn an teisteanas a dhearbhadh."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Tha an soidhneadh ceart ach cha deach an sgrìobhainn ach a leth-shoidhneadh."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Cha b’ urrainn dhuinn an teisteanas a dhearbhadh agus cha deach an sgrìobhainn ach a leth-shoidhneadh."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Tha soidhneadh digiteach aig an sgrìobhainn agus tha an soidhneadh dligheach."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Seall na soidhnidhean"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Dùin an leòsan"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Docaich"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Dì-dhocaich"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Barrachd roghainnean"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Dùin deic a' bhàir-thaoibh"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Roghainnean a’ bhàr-taoibh"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Gnàthachadh"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Aisig na roghainnean bunaiteach"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Dùin am bàr-taoibh"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Sgeap"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Lùb ghorm"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Lethbhreac-gorm"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Gorm soilleir"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Dearg leòmach"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fòcas"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Eun na coille"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Brosnachadh"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Solais"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Uaine ’s torrach"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Baile mòr"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Gorm meadhan na h-oidhche"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Sealladh nàdair"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Peansail"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piàna"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Adhartas"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Laighe na grèine"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Na làithean a dh’aom"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Beòthail"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Résumé"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Bunaiteach"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Ùr-nòsach"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Litir gnìomhachais ùr-nòsach sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Litir gnìomhachais ùr-nòsach le serifs"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cairt-ghnìomhachais le suaicheantas"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Thoir air falbh"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Falamhaich na h-uile"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Faid an fhacail-fhaire"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Tha am facal-faire a chuir thu a-steach ag adhbharachadh duilgheadasan eadar-obrachadh. Cuir a-steach fear a tha nas giorra na 52 bytes no fear a tha nas fhaide na 55 bytes."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Beachd mun tionndadh:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Ainm"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Seòrsa"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Luach"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Seòrsa"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Tha"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Chan eil"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Cuir r_oghainn ris"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Ainm"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Seòrsa"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Luach"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Ài_te:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "S_eòrsa:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Atharraich am _facal-faire"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Teamplaid:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Roghainnean “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Coitcheann "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Tuairisgeul"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Roghainnean gnàthaichte"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Roghainnean CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Tèarainteachd"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Chaidh am bathar seo a chruthachadh le %OOOVENDOR, stèidhichte air OpenOffice.org, a tha fo chòir-lethbhreac 2000, 2011 Oracle agus/no na dlùth-chompanaich aca. Tha %OOOVENDOR ag aideachadh gach ball dhen choimhearsnachd, thoir sùil air http://gd.libreoffice.org/mu-libreoffice/creideisean/ airson barrachd fiosrachaidh."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/gd/shell/messages.po b/source/gd/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/gd/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/gd/starmath/messages.po b/source/gd/starmath/messages.po
index 6caf14289f1..6bee54af275 100644
--- a/source/gd/starmath/messages.po
+++ b/source/gd/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Buill-eisimpleir"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Stannardach"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Eadailteach"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Trom"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "dubh"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "gorm"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "uaine"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "dearg"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "saidhean"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "liath"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "dath na liomaideig"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "ciar-dhonn"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "gorm a' chabhlaich"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "donn-uaine na dearc-ola"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purpaidh"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "airgid"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "dath na crann-lach"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "buidhe"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "falaich"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "meud"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "cruth-clò"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "clì"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "meadhan"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "deas"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Àitheantan"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Foirmle"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "A' sàbhaladh na sgrìobhainne..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Foirmle %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caractar ris nach robh dùil"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Tòcan ris nach robh dùil"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Bha dùil ri '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Bha dùil ri '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Bha dùil ri '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Bha dùil ri ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Tha comharra clì ’s deas ann nach eil a’ freagairt ri chèile"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Tha dùil ri 'fixed', 'sans' no 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' ’ga leantainn le comharra ris nach eil dùil"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Chan eil co-thaobhadh dùbailte ceadaichte"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Chan eil fo/os-sgrìobhadh dùbailte ceadaichte"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Bha dùil ri '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Tha feum air dath"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Bha dùil ri 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Susbaint"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Tiotal"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Teacsa ~foirmle"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "I~omallan"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Meud"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Am ~meud tùsail"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Co-~fhreagair ris an duilleag"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Sgèileadh"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Eileamaidean"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/gd/svtools/messages.po b/source/gd/svtools/messages.po
index 2a7372e5894..a699c1144da 100644
--- a/source/gd/svtools/messages.po
+++ b/source/gd/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-23 00:31+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555979492.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Neo-dhèan: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Ath-~dhèan: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Ath-dhèa~n: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Teacsa gun fhòrmatadh"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Teacsa gun fhòrmatadh (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Dealbh Bitmap (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich Text Formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich Text Formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Fòrmat tarraing %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitmap/beòthachadh StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Fiosrachadh staid o Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Ceangal %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Comharra-lìn Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Fòrmat frithealaiche Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Fòrmat oibseact Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Oibseact aplaid"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Oibseact plugain"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Oibseact StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Oibseact StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Oibseact StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Oibseact StarWriter/lìn 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Oibseact StarWriter/lìn 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Oibseact StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Oibseact StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Oibseact StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Oibseact StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Oibseact StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Oibseact StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Oibseact StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Oibseact StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Oibseact StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Oibseact StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Oibseact StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Oibseact StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Oibseact StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Oibseact StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Oibseact StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Oibseact StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Oibseact StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Oibseact StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Oibseact peant StarObject"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Oibseact Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Oibseact StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Oibseact sgrìobhainn Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Fiosrachadh sgrìobhainn Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sgrìobhainn Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Oibseact StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Oibseact ghrafaigean"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Oibseact OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Oibseact OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Oibseact OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Oibseact OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Oibseact OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Oibseact OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Oibseact OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Oibseact OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows Metafile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Oibseact tùs dàta"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Clàr tùs dàta"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Iarrtas SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Còmhradh OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Ceangal"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Fòrmat HTML as aonais nam beachdan"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Cha b’ urrainn dhuinn an t-oibseact % a chur a-steach."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Cha b’ urrainn dhuinn an t-oibseact a chur a-steach on fhaidhle %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Oibseactan a bharrachd"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Tùs neo-aithnichte"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Ainm"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Meud"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Atharrachadh mu dheireadh"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Seòrsa"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Baidht"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ràgh: %1, Colbh: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Seòrsa: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Pasgan"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Faidhle"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Raon bàn"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Litrichean is àireamhan"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Àbhaisteach"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Seata charactaran"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Faclair"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stràc"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Taobh na cèille"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Leabhar fòn"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Foineataigeach (litrichean is àireamhan an toiseach)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Foineataigeach (litrichean is àireamhan aig an deireadh)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Litrichean is àireamhan"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Faclair"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Taobh na cèille"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stràc"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Foineataigeach (litrichean is àireamhan an toiseach, ann am buidhnean a-rèir lidean)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Foineataigeach (litrichean is àireamhan an toiseach, ann am buidhnean a-rèir chonsan)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Foineataigeach (litrichean is àireamhan aig an deireadh, ann am buidhnean a-rèir lidean)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Foineataigeach (litrichean is àireamhan aig an deireadh, ann am buidhnean a-rèir chonsan)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "An-diugh"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Chan eil gin"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Aotrom"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Eadailteach aotrom"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Àbhaisteach"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Eadailteach"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Trom"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Eadailteach trom"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Dubh"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Eadailteach dubh"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Leabhar"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Trom is claon"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Co-dhlùthaichte"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Co-dhlùthaichte ’s trom"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Co-dhlùthaichte, trom is Eadailteach"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Co-dhlùthaichte, trom is claon"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Co-dhlùthaichte is Eadailteach"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Co-dhlùthaichte ’s claon"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Glè aotrom"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Glè aotrom is Eadailteach"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Claon"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Leth-throm"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Leth-throm is Eadailteach"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Thèid an dearbh-chruth-clò a chleachdadh an dà chuid air a' chlò-bhualadair 's air an sgrìn agad."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Seo cruth-clò clò-bhualadair. Faodaidh gum bi coltas eile air air an sgrìn."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Thèid stoidhle a' chruth-chlò seo a leigeil air no thèid an stoidhle as fhaisge air a chleachdadh."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Cha deach an cruth-chlò a stàladh. Thèid am fear as fhaisge air a chleachdadh."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Brabhsaich..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Gluais dhachaidh"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Gluais gun taobh chlì"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Gluais gun taobh deas"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Gluais gun deireadh"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Cuir ris"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Rùilear còmhnard"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Rùilear inghearach"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Stairsneach 1 bhiot"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bhiot le dithering"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Liath-sgèile 4 biot"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Dathan 4 biot"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Liath-sgèile 8 biot"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Dathan 8 biot"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Fìor-dhathan 24 biot"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Feumaidh an dealbh mu %1 KB a chuimhne."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Feumaidh an dealbh mu %1 KB a chuimhne agus tha am faidhle %2 KB a mheud."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Tha am faidhle %1 KB a mheud."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "òstair"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "CMIS eile"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Deiseil"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "'Na stad"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Ri sguabadh às"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Trang"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "'Ga ullachadh"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "A' feitheamh"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "'Ga bhlàthachadh"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "'Ga phròiseasadh"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "'Ga chlò-bhualadh"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Far loidhne"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Mearachd"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Frithealaiche neo-aithnichte"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Dùmhlachd pàipeir"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Chan eil pàipear gu leòr ann"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Biadhadh a làimh"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Duilgheadas leis a' phàipear"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O gnìomhach"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Tha an treidhe a-mach làn"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tha an tònair a' fàs gann"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Gun tònair"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Sguab às an duilleag"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Feumaidh an cleachdaiche rud a dhèanamh"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Gainnead cuimhne"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Tha an còmhdachadh fosgailte"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modh sàbhaladh na cumhachd"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "An clò-bhualadair bunaiteach"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Sgrìobhainnean %d"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Crìochnaich"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Air a~dhart >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Air ais"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Ceuman"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<chan eil gin>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Companaidh"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Roinn"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ainm"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Sloinneadh"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Sràid"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Dùthaich"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Còd puist"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Baile"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Tiotal"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Dreuchd"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Cruth an t-seòlaidh"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Tùs-litrichean"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Dùrachdan deiridh"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Fòn: Dachaigh"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Fòn: Obair"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Facs"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Post-d"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nòta"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Cleachdaiche 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Cleachdaiche 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Cleachdaiche 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Cleachdaiche 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Sgìre/Còigeamh"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Fòn: Oifis"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pèidsear"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Fòn-làimhe"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Fòn-làimhe: Eile"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Mìosachan"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Thoir cuireadh"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ aig $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Feumaidh %PRODUCTNAME Java Runtime Environment (JRE) gus seo a dhèanamh. Stàlaich JRE agus tòisich %PRODUCTNAME a-rithist."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Feumaidh %PRODUCTNAME %BITNESS-bit Java Runtime Environment (JRE) gus seo a dhèanamh. Stàlaich JRE agus tòisich %PRODUCTNAME a-rithist."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "Feumaidh %PRODUCTNAME an Java Development Kit (JDK) o Oracle air macOS 10.10 no tionndadh nas ùire mus dèan e seo. Stàlaich iad is ath-thòisich %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Chaidh rèiteachadh %PRODUCTNAME atharrachadh. Rach gu %PRODUCTNAME - Roghainnean - %PRODUCTNAME - Tagh an Java Runtime Environment a chleachdas %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Dh'atharraich rèiteachadh %PRODUCTNAME. Tagh an Java Runtime Environment a bu toigh leat a chleachdadh ann an %PRODUCTNAME fo Innealan - Roghainnean - %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Feumaidh %PRODUCTNAME Java Runtime Environment (JRE) mus dèan e seo. Tha an JRE a thagh thu lochdach. Tagh tionndadh eile no stàlaich JRE ùr agus tagh e ann an %PRODUCTNAME - Roghainnean - %PRODUCTNAME."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Feumaidh %PRODUCTNAME Java Runtime Environment (JRE) gus seo a dhèanamh. Tha an JRE a thagh thu lochdach. Tagh tionndadh eile no stàlaich JRE ùr agus tagh e fo Innealan - Roghainnean - %PRODUCTNAME."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Feum air JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Tagh an JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Tha an JRE lochdach"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "An còd tùsail"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Faidhle nan comharra-lìn"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafaigean"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Am faidhle rèiteachaidh"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplacaid"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Clàr an stòir-dhàta"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Faidhle an t-siostaim"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Sgrìobhainn MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Faidhle na cobharach"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Sgrìobhainn HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Faidhle na tasg-lainne"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Faidhle an loga"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Stòr-dàta StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Prìomh-sgrìobhainn StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Ìomhaigh StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Faidhle teacsa"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Ceangal"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Teamplaid StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Sgrìobhainn MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Teamplaid MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Faidhle Batch"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Faidhle"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Pasgan"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Sgrìobhainn teacsa"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Cliath-dhuilleag"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Taisbeanadh"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tarraing"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Sgrìobhainn HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Prìomh-sgrìobhainn"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Foirmle"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Stòr-dàta"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Teamplaid cliath-dhuilleige OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Teamplaid tarraing OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Teamplaid taisbeanaidh OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Teamplaid sgrìobhainn teacsa OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Draibh ionadail"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Draibh diosga"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Draibh CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Ceangal lìonraidh"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Sgrìobhainn MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Teamplaid MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Foirmle OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Cairt OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Tarraing OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Cliath-dhuilleag OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Taisbeanadh OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Sgrìobhainn teacsa OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Prìomh-sgrìobhainn OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Sgrìobhainn MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Stòr-dàta OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Tarraing OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Foirmle OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Prìomh-sgrìobhainn OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Taisbeanadh OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Cliath-dhuilleag OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Teacsa OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Teamplaid cliath-dhuilleige OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Teamplaid tarraing OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Teamplaid taisbeanadh OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Teamplaid teacsa OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Leudachan %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Dearbhair-litreachaidh Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Tàthanaiche Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Co-fhaclair MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Liosta nam faclan a tha ’gan leigeil seachad"
diff --git a/source/gd/svx/messages.po b/source/gd/svx/messages.po
index 7f94457286a..e1617dadc42 100644
--- a/source/gd/svx/messages.po
+++ b/source/gd/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-23 00:39+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "On chlì gun deas (gu h-inghearach)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Sònraich offset inghearach (mar cheudad) o mheadhan stoidhle a' chaiseid. 'S e 50% am meadhan inghearach."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Deasaiche nan conturan"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Cuir an sàs"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Rum-obrach"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Tagh"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Ceart-cheàrnach"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Eileaps"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Ioma-cheàrnach"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Deasaich puingean"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Gluais puingean"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Cuir a-steach puingean"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Sguab às puingean"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Fèin-chontur"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Neo-dhèan "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Ath-dhèan"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pìobaid"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Fulangas datha"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Bann-coise"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Deasaiche ImageMap"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Cuir an sàs"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Fosgail..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Sàbhail..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Dùin"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Tagh"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Ceart-cheàrnach"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Eileaps"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Ioma-cheàrnach"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Ioma-cheàrnach saor"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Deasaich na puingean"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Gluais na puingean"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Cuir a-steach puingean"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Sguab às na puingean"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Neo-dhèan "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Ath-dhèan"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Gnìomhach"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Roghainnean..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Seòladh:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Frèam:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Teacsa:"
diff --git a/source/gd/sw/messages.po b/source/gd/sw/messages.po
index 02ef8a31bf8..cf5796ff215 100644
--- a/source/gd/sw/messages.po
+++ b/source/gd/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gd\n"
@@ -3125,9 +3125,9 @@ msgid "Change object title of $1"
msgstr "Atharraich tiotal an oibseact $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Atharraich tuairisgeul an oibseact $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12017,147 +12017,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Cobhair"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Faidhle"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Dachaigh"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "D~hachaigh"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Cu_ir a-steach"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Cu~ir a-steach"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Co-dhea_lbhachd"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Co-dhea~lbhachd"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Reifrean_san"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Reifrean~san"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Lèi_rmheasan"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Lèi~rmheas"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Sealladh"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Sealladh"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Clà_r"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Clà~r"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "D_ealbh"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "D~ealbh"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Tarraing"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tarraing"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oibseact"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oibseact"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Meadhanan"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Meadhanan"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Clò-bhuail"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Clò-bh~uail"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Foi~rm"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Foi~rm"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Innealan"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Innea~lan"
@@ -12167,152 +12167,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Faidhle"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Dachaigh"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Cu_ir a-steach"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Paisg"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Co-dhealbhachd"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Reifrean_san"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Lèi_rmheasan"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Sealladh"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Clà_r"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Dealbh"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Tarraing"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Oibseact"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Meadhanan"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Clò-bhuail"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Innealan"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13379,8 +13379,8 @@ msgstr "Leudaich na beàrnan eadar faclan air loidhnichean sa bheil brisidhean l
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Dìon am foirm"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16660,47 +16660,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Clàr-innse, clàr-amais no leabhar-chlàr"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Ro-shealladh"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Ro-shealladh"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Seòrsa"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Innteartan"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stoidhlean"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Colbhan"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Cùlaibh"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Ro-shealladh"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Leibheil"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Seòrsa"
@@ -16930,302 +16930,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "D_easaich..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Tiotal:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Seòrsa:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Clàr-innse"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Clàr-amais aibidileach"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Clàr nan dealbhan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Clàr-amais nan clàr"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Sònraichte le cleachdaiche"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Clàr nan oibseactan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Na tùsan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Fo dhìon an aghaidh atharraichean làimhe"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Seòrsa is tiotal"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Airson:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "An sgrìobhainn air fad"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Caibideal"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Luachaich suas gu leibheil:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Cruthaich clàr-innse no clàr-amais"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Oir-loidhne"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "C_omharran a' chlàir-amais"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Clàir"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "_Frèamaichean teacsa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafaigean"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Oibseactan OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Cleachd an dearbh-leibheil 's a tha an caibideal tùsail a' cleachdadh"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Stoidhle_an a bharrachd"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stoidh_lean"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Iomruin stoidhlean…"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Caipseanan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Ainmean nan oibseactan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Roinn-seòrsa:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Taisbeanadh:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Reifreansan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Roinn-seòrsa is àireamh"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Teacsa a' chaipsein"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Cruthaich de"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Cruthaich dhe na h-oibseactan a leanas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Bracaidean:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Àireamhaich na _h-innteartan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[chan eil gin]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Fòrmatadh nan innteartan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Co-mheasgaich innteartan a tha co-ionnann"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Co-mheasgaich innteartan a tha co-ionnann le p no _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Co-mheasgaich le -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Aire do litrichean mòra/beaga"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Tùs-litrichean mòra gu fèin-obrachail ann an innteartan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Na h-iuchraichean mar innteartan fa leth"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Faidhle _co-chòrdalachd"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Faidhle"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Roghainnean"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Cànan:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Seòrsa na h-iuchrach:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Seòrsaich"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Leibheilean"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Stoidhlean nam paragrafan"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Bun-roghainn"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Deasaich"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Iomruineadh"
diff --git a/source/gl/cui/messages.po b/source/gl/cui/messages.po
index 467ca8e3f00..bb9aaf964f5 100644
--- a/source/gl/cui/messages.po
+++ b/source/gl/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-05 22:03+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-19 15:11+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\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: 1557093825.000000\n"
+"X-POOTLE-MTIME: 1558278711.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Introduza un enderezo de tema correcto ou un termo de busca."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "A API de tema do Mozilla non está dispoñíbel agora."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Definir sen bordos"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Definir só o bordo externo"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Definir o bordo externo e as liñas horizontais"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Definir o bordo externo e todas as liñas internas"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Definir o bordo externo sen cambiar as liñas internas"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Definir só as liñas diagonais"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Definir os catro bordos"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Definir só os bordos esquerdo e dereito"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Definir só os bordos superior e inferior"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Definir só o bordo esquerdo"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Definir o bordo superior, o inferior, e todas as liñas internas"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Definir o bordo, esquerdo, o dereito, e todas as liñas internas"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Sen sombra"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Proxectar sombra cara ao canto inferior dereito"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Proxectar sombra cara ao canto superior dereito"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Proxectar sombra cara ao canto inferior esquerdo"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Proxectar sombra cara ao canto superior esquerdo"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Asinado por: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Todos os ficheiros"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Bases de datos rexistradas"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1866,19 +1861,19 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Pode asinar ficheiros PDF existentes e verificar esas sinaturas."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
-msgstr ""
+msgstr "O Writer inclúe LibreLogo: ambiente de programación sinxelo tipo Logo con gráficos vectoriais da tartaruga, maquetación e deseño gráfico."
#. local help missing
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr ""
+msgstr "Pode protexer celas con Formato > Celas > Protección. Para evitar insercións, eliminacións, cambios de nome, movemento e copia de follas empregue Ferramentas > Protexer folla."
#. local help missing
#: cui/inc/tipoftheday.hrc:69
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Sobre o %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Cré_ditos"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Sitio _web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Identificador da compilación: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Configuración local: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Idioma da interface: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Consulte o rexistro: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME, suite de aplicativos de código aberto, moderna e de uso sinxelo para procesamento de textos, follas de cálculo, presentacións e moito máis."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Dereitos de autor © 2000–2019 dos colaboradores do LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice estivo baseada en OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME deriva de LibreOffice, que estivo baseada en OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "%OOOVENDOR ofreceulle esta versión."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Substituír"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Substituí_r"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Por:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Só texto"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Tamaño mínimo de palabra"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Propiedades"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Ma_rco:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nome:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Texto alternativo:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Descrición:"
@@ -9019,80 +9179,80 @@ msgstr "Mostrar alerta cando a axuda local non estiver instalada"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Axuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilizar as caixas de diálogo de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Opcións de Abrir/Gardar"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usar os _diálogos de %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialogos de impresión"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "A im_presión do documento define o estado de «documento modificado»"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estado do documento"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como anos entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "e "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ano (dous díxitos)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recoller datos de uso e envialos a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Axude a mellorar o %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargar %PRODUCTNAME durante o arrinque do sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar o Iniciador rápido da barra de tarefas"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Iniciador rápido de %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Tema preinstalado"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tema propio"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Cargar tema do Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Ou seleccionar os Temas instalados mediante extensións:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Temas do Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opcións de seguranza"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Seleccionar un tema do Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Termo de busca ou enderezo"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ca_tegoría:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstracto"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Causas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Filmes e televisión"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Vacacións"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Música"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natureza"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Outros"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Paisaxes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Estacións"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Continua"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Deportes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Sitios web"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "En destaque"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/gl/extensions/messages.po b/source/gl/extensions/messages.po
index ed0950332fb..f5088b159db 100644
--- a/source/gl/extensions/messages.po
+++ b/source/gl/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-28 16:54+0000\n"
"Last-Translator: Xosé <xosecalvo@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: 1556470470.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Disposición de columnas da táboa «%1»"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Nome _curto:"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Autoría"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Editora"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Capítulo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Ano"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Títu_lo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "_Enderezo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pá_xina(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_ición"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Título de li_bro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "_Tipo de publicación"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zación"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "_Organización"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versidade"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tipo de _informe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mes"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Diario"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Núm_ero"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_rie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_otación"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Definido polo usuario _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Definido polo usuario _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Definido polo usuario _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Definido polo usuario _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Definido polo usuario _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nomes de columna"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Escriba un nome para o novo tipo de datos:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Ligar campos"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suxerir"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Os subformularios poden empregarse para mostrar datos detallados sobre o rexistro actual do formulario principal. Para isto hai que indicar que columnas do subformulario coinciden con que columnas do formulario principal."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiqueta"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiqueta"
diff --git a/source/gl/helpcontent2/source/auxiliary.po b/source/gl/helpcontent2/source/auxiliary.po
index ae4d22fe325..96d0e6d8286 100644
--- a/source/gl/helpcontent2/source/auxiliary.po
+++ b/source/gl/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-14 23:12+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Información xeral"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Presentacións e debuxos (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Barras de ferramentas"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Deseños (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menús"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Barras de ferramentas"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Obxectos, gráficos e mapas de bits"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupos e capas"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Texto en presentacións e deseños"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sbasic/guide.po b/source/gl/helpcontent2/source/text/sbasic/guide.po
index 5e66c588fbf..e19ccfef8fb 100644
--- a/source/gl/helpcontent2/source/text/sbasic/guide.po
+++ b/source/gl/helpcontent2/source/text/sbasic/guide.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: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-09-20 21:06+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Compare Access2Base con MSAccess VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Abertura de caixas de diálogo co código do programa"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>trocar modulo/diálogo</bookmark_value><bookmark_value>diálogos;utilizar código de programa para amosar (exemplo)</bookmark_value><bookmark_value>exemplos; amosar un diálogo utilizando código de programa</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sbasic/python.po b/source/gl/helpcontent2/source/text/sbasic/python.po
index de47f88ed0e..82693cc2ce6 100644
--- a/source/gl/helpcontent2/source/text/sbasic/python.po
+++ b/source/gl/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-13 05:28+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,7 +77,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,7 +1469,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1493,7 +1493,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1515,6 +1515,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/gl/helpcontent2/source/text/sbasic/shared.po b/source/gl/helpcontent2/source/text/sbasic/shared.po
index f63829bb0c7..b7090815b07 100644
--- a/source/gl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gl/helpcontent2/source/text/sbasic/shared.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: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -36197,7 +36197,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/gl/helpcontent2/source/text/sbasic/shared/03.po b/source/gl/helpcontent2/source/text/sbasic/shared/03.po
index ef5fa22aa3a..26a4edbc5ed 100644
--- a/source/gl/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/gl/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-14 23:20+0000\n"
"Last-Translator: Xosé <xosecalvo@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: 1547508009.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Funcións e subrutinas para o control de módulos."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/gl/helpcontent2/source/text/scalc/01.po b/source/gl/helpcontent2/source/text/scalc/01.po
index 53622f24647..a6c8c934ded 100644
--- a/source/gl/helpcontent2/source/text/scalc/01.po
+++ b/source/gl/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-02-12 11:15+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -40949,7 +40949,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/gl/helpcontent2/source/text/schart/00.po b/source/gl/helpcontent2/source/text/schart/00.po
index 4d8ad45d462..368350d7b53 100644
--- a/source/gl/helpcontent2/source/text/schart/00.po
+++ b/source/gl/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-28 12:04+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\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: 1548677097.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">No diálogo Tipo de gráfica dunha gráfica de liñas ou gráfica XY que mostre liñas, escolla Suave no menú despregábel Tipo de liña e a seguir prema no botón Propiedades.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">No diálogo Tipo de gráfica dunha gráfica de liñas ou gráfica XY que mostre liñas, escolla En chanzos no menú despregábel Tipo de liña e a seguir prema no botón Propiedades.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/gl/helpcontent2/source/text/shared/00.po b/source/gl/helpcontent2/source/text/shared/00.po
index 1a0f9d2a742..03de62caf95 100644
--- a/source/gl/helpcontent2/source/text/shared/00.po
+++ b/source/gl/helpcontent2/source/text/shared/00.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-08 11:04+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/gl/helpcontent2/source/text/shared/01.po b/source/gl/helpcontent2/source/text/shared/01.po
index 6a603c2d7dc..38edfaac084 100644
--- a/source/gl/helpcontent2/source/text/shared/01.po
+++ b/source/gl/helpcontent2/source/text/shared/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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-16 08:48+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/gl/helpcontent2/source/text/shared/02.po b/source/gl/helpcontent2/source/text/shared/02.po
index c5356cce4d3..b275299e8d6 100644
--- a/source/gl/helpcontent2/source/text/shared/02.po
+++ b/source/gl/helpcontent2/source/text/shared/02.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/gl/helpcontent2/source/text/shared/guide.po b/source/gl/helpcontent2/source/text/shared/guide.po
index 57de1f4084d..fd3c703eb30 100644
--- a/source/gl/helpcontent2/source/text/shared/guide.po
+++ b/source/gl/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/gl/helpcontent2/source/text/shared/optionen.po b/source/gl/helpcontent2/source/text/shared/optionen.po
index 029202ab5cb..8b86aa6534c 100644
--- a/source/gl/helpcontent2/source/text/shared/optionen.po
+++ b/source/gl/helpcontent2/source/text/shared/optionen.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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-23 00:13+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/gl/helpcontent2/source/text/simpress/01.po b/source/gl/helpcontent2/source/text/simpress/01.po
index 682b02bd51e..07ee3533e79 100644
--- a/source/gl/helpcontent2/source/text/simpress/01.po
+++ b/source/gl/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-02 21:50+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/gl/helpcontent2/source/text/swriter/guide.po b/source/gl/helpcontent2/source/text/swriter/guide.po
index 173ef702123..24733b91080 100644
--- a/source/gl/helpcontent2/source/text/swriter/guide.po
+++ b/source/gl/helpcontent2/source/text/swriter/guide.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: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -230,16 +230,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Na <emph>Barra estándar</emph>, prema na icona do botón <emph>Navegador</emph><image id=\"img_id5211883\" src=\"cmd/ sc_navigator.png\" width\"0,564 cm\" height=\"0,564 cm\"><alt id =\"alt_id5211883\">Icona</alt></image>para abrir o<emph>Navegador</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "No <emph>Navegador </emph>, prema na icona <emph>Vista de contido</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icona</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -262,8 +262,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Prema nun título na lista do <emph>Navegador</emph> e a seguir prema na icona <emph>Subir un capítulo</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icona</alt></image> ou na icona <emph>Baixar un capítulo</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icona</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -294,8 +294,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Prema a icona <emph>Subir un nivel</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icona</alt></image> ou <emph>Baixar un nivel</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icona</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -310,8 +310,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Prema na icona <emph>Niveis de título mostrados</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icona</alt></image> e seleccione un número da lista."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
index 3b35a5d85f5..3813426b2f3 100644
--- a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gl/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-28 16:55+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-22 11:44+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\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: 1556470508.000000\n"
+"X-POOTLE-MTIME: 1558525488.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -7196,7 +7196,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Impress R~emote..."
-msgstr "Control remoto do Impress..."
+msgstr "Control r~emoto do Impress..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Estilos de táboa"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Máis campos"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Con lapelas"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Seleccionar oración"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/gl/sc/messages.po b/source/gl/sc/messages.po
index aac2817306c..7cabb8862f9 100644
--- a/source/gl/sc/messages.po
+++ b/source/gl/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-04 15:34+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-16 13:54+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\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: 1556984058.000000\n"
+"X-POOTLE-MTIME: 1558014855.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(acceso exclusivo)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,12 +15775,12 @@ msgstr "Xestionar o formato condicional"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Intervalo"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulario de datos"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Pe_char"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Novo rexistro"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Novo"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Eliminar"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restaurar"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Rexistro _anterior"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Rexistro _seguinte"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Pe_char"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Fluxos de datos ao vivo"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Introduza aquí o URL do documento orixinario no sistema local de ficheiros ou na Internet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "E_xaminar..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Intervalo da base de datos:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Fornecedor de datos..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Cadea de busca:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Fluxo de orixe"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultados para:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Datos"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Columnas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Filas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Agrupado por"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervalo:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parámetros"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "A_xuda"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Ficheiro"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Indique os bordos das celas seleccionadas."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Aumentar sangrado"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Diminuír sangrado"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Disposición"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Aliñamento de obxectos"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Disposición"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "E_statísticas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Datos"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Datos"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_xe"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~xe"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Debuxo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Debuxo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Obxecto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Obxecto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Im_primir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Im~primir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Resultados da busca"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Folla"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Cela"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Contido"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Símb_olos de esquema"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Xanela"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Liñas de _grade:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Cor:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Mostrar nas celas de cor"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Agochar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Quebras de _páxina"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Liñas de axuda _durante o movemento"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Axudas visuais"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_xectos/Imaxes:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "G_ráficas:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Obxectos de debuxo:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Agochar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Agochar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Agochar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Obxectos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "_Sincronizar follas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Ampliación"
diff --git a/source/gl/scp2/source/ooo.po b/source/gl/scp2/source/ooo.po
index 3fb4afcba52..d059b6101dc 100644
--- a/source/gl/scp2/source/ooo.po
+++ b/source/gl/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-28 16:59+0000\n"
"Last-Translator: Xosé <xosecalvo@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: 1556470790.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Abrir documento"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/gl/scp2/source/winexplorerext.po b/source/gl/scp2/source/winexplorerext.po
index ccf56c0cd0f..dad98e24f88 100644
--- a/source/gl/scp2/source/winexplorerext.po
+++ b/source/gl/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-09-14 10:05+0200\n"
-"Last-Translator: Antón <meixome@certima.net>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:32+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369351938.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permite a Microsoft Windows Explorer amosar información sobre documentos de %PRODUCTNAME, por exemplo visualizacións en miniatura."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/gl/sd/messages.po b/source/gl/sd/messages.po
index 6651182931a..a08b88b9c5a 100644
--- a/source/gl/sd/messages.po
+++ b/source/gl/sd/messages.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-28 17:07+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-22 11:45+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\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: 1556471268.000000\n"
+"X-POOTLE-MTIME: 1558525531.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -164,12 +164,12 @@ msgstr "~Diapositivas:"
#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Even slides"
-msgstr "Diapositivas _pares"
+msgstr "Diapositivas par~es"
#: sd/inc/DocumentRenderer.hrc:85
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Odd slides"
-msgstr "Diapositivas _impares"
+msgstr "Diapositivas ~impares"
#: sd/inc/DocumentRenderer.hrc:86
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Faga clic para abrir a hiperligazón: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nome do deseño HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Ficheiro"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "A_xuda"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Ficheiro"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Páxina"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Páxina"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_exto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~exto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Táboa"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Táboa"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converter"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_xe"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~xe"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Debuxo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Debuxo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obxecto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obxecto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Mostrar formas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Ficheiro"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "A_xuda"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Ficheiro"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Diapositiva"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "~Diapositiva"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Pre_sentación de diapositivas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Pre~sentación de diapositivas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Táboa"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Táboa"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converter"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_xe"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~xe"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Debuxo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Debuxo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obxecto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obxecto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
diff --git a/source/gl/sfx2/messages.po b/source/gl/sfx2/messages.po
index 5ac18729b46..41d7af9cbaa 100644
--- a/source/gl/sfx2/messages.po
+++ b/source/gl/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-08 19:57+0000\n"
"Last-Translator: Xosé <xosecalvo@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: 1554753479.000000\n"
#: include/sfx2/strings.hrc:25
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " A: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Retirar propiedade"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"O valor introducido non coincide co tipo indicado.\n"
"O valor vai ser gardado como texto."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Xa existe este estilo. Desexa substituílo?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Restabelecer"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Este nome xa está a ser usado."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Este estilo non existe."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Non é posíbel usar este estilo como estilo base\n"
"porque entrañaría unha referencia recursiva."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Xa existe este nome como estilo predeterminado.\n"
"Escolla outro nome."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"De eliminar estes estilos, o texto volverá ao estilo pai.\n"
"Confirma que quere eliminar estes estilos?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Estilos utilizados: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navegador"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Confirmación defectuosa do contrasinal"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Enviar"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Tipo de letra"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Mostrar vistas previas"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Ver o comentario da versión"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(sen nome asignado)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lista de estilos"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Xerárquico"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Modo de formato de recheo"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Novo estilo a partir da selección"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Accións de estilos"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Actualizar o estilo"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Confirma quere cancelar a gravación? Hase perder calquera paso xa gravado ata o momento."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Cancelar gravación"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Inicializando os modelos para o seu primeiro uso."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Non se atopou ningunha impresora predeterminada.\n"
"Escolla unha impresora e ténteo de novo."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Non foi posíbel iniciar a impresora.\n"
"Comprobe a súa configuración."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Impresora ocupada"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (só permite lectura)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Quere gardar a nova configuración no documento \n"
"activo?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Quere gardar a nova configuración\n"
"no documento activo?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Quere gardar a nova configuración no documento \n"
"activo?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Non é posíbel pechar o documento porque\n"
"hai aínda un traballo de impresión en execución."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Comprobe a configuración do %PRODUCTNAME ou a configuración do seu programa de correo electrónico."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"O código de erro é $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Erro ao enviar mensaxe"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Non é posíbel editar este documento, debido posibelmente á carencia de dereitos de acceso. Desexa editar unha copia do documento?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Tamén pode ignorar o bloqueo e abrir o ficheiro para editalo."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Abrir ~copia"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Abrir"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (documento reparado)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "O documento non confirmou saída do servidor."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Axúdenos a facer que o %PRODUCTNAME sexa aínda mellor!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Involucrarse"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "As súas doazóns axudan a nosa comunidade internacional."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Doar"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Este documento só permite a lectura."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Este PDF foi aberto no modo só lectura para permitir que sexa asinado."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "A etiqueta de clasificación deste documento é %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Hai que clasificar este documento antes de poder pegar o contido do portapapeis."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Este documento ten un nivel de clasificación inferior ao do portapapeis."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Nivel"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Seguranza nacional:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Cntrol de exportación:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Dar saída"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editar documento"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Asinar o documento"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Este documento ten unha sinatura incorrecta."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "A sinatura era válida mais o documento foi modificado"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "A sinatura é correcta, pero non foi posíbel validar o certificado."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "A sinatura é correcta, pero só se asinou parte do documento."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Non foi posíbel validar o certificado e o documento só está asinado parcialmente."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Este documento asinouse dixitalmente e a sinatura é correcta."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Mostrar sinaturas"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Pechar o panel"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Ancorar"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Desancorar"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Máis opcións"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Pechar o panel lateral"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Configuración da barra lateral"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalización"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restaurar o predeterminado"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Pechar a barra lateral"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarina"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Colmea"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Curva azul"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Planos cianotipo"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Azul brillante"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Vermello sofisticado"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Foco"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Paxaro"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiración"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Luces"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verde exuberante"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópole"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Azul medianoite"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Ilustración da natureza"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lapis"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Cartafol"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progreso"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solpor"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Antigo"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivo"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículo"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Predeterminado"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, letra sen serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, letra con serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Tarxeta de visita con logotipo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Retirar"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Limpar todo"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Tamaño do contrasinal"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "O contrasinal introducido provoca problemas de interoperabilidade. Introduza un contrasinal que teña menos de 52 bytes ou máis de 55 bytes."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Comentario da versión:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nome"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipo"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valor"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Si"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Non"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Engadir _propiedade"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nome"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valor"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Localización:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipo:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Cambiar o _contrasinal"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Modelo:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Propiedades de «%1»"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Xeral "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descrición"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Propiedades personalizadas"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Propiedades CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Seguranza"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Este produto creouno a %OOOVENDOR, baseado en OpenOffice.org, sobre a que ten dereitos de autor entre 2000 e 2011 Oracle e/ou os seus afiliados. %OOOVENDOR ofrécelle o seu recoñecemento a todos os membros da comunidade, véxase http://www.libreoffice.org/ para máis detalles."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/gl/shell/messages.po b/source/gl/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/gl/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/gl/starmath/messages.po b/source/gl/starmath/messages.po
index 61a89b64269..4d116dfdc15 100644
--- a/source/gl/starmath/messages.po
+++ b/source/gl/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Exemplos"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estándar"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Grosa"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "negro"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "azul"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "vermello"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cián"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "maxenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lima"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marrón"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "azul mariño"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliva"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "violeta"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "prata"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "turquesa"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "amarelo"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "agochar"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamaño"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "tipografía"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "á esquerda"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centrado"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "á dereita"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Ordes"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Gardando documento..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula do %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERRO : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Carácter inesperado"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Token inesperado"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' esperado"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' esperado"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' esperado"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' esperado"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Os símbolos dereito e esquerdo son dispares"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Agardábase «fixed», «sans» ou «serif»"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "«size» seguido dun token inesperado"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "O aliñamento duplo non está permitido"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Os subíndices/superíndices duplos non están permitidos"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Necesítase '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Necesítase unha cor"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Necesítase 'DEREITO'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contido"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Título"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Texto da ~fórmula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~ordos"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamaño"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamaño o~rixinal"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Axustar á ~páxina"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Ampliación"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementos"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/gl/svtools/messages.po b/source/gl/svtools/messages.po
index fd882e75d50..31e212d6d42 100644
--- a/source/gl/svtools/messages.po
+++ b/source/gl/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-08 19:58+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-22 11:50+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554753531.000000\n"
+"X-POOTLE-MTIME: 1558525808.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desfacer: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Refacer: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repetir: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Texto sen formato"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Texto sen formato (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imaxe de mapa de bits (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metaficheiro de Graphics Device Interface (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Formato de texto enriquecido (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Formato de texto enriquecido (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formato de debuxo do %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Imaxe de mapa de bits/animación de StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Información de estado da Ligazón Interna Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Ligazón do %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcador de Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formato do servidor Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formato do obxecto Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Obxecto de miniaplicativo"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Obxecto de extensión"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Obxecto de StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Obxecto de StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Obxecto de StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Obxecto de StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Obxecto de StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Obxecto de StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Obxecto de StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Obxecto de StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Obxecto de StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Obxecto de StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Obxecto de StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Obxecto de StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
-msgstr "Obxecto de StarCalc 4.0"
+msgstr "Obxecto do StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
-msgstr "Obxecto de StarCalc 5.0"
+msgstr "Obxecto do StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
-msgstr "Obxecto de StarChart"
+msgstr "Obxecto do StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
-msgstr "Obxecto de StarChart 4.0"
+msgstr "Obxecto do StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
-msgstr "Obxecto de StarChart 5.0"
+msgstr "Obxecto do StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
-msgstr "Obxecto de StarImaxe"
+msgstr "Obxecto do StarImaxe"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
-msgstr "Obxecto de StarImage 4.0"
+msgstr "Obxecto do StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
-msgstr "Obxecto de StarImage 5.0"
+msgstr "Obxecto do StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
-msgstr "Obxecto de StarMath"
+msgstr "Obxecto do StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
-msgstr "Obxecto de StarMath 4.0"
+msgstr "Obxecto do StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
-msgstr "Obxecto de StarMath 5.0"
+msgstr "Obxecto do StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Obxecto de StarObxect Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Linguaxe de marcas de hipertexto (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Linguaxe de marcas de hipertexto reducida (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Formato de intercambio binario do Excel 5.0/95 da Microsoft (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Formato de intercambio binario do Excel 97/2000/XP/2003 da Microsoft (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Intercambio de datos dinámico (ligazón DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Formato de Intercambio de Datos (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Obxecto de Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Obxecto de StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Obxecto de documento de Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
-msgstr "Informacións sobre documento de notas"
+msgstr "Informacións sobre documento do Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documento Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
-msgstr "Obxecto de StarChart 5.0"
+msgstr "Obxecto do StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Obxecto gráfico"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
-msgstr "Obxecto de OpenOffice.org Writer 1.0"
+msgstr "Obxecto do OpenOffice.org Writer 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
-msgstr "Obxecto de OpenOffice.org Writer/Web 1.0"
+msgstr "Obxecto do OpenOffice.org Writer/Web 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
-msgstr "Obxecto de OpenOffice.org Writer/Master 1.0"
+msgstr "Obxecto do OpenOffice.org Writer/Master 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
-msgstr "Obxecto de OpenOffice.org Draw 1.0"
+msgstr "Obxecto do OpenOffice.org Draw 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
-msgstr "Obxecto de OpenOffice.org Impress 1.0"
+msgstr "Obxecto do OpenOffice.org Impress 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
-msgstr "Obxecto de OpenOffice.org Calc 1.0"
+msgstr "Obxecto do OpenOffice.org Calc 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
-msgstr "Obxecto de OpenOffice.org Chart 1.0"
+msgstr "Obxecto do OpenOffice.org Chart 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
-msgstr "Obxecto de OpenOffice.org Math 1.0"
+msgstr "Obxecto do OpenOffice.org Math 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metaficheiro de Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
-msgstr "Obxecto da orixe de datos"
+msgstr "Obxecto da fonte de datos"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
-msgstr "Táboa da orixe de datos"
+msgstr "Táboa da fonte de datos"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
-msgstr "Diálogo de OpenOffice.org 1.0"
+msgstr "Diálogo do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Ligazón"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formato HTML sen comentarios"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Gráficos Portátiles de Rede (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Non foi posíbel inserir o obxecto %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Non foi posíbel inserir o obxecto do ficheiro %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Obxectos adicionais"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Orixe descoñecida"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nome"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Tamaño"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Data de modificación"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipo"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Fila: %1, columna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tipo: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Cartafol"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Ficheiro"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Campo baleiro"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Conxunto de caracteres"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dicionario"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trazo"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Axenda telefónica"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonético (alfanumérico primeiro)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonético (alfanumérico por último)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dicionario"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trazo"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonético (alfanumérico primeiro, agrupado por sílabas)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonético (alfanumérico primeiro, agrupado por consoantes)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonético (alfanumérico por último, agrupado por sílabas)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonético (alfanumérico por último, agrupado por consoantes)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Hoxe"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Ningún"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Claro"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Cursiva clara"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Estándar"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiva"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Grosa"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Cursiva grosa"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Negro"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Cursiva grosa"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Libro"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Grosa oblicua"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensado"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Grosa condensada"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Grosa cursiva condensada"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Grosa cursiva condensada"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Cursiva condensada"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Cursiva condensada"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extradelgada"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Cursiva extradelgada"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Cursiva"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semigrosa"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semigrosa cursiva"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Utilizarase o mesmo tipo de letra na impresora e na pantalla."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Este é un tipo de letra de impresora. A imaxe na pantalla pode diferir."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Simularase o estilo de tipo de letra ou utilizarase o estilo máis achegado dispoñíbel."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Este tipo de letra non está instalado. Utilizarase o tipo máis parecido dispoñíbel."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Explorar..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mover ao inicio"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mover cara á esquerda"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mover cara á dereita"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mover cara a abaixo"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Engadir"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regra horizontal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regra vertical"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Límite de 1 bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Punteado de 1 bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escalas de grises de 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Cor de 4 bits"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de grises de 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Cor de 8 bits"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Cor real de 24 bits"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "A imaxe necesita sobre %1 KB de memoria."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "A imaxe necesita sobre %1 KB de memoria; o tamaño do ficheiro é de %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "O tamaño do ficheiro é %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "servidor"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "porto"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Outros CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Preparado"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Parado"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Eliminación pendente"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupado"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Iniciando"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "En espera"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Preparando"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Procesando"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Impresión"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Sen conexión"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Erro"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor descoñecido"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papel atascado"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Papel insuficiente"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentación manual"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema co papel"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S activa"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Bandexa de saída chea"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Pouco tóner"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Sen tóner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Eliminar páxina"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "O usuario debe intervir"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memoria insuficiente"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Cuberta aberta"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modo aforro enerxético"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impresora predeterminada"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documentos"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Rematar"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Segui~nte >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< ~Volver"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Pasos"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ningún>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamento"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nome"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Apelidos"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Rúa"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "CP"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Cidade"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Título"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posición"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Fórmula de trat."
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciais"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Frase de despedida"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telf. persoal"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telf. empresa"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Correo electrónico"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuario 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuario 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuario 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuario 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Estado"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telf. oficina"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Busca"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Móbil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: Outro"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendario"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Convidar"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "O %PRODUCTNAME require unha contorna de execución de Java (JRE) para realizar esta tarefa. Instale JRE e reinicie o %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME require unha contorna de execución de Java (JRE) de %BITNESS bits para realizar esta tarefa. Instale un JRE e reinicie o %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "O %PRODUCTNAME require o Java Development Kit (JDK) de Oracle en Mac OS 10.10 ou posterior para realizar esta tarefa. Instáleo e reinicie o %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Cambiouse a configuración do %PRODUCTNAME. En %PRODUCTNAME - Preferencias - %PRODUCTNAME - Avanzadas, escolla o entorno de execución Java que quere utilizar no %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Cambiouse a configuración de %PRODUCTNAME. En Ferramentas - Opcións - %PRODUCTNAME - Avanzadas, seleccione o JRE que quere utilizar no %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME require un entorno de execución de Java (JRE) para levar a cabo esta tarefa. O JRE seleccionado está defectuoso. Elixa outra versión ou instale un novo JRE e seleccióneo no menú %PRODUCTNAME - Preferencias - %PRODUCTNAME - Avanzadas."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "O %PRODUCTNAME require un entorno de execución de Java (JRE) para levar a cabo esta tarefa. O JRE seleccionado está defectuoso. Elixa outra versión ou instale un novo JRE e seleccióneo no menú Ferramentas - Opcións - %PRODUCTNAME - Avanzadas."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Requírese JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Seleccionar o JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "O JRE está danado"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Código fonte"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Ficheiro de marcadores"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Imaxes"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Ficheiro de configuración"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicativo"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Táboa de base de datos"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Ficheiro de sistema"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documento do MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ficheiro da Axuda"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Ficheiro de arquivo"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Ficheiro de rexistro"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de datos StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Documento principal de StarWriter 4.0/5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imaxe de StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Ficheiro de texto"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Ligazón"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Modelo de StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documento do MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Modelo de MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Ficheiro de lote"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Ficheiro"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Cartafol"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documento de texto"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Folla de cálculo"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentación"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Debuxo"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Documento principal"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de datos"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Modelo de folla de cálculo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Modelo de debuxo de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Modelo de presentación de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Modelo de documento de texto de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unidade local"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unidade de disco"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unidade de CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Conexión de rede"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documento do MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Modelo de MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Presentación do PowerPoint da Microsoft"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Gráfica do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Debuxo do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Folla de cálculo do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentación do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documento de texto de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Documento principal de OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documento MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de datos de OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Debuxo de OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula de OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Documento principal de OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentación de OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Folla de cálculo de OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Texto de OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Modelo de folla de cálculo de OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Modelo de debuxo de OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Modelo de presentación de OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Modelo de texto de OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensión de %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Corrector ortográfico Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Guionizador Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Dicionario de sinónimos Mythes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lista de palabras ignoradas"
@@ -4127,7 +4129,7 @@ msgstr "Iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Inglés (Zambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/gl/svx/messages.po b/source/gl/svx/messages.po
index ddf3af3c29c..06def82d6ed 100644
--- a/source/gl/svx/messages.po
+++ b/source/gl/svx/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-04 15:34+0000\n"
-"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-20 22:01+0000\n"
+"Last-Translator: Antón Méixome <meixome@certima.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556984072.000000\n"
+"X-POOTLE-MTIME: 1558389707.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Da esquerda á dereita (vertical)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Número da parte:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Texto da parte:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Fonte de luz 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Cor da luz 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Cor da luz 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Cor da luz 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Cor da luz 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Cor da luz 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Cor da luz 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Cor da luz 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Cor da luz 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Especifique a porcentaxe de desprazamento vertical a partir do centro para o estilo de sombra do gradiente. O 50% é o centro vertical."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor de contorno"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Área de traballo"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Seleccionar"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rectángulo"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polígono"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mover puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserir puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Eliminar puntos"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Contorno automático"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Desfacer "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Refacer"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolerancia de cor"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Rodapé"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor de mapa de imaxe"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Abrir..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Gardar…"
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Pechar"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Seleccionar"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rectángulo"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polígono"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Polígono de forma libre"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar puntos"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mover puntos"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserir puntos"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Eliminar puntos"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Desfacer "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Refacer"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Activo"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Propiedades..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Enderezo:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Fotograma:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Texto:"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"O %PRODUCTNAME está a ser executado no modo seguro, o cal desactiva temporalmente a configuración de usuario e as extensións.\n"
+"\n"
+"Pode realizar algún dos cambios seguintes no seu perfil de usuario se quixer devolver o %PRODUCTNAME a un estado funcional."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/gl/sw/messages.po b/source/gl/sw/messages.po
index 3912a7493f0..743b7b083e4 100644
--- a/source/gl/sw/messages.po
+++ b/source/gl/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-04 15:34+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-20 15:14+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\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: 1556984098.000000\n"
+"X-POOTLE-MTIME: 1558365251.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Cambiar o título do obxecto de $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Cambiar a descrición do obxecto de $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -7679,7 +7679,7 @@ msgstr "Carácter"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "E_stándar"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "A_xuda"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Ficheiro"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Disposición"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Disposición"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referencia_s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referencia~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Táboa"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Táboa"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ima_xe"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~xe"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Debuxo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Debuxo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obxecto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obxecto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Im_primir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Im~primir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
@@ -12160,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Ficheiro"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Ficheiro"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Inicio"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "I~nicio"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Axustar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Disposición"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Disposición"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referencia_s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Referencia~s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Revisar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Ver"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Tá_boa"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Táboa"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Imaxe"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Ima~xe"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Debuxa_r"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Debuxar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Obxecto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Obxecto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Multimedia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Imprimir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "Im~primir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulario"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmulario"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Fe~rramentas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12449,7 +12449,7 @@ msgstr "_Obxecto"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "Ma_rco"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12659,7 +12659,7 @@ msgstr "_Multimedia"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Obxecto"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13372,8 +13372,8 @@ msgstr "Expandir o espazo entre palabras con quebras de liña manuais en parágr
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Protexer formulario"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13638,7 +13638,7 @@ msgstr "Caracteres por páxina estandarizada:"
#: sw/uiconfig/swriter/ui/optgeneralpage.ui:483
msgctxt "optgeneralpage|label4"
msgid "Word Count"
-msgstr "Contar palabras"
+msgstr "Conta de palabras"
#: sw/uiconfig/swriter/ui/optredlinepage.ui:39
msgctxt "optredlinepage|insert_label"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Índice, índice analítico ou bibliografía"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Visualizar"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Previsualización"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entradas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Estilos"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Columnas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fondo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Previsualización"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Nive_l"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tipo"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Editar..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Título:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Índice"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Índice alfabético"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Táboa de figuras"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Índice de táboas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Definido polo usuario"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Índice de obxectos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografía"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protexido contra cambios manuais"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipo e título"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Para:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Todo o documento"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capítulo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Avaliar até ao nivel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Crear un índice ou índice analítico"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Esquema"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Marcas de _índice"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Táboas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Marcos de te_xto"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Imaxes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Obxectos OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Utilizar o nivel do capítulo fonte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Estilos _adicionais"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Estilos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Asignar estilos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Lendas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Nomes de obxecto"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categoría:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Presentar:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referencias"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categoría e número"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Texto da lenda"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Crear a partir de"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Crear a partir dos obxectos seguintes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Parénteses:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Entradas _numéricas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[ningún]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formato das entradas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Combinar entradas idénticas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Combinar entradas idénticas con p ou _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Combinar con -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Distinguir as maiúsculas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Escribir entradas en maiúsculas automaticamente"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Chaves como entradas separadas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Ficheiro de _concordancias"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Ficheiro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opcións"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Idioma:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipo de chave:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ordenar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Niveis"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Estilos de _parágrafo"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Predeterminado"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Editar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Atribución"
@@ -17382,7 +17382,7 @@ msgstr "Cor"
#: sw/uiconfig/swriter/ui/wordcount.ui:8
msgctxt "wordcount|WordCountDialog"
msgid "Word Count"
-msgstr "Contar palabras"
+msgstr "Conta de palabras"
#: sw/uiconfig/swriter/ui/wordcount.ui:78
msgctxt "wordcount|label1"
diff --git a/source/gu/cui/messages.po b/source/gu/cui/messages.po
index 113813e550e..e945071b4a7 100644
--- a/source/gu/cui/messages.po
+++ b/source/gu/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1654,107 +1654,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "કિનારીઓ સુયોજીત કરશો નહિં"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "માત્ર બાહ્ય કિનારી સુયોજીત કરો"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "બાહ્ય કિનારી અને આડી લીટીઓ સુયોજીત કરો"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "બાહ્ય કિનારી અને બધી આંતરીક લીટીઓ સુયોજીત કરો"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "બાહ્ય કિનારી આંતરીક લીટીઓ બદલ્યા વગર સુયોજીત કરો"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "ફકત સામસામેની લીટીઓ સુયોજીત કરો"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "ચારેય કિનારીઓ સુયોજીત કરો"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "માત્ર ડાબી અને જમણી કિનારીઓ સુયોજીત કરો"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "માત્ર ઉપરની અને નીચેની કિનારીઓ સુયોજીત કરો"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "માત્ર ડાબી કિનારી સુયોજીત કરો"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "સુયોજીત કરો ડાબી અને જમણી કિનારીઓ, અને બધી અંદરનીી કિનારીઓ"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "સુયોજીત કરો ઉપર અને નીચેની કિનારીઓ, અને બધી અંદરનીી કિનારીઓ"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "છાંયડો નથી"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "નીચે જમણી બાજુ પડછાયો પાડો"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ઉપર જમણી બાજુ પડછાયો પાડો"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "નીચે ડાબી બાજુ પડછાયો પાડો"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ઉપર ડાબી બાજુ પડછાયો પાડો"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1797,7 +1792,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1917,7 +1912,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2157,7 +2152,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2412,12 +2407,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2487,7 +2482,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2567,7 +2562,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2808,7 +2803,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3434,66 +3429,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME વિશે"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "શ્રેય (_d)"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "વેબસાઇટ (_W)"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "બિલ્ડ ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME એ વર્ડ પ્રોસેસીંગ, સ્પ્રેડશીટ, રજૂઆતો અને વધારે માટે પ્રાચીન, સરળ રીતે વાપરવું, ઑપન સોર્સ પ્રોડક્ટીવિટી સ્યૂટ છે."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice એ OpenOffice.org પર આધારિત હતુ."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME એ LibreOffice માંથી આવ્યુ છે કે જે OpenOffice.org પર આધારિત છે."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "%OOOVENDOR દ્દારા આ પ્રકાશન મોકલવામાં આવ્યુ છે."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3612,17 +3612,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "બદલો(_R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "બદલો (_c)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "સાથે(_W):"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "ફક્ત લખાણ (_T)"
@@ -4491,6 +4491,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "શબ્દની ન્યૂનતમ લંબાઈ"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5647,30 +5807,30 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "ગુણધર્મો"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
#, fuzzy
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "URL (_U)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ફ્રેમ (_r)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "નામ (_N):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
#, fuzzy
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "વૈકલ્પિક લખાણ (_t)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9376,84 +9536,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "મદદ"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME સંવાદો વાપરો(_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ખોલો/સંગ્રહો સંવાદ"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME સંવાદો વાપરો(_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "સંવાદોને છાપો"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "\"બદલેલ દસ્તાવેજ\" સ્થિતિ સમૂહોને છાપી રહ્યા છીએ (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "દસ્તાવેજ સ્થિતિ"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "ની વચ્ચે વર્ષો તરીકે અર્ષ સમજાવો (_I) "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "અને "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "વર્ષ (બે આંકડા)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "સિસ્ટમને શરૂ કરવા દરમ્યાન %PRODUCTNAME ને લાવો"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray Quickstarter ને સક્રિય કરો"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -11410,25 +11570,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "પોતાની થીમ"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox થીમ"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -12076,102 +12221,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "સુરક્ષા વિકલ્પો"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -13221,27 +13270,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/gu/extensions/messages.po b/source/gu/extensions/messages.po
index 58eba6f6199..b2cf823a226 100644
--- a/source/gu/extensions/messages.po
+++ b/source/gu/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3238,189 +3238,189 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "કોષ્ટક %1 માટે સ્તંભનો દેખાવ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "ટુંકુ નામ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "લેખક(કો)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "પ્રકાશક"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "પ્રકરણ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "સંપાદક"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "પ્રકાર (_T)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "વર્ષો (_Y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "શીર્ષક"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "સરનામું"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN (~I)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "પાનાં(~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "સંપાદન(~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "પુસ્તક શીર્ષક(~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "અવાજ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "પ્રકાશન પ્રકાર(~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "સંરચના(~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "સંસ્થા(~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "યુનિવર્સિટી"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "અહેવાલ પ્રકાર(~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "મહિનો (_M)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "વર્તમાનપત્ર"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "નંબર"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "શ્રેણી(~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "નોંધ (~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "નોંધ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "વપરાશકર્તા-વ્યાખ્યાયિત ક્ષેત્ર ૧(~1)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "વપરાશકર્તા-વ્યાખ્યાયિત ક્ષેત્ર ૨(~2)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "વપરાશકર્તા-વ્યાખ્યાયિત ક્ષેત્ર ૩(~3)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "વપરાશકર્તા-વ્યાખ્યાયિત ક્ષેત્ર ૪ (~4)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "વપરાશકર્તા-વ્યાખ્યાયિત ક્ષેત્ર ૫(~5)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3605,30 +3605,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "નવી માહિતીના પ્રકાર માટે નામ લખો:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "કડી ક્ષેત્રો"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "સૂચવો"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "ઉપફોર્મ મુખ્ય ફોર્મના વર્તમાન રેકોર્ડ વિશે વિગતવાર માહિતી પ્રદર્શિત કરવા માટે વાપરી શકાય છે. આમ કરવા માટે, તમે સ્પષ્ટ કરી શકો છો કે ઉપફોર્મમાંના કયા સ્તંભો મુખ્ય ફોર્મમાંના કયા સ્તંભો સાથે બંધબેસે."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "લેબલ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "લેબલ"
diff --git a/source/gu/helpcontent2/source/auxiliary.po b/source/gu/helpcontent2/source/auxiliary.po
index a763a49147e..ef385a34f01 100644
--- a/source/gu/helpcontent2/source/auxiliary.po
+++ b/source/gu/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "સાધનપટ્ટીઓ"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menus"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "સાધનપટ્ટીઓ"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,17 +699,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/gu/helpcontent2/source/text/sbasic/guide.po b/source/gu/helpcontent2/source/text/sbasic/guide.po
index b9d0cb056c2..403879551e2 100644
--- a/source/gu/helpcontent2/source/text/sbasic/guide.po
+++ b/source/gu/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Opening a Dialog With Program Code"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>modules and dialogs; toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/sbasic/python.po b/source/gu/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/gu/helpcontent2/source/text/sbasic/python.po
+++ b/source/gu/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/gu/helpcontent2/source/text/sbasic/shared.po b/source/gu/helpcontent2/source/text/sbasic/shared.po
index f81913719aa..b7861f1bcd7 100644
--- a/source/gu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/gu/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/sbasic/shared/03.po b/source/gu/helpcontent2/source/text/sbasic/shared/03.po
index ca85db7581c..a9cec20b40f 100644
--- a/source/gu/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/gu/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/gu/helpcontent2/source/text/scalc/01.po b/source/gu/helpcontent2/source/text/scalc/01.po
index de8862cc8fe..28e00710436 100644
--- a/source/gu/helpcontent2/source/text/scalc/01.po
+++ b/source/gu/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/schart/00.po b/source/gu/helpcontent2/source/text/schart/00.po
index caf10a062f5..f2873c366a8 100644
--- a/source/gu/helpcontent2/source/text/schart/00.po
+++ b/source/gu/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/gu/helpcontent2/source/text/shared/00.po b/source/gu/helpcontent2/source/text/shared/00.po
index 1c5176adbe9..11abfbeb26f 100644
--- a/source/gu/helpcontent2/source/text/shared/00.po
+++ b/source/gu/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/gu/helpcontent2/source/text/shared/01.po b/source/gu/helpcontent2/source/text/shared/01.po
index c9f98c3629f..2d90004cac5 100644
--- a/source/gu/helpcontent2/source/text/shared/01.po
+++ b/source/gu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/gu/helpcontent2/source/text/shared/02.po b/source/gu/helpcontent2/source/text/shared/02.po
index 1488e49a3da..0777263c33f 100644
--- a/source/gu/helpcontent2/source/text/shared/02.po
+++ b/source/gu/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/gu/helpcontent2/source/text/shared/guide.po b/source/gu/helpcontent2/source/text/shared/guide.po
index 4841ffe21c4..693f746fd21 100644
--- a/source/gu/helpcontent2/source/text/shared/guide.po
+++ b/source/gu/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/gu/helpcontent2/source/text/shared/optionen.po b/source/gu/helpcontent2/source/text/shared/optionen.po
index c08325034e9..34e26a2952b 100644
--- a/source/gu/helpcontent2/source/text/shared/optionen.po
+++ b/source/gu/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/gu/helpcontent2/source/text/simpress/01.po b/source/gu/helpcontent2/source/text/simpress/01.po
index 2ed33679637..793603a2c03 100644
--- a/source/gu/helpcontent2/source/text/simpress/01.po
+++ b/source/gu/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/gu/helpcontent2/source/text/swriter/guide.po b/source/gu/helpcontent2/source/text/swriter/guide.po
index 700c50f3bbb..899e9da0701 100644
--- a/source/gu/helpcontent2/source/text/swriter/guide.po
+++ b/source/gu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "On the <emph>Standard Bar</emph>, click the<emph> Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
index 170cd7bba56..395cff30bee 100644
--- a/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gu/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -23726,6 +23726,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26066,6 +26075,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26084,6 +26102,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/gu/sc/messages.po b/source/gu/sc/messages.po
index 369459f605b..23d281cd17c 100644
--- a/source/gu/sc/messages.po
+++ b/source/gu/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15602,6 +15602,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(વિશિષ્ટ પ્રવેશ)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16167,12 +16172,12 @@ msgstr "શરતી બંધારણ"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17450,84 +17455,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "માહિતી ફાર્મ"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "બંધ કરો (_C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "નવો રેકોર્ડ"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "નવું(_N)"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "કાઢી નાંખો (_D)"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "પુન:સંગ્રહ કરો (_R)"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "પહેલાંનો અહેવાલ (_P)"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "આગળનો અહેવાલ (_x)"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "બંધ કરો (_C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "જીવંત માહિતી સ્ટ્રીમ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "સ્થાનિક ફાઈલ સિસ્ટમ અહીં ઈન્ટરનેટ ઉપર સ્રોત દસ્તાવેજ URL દાખલ કરો."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "બ્રાઉઝ કરો (_B)..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ડેટાબેઝ સીમા"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-#, fuzzy
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "સ્ત્રોત સ્ટ્રીમ"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19289,34 +19251,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "માહિતી (_D)"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "સ્તંભો"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "હરોળો"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "જૂથ દ્વારા"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "અંતરાલ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "પરિમાણો"
@@ -19467,167 +19434,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22233,17 +22202,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "શોધ પરિણામો"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24176,109 +24155,114 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "બાહ્યરેખા ચિહ્નો (_O)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "વિન્ડો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "જાળી લીટીઓ (_G):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "રંગ (_C):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "બતાવો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "રંગ થયેલ ખાનાં પર બતાવો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "છુપાડો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "પાનાની અટકણો (_P)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "હેલ્પલાઇન જ્યારે ખસેડી રહ્યા હોય (_w)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
#, fuzzy
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "દેખીતી મદદો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
#, fuzzy
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "ઑબ્જેક્ટ/ઇમેજ (_j)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "આલેખો (_r):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "ચિત્રકામ વસ્તુઓ (_D):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "બતાવો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "છુપાડો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "બતાવો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "છુપાડો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "બતાવો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "છુપાડો"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "ઑબ્જેક્ટ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "સમકાલિક શીટો (_y)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "નાનુંમોટું કરવુ"
diff --git a/source/gu/scp2/source/ooo.po b/source/gu/scp2/source/ooo.po
index 1ec6c6d9b43..19a0b19213c 100644
--- a/source/gu/scp2/source/ooo.po
+++ b/source/gu/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: gu_IN <kde-i18n-doc@kde.org>\n"
@@ -35,6 +35,14 @@ msgstr "દસ્તાવેજ ખોલો"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/gu/scp2/source/winexplorerext.po b/source/gu/scp2/source/winexplorerext.po
index a28dd6982ee..e5e35af0d31 100644
--- a/source/gu/scp2/source/winexplorerext.po
+++ b/source/gu/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 20:25+0200\n"
-"Last-Translator: sweta <swkothar@redhat.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 07:30+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369380640.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows Explorer ને %PRODUCTNAME દસ્તાવેજો, જેવા કે થમ્બનેઈલ પૂર્વદર્શનો વિશે જાણકારી બતાવવા માટે સક્રિય કરે છે."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/gu/sd/messages.po b/source/gu/sd/messages.po
index ec7ba700971..a648fdf7578 100644
--- a/source/gu/sd/messages.po
+++ b/source/gu/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2622,6 +2622,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3088,164 +3093,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML ભાતને નામ આપો"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4712,160 +4902,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "ફેરફારો બતાવો"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/gu/sfx2/messages.po b/source/gu/sfx2/messages.po
index dd0180d22e5..c58634f65ff 100644
--- a/source/gu/sfx2/messages.po
+++ b/source/gu/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -929,11 +929,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "ગુણધર્મ ને દૂર કરો"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -943,27 +938,27 @@ msgstr ""
"દાખલ થયેલ મૂલ્ય એ સ્પષ્ટ થયેલ પ્રકાર સાથે બંધબેસતુ નથી.\n"
"મૂલ્ય એ લખાણ તરીકે સંગ્રહ થયેલ હશે."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "શૈલી પહેલેથી હાજર છે. ઉપર લખશો?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "ફરી ગોઠવો (~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "આ નામ પહેલેથી ઉપયોગમાં છે."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "આ શૈલી અસ્તિત્વ ધરાવતી નથી."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -973,7 +968,7 @@ msgstr ""
"આ શૈલી આધાર શૈલી તરીકે વાપરી શકાતી નથી,\n"
"કારણ કે તે પુનરાવર્તી સંદર્ભમાં પરિણમશે."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -982,7 +977,7 @@ msgstr ""
"મૂળભૂત શૈલી તરીકે નામ પહેલાથી જ હાજર છે.\n"
"મહેરબાની કરીને અન્ય નામ પસંદ કરો."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -993,95 +988,95 @@ msgstr ""
"જો તમે આ શૈલીઓને કાઢી નાંખો તો, શૈલી એ મુખ્ય શૈલીમાં પાછુ જે.\n"
"શું તમે આ શૈલીઓને કાઢી નાંખવા માંગો છો?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "વપરાશમાં શૈલીઓ: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "નેવિગેટર"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "ભૂલભરેલી પાસવર્ડની ખાતરી"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "મોકલો"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ફોન્ટ"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "આવૃત્તિ ટિપ્પણી દર્શાવો"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "શૈલી યાદી"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "વંશવેલાવાળું"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "બંધારણ ભરવાની સ્થિતિ"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "પસંદગીમાંથી નવી શૈલી"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "શૈલીઓ ને સુધારો (~U)"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "શુ ખરેખર તમે રેકોર્ડ કરવાનું બંધ કરવા માગો છો? અત્યાર સુધી કરેલુ બધુ રેકોર્ડ દૂર થઇ જશે."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "રેકોર્ડ કરવાનુ રદ કરો"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "પ્રથમ સમયે ઉપયોગ માટે ટેમ્પલેટ શરુ કરવામાં આવ્યા છે."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1090,7 +1085,7 @@ msgstr ""
"કોઈ મૂળભૂત પ્રિન્ટર મળ્યું નહી.\n"
"મહેરબાની કરીને પ્રિન્ટર પસંદ કરો અને ફરીથી પ્રયત્ન કરો."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1099,17 +1094,17 @@ msgstr ""
"પ્રિન્ટર શરૂ કરી શક્યા નહી.\n"
"મહેરબાની કરી તમારુ પ્રિન્ટર રૂપરેખાંકન ચકાસો."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "પ્રિન્ટર વ્યસ્ત છે"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ફક્ત વાંચી શકાય તેવુ)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1120,7 +1115,7 @@ msgstr ""
"શું તમે સક્રિય દસ્તાવેજમાં નવા સુયોજનો સંગ્રહ કરવા\n"
"માંગો છો?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1131,7 +1126,7 @@ msgstr ""
"શું નવા સુયોજનો સક્રિય દસ્તાવેજમાં\n"
"સંગ્રહાવા જોઈએ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1142,7 +1137,7 @@ msgstr ""
"શું તમે સક્રિય દસ્તાવેજમાં નવા સુયોજનો સંગ્રહ કરવા\n"
"માંગો છો?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1152,7 +1147,7 @@ msgstr ""
"દસ્તાવેજને બંધ કરી શકાતો નથી કારણ કે\n"
" છાપન ક્રિયા લેવામાં આવેલ છે."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1160,7 +1155,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1168,18 +1163,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "આ દસ્તાવેજમાં બદલાવ કરી શકાતા નથી, કદાચ તેને પ્રાપ્ત કરવા માટે જરુરી અધિકારો નહિ હોય. શું તમે દસ્તાવેજની નકલમાં બદલાવ કરવા માગો છો?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1187,356 +1182,366 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (સુધારેલ દસ્તાવેજ)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "દસ્તાવેજને સર્વર પર ચકાસ્યા નથી"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "નિયંત્રણનો અહેવાલ કરો"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "ચકાસવાનું"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "દસ્તાવેજમાં ફેરફાર"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "દસ્તાવેજ પર સહી કરો..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ડૉક"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "ડૉક ન કરો"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "વધારે વિકલ્પો"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "બાજુપટ્ટી બંધ કરો"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "વૈવિધ્યપૂર્ણ"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "મૂળભૂત પુન:સંગ્રહો"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "દૂર કરો"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1911,32 +1916,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "આવૃત્તિ ટિપ્પણી"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "નામ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "પ્રકાર"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "કિંમત"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "પ્રકાર"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "હા"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "ના"
@@ -1946,17 +1936,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "નામ"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "પ્રકાર"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "કિંમત"
@@ -2091,17 +2081,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "સ્થાન (_L):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "પ્રકાર (_T):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "પાસવર્ડને બદલો (_P)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ટેમ્પ્લેટ:"
@@ -2112,27 +2102,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "ના ગુણધર્મો "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "સામાન્ય "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "વર્ણન"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "વૈવિધ્ય ગુણધર્મો"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS ગુણધર્મો"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "સુરક્ષા"
@@ -2362,6 +2352,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/gu/shell/messages.po b/source/gu/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/gu/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/gu/starmath/messages.po b/source/gu/starmath/messages.po
index 7704b05ccf2..4cefa385625 100644
--- a/source/gu/starmath/messages.po
+++ b/source/gu/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1643,268 +1643,293 @@ msgid "Examples"
msgstr "ઉદાહરણો"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "પ્રમાણભૂત"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ત્રાંસા"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ઘાટ્ટા"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "કાળો"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "વાદળી"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "લીલો"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "લાલ"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "મોરપીંછ"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "જાંબલી"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ગ્રે"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "લીંબુ"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "મરૂન"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "નેવી"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ઓલિવ"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "જાંબુડિયો"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ચાંદી"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "બતક"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "પીળો"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "છુપાડો"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "માપ"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "ફોન્ટ"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ડાબું"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "કેન્દ્ર"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "જમણે"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "આદેશો"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "સૂત્ર"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "દસ્તાવેજ સંગ્રહ કરી રહ્યા છે..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION સૂત્ર"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ભૂલ : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "અનિચ્છનીય અક્ષર"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' ઈચ્છિત છે"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' ઈચ્છિત છે"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' ઈચ્છિત છે"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' ઈચ્છિત છે"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' ઈચ્છિત છે"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "રંગ જરૂરી છે"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'જમણું' ઈચ્છિત છે"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "સમાવિષ્ટો"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "કોષ્ટક"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "સૂત્ર લખાણ"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "હદો"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "માપ"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "મૂળભૂત માપ"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "પાનામાં બંધબેસતુ"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1972,6 +1997,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "તત્વ"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/gu/svtools/messages.po b/source/gu/svtools/messages.po
index a810a90db81..db492d14a5e 100644
--- a/source/gu/svtools/messages.po
+++ b/source/gu/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1530 +16,1532 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195500.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "છેલ્લી ક્રિયા રદ કરો: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "ફરી કરો (~d): "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "પુનરાવર્તન (~R): "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "બંધારણ વગરનુ લખાણ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx આંતરિક કડીમાંથી સ્થિતીની જાણકારી"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "નેટસ્કેપ બૂકમાર્ક"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "સ્ટાર સર્વર બંધારણ"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "સ્ટાર વસ્તુ બંધારણ"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "એપ્લેટ વસ્તુ"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "પ્લગ-ઇન વસ્તુ"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "સ્ટારલેખક ૩.૦ વસ્તુ"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "સ્ટારલેખક ૪.૦ વસ્તુ"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "સ્ટારલેખક ૫.૦ વસ્તુ"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "સ્ટારલેખક/વેબ ૪.૦ વસ્તુ"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "સ્ટારલેખક/વેબ ૫.૦ વસ્તુ"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "સ્ટારલેખક/મુખ્ય ૪.૦ વસ્તુ"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "સ્ટારલેખક/મુખ્ય ૫.૦ વસ્તુ"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "સ્ટારડ્રો વસ્તુ"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "સ્ટારડ્રો ૪.૦ વસ્તુુ"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "સ્ટારઇમ્પ્રેસ ૫.૦ વસ્તુ"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "સ્ટારડ્રો ૫.૦ વસ્તુ"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "સ્ટારકૅલ્ક વસ્તુ"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "સ્ટારકૅલ્ક ૪.૦ વસ્તુ"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "સ્ટારકૅલ્ક ૫.૦ વસ્તુ"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "સ્ટારઆલેખ વસ્ત્ુ"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "સ્ટારઆલેખ ૪.૦ વસ્તુ"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "સ્ટારઆલેખ ૫.૦ વસ્તુ"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "સ્ટારઇમેજ વસ્તુ"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "સ્ટારઇમેજ ૪.૦ વસ્તુ"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "સ્ટારઇમેજ ૫.૦ વસ્તુ"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "સ્ટારમૅથ વસ્તુ"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "સ્ટારમૅથ ૪.૦ વસ્તુ"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "સ્ટારમૅથ ૫.૦ વસ્તુ"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "સ્ટારઅૉબજેક્ટ પેઇન્ટ વસ્તુ"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "માઇક્રોસોફ્ટ વર્ડ વસ્તુ"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "સ્ટારફ્રેમસેટ વસ્તુ"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "અોફિસ દસ્તાવેજ વસ્તુ"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "દસ્તાવેજ જાણકારીની નોંધ કરો"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx દસ્તાવેજ"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "સ્ટારઆલેખ ૫.૦ વસ્તુ"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ગ્રાફિક વસ્તુ"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org Writer ઑબ્જેક્ટ"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 લેખક/વેબ ઑબ્જેક્ટ"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master ઑબ્જેક્ટ"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw ઑબ્જેક્ટ"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress ઑબ્જેક્ટ"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc ઑબ્જેક્ટ"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart ઑબ્જેક્ટ"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math ઑબ્જેક્ટ"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "વિન્ડોની મેટાફાઇલ"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "માહિતી સ્ત્રોત વસ્તુ"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "માહિતી સ્ત્રોત કોષ્ટક"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL પ્રશ્ન"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 સંવાદ"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "કડી"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "ટિપ્પણીઓ વગરનુ HTML બંધારણ"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "વસ્તુ % ઉમેરી શકાયી નહિ."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ફાઇલ % માંથી વસ્તુ ઉમેરી શકાયી નહિ."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "હવે પછીની વસ્તુઓ"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "અજાણ્યો સ્ત્રોત"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "નામ"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "માપ"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "તારીખ બદલાઈ"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "પ્રકાર"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "બાઈટ્સ"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "કેબી"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "એમબી"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "જીબી"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "હરોળ: %1, સ્તંભ: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", પ્રકાર: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ફોલ્ડર"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ફાઇલ"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ખાલી ક્ષેત્ર"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "આલ્ફાન્યુમેરિક"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "સામાન્ય"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "અક્ષર સમૂહ"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "શબ્દકોષ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "સ્ટ્રોક"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "રેડિકલ"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "યુનિકોડ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ફોન ચોપડી"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ઉચ્ચારને લગતુ (પહેલા આલ્ફાન્યુમેરીક)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ઉચ્ચારને લગતુ (છેલ્લે આલ્ફાન્યુમેરીક)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "આલ્ફાન્યુમેરિક"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "શબ્દકોષ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "રેડિકલ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "સ્ટ્રોક"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ઉચ્ચારને લગતુ (પહેલા આલ્ફાન્યુમેરીક, એક જ વખતમાં ઉચ્ચારી શકાય તેવા શબ્દ દ્વારા સમૂહિત)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ઉચ્ચારને લગતુ (પહેલા આલ્ફાન્યુમેરીક, વ્યંજનો દ્વારા સમૂહિત)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ઉચ્ચારને લગતુ (છેલ્લા આલ્ફાન્યુમેરીક, એક જ વખતમાં ઉચ્ચારી શકાય તેવા શબ્દ દ્વારા સમૂહિત)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ઉચ્ચારને લગતુ (છેલ્લા આલ્ફાન્યુમેરીક, વ્યંજનો દ્વારા સમૂહિત)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "આજે"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "કંઇ નહી"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ઝાંખા"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "હળવા ત્રાંસા"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "નિયમિત"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ત્રાંસા"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ઘાટ્ટા"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ઘાટ્ટા ત્રાંસા"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "કાળા"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "કાળા ત્રાંસા"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ચોપડી"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "સંક્ષિપ્ત ઘટ્ટ કરેલું"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "અશત: ઘટ્ટ"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "તમારા પ્રિન્ટર અને તમારી સ્ક્રીન બંને પર સમાન ફોન્ટ વાપરી શકાશે."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "આ પ્રિન્ટર ફોન્ટ છે. સ્ક્રીનનું ચિત્ર કદાચ અલગ હોઈ શકે."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "આ ફોન્ટની પધ્ધતિ ખોટી હોઈ શકે અથવા નજીકની બંધબેસતી પધ્ધતિ વાપરાશે."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ફોન્ટનું માપ સ્થાપિત થયુ નથી. જે નજીકનું પ્રાપ્ય માપ છે તે વપરાશે."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "શોધો..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ઘરમાં ખસેડો"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ડાબી બાજુ ખસો"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "જમણી બાજુ ખસો"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "અંતમાં ખસેડો"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ઉમેરો"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "આડી માપપટ્ટી"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ઊભી માપપટ્ટી"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 બિટ થ્રેશોલ્ડ"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 બિટ ડિધર"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 બિટ ગ્રેસ્કૅલ"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 બિટ રંગ"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 બિટ ગ્રેસ્કૅલ"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 બિટ રંગ"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 બિટ સાચા રંગ"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ચિત્રને %1 KB મેમરીની જરૂર છે."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ચિત્રને %1 KB મેમરીની જરૂર છે, ફાઇલનું માપ %2 KB છે."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ફાઇલનું માપ %1 KB છે."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "પોસ્ટ"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ક્રમમાં ગોઠવો"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "તૈયાર"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "વિરામ"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "અનિર્ણીત દૂર કરો"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "વ્યસ્ત"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "શરૂઆત"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "રાહ જોઇ રહ્યા છે"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "તૈયાર થાય છે"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "પ્રક્રિયા કરી રહ્યા છીએ"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "છાપી રહ્યા છે"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ઓફલાઈન"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ક્ષતિ"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "અજાણ્યુ સર્વર"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "કાગળ ફસાઈ ગયો"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "પૂરતા કાગળ નથી"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "તમારી જાતે નાખો"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "કાગળની સમસ્યા"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O સક્રિય"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "આઉટપુટ બીન ભરેલુ છે"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "ટોનર ઓછુ"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "ટોનર નથી"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "પાનું દૂર કરો"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "વપરાશક્રર્તા હસ્તક્ષેપ જરૂરી"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "અપૂરતી મૅમરી"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "આચ્છાદન ખોલો"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "પાવર સંગ્રહ કરવાની સ્થિતિ"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "મૂળભુત પ્રિન્ટર"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d દસ્તાવેજો"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "સંપૂર્ણ(~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "આગળ > (~N)"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< પાાછા(~k)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "પગલાઓ"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<કંઇ નહિ>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "કંપની"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "વિભાગ"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "પહેલું નામ"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "છેલ્લુ નામ"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "શેરી"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "દેશ"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ઝીપ કોડ"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "શહેર"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "શીર્ષક"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "જગ્યા"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "સરનામું ફોર્મ"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "શરુઆતો"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "સારી રીતે બંધ કરો"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "ટેલિફોન: ઘર"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "ટેલિફોન: કાર્ય"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "નોંધ"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "વપરાશકર્તા ૧"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "વપરાશકર્તા ૨"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "વપરાશકર્તા ૩"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "વપરાશકર્તા ૪"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ઓળખ"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "સ્થિતિ"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "ટેલિફોન: ઑફિસ"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "પેજર"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "મોબાઈલ"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ટેલિફોન: બીજો"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "કેલેન્ડર"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "આમંત્રણ આપો"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME એ આ કાર્ય ને ચલાવવા માટે Java runtime environment (JRE) ની જરૂર છે. મહેરબાની કરીને JRE ને સ્થાપિત કરો અને %PRODUCTNAME ને ફરી શરૂ કરો."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME રૂપરેખાંકનને બદલી દેવામાં આવ્યુ છે. %PRODUCTNAME - પસંદગીઓ - %PRODUCTNAME - Java હેઠળ, Java રનટાઇમ પર્યાવરણને પસંદ કરો જે તમે %PRODUCTNAME દ્દારા વાપરવા ઇચ્છો છો."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME રૂપરેખાંકન ને બદલી દેવામાં આવ્યુ છે. સાધનો - વિકલ્પો - %PRODUCTNAME - Java ની હેઠળ, %PRODUCTNAME દ્દારા તમે વાપરવા ઇચ્છતા હોય તો Java runtime environment ને પસંદ કરો."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ને આ કાર્ય કરવા માટે Java runtime environment (JRE) ની જરૂર છે. પસંદ થયેલ JRE એ ખામીવાળુ છે. મહેરબાની કરીને બીજી આવૃત્તિને પસંદ કરો અથવા નવાં JRE ને સ્થાપિત કરો અને %PRODUCTNAME - પસંદગીઓ - %PRODUCTNAME - ઉન્નત હેઠળ તેને પસંદ કરો."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME આ કાર્ય ને ચલાવવા માટે Java runtime environment (JRE) ની જરૂર છે. પસંદ થયેલ JRE એ ખામીભર્યું છે. મહેરબાની કરીને બીજી આવૃત્તિ ને પસંદ કરો અથવા નવા JRE ને સ્થાપિત કરો અને સાધનો - વિકલ્પો - %PRODUCTNAME - ઉન્નત ની હેઠળ પસંદ કરો."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ની જરૂરિયાત છે"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE ને પસંદ કરો"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE એ ખામીવાળુ છે"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "સ્ત્રોત કોડ"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ફાઇલને બૂકમાર્ક કરો"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ગ્રાફિક્સ"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "રુપરેખાંકનની ફાઇલ"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "કાર્યક્રમ"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ડેટાબેઝ કોષ્ટક"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "સિસ્ટમ ફાઇલ"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS વર્ડ દસ્તાવેજ"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "મદદ માટેની ફાઇલ"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML દસ્તાવેજ"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "પેટીની ફાઇલ"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "માહિતીની ફાઇલ"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ડેટાબેઝ"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "સ્ટારરાઇટર ૪.0 / ૫.0 મુખ્ય દસ્તાવેજ"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice ચિત્ર"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "લખાણ માટેની ફાઇલ"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "કડી"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 ટેમ્પલેટ"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS એક્સેલ દસ્તાવેજ"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS એક્સેલ ટેમ્પલેટ"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "બેચ ફાઇલ"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ફાઇલ"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ફોલ્ડર"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "લખાણ દસ્તાવેજ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "સ્પ્રેડશીટ"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "રજૂઆત"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ચિત્રકામ"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML દસ્તાવેજ"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "મુખ્ય દસ્તાવેજ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "સૂત્ર"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ડેટાબેઝ"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 સ્પ્રેડશીટ ટૅમ્પલેટ"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 ચિત્રકામ ટૅમ્પલેટ"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 રજૂઆત ટૅમ્પલેટ"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 લખાણ દસ્તાવેજ ટૅમ્પલેટ"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "સ્થાનિક ડ્રાઈવ"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ડિસ્ક ડ્રાઈવ"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ડ્રાઈવ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "નેટવર્ક જોડાણ"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS પાવર પોઈન્ટ દસ્તાવેજ"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS પાવર પોઈન્ટ ટેમ્પલેટ"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS પાવર પોઈન્ટ દેખાવ"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 સૂત્ર"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 આલેખ"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org ચિત્રકામ"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 સ્પ્રેડશીટ"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 રજૂઆત"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 લખાણ દસ્તાવેજ"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 મુખ્ય દસ્તાવેજ"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML દસ્તાવેજ"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ઓપનડોકયુમેન્ટ ડેટાબેઝ"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ઓપનડોકયુમેન્ટ ચિત્રકામ"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ઓપનડોકયુમેન્ટ સુત્ર"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ઓપનડોકયુમેન્ટ મુખ્ય દસ્તાવેજ"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ઓપનડોકયુમેન્ટ રજૂઆત"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ઓપનડોકયુમેન્ટ સ્પ્રેડશીટ"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ઓપનડોકયુમેન્ટ લખાણ"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ઓપનડોકયુમેન્ટ સ્પ્રેડશીટ ટેમ્પલેટ"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ઓપનડોકયુમેન્ટ ચિત્રકામ ટેમ્પલેટ"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ઓપનડોકયુમેન્ટ રજૂઆત ટેમ્પલેટ"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ઓપનડોકયુમેન્ટ લખાણ ટેમ્પલેટ"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME એક્સટેન્શન"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/gu/svx/messages.po b/source/gu/svx/messages.po
index b24c8f2aac9..94a0ca5d811 100644
--- a/source/gu/svx/messages.po
+++ b/source/gu/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8006,6 +8006,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12541,88 +12546,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "કન્ટુરનો સંપાદક"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "અમલમાં મૂકો"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "કાર્ય કરવાની જગ્યા"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "પસંદ કરો"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "સમચોરસ"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "અંડાકૃતિ"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "બહુકોણ"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ફેરફાર બિંદુઓ"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "બિંદુઓને ખસેડો"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "બિંદુઓ દાખલ કરો"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "બિંદુઓ કાઢી નાંખો"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "આપમેળે કન્ટુર"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "પાછું લાવો "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "લાલ"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "પિપેટ"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12953,122 +12963,116 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "ફૂટર"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ચિત્રનક્શા સંપાદક"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "અમલમાં મૂકો"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "ખોલો..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "સંગ્રહ કરો..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "બંધ કરો"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "પસંદ કરો"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "સમચોરસ"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "અંડાકૃતિ"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "બહુકોણ"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "મુક્ત રીતે રચાયેલો બહુકોણ"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ફેરફાર બિંદુઓ"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "બિંદુઓને ખસેડો"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "બિંદુઓ દાખલ કરો"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "બિંદુઓ કાઢી નાંખો"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "પાછું લાવો "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "લાલ"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "સક્રિય"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "મેક્રો..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "ગુણધર્મો: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "સરનામું:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ચોકઠું"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/gu/sw/messages.po b/source/gu/sw/messages.po
index f9ccd79ffe1..19c787d9f64 100644
--- a/source/gu/sw/messages.po
+++ b/source/gu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,9 +3180,9 @@ msgid "Change object title of $1"
msgstr "$1 નાં ઓબ્જેક્ટ શીર્ષકને બદલો"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 ની ઓબ્જેક્ટ વર્ણનને બદલો"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12453,147 +12453,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12603,152 +12603,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13847,7 +13847,7 @@ msgstr "ઉચિત ફકરાઓમાં જાતે લીટી તો
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17263,47 +17263,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "પૂર્વદર્શન"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "પૂર્વદર્શન"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "પ્રકાર"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "નોંધણીઓ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "શૈલીઓ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "સ્તંભો"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "પાશ્વભાગ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "પૂર્વદર્શન"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "સ્તર (_L)"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "પ્રકાર (_T)"
@@ -17547,316 +17547,316 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "ફેરફાર (_E)..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "શીર્ષક (_T)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "પ્રકાર:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "સમાવિષ્ટોનું કોષ્ટક"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "બારાખડી પ્રમાણે અનુક્રમણિકા"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "કોષ્ટકનો અનુક્રમ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "વપરાશકર્તા-વ્યાખ્યાયિત"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "વસ્તુઓનુ કોષ્ટક"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "સંદર્ભ ગ્રંથ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "માનવીય બદલાવો વિરુદ્ધ રક્ષણ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
#, fuzzy
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "પ્રકાર અને શીર્ષક"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ફોર્મ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "આખો દસ્તાવેજ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "પ્રકરણ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
#, fuzzy
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "સ્તર સુધી ગણતરી કરો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "રૂપરેખા"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "કોષ્ટકો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "લખાણ ફ્રેમ (_x)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ગ્રાફિક્સ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE વસ્તુઓ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "સ્ત્રોત પ્રકરણમાંથી સ્તર વાપરો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "વધારાની શૈલી (_A)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "શૈલીઓ (_e)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "શૈલી અમલમાં મૂકો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "કેપ્શનો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "ઑબ્જેક્ટ નામો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "વર્ગ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "ડિસ્પ્લે"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "સંદર્ભો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "વર્ગ અને ક્રમ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "કેપ્શન લખાણ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
#, fuzzy
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "માંથી બનાવો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
#, fuzzy
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "નીચેની વસ્તુઓ પરથી બનાવો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "કૌંસ (_B)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[કંઇ નહિં]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
#, fuzzy
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "પ્રવેશોનું બંધારણ ઘડો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "એકસરખા ભેગા પ્રવેશો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "p અથવા pp સાથે એકસરખા ભેગા પ્રવેશો (_p)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "ની સાથે ભેગુ કરો -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "કેસ સંવેદનશીલ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "પ્રવેશો આપમેળે મોટા કરો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "કળ અલગ પ્રવેશ તરીકે"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "સુમેળતા ફાઈલ(_C)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ફાઈલ (_F)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "વિકલ્પો"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ભાષા"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "કીનો પ્રકાર"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "ક્રમમાં ગોઠવો"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "સ્તરો (_L)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "ફકરાની શૈલીઓ (_S)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "મૂળભૂત (_D)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "ફેરફાર (_E)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "અભ્યાસ"
diff --git a/source/gug/cui/messages.po b/source/gug/cui/messages.po
index 951cc594875..b986cc6ce7a 100644
--- a/source/gug/cui/messages.po
+++ b/source/gug/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1643,107 +1643,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Borde'ỹ"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Emoĩ borde okapegua año"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Borde okápegua ha línea oñenóva kuéra"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Borde okápegua ha línea hy'epy pegua"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Emoĩ borde okaragua moambue'ỹ línea kuéra hyepypegua"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Emoĩ línea diagonal año"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Emoĩ yrundy borde kuéra"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Emoĩ borde asúpe ha akatúa año"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Emoĩ borde yvategua ha yvýpegua año"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Emoĩ borde asúpe año"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Emoĩ borde yvategua ha yvýpegua ha opavave línea hyepypepegua"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Emoĩ borde asúpegua ha akatúagua ha opavave línea hyepypepegua"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Kuarahy'ãỹ"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Ame'ẽ kuarahy'ã yvýpegua parte ijakatuahápe"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Ame'ẽ kuarahy'ã yvate parte ijakatuahápe"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Ame'ẽ kuarahy'ã yvýpegua parte ijasupehápe"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Proyectar kuarahy'ã a Yvate-Asúpe"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1786,7 +1781,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1906,7 +1901,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2146,7 +2141,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2401,12 +2396,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2476,7 +2471,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2556,7 +2551,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2797,7 +2792,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3383,66 +3378,71 @@ msgid "About %PRODUCTNAME"
msgstr "Eikuaave haguã %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Cré_ditos"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Togue_Web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Japo ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Configuración Tenda: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME ha'e peteĩ moderno, ndahasýi ojepuru haguã, 'open source' para el proceso moñe'ẽrãgui, kuatia kálkulo peguarã, ojechauka kuéra ha hetave."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice se basó en OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME ouha de LibreOffice, basado en OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Ko versión oñeme'ẽ va'ekue por %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
@@ -3559,17 +3559,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Mbykovia"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Mbyko_via"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Por:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Moñe'ẽrã año"
@@ -4395,6 +4395,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Longitud Michĩvéva de Palabra"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5506,27 +5666,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Mba'e Tee kuéra"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Marco:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Téra:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Moñe'ẽrã alternativo:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Ñemombe'upaite:"
@@ -9049,80 +9209,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pytyvõ"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Puru ñemongeta %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Eavri/Ñongatu Ñemongeta"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Puru _ñemongeta %PRODUCTNAME "
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Ñemongeta Impresión"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Impresión reko atýpe ''documento oñemoambue va'ekue''"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Teko Documentogui"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar mba'éicha ára mbyte "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ha "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ára (Mokõi Dígitos)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Hupi %PRODUCTNAME ñepyrũ sistema jave"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Myendy ÑepyrũPya'e systray"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "ÑepyrũPya'e %PRODUCTNAME"
@@ -11007,25 +11167,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tema Imba'e Tee"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "O, eiporavo peteĩ Tema instalados extensiones guive:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Temas de Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11653,102 +11798,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opcionáke de Seguridad"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Poravo Tema de Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12757,27 +12806,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/gug/extensions/messages.po b/source/gug/extensions/messages.po
index 524436e037a..5936352eb57 100644
--- a/source/gug/extensions/messages.po
+++ b/source/gug/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3130,169 +3130,169 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Téra mombykypapyre"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Apohára(kuéra)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "E_ditorial"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Capítulo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Ára"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Títu_lo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "J_aikoha"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Ro_gue(kuéra)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_ición"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Título kuatiahaigui"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volumen"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Tipo publicacíongui"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organización"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_ución"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versidad"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tipo de informe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Jasy"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Diario"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Papa_py"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_rie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Ojehai va'ekue"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Téra Columnagui kuéra"
@@ -3471,27 +3471,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Mbojoaju ñukuéra"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiqueta"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiqueta"
diff --git a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
index 397a146f978..2149cc2ee70 100644
--- a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23528,6 +23528,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25833,6 +25842,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25851,6 +25869,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/gug/sc/messages.po b/source/gug/sc/messages.po
index 52e4f6d3cce..f258ff22cac 100644
--- a/source/gug/sc/messages.po
+++ b/source/gug/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15559,6 +15559,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(jeikeha tee)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16112,12 +16117,12 @@ msgstr "Sambyhy Formato Condicional"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17335,82 +17340,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulario de datos"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Mboty"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Registro Pyahu"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Pyahu"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Juka"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Myatyrõ"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Registro _Tenondegua"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Registro _oseguía"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Mboty"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Syry Datosgui En Directo"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Ehai el URL documento moógui ou en el sistema ñongatuha local o Internetgui ko'ápe."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Kundaha..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Rangos base de datosgui"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Syry Moógui Ou"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19127,32 +19091,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultados en:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Datos"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Columnas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Tysỹi kuéra"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Aty en:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Pytu'u:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parámetros"
@@ -19292,167 +19261,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21971,17 +21942,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Resultados Ojeheka va'ekue"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23852,107 +23833,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Símb_olos trazado gui"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Ovetã"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Líneas _cuadrículagui"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Sa'y:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Hechauka"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Hechauka koty'ípe coloreadas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Mokañy"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Kytĩ roguégui"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Líneas pytyvõgui _omýi jave"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Pytyvõ Teságui"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Mb_a'e/Ta'anga kuéra:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "G_ráficos:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Mba'ekuéra dibújogui"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Hechauka"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Mokañy"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Hechauka"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Mokañy"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Hechauka"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Mokañy"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Mba'ekuéra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_incronizar rogue kuéra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Enfocar"
diff --git a/source/gug/scp2/source/ooo.po b/source/gug/scp2/source/ooo.po
index 31baafcadcc..9647eb13dc7 100644
--- a/source/gug/scp2/source/ooo.po
+++ b/source/gug/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Eavri Documento"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/gug/scp2/source/winexplorerext.po b/source/gug/scp2/source/winexplorerext.po
index cbffe8c7d74..9c620df1ed7 100644
--- a/source/gug/scp2/source/winexplorerext.po
+++ b/source/gug/scp2/source/winexplorerext.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2014-11-18 11:23+0100\n"
-"PO-Revision-Date: 2015-03-16 20:35+0000\n"
-"Last-Translator: Giovanni <giovannicaligaris@gmail.com>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2015-08-06 20:42+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: gn\n"
+"Language: gug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Pootle 2.5.1\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1426538104.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1438893741.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
msgstr ""
diff --git a/source/gug/sd/messages.po b/source/gug/sd/messages.po
index 3177d90a114..7eab544a230 100644
--- a/source/gug/sd/messages.po
+++ b/source/gug/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2597,6 +2597,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3055,164 +3060,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Téra diseñogui HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4630,160 +4820,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Ehechauka mba'eichaguápa"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/gug/sfx2/messages.po b/source/gug/sfx2/messages.po
index d0cb73ef546..7987e727317 100644
--- a/source/gug/sfx2/messages.po
+++ b/source/gug/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -895,54 +895,49 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Nohẽ Mba'e Tee"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Ko ñongatuha oiko. ¿Reipota ehai jevy?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Ñepyrũ Jey"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Ko téra ojepuruma."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -950,119 +945,119 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navegador"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Mondo"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Letra Háicha"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Hecha Oje'éva Versión"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lista de Estilos"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Jerárquico"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Modo Myenyhẽ Formato"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Estilo Pyahu Jeporavo guive"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Oñemoĩ al día Estilo kuéra"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Eheja Rei Grabación"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Impresora omba'apova"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (moñe'ẽ-año)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1070,7 +1065,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1078,7 +1073,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1086,14 +1081,14 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1101,7 +1096,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1109,17 +1104,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1127,356 +1122,366 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Ñemaña kuéra Infórmegui"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Ñeñangareko'ỹ"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editar Documento"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Firmar el Documento..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
#, fuzzy
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Joko"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Ñoña'ỹ"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Opcionáke've"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Emboty Barra Ijykepegua"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Myatyrõ ndegustaháicha"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Emoĩ oĩhaguéicha voi"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Emboty Barra Ijykepegua"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Nohẽ"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1840,32 +1845,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr ""
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Téra"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipo"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valor"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Héẽ"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nahániri"
@@ -1875,17 +1865,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Moĩve _Mba'e Tee"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Téra"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valor"
@@ -2020,17 +2010,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Tenda:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipo:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Moambue _Password"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Plantilla:"
@@ -2040,27 +2030,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Mba'e Tee “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "General "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Ñemombe'upaite..."
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Mba'e Tee kuéra - Myatyrõ Ndegustaháicha"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Seguridad"
@@ -2275,6 +2265,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/gug/shell/messages.po b/source/gug/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/gug/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/gug/starmath/messages.po b/source/gug/starmath/messages.po
index 4a0df0fc1e5..a9947d92904 100644
--- a/source/gug/starmath/messages.po
+++ b/source/gug/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1655,272 +1655,297 @@ msgid "Examples"
msgstr "Techapyrã kuéra"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estándar"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiva"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Hũ'i"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "hũ"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "hovy"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "aky"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "pytã"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cian"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "hũndy"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lima"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marrón"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "hovy marino"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "aceituna"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lila"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "plata"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "aky-hovyha"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "sa'yju"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "mokañy"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamaño"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "letra háicha"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "asúpe"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "mbyte"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "akatúa"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comandos"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Ñongatu hína documento..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula de %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "JEJAVY: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Carácter ha'arõpapyre'ỹ"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
#, fuzzy
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Atteso '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
#, fuzzy
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' atteso"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
#, fuzzy
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Atteso '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
#, fuzzy
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Atteso ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
#, fuzzy
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Atteso '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Ñeikotevẽva peteĩ Sa'y"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
#, fuzzy
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Atteso 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Orekóva"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Título"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Moñe'ẽrã fórmulagui"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Borde"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamaño"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamaño original"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ojeahusta a rogue"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1986,6 +2011,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elemento kuéra"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/gug/svtools/messages.po b/source/gug/svtools/messages.po
index fddb65a065b..61fe2c4c74e 100644
--- a/source/gug/svtools/messages.po
+++ b/source/gug/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1535 +16,1537 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195507.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Japo'ỹ: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
+msgid "Redo: "
msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Ha'ejevy: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Moñe'ẽrã Formato'yre"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcador Netscape gui"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
#, fuzzy
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Eipuru mba'e"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Mba'e Plug-in"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Mba'e StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Mba'e StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Mba'e StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Mba'e StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Mba'e StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Mba'e StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Mba'e StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Mba'e StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Mba'e StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Mba'e StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Mba'e StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Mba'e StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Mba'e StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Mba'e StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Mba'e StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Mba'e StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Mba'e StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Mba'e StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Mba'e StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Mba'e StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Mba'e StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Mba'e StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Mba'e StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Mba'e StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Mba'e Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Mba'e StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Documento Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documento Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Mba'e StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Mba'e gráfico"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Mba'e OpenOffice.org Writer 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Mba'e OpenOffice.org Writer/Web 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Mba'e OpenOffice.org Writer/Master 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Mba'e OpenOffice.org Draw 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Mba'e OpenOffice.org Impress 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Mba'e OpenOffice.org Calc 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Mba'e OpenOffice.org Chart 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Mba'e OpenOffice.org Math 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows Meta Añongatu"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Mba'e moógui ou dato kuéra"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabla de moógui ou dato kuéra"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Ñeporandu SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Ñemongeta OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Link"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, fuzzy, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Nikatúi ojemoinge la tabla."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Moógui ou jekuaa'ỹva"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Téra"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Tamaño"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr ""
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipo"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Tysỹi: %1, Columna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Type: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Carpeta"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Ñongatuha"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
#, fuzzy
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "_Caracteres aty"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Ñe'ẽryru"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
#, fuzzy
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radial"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Ñe'ẽryru"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radial"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Ko Ára"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Mavave"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
#, fuzzy
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Akatúa"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiva"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Hũ'i"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Hũ'i Cursiva"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Hũ"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Hũ Cursiva"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Kuatiahai"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensado"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Kundaha..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mongu'e Asúpe"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mongu'e Akatúa"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Moĩ"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Regla Oñenóva"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Regla Oñembo'ýva"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit umbral"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 Bit Interpolación"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escala hũngy 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Sa'y 4 bit"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala hũndy 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Sa'y 8 bit"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Sa'y Ete 24 bit"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Post"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Mohenda"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pausa"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Tembiapope"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Ha'arõ jave"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Imprimiendo"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Jejavy"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O kyre'ỹ"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Tóner karape"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "J~uka Rogue"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impresora Default"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documentos"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Momba"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Oseguía >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Jev~y Jey"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Pyrũ kuéra"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<mavave>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamento"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Peteĩha téra"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Apellidos"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Táva Rape"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Tetã"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Táva"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Título"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Ñemohenda"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciales"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
#, fuzzy
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Ñe'ẽjoaju Tayma"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: Óga"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
#, fuzzy
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Mavave"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Usuario 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Usuario 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Usuario 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Usuario 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Estado/Provincia/Departamento"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Beeper"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Celular"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Poravo JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Código moógui ou"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Ñongatuha marcador kuéra"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Ta'anga kuéra"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Ñongatuha configuracióngui"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicación"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
#, fuzzy
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Ñongatuha Base de datosgui"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Ñongatuha Sistemagui"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documento MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ñongatuha Pytyvõgui"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de datos StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Documento Master StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Ta'anga StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Ñongatuha Moñe'ẽrãgui"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Link"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Plantilla StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documento MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Plantilla MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Ñongatuha"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Carpeta"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documento Moñe'ẽrã"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Kuatia Kálkulo Peguarã"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Ojechauka"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dibujo"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Documento master"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de datos"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Plantilla Kuatia Kálkulo Peguarã OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Plantilla Dibújogui OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Plantilla Ojechauka OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Plantilla Documento Moñe'ẽrãgui OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unidad local"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unidad de disco"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unidad de CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Conexión de Red"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documento MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Plantilla MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Gráfico OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dibujo OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Kuatia Kálkulo Peguarã OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Ojechauka OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documento Moñe'ẽrã OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Documento Master OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documento MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de datos OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dibujo OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Documento Master OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Ojechauka OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Kuatia Kálkulo Peguarã OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Moñe'ẽrã OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Plantilla Kuatia Kálkulo Peguarã OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Plantilla Dibújogui OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Plantilla Ojechauka OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Plantilla Moñe'ẽrãgui OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensión %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/gug/svx/messages.po b/source/gug/svx/messages.po
index 408c9060a61..fa49ab000e6 100644
--- a/source/gug/svx/messages.po
+++ b/source/gug/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8070,6 +8070,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12496,83 +12501,88 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Moĩ"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Tembi~apo Renda"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Poravo"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rectángulo"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polígono"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar Kyta kuéra"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mongu'e Kyta kuéra"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Moinge Kyta kuéra"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Juka Kyta kuéra"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Japo'ỹ "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Japo Jey"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr ""
@@ -12893,112 +12903,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Py roguégui"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Moĩ"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Eavri..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Ñongatu..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Mboty"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Poravo"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rectángulo"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polígono"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar Kyta kuéra"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mongu'e Kyta kuéra"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Moinge Kyta kuéra"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Juka Kyta kuéra"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Japo'ỹ "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Japo Jey"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Kyre'ỹ"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Mba'e Tee kuéra..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Dirección:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Marco:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Moñe'ẽrã:"
diff --git a/source/gug/sw/messages.po b/source/gug/sw/messages.po
index beb441d68a6..9421730b8cc 100644
--- a/source/gug/sw/messages.po
+++ b/source/gug/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gug\n"
@@ -3132,9 +3132,9 @@ msgid "Change object title of $1"
msgstr "Moambue título mba'egui $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Moambue ñemombe'upaite mba'egui $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12084,147 +12084,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12234,152 +12234,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13447,8 +13447,8 @@ msgstr "Myasãi pa'ũ palabras mbytépe líneas párrafosgui momarangatu kytĩnd
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Myanyhẽha ñemo'ã"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16751,47 +16751,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Tetepy, mbopapapy térã arandukapurupyre"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Techauka Mboyve"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Opamboyve"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Jeikeha kuéra"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Estilo kuéra"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Columnas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Hapykuegua"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Opamboyve"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Nivel"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tipo"
@@ -17021,302 +17021,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Editar..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Título:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Tabla Orekóva"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Índice alfabético"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Índice Tablagui"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Myesakã va'ekue-Usuario"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tabla Mba'e kuéra"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografía"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Oñeñangareko contra moambue pópe ojejapóva"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipo ha Título"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Guarã:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Opavave documento"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capítulo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evaluar nivel peve:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Emoheñói mbopapapy térã tetepy rehegua"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Trazado"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Marca kuéra índice gui"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tablas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Ma_rcos Moñe'ẽrã"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Gráficos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Mba'e kuéra OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Puru nivel capítulo moógui ou"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Estilo kuéra adicionales"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Estilos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Ojeasigná estilo kuéra..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Subtítulos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Téra mba'e kuéra"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categoría:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Hecha:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referencias"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categoría ha Papapy"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Moñe'ẽrã Subtítulo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Japo de"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Japo ko mba'e kuéra"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Paréntesis:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Jeikeha _numéricas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[mavave]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formateo jeikehágui"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Combinar jeikeha ojojáva"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Combinar jeikeha ojojáva ndi p. o _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Combinarndi -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Jekuaa mayúsculas ha minúsculas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Jeikeha mayúsculas automáticas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Clave mba'éicha jeikeha jei"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Ñongatuha ojeguereháa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Ñongatuha"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opcionáke"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Ñe'ẽ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipo votõ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Mohenda"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Niveles"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Estilo kuéra _Párrafogui"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Oĩhaguéicha voi"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Editar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Mbohéra"
diff --git a/source/he/cui/messages.po b/source/he/cui/messages.po
index 633214264e6..3e990e0789b 100644
--- a/source/he/cui/messages.po
+++ b/source/he/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1647,107 +1647,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "אל תסמן גבולות"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "סימון גבול חיצוני בלבד"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "סימון הגבול החיצוני והקווים האופקיים"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "סימון הגבול החיצוני וכל הקווים הפנימיים"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "סימון הגבול החיצוני בלי לשנות את הקווים הפנימיים"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "סימון קווים אלכסוניים בלבד"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "סימון כל ארבעת הגבולות"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "סימון הגבול השמאלי והימני בלבד"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "סימון הגבול העליון והתחתון בלבד"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "סימון הגבול השמאלי בלבד"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "סימון גבולות עליונים ותחתונים, וגם כל הקווים פנימיים"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "סימון גבולות ימינים ושמאלים, וגם כל הקווים פנימיים"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "ללא הצללה"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "הטלת צל לעבר הצד הימני התחתון"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "הטלת צל לעבר הצד הימני העליון"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "הטלת צל לעבר הצד השמאלי התחתון"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "הטלת צל לעבר הצד השמאלי העליון"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1790,7 +1785,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1910,7 +1905,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2150,7 +2145,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2405,12 +2400,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2480,7 +2475,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2560,7 +2555,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2801,7 +2796,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3420,66 +3415,71 @@ msgid "About %PRODUCTNAME"
msgstr "על אודות %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "_תודות"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "א_תר אינטרנט"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "מזהה הבנייה: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "מיקום: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME הנה חבילה, פשוטה, מודרנית ובקוד פתוח של תכניות הפקה כגון עריכת מסמכים, גיליונות אלקטרוניים, מצגות ועוד."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice מבוססת על OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME היא נגזרת של LibreOffice המבוססת על OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "גרסה זו סופקה ע״י %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3596,17 +3596,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "החלפה"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "החלפה"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "עם:‏"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "טקסט בלבד"
@@ -4463,6 +4463,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5599,27 +5759,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "תכונות"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_כתובת:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "מ_סגרת:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_שם:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "טקסט _חלופי:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_תיאור:"
@@ -9330,84 +9490,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "עזרה"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "שימוש בדו-שיח ‏‪%PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "פתיחת/שמירת דו שיח"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "שימוש בדו-שיח ‏‪%PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "תיבות דו־שיח הדפסה"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "הדפסת המסמך משנה את מצב ה'המסמך השתנה' שלו"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "מצב מסמך"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "וגם "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "שנה (שתי ספרות)‏"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "טעינת ‏‪%PRODUCTNAME‬‏ במהלך עליית המערכת"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "הפעלת מאיץ האתחול"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "הפעלה מהירה של ‏‪%PRODUCTNAME‏"
@@ -11378,25 +11538,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "ערכת עיצוב אישית"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "ערכות עיצוב של פיירפוקס"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -12048,102 +12193,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "אפשרויות אבטחה"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13199,27 +13248,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/he/extensions/messages.po b/source/he/extensions/messages.po
index 54dcda78181..0fff20c6af2 100644
--- a/source/he/extensions/messages.po
+++ b/source/he/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3196,187 +3196,187 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "מתווה עמודות לטבלה %1‏"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "שם מ_קוצר"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "מחבר(ים)‏"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "מוציא_לאור"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "פרק"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "עורך"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_סוג"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_שנה"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "_כותרת"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "כתובת"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "מ_סת״ב"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "עמוד(ים)‏"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "מ_הדורה"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "כותרת הספר"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "כרך"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "סוג הפרסום"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "ארגון"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "מו_סד"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "_אוניברסיטה"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "סוג הדוח"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_חודש"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "כתב עת"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "מספר"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "סדרה"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "הערת הסבר"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "הערה"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "כתובת"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "שדה המוגדר בידי המשתמש/ת 1‏"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "שדה המוגדר בידי המשתמש/ת 2‏"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "שדה המוגדר בידי המשתמש/ת 3‏"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "שדה המוגדר בידי המשתמש/ת 4‏"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "שדה המוגדר בידי המשתמש/ת 5‏"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3558,29 +3558,29 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "לקשר בין שדות"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "להציע"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "ניתן להשתמש בתת טפסים כדי להציג נתונים מפורטים אודות הרשומה הנוכחית של טופס המאסטר. לעשות זאת, יש לציין אילו עמודות בתת הטופס מתאימות לאילו עמודות בטופס המאסטר."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "תווית"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "תווית"
diff --git a/source/he/helpcontent2/source/auxiliary.po b/source/he/helpcontent2/source/auxiliary.po
index 19b137897d1..60230dd490a 100644
--- a/source/he/helpcontent2/source/auxiliary.po
+++ b/source/he/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "מידע כללי"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "סרגלי כלים"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "תפריטים"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "סרגלי כלים"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "קבוצות ושכבות"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "טקסט במצגות ובציורים"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/sbasic/guide.po b/source/he/helpcontent2/source/text/sbasic/guide.po
index 477e5022085..b7f554773e8 100644
--- a/source/he/helpcontent2/source/text/sbasic/guide.po
+++ b/source/he/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Opening a Dialog With Program Code"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "\\<bookmark_value\\>modules and dialogs; toggle\\</bookmark_value\\>\\<bookmark_value\\>dialogs;using program code to show (example)\\</bookmark_value\\>\\<bookmark_value\\>examples; showing a dialog using program code\\</bookmark_value\\>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/he/helpcontent2/source/text/sbasic/python.po b/source/he/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/he/helpcontent2/source/text/sbasic/python.po
+++ b/source/he/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/he/helpcontent2/source/text/sbasic/shared.po b/source/he/helpcontent2/source/text/sbasic/shared.po
index dbf0b6a857e..8af238daf94 100644
--- a/source/he/helpcontent2/source/text/sbasic/shared.po
+++ b/source/he/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,7 +36197,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/he/helpcontent2/source/text/sbasic/shared/03.po b/source/he/helpcontent2/source/text/sbasic/shared/03.po
index 065dcc46152..96476439b79 100644
--- a/source/he/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/he/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/he/helpcontent2/source/text/scalc/01.po b/source/he/helpcontent2/source/text/scalc/01.po
index cd14968e62c..ae971452a8c 100644
--- a/source/he/helpcontent2/source/text/scalc/01.po
+++ b/source/he/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,7 +40949,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/he/helpcontent2/source/text/schart/00.po b/source/he/helpcontent2/source/text/schart/00.po
index 7d6094a03b3..c5f0af620b6 100644
--- a/source/he/helpcontent2/source/text/schart/00.po
+++ b/source/he/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/he/helpcontent2/source/text/shared/00.po b/source/he/helpcontent2/source/text/shared/00.po
index 717f24e1956..58a7126b049 100644
--- a/source/he/helpcontent2/source/text/shared/00.po
+++ b/source/he/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/he/helpcontent2/source/text/shared/01.po b/source/he/helpcontent2/source/text/shared/01.po
index 785ad8aa9d0..fdc811c24a0 100644
--- a/source/he/helpcontent2/source/text/shared/01.po
+++ b/source/he/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/he/helpcontent2/source/text/shared/02.po b/source/he/helpcontent2/source/text/shared/02.po
index ee21ef7f857..6524f786138 100644
--- a/source/he/helpcontent2/source/text/shared/02.po
+++ b/source/he/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/he/helpcontent2/source/text/shared/guide.po b/source/he/helpcontent2/source/text/shared/guide.po
index 0f0c016d3b5..a2a21d09799 100644
--- a/source/he/helpcontent2/source/text/shared/guide.po
+++ b/source/he/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/he/helpcontent2/source/text/shared/optionen.po b/source/he/helpcontent2/source/text/shared/optionen.po
index 495b770e563..17cebf0f9cd 100644
--- a/source/he/helpcontent2/source/text/shared/optionen.po
+++ b/source/he/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/he/helpcontent2/source/text/simpress/01.po b/source/he/helpcontent2/source/text/simpress/01.po
index 1bf64c36434..4d699b6f1e7 100644
--- a/source/he/helpcontent2/source/text/simpress/01.po
+++ b/source/he/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/he/helpcontent2/source/text/swriter/guide.po b/source/he/helpcontent2/source/text/swriter/guide.po
index ede9ac283ce..4391977120b 100644
--- a/source/he/helpcontent2/source/text/swriter/guide.po
+++ b/source/he/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,7 +229,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
msgstr ""
#: arrange_chapters.xhp
@@ -237,7 +237,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
index 932565f6483..115fddb7bb8 100644
--- a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23676,6 +23676,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -26001,6 +26010,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26019,6 +26037,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/he/sc/messages.po b/source/he/sc/messages.po
index 7cb725fd74b..b36ad14fe39 100644
--- a/source/he/sc/messages.po
+++ b/source/he/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15541,6 +15541,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(גישה בלעדית)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
#, fuzzy
msgctxt "subtotalgrppage|liststore1"
@@ -16130,12 +16135,12 @@ msgstr "עיצוב מותנה"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17462,83 +17467,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "טופס נתונים"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "סגירה"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "רשומה חדשה"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "חדש"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "מחיקה"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_שחזור"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "הרשומה ה_קודמת"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "הרשומה ה_באה"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "סגירה"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "נא להזין את כתובת מסמך המקור במערכת הקבצים המקומית או באינטרנט להלן."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "דפדוף...‏"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "טווחי מסד נתונים"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19326,37 +19289,42 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "תאריך"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "עמודה"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "שורה"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "קיבוץ לפי: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "משך"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19502,167 +19470,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22307,17 +22277,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24276,114 +24256,119 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "חלון"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "קווי רשת"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "צבע"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "הצגה"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "הסתרה"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "מ_עברי עמוד"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
#, fuzzy
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "קווי ע_זרה בעת התזוזה"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
#, fuzzy
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "פריטים/תמונות"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "תרשימים"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "ציור עצמים"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "הצגה"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "הסתרה"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "הצגה"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "הסתרה"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "הצגה"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "הסתרה"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "עצמים"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/he/scp2/source/ooo.po b/source/he/scp2/source/ooo.po
index e1ab86fd460..c7588c8f64a 100644
--- a/source/he/scp2/source/ooo.po
+++ b/source/he/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "פתיחת קובץ...‏"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/he/scp2/source/winexplorerext.po b/source/he/scp2/source/winexplorerext.po
index ee9bd676a55..a834c60dfa2 100644
--- a/source/he/scp2/source/winexplorerext.po
+++ b/source/he/scp2/source/winexplorerext.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-04-03 12:00+0000\n"
-"Last-Translator: Yaron <sh.yaron@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:35+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1364990437.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369352107.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "מאפשרת ל־‪Microsoft Windows Explorer‬ להציג מידע על מסמכי ‪%PRODUCTNAME‬ כמו תצוגות מוקדמות ממוזערות."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/he/sd/messages.po b/source/he/sd/messages.po
index 7e22d001750..0530b0232e9 100644
--- a/source/he/sd/messages.po
+++ b/source/he/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2624,6 +2624,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3091,164 +3096,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "שם עבור עיצוב ‏‪‏‪HTML‬‏"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4712,160 +4902,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "הצגת שינויים"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/he/sfx2/messages.po b/source/he/sfx2/messages.po
index b5603c4a532..5ab19fa25b4 100644
--- a/source/he/sfx2/messages.po
+++ b/source/he/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -918,11 +918,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " ש: %1 ח: %2 י: %3 ש: %4 ד: %5 ש: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "הסרת מאפיין"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -932,28 +927,28 @@ msgstr ""
"הערך שהוכנס לא מתאים לסוג שהוגדר.\n"
"הערך יאוחסן כטקסט."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "הקובץ כבר קיים. האם להחליפו?‏"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "איפוס"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "השם כבר בשימוש.‏"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "הסגנון לא קיים.‏"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -963,7 +958,7 @@ msgstr ""
"לא ניתן להשתמש בסגנון זה כסגנון יסוד,\n"
"כי שימוש זה יגרום להפנייה רקורסיבית (שלא נתמכות).‏"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -972,7 +967,7 @@ msgstr ""
"השם שצויין כבר קיים כסגנון בררת מחדל.\n"
"נא לבחור שם אחר."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -980,93 +975,93 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "סגנונות בשימוש: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "נווט"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "שגיאה באישור הססמה"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "שליחה"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "גופן"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "צפייה בהערת הגרסה"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(לא הוגדר שם)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "רשימת סגנונות"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "מדורג (היררכיה)‏"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "מצב צורת מילוי"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "סגנון חדש מבחירה"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "עדכון סגנון"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "הרישום של כל הצעדים עד לצעד זה יאבד. האם אכן לבטל את פעולת הרישום?‏"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ביטול רישום"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "המערכת מאתחלת את התבניות לקראת השימוש בהן לראשונה"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"לא נמצאה מדפסת בררת מחדל.\n"
"נא לבחור מדפסת ולנסות שוב."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"לא ניתן להתחיל את ההדפסה.‏\n"
"נא לבדוק את תצורת המדפסת.‏"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "המדפסת תפוסה"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (קריאה בלבד)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"האם לשמור את ההגדרות החדשות\n"
"במסמך הפעיל?‏"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"האם לשמור את הגודל החדש\n"
"במסמך הפעיל?‏"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"האם לשמור את ההגדרות החדשות\n"
"במסמך הפעיל?‏"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"לא ניתן לסגור את המסמך עקב\n"
" משימת הדפסה שמתבצעת כעת."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,7 +1139,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1152,18 +1147,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "לא ניתן לערוך את המסמך, ייתכן בגלל בעיות בהרשאות. האם לערוך עותק של המסמך?‏"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1171,352 +1166,362 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (מסמך מתוקן)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "המסמך לא הוגדר לעריכה (check-out) בשרת"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "פקדי דוח"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "רישום יוצא"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "עריכת מסמך"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "חתימה על מסמך"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "למסמך זה יש חתימה שגויה."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "החתימה תקינה אבל המסמך השתנה"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "החתימה תקינה אבל אי אפשר לאמת את האישור."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "החתימה תקינה אבל המסמך חתום באופן חלקי בלבד."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "המסמך חתום דיגיטלית והחתימה תקינה."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "הצגת חתימות"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "סגירת סרגל"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "עיגון"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "ניתוק"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "אפשרויות נוספות"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "סגירת מעגן סרגל הצד"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "הגדרות סרגל הצד"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "התאמה אישית"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "שחזור בררת מחדל"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "סגירת סרגל צד"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "הסרה"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "לנקות הכול"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1873,32 +1878,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "הערת גרסה:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "שם"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "סוג"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "ערך"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "סוג"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "כן"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "לא"
@@ -1908,17 +1898,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "הו_ספת מאפיין"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "שם"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "סוג"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "ערך"
@@ -2048,17 +2038,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "מי_קום:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_סוג:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "הח_לפת ססמה"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "תבנית:‏"
@@ -2068,27 +2058,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "המאפיינים של „%1“"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "כללי "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "תאור"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "מאפיינים מותאמים אישית"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "מאפייני CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "אבטחה"
@@ -2307,6 +2297,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/he/shell/messages.po b/source/he/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/he/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/he/starmath/messages.po b/source/he/starmath/messages.po
index 6bb544c95b7..309162fa247 100644
--- a/source/he/starmath/messages.po
+++ b/source/he/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1661,261 +1661,286 @@ msgid "Examples"
msgstr "דוגמאות"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "רגיל"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "נטוי"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "מודגש"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "שחור"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "כחול"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "ירוק"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "אדום"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ציאן"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "מג׳נטה"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "אפור"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "ליים"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "חום כהה"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "כחול כהה"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ירוק זית"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "סגול"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "כסף"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "צהבהב"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "צהוב"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "הסתרה"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "גודל"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "גופן"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "שמאל"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "מרכז"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ימין"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "פקודות"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "נוסחה"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "שמירת מסמך...‏"
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "נוסחה %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "תו לא צפוי"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "צפוייה '{'‏"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "צפוייה '}'‏"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "צפוייה '('‏"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "צפוייה ')'‏"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "צפוייה '#'‏"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "נדרש צבע"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "צפוי 'RIGHT'‏"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "‏%PRODUCTNAME‏ %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "תכנים"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~כותרת"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "טקסט ה~נוסחה"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~גבולות"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "גודל"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "גודל מ~קורי"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "התאמה לגודל ~עמוד"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "מ~תיחה"
@@ -1980,6 +2005,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "רכיבים"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/he/svtools/messages.po b/source/he/svtools/messages.po
index a2f5c353f86..6d516a087ed 100644
--- a/source/he/svtools/messages.po
+++ b/source/he/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1531 +16,1533 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195515.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ביטול: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "ביצוע מ~חדש: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "ח~זרה על פעולה: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "טקסט ללא צורה מוגדרת"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "נתוני מצב מקשר פנימי Svx‏"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "סימניית נטסקייפ"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "צורת שרת סטאר"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "צורת עצם סטאר"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "יישומון"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "עצם תוסף"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "עצם ‏‪StarWriter 3.0‏"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "עצם ‏‪StarWriter 4.0‏"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "עצם ‏‪StarWriter 5.0‏"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "עצם ‏‪StarWriter/Web 4.0‏"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "עצם ‏‪StarWriter/Web 5.0‏"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "עצם ‏‪StarWriter/Master 4.0‏"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "עצם ‏‪StarWriter/Master 5.0‏"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "עצם ‏‪StarDraw‏"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "עצם ‏‪StarDraw 4.0‏"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "עצם ‏‪StarImpress 5.0‏"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "עצם ‏‪StarDraw 5.0‏"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "עצם ‏‪StarCalc‏"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "עצם ‏‪StarCalc 4.0‏"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "עצם ‏‪StarCalc 5.0‏"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "עצם‫ ‏‪StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "עצם ‏‪StarChart 4.0‏"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "עצם ‏‪StarChart 5.0‏"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "עצם ‏‪StarImage‏"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "עצם ‏‪StarImage 4.0‏"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "עצם ‏‪StarImage 5.0‏"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "עצם ‏‪StarMath‏"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "עצם ‏‪StarMath 4.0‏"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "עצם ‏‪StarMath 5.0‏"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "עצם ‏‪StarObject Paint‏"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "עצם Microsoft Word‏"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "עצם ‏‪‏‪StarFrameSet‬‏‏"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "עצם מסמך ‏‪Office‬‏‏"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "פריטי מסמך ‏‪Notes‬‏‏"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "מסמך Sfx‏"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "עצם ‏‪StarChart 5.0‏"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "עצם גרפי"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
#, fuzzy
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "מסמך אב של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
#, fuzzy
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "ציור של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
#, fuzzy
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "תרשים של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
#, fuzzy
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "מסמך אב של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "קובץ מטה ‏‪Windows‬‏‏"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "עצם מקור נתונים"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "טבלת מקור נתונים"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "שאילתת SQL‏"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
#, fuzzy
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "ציור של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "קישור"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "פורמט ‏‪HTML‬‏ ללא הערות"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "לא ניתן להכניס עצם %.‏"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "לא ניתן להכניס עצם מקובץ %.‏"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "עצמים נוספים"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "מקור בלתי ידוע"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "שם"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "גודל"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "תאריך שינוי אחרון"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "סוג"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "בתים"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ק״ב"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "מ״ב"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ג״ב"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "שורה: %1, עמוד: %2‏"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr "סוג: %1, URL: %2‏"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "תיקיה"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "קובץ"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "שדה ריק"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "אותיות ומספרים"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "כתב רגיל"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ערכת תווים"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "מילון"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "שכתוב אותיות סיניות"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "משיכה"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "שורש"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "יוניקוד"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "סינית פונטית"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ספר טלפונים"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "מיון פונטי - מספרים לפני אותיות"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "מיון פונטי - מספרים אחרי אותיות"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "אותיות ומספרים"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "מילון"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "שכתוב אותיות סיניות"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "שורש"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "משיכה"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "סינית פונטית"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "מיון פונטי (אותיות ומספרים תחילה, מקובצים לפי הברות)‏"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "מיון פונטי (אותיות ומספרים תחילה, מקובצים לפי עיצורים)‏"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "מיון פונטי (אותיות ומספרים בסוף, מקובצים לפי הברות)‏"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "מיון פונטי (אותיות ומספרים בסוף, מקובצים לפי הברות)‏"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "היום"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "ללא"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "קל"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "נטוי קל"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "רגיל"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "נטוי"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "מודגש"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "נטוי מודגש"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "שחור"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "נטוי שחור"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ספר"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "מרוכז"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "מודגש למחצה"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "התכנית תשתמש באותו גופן למסך ולמדפסת."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "זהו גופן מדפסת. דמותו על המסך עשויה להיות שונה.‏"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "סגנון גופן זה יוצג על ידי הדמייה או על ידי גופן בעל סגנון דומה.‏"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "גופן זה לא מותקן. הגופן הקרוב ביותר שמותקן יוצג במקומו.‏"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "עיון...‏"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "העברה להתחלה"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "הזזה שמאלה"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "הזזה ימינה"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "העברה לסוף"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "הוספה"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "סרגל אופקי"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "סרגל אנכי"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "סף סיבית 1‏"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "טשטוש של סיבית 1‏"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "גווני אפור 4 סיביות"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "צבע 4 סיביות"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "גווני אפור 8 סיביות"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "צבע 8 סיביות"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "צבע אמתי 24 סיביות"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "התמונה דורשת לפחות %1 ק״ב של זיכרון."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "התמונה זקוקה בערך ל־%1 ק״ב של זיכרון, גודל הקובץ הוא %2 ק״ב."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "גודל הקובץ הוא %1 ק״ב."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "רוח רפאים"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "מיון"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "מוכן"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "מופסק"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "עומד למחיקה"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "תפוס"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "מאתחל"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "ממתין"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "מתחמם"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "עיבוד"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "מדפיס"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "לא מקוון"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "שגיאה"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "שרת לא מוכר"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "תקלת נייר"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "אין מספיק נייר"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "הזנת נייר ידנית"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "בעיית נייר"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "קלט-פלט פעיל"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "מגש הפלט מלא"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "מפלס הטונר נמוך"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "אין טונר"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "מחיקת עמוד"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "דרושה התערבות המשתמש/ת"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "חסר זכרון"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "מכסה פתוח"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "מצב חיסכון חשמל"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "מדפסת בררת מחדל"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d מסמכי"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "סיום"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "הבא >>‏"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "‏<< הקודם"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "צעדים"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ללא>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "חברה"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "מחלקה"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "שם פרטי"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "שם משפחה"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "רחוב"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "מדינה"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "מיקוד"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "עיר"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "כותרת"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "מיקום"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "פרטי כתובת"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "ראשי תיבות"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "ברכת סיום"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "טלפון בבית"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "טלפון בעבודה"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "כתובת אינטרנט (‏‪URL‬‏)‏"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "הערה"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "משתמש 1‏"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "משתמש 2‏"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "משתמש 3‏"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "משתמש 4‏"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "זהות"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "מחוז"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "טלפון במשרד"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "איתורית"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "טל׳ נייד"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "טלפון אחר"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "לוח שנה"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "להזמין"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "‏‪%PRODUCTNAME‬‏ זקוק לסביבת ההפעלה של ג׳אווה ‏(‏‪JRE‬‏) לשם ביצוע משימה זו. נא להתקין את JRE ולהפעיל את ‪%PRODUCTNAME‬‏ מחדש.‏"
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "נדרש JRE‬‏"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "נא לבחור ‏‪JRE‬‏"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "ה־‏‪JRE‬‏ פגום"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "קוד מקור"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "קובץ סימנייה"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "גרפיקה"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "קובץ תצורה"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "יישום"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "טבלת מסד נתונים"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "קובץ מערכת"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "מסמך ‏‪MS Word‬‏‏"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "קובץ עזרה"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "מסמך ‏‪HTML‬‏‏"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "קובץ ארכיב"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "קובץ מעקב"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "מסד נתונים של StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "מסמך מאסטר StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "תמונה של StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "קובץ טקסט"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "קישור"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "תבנית של StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "מסמך ‏‪MS Excel‬‏‏"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "תבנית ‏‪MS Excel‬‏‏"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "קובץ אצווה"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "קובץ"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "תיקיה"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "מסמך טקסט"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "גיליון אלקטרוני"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "מצגת"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ציור"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "מסמך ‏‪HTML‬‏‏"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "מסמך מאסטר"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "נוסחה"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "מסד נתונים"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "תבנית גיליון נתונים של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "תבנית ציור של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "תבנית מצגת של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "תבנית מסמך טקסט של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "כונן מקומי"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "כונן דיסק"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "כונן ‏‪CD-ROM‬‏‏"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "חיבור רשת"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "מסמך ‏‪MS PowerPoint‬‏‏"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "תבנית ‏‪MS PowerPoint‬‏‏"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "מצגת ‏‪MS PowerPoint‬‏‏"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "נוסחה של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "תרשים של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "ציור של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "מצגת של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "מצגת של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "מסמך טקסט של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "מסמך אב של OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "מסמך ‏‪MathML‬‏‏"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "מסד נתונים ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ציור ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "נוסחה ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "מסמך מאסטר ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "מצגת ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "גיליון אלקטרוני ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "טקסט ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "תבנית גיליון אלקטרוני ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "תבנית ציור ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "תבנית מצגת ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "תבנית טקסט ‏‪OpenDocument‬‏‏"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "חבילה ‏‪%PRODUCTNAME‬‏"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/he/svx/messages.po b/source/he/svx/messages.po
index 2c47fbf6dc3..6bbc8907cd2 100644
--- a/source/he/svx/messages.po
+++ b/source/he/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8008,6 +8008,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12488,89 +12493,94 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "עורך קווי מתאר"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
#, fuzzy
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "להחיל"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "מרחב עבודה"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "בחירה"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "מלבן"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "אליפסה"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "מצולע"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "עריכת נקודות"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "הזזת נקודות"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "הוספת נקודות"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "מחיקת נקודות"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "קו מיתאר אוטומטי"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "ביטול פעולה "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "אדום"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "פיפטה"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12900,122 +12910,116 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "כותרת תחתונה"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "עורך מפות תמונה"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
#, fuzzy
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "להחיל"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "פתיחה..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "שמירה...‏"
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "סגירה"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "בחירה"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "מלבן"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
#, fuzzy
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "אליפסה"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "מצולע"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "מצולע בעל צורה חופשית"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "עריכת נקודות"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "הזזת נקודות"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "הוספת נקודות"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "מחיקת נקודות"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "ביטול פעולה "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "אדום"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "פעיל"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "מאקרו...‏"
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "מאפיינים: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "כתובת:‏"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "מסגרת:‏"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/he/sw/messages.po b/source/he/sw/messages.po
index b01abf866bf..009bf045e19 100644
--- a/source/he/sw/messages.po
+++ b/source/he/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3158,9 +3158,9 @@ msgid "Change object title of $1"
msgstr "שינוי כותרת אובייקט $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "שינוי תיאור אובייקט $1"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12461,147 +12461,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12611,152 +12611,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13853,7 +13853,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17307,47 +17307,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "תצוגה מקדימה"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "תצוגה מקדימה"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "סוג"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "רשומות"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "סגנונות"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "עמודות"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "רקע"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "תצוגה מקדימה"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "רמה"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17592,316 +17592,316 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "עריכה..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "כותרת"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "סוג:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "תוכן טבלה"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "הגדרת-המשתמש1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ביבליוגרפיה 1‏"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "טופס"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "המסמך כולו"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "פרק"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
#, fuzzy
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "ע~דכון המפתח או תוכן הטבלה"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "מתאר"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "טבלאות"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "מסגרות _טקסט"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "גרפיקה"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "עצמי ‏‪OLE‬‏‏"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_סגנונות נוספים"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_סגנונות"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "הקצאת סגנונות..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "כתובית"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "שם עצם"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "קטגוריה:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "תצוגה"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "הפניות"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "סיווג ומספר"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "טקסט כתובית"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "סוגריים"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[אין]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
#, fuzzy
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "רגישות לרישיות"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_קובץ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "אפשרויות"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "שפה:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "סוג מפתח"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "מיון"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "רמה"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "סגנון פסקה"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_בררת מחדל"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_עריכה"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "הקצאה"
diff --git a/source/hi/cui/messages.po b/source/hi/cui/messages.po
index 68d92a8b3e3..eb8cff364f5 100644
--- a/source/hi/cui/messages.po
+++ b/source/hi/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1661,107 +1661,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "कोई किनारा सेट नहीं करें"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "बाहरी किनारा सिर्फ सेट करें"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "बाहरी किनारा व क्षैतिज रेखा सेट करें"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "बाहरी किनारा व सभी आंतरिक रेखाएं सेट करें"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "बिना आंतरिक रेखा बदले बाहरी किनारा सेट करें"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "तिर्यक रेखाओं को सिर्फ सेट करें"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "सभी चार किनारा सेट करें"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "सिर्फ बायां और दाहिना किनारा सेट करें"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "सिर्फ ऊपर और नीचे किनारे को सेट करें"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "सिर्फ बायां किनारे को सेट करें"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "ऊपर और नीचे किनारें और सभी भीतरी रेखाओं को सेट करें"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "बायाँ और दाहिना किनारा और सभी भीतरी रेखाओं को सेट करें"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "कोई छाया नहीं"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "तलवर्ती दायां पर छाया दें"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "शीर्ष दायां पर छाया दें"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "तल बायां पर छाया दें"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "शीर्ष बायां पर छाया दें"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1804,7 +1799,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1924,7 +1919,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2164,7 +2159,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2419,12 +2414,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2494,7 +2489,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2574,7 +2569,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2815,7 +2810,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3441,67 +3436,72 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME के बारे में"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "आभार"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "वेबसाइट"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME वर्ड प्रोसेसिंग, स्प्रेडशीट, प्रजेन्टेशन और भी बहुत कुछ के लिए एक आधुनिक, सुगम, मुक्त स्रोत उत्पादकता सूइट है."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "लिब्रेऑफिस ओपनऑफिस.ऑर्ग पर आधारित था"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME को लिब्रेऑफिस से बनाया गया है जो OpenOffice.org पर आधारित था."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "यह रिलीज %OOOVENDOR के द्वारा दिया गया था"
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3622,17 +3622,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "प्रतिस्थापित करें (_R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "बदलें (_c)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "इससे (_W):"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "केवल पाठ (_T)"
@@ -4501,6 +4501,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5658,29 +5818,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "विशेषता"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "यूआरएल: (_U)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ढ़ांचा:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "नाम (_N)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9441,84 +9601,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME संवाद का प्रयोग करें (_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "संवाद खोलें/सहेजें"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME डायलॉग का प्रयोग करें (_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "डायलॉग छापें"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "छपाई \"दस्तावेज़ सुधार किया\" वस्तुस्थिति सेट करता है (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "दस्तावेज़ वस्तुस्थिति"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "और "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "वर्ष (दो अंक में)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME को तंत्र प्रारंभ होने के समय लोड करें"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "सिसट्रै क्विकस्टार्टर सक्रिय करें"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME द्रुत आरंभकर्ता"
@@ -11478,24 +11638,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12156,102 +12301,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "सुरक्षा का विकल्प"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13315,27 +13364,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/hi/extensions/messages.po b/source/hi/extensions/messages.po
index 069df3169c4..85bf61e7d40 100644
--- a/source/hi/extensions/messages.po
+++ b/source/hi/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3230,190 +3230,190 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "सारणी %1 के लिए स्तंभ ख़ाका"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "छोटा नाम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "लेखक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "प्रकाशक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "अध्याय"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "संपादक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "प्रकार (_T)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "वर्ष"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "शीर्षक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "पता"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "पृष्ठ (~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "संस्करण (~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "पुस्तक का शीर्षक (~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "आवाज़ निर्धारक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "प्रकाशन वर्ग (~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "संगठन (~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "संस्था (~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "विश्वविद्यालय"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "रिपोर्ट का वर्ग (~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "महीना"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "पत्रिका"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "संख्या"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "शृंखला (~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "व्याख्या (~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "टिप्पणी"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "उपयोक्ता परिभाषित क्षेत्र ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "उपयोक्ता परिभाषित क्षेत्र ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "उपयोक्ता परिभाषित क्षेत्र ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "उपयोक्ता परिभाषित क्षेत्र ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "उपयोक्ता परिभाषित क्षेत्र ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3598,30 +3598,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "लिंक क्षेत्र"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "सलाह दें"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "उप फार्म विस्तृत आँकड़ा को दिखाने के लिए उपयोग कर सकते हैं मास्टर प्रपत्र के मौजूदा रिकार्ड के बारे में. ऐसा करने के लिए, आप निर्दिष्ट कर सकते हैं कि उप फार्म में कौन सा कालम मुख्य फार्म के किस कालम से मेल खाता है."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "लेबल"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "लेबल"
diff --git a/source/hi/helpcontent2/source/auxiliary.po b/source/hi/helpcontent2/source/auxiliary.po
index 934702e6238..0831968e137 100644
--- a/source/hi/helpcontent2/source/auxiliary.po
+++ b/source/hi/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "औज़ार पट्टियाँ"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "मेन्यू"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "औज़ार पट्टियाँ"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,17 +699,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/hi/helpcontent2/source/text/sbasic/guide.po b/source/hi/helpcontent2/source/text/sbasic/guide.po
index 29e09ed6e6b..6e59aed3ec0 100644
--- a/source/hi/helpcontent2/source/text/sbasic/guide.po
+++ b/source/hi/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,15 +541,15 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "प्रोग्राम कोड के साथ संवाद खोलना"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
msgstr ""
#: show_dialog.xhp
diff --git a/source/hi/helpcontent2/source/text/sbasic/python.po b/source/hi/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/hi/helpcontent2/source/text/sbasic/python.po
+++ b/source/hi/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/hi/helpcontent2/source/text/sbasic/shared.po b/source/hi/helpcontent2/source/text/sbasic/shared.po
index 6ee227a6aca..b3eb93ae497 100644
--- a/source/hi/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hi/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,7 +36197,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/hi/helpcontent2/source/text/sbasic/shared/03.po b/source/hi/helpcontent2/source/text/sbasic/shared/03.po
index 10fae037891..93daa5cee87 100644
--- a/source/hi/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/hi/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/hi/helpcontent2/source/text/scalc/01.po b/source/hi/helpcontent2/source/text/scalc/01.po
index 5e4ee63627e..f8f8df72e6a 100644
--- a/source/hi/helpcontent2/source/text/scalc/01.po
+++ b/source/hi/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,7 +40949,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/hi/helpcontent2/source/text/schart/00.po b/source/hi/helpcontent2/source/text/schart/00.po
index cd578b6c3e8..cfc547927fa 100644
--- a/source/hi/helpcontent2/source/text/schart/00.po
+++ b/source/hi/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/hi/helpcontent2/source/text/shared/00.po b/source/hi/helpcontent2/source/text/shared/00.po
index ee0a0670b5b..b9cf383a903 100644
--- a/source/hi/helpcontent2/source/text/shared/00.po
+++ b/source/hi/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/hi/helpcontent2/source/text/shared/01.po b/source/hi/helpcontent2/source/text/shared/01.po
index a8028298a54..b6515b781be 100644
--- a/source/hi/helpcontent2/source/text/shared/01.po
+++ b/source/hi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/hi/helpcontent2/source/text/shared/02.po b/source/hi/helpcontent2/source/text/shared/02.po
index a78a476d50b..392aed36481 100644
--- a/source/hi/helpcontent2/source/text/shared/02.po
+++ b/source/hi/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/hi/helpcontent2/source/text/shared/guide.po b/source/hi/helpcontent2/source/text/shared/guide.po
index a3673cb430f..d7aaae2d21b 100644
--- a/source/hi/helpcontent2/source/text/shared/guide.po
+++ b/source/hi/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/hi/helpcontent2/source/text/shared/optionen.po b/source/hi/helpcontent2/source/text/shared/optionen.po
index f4f92995bd7..37e64f6be3b 100644
--- a/source/hi/helpcontent2/source/text/shared/optionen.po
+++ b/source/hi/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/hi/helpcontent2/source/text/simpress/01.po b/source/hi/helpcontent2/source/text/simpress/01.po
index 4e1c61cdc85..bc2695241f5 100644
--- a/source/hi/helpcontent2/source/text/simpress/01.po
+++ b/source/hi/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/hi/helpcontent2/source/text/swriter/guide.po b/source/hi/helpcontent2/source/text/swriter/guide.po
index b05ac0db92a..15022ccd294 100644
--- a/source/hi/helpcontent2/source/text/swriter/guide.po
+++ b/source/hi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,7 +229,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
msgstr ""
#: arrange_chapters.xhp
@@ -237,7 +237,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
index 5c2101b14c3..a6850503615 100644
--- a/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hi/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -23711,6 +23711,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26051,6 +26060,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26069,6 +26087,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/hi/sc/messages.po b/source/hi/sc/messages.po
index bdb38b9861a..ac1a0c953da 100644
--- a/source/hi/sc/messages.po
+++ b/source/hi/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15512,6 +15512,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(विशेष पहुँच)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16092,12 +16097,12 @@ msgstr "सशर्त प्रारूपण"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17399,86 +17404,44 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "डेटा दर"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "बन्द करें (_C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "नया रिकार्ड"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "नया (_N)"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "मिटाएँ (_D)"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "वापस लाएँ"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "पिछला रिकार्ड"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "नया रिकार्ड"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "बन्द करें (_C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ब्राउज़ (_B)..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "डेटाबेस दायरा"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19268,36 +19231,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "दिनांक"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "स्तंभ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "पंक्ति"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "इसके द्वारा समूहीकृत: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "अंतराल"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19445,167 +19413,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22247,17 +22217,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24227,114 +24207,119 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "विंडो (~W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "जाल रेखा"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "रंग (_C):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "दिखाएं"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "छिपाएँ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "पेज टूटन"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
#, fuzzy
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "खिसकाने के दौरान मदद (_W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "चार्ट्स"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "वस्तु का रेखाचित्र बना रहा है (_D)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "दिखाएं"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "छिपाएँ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "दिखाएं"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "छिपाएँ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "दिखाएं"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "छिपाएँ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
#, fuzzy
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "वस्तु (_O)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "छोटा-बड़ा करें"
diff --git a/source/hi/scp2/source/ooo.po b/source/hi/scp2/source/ooo.po
index 5e867de5a05..f160f481c40 100644
--- a/source/hi/scp2/source/ooo.po
+++ b/source/hi/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -35,6 +35,14 @@ msgstr "दस्तावेज़ खोलें"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/hi/scp2/source/winexplorerext.po b/source/hi/scp2/source/winexplorerext.po
index f357074b414..84b07d17276 100644
--- a/source/hi/scp2/source/winexplorerext.po
+++ b/source/hi/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-07-24 11:25+0200\n"
-"Last-Translator: Rajesh <rajesh672@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:36+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369352203.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows Explorer को %PRODUCTNAME दस्तावेज़ के बारे में सूचना दिखाने के लिए सक्रिय करता है, जैसे कि थंबनेल पूर्वावलोकन."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/hi/sd/messages.po b/source/hi/sd/messages.po
index 90006585c76..71c1f02a8a6 100644
--- a/source/hi/sd/messages.po
+++ b/source/hi/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2640,6 +2640,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3113,164 +3118,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4751,160 +4941,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "तीर आकार"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/hi/sfx2/messages.po b/source/hi/sfx2/messages.po
index 10dd352018e..289fee4a4cc 100644
--- a/source/hi/sfx2/messages.po
+++ b/source/hi/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -916,11 +916,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "गुण हटाएँ"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -930,28 +925,28 @@ msgstr ""
"दाखिल किया मान निर्दिष्ट प्रकार से मेल नहीं खाता है.\n"
"इस मान को बतौर पाठ छाँटा जाएगा."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "फ़ाइल पहले से मौजूद है. इसके ऊपर लिखें?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "फिर सेट करें (~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "यह नाम पहले से ही उपयोग में है."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "यह शैली अस्तित्व में नहीं है."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -961,7 +956,7 @@ msgstr ""
"इस शैली को बेस शैली के रूप में प्रयोग नहीं किया जा सकता है,\n"
"क्योंकि यह पुनरावृति संदर्भ में परिणाम देगा."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"नाम पहले से एक तयशुदा शैली रूप में मौजूद है.\n"
"कृपया एक दूसरा नाम चुनें"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -978,95 +973,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "नाविगेटर"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "दोषयुक्त कूटशब्द प्रमाणीकरण"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "भेजें"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "फ़ॉन्ट"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "संस्करण टिप्पणी जोड़ें"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "शैली सूची"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "पदक्रमीय"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "प्रारूप प्रकार भरिये"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "चयन से नयी शैली"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "शैली अद्यतन करें (~U)"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "क्या आप सचमुच रेकार्डिंग को रद्द करना चाहते हैं? कोई चरण इस बिंदु तक रेकार्ड किया गुम हो जाएगा."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "रेकार्डिंग रद्द करें"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "नमूना का पहली बार उपयोग करने के लिए आरंभीकृत किया है."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"कोई तयशुदा मुद्रक नहीं मिला.\n"
"कृपया एक मुद्रक चुनें और फिर कोशिश करें."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"मुद्रक आरंभ नहीं कर सका.\n"
"कृपया अपना मुद्रक विन्यास जाँचें."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "मुद्रक व्यस्त"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (केवल पढने योग्य)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"क्या आप सक्रिय दस्तावेज़ में नए सेटिंग को\n"
"सहेजना चाहेंगे?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"क्या नए सेटिंग को सक्रिय दस्तावेज़ में\n"
"सहेजा जाना चाहिए?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"क्या आप सक्रिय दस्तावेज़ में नए सेटिंग को\n"
"सहेजना चाहेंगे?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1137,7 +1132,7 @@ msgstr ""
"दस्तावेज़ सहेजा नहीं जा सकता है क्योंकि एक\n"
"मुद्रण कार्य हो रहा है."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,7 +1140,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1153,18 +1148,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "दस्तावेज़ का संपादन नहीं किया जा सकता है, शायद प्रवेश करने का अधिकार नहीं है. आप इसका एक नमूने की तरह नया दस्तावेज़ में उपयोग करना चाहते हैं?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1172,356 +1167,366 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (दस्तावेज़ का मरम्मत किया)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "दस्तावेज़ सर्वर पर चेकआउट नहीं है"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "रिपोर्ट नियंत्रण"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "चेकआउट करें"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "दस्तावेज़ संपादित करें"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "दस्तावेज़ हस्ताक्षर करें..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "डॉक"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "अनडॉक"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "छाँटने का विकल्प"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "मनपसंद संजीवन"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "हटाएँ"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1894,32 +1899,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "संस्करण टिप्पणी"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "नाम"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "वर्ग"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "मान"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "वर्ग"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "हाँ"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "नहीं"
@@ -1929,17 +1919,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "नाम"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "वर्ग"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "मान"
@@ -2081,19 +2071,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "स्थान:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "वर्ग:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "कूटशब्द बदलें (~P)..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "नमूना:"
@@ -2104,28 +2094,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "की विशेषता"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "सामान्य"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "विवरण"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "मनपसंद गुण"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "सुरक्षा"
@@ -2352,6 +2342,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/hi/shell/messages.po b/source/hi/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/hi/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/hi/starmath/messages.po b/source/hi/starmath/messages.po
index 20fe519a154..bc4b14a2abf 100644
--- a/source/hi/starmath/messages.po
+++ b/source/hi/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1651,274 +1651,299 @@ msgid "Examples"
msgstr "उदाहरण"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "मानक"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "तिरछा"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "मोटा"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "काला"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "नीला"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "हरा"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "लाल"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "नीलिया"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "मैजेन्टा"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "धूसर"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "समय"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "मरून"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "नेवी"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "जैतून"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "बैंगनी"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silver"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "हरा-नीला"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "पीला"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "छिपाएँ"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "साइन"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "फ़ॉन्ट"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "बायाँ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "बीच में"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "दाहिना"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "कमांड"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "सूत्र"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "दस्तावेज़ सहेज रहा है..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION सूत्र"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "त्रुटि :"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "अप्रत्याशित वर्ण"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' प्रत्याशित"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' प्रत्याशित"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' प्रत्याशित"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' प्रत्याशित"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' प्रत्याशित"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "रंग जरूरी"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' प्रत्याशित"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME गणना"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "सामग्री"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "शीर्षक"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "सूत्र पाठ"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "किनारा"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "आकार"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "मूल आकार"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "पृष्ठ में सटीक"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1987,6 +2012,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "तत्व"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/hi/svtools/messages.po b/source/hi/svtools/messages.po
index 77e0eb7b079..d8179393bdd 100644
--- a/source/hi/svtools/messages.po
+++ b/source/hi/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1527 +16,1529 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195522.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "किया वापस लें: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "फिर से करें (~d): "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "दुहराएँ (~R): "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "असंरूपित पाठ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "भीतरी Svx कड़ी से वस्तुस्थिति की सूचना"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "नेटस्केप पुस्तचिह्न"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टार सर्वर प्रारूप"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टार वस्तु प्रारूप"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "आप्लेट् वस्तु"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लग-इन वस्तु"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 वस्तु"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 वस्तु"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 वस्तु"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 वस्तु"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 वस्तु"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 वस्तु"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 वस्तु"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw वस्तु"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 वस्तु"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 वस्तु"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 वस्तु"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc वस्तु"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 वस्तु"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 वस्तु"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart वस्तु"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 वस्तु"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 वस्तु"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage वस्तु"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 वस्तु"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 वस्तु"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath वस्तु"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 वस्तु"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 वस्तु"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject रंग वस्तु"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "सिल्क"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word वस्तु"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet वस्तु"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office document वस्तु"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "टिप्पणी दस्तावेज़ सूचना"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx दस्तावेज़"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 वस्तु"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "आलेखी वस्तु"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows मेटाफ़ाइल"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "डाटा स्रोत वस्तु"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "डाटा स्रोत सारणी"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL प्रश्न"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "लिंक "
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML प्रारूप बिना टिप्पणी के"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "वस्तु % को जोड़ नहीं सकते हैं."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "फ़ाइल % से वस्तु को जोड़ नहीं सकते है."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "और अधिक वस्तु"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "अज्ञात स्रोत"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "नाम"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "आकार"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "परिवर्तित दिनांक"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "प्रकार"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बाइट्स"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "कि.बा."
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "मे.बा."
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "गी.बा."
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "पंक्ति: %1, स्तंभ: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", प्रकार: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "फ़ोल्डर"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "फ़ाइल"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "खाली क्षेत्र"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "वर्णांकित"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "सामान्य"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "वर्ण समूह"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "रैडिकल"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "यूनिकोड"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "झुइन"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "फोन बुक"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ध्वन्यात्मक (वर्णांकित पहले)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ध्वन्यात्मक (वर्णांकित अंत में)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "वर्णांकित"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "रैडिकल"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "झुइन"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ध्वन्यात्मक (वर्णांकित पहले, सिलेबल द्वारा समूहीकृत)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ध्वन्यात्मक (वर्णांकित पहले, व्यंजन द्वारा समूहीकृत)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ध्वन्यात्मक (वर्णांकित अंतिम, सिलेबल द्वारा समूहीकृत)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ध्वन्यात्मक (वर्णांकित अंतिम, व्यंजन द्वारा समूहीकृत)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "आज"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "कोई नहीं"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "हल्का"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "हल्का तिरछा"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "नियमित"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "तिरछा"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "मोटा"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "मोटा तिरछा"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "काला"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "काला तिरछा"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "पुस्तक"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "सघन"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "आधा मोटा"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "समान फ़ॉन्ट आपके मुद्रक और आपके स्क्रीन दोनों पर प्रयोग किया जायेगा."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "यह मुद्रक फ़ॉन्ट है . परदे में चित्र भिन्न प्रकार का हो सकता है."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "यह फ़ॉन्ट शैली सिमुलेट किया जायेगा या सर्वाधिक मेल शैली प्रयोग किया जायेगा."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "यह फ़ॉन्ट संस्थापित नहीं किया जा रहा है. सर्वाधिक नजदीकी फ़ॉन्ट प्रयोग किया जायेगा."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ब्राउज़ करें..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "घर में खिसकाएँ"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "बाएँ जाएँ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "दाहिने जाएँ"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "अंत में जाएँ"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "जोड़ें"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "क्षैतिज मापक (_z)"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "लंबवत रूलर"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 बिट थ्रेशहोल्ड"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 बिट डाइथर्ड"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 बिट धूसर"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 बिट रंग"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 बिट धूसर"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 बिट रंग"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 बिट वास्तविक रंग"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "यह तस्वीर के लिए करीब %1 KB स्मृति चाहिए."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "यह तस्वीर के लिए करीब %1 KB स्मृति चाहिए, फ़ाइल आकार %2 KB है."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "फ़ाइल आकार %1 KB है."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "लागत"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "छाँटे"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "तैयार"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ठहरें"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "स्थगित विलोपन"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "व्यस्त"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "आरंभीकरण"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "प्रतीक्षा"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "तैयार कर रहा है"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "प्रक्रिया"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "छपाई कर रहा है"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ऑफ़लाइन"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "त्रुटि"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "अज्ञात सर्वर"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "कागज़ ज़ाम"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "अपर्याप्त कागज़"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "दस्ती फ़ीड"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "कागज की समस्या"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O सक्रिय"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "आउटपुट बिन भरा है"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "टोनर धीमा"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "टोनर नहीं"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "पृष्ट मिटाएं"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "उपयोक्ता हस्तक्षेप जरूरी"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "अपर्याप्त मेमरी"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "खुला कवर"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "पॉवर सहेजने का मोड"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "तयशुदा मुद्रक"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d दस्तावेज़"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "समाप्त (~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "आगे (~N) >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "पीछे << (~k)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "चरण"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "कंपनी"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "विभाग"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "पहला नाम"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "अंतिम नाम"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "सड़क"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "देश"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ZIP Code"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "नगर"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "शीर्षक"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "स्थान"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "पता.प्रपत्र"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "आरंभिक"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "पूरक बंद"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "फोन: निवास"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "फोन: कार्यालय"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "टिप्पणी"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "उपयोक्ता 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "उपयोक्ता 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "उपयोक्ता 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "उपयोक्ता 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "राज्य"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "दूरभाष: दफ्तर"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजर"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मोबाइल"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "दूरभाष: अन्य"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "कैलेंडर"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "अमंत्रित करें"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME के लिए एक जावा रनटाइन एनवायरामेंट (JRE) की जरूरत कार्य करने के लिये है. कृपया एक JRE संस्थापित करें और %PRODUCTNAME फिर आरंभ करें."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE जरूरत"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE चुनें"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE खराब है"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "स्रोत कोड"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "पुस्तचिह्न फ़ाइल"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "आरेखी"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "विन्यास फ़ाइल"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "अनुप्रयोग"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "डेटाबेस सारणी"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "तंत्र फ़ाइल"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word दस्तावेज़ "
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "सहायता फ़ाइल"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML दस्तावेज़"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "अभिलेख फ़ाइल"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लॉग फ़ाइल"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice डेटाबेस"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 मुख्य दस्तावेज़"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice चित्र"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "पाठ फ़ाइल"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "लिंक"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "स्टारऑफिस 3.0 - 5.0 नमूना ख़ाका"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel दस्तावेज़"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel नमूना"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "समुदाय फ़ाइल"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "फ़ाइल"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "फ़ोल्डर"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "पाठ दस्तावेज़"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रेडशीट्"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रस्तुति"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "रेखाचित्र"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML दस्तावेज़"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "मास्टर दस्तावेज़"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "सूत्र"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "डेटाबेस"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Local drive"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk drive"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM drive"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "संजाल कनेक्शन"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint दस्तावेज़"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint नमूना"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint Show"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML दस्तावेज़"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ओपनडॉक्यूमेंट डेटाबेस"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ओपनडॉक्यूमेंट रेखाचित्र"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ओपनडॉक्यूमेंट सूत्र"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ओपनडॉक्यूमेंट मुख्य दस्तावेज़"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ओपनडॉक्यूमेंट प्रस्तुति"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ओपनडॉक्यूमेंट स्प्रेडशीट"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ओपनडॉक्यूमेंट पाठ"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ओपनडॉक्यूमेंट स्प्रेडशीट नमूना ख़ाका"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ओपनडॉक्यूमेंट रेखाचित्र नमूना"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ओपनडॉक्यूमेंट प्रस्तुति नमूना ख़ाका"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ओपनडॉक्यूमेंट पाठ नमूना"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME विस्तार"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/hi/svx/messages.po b/source/hi/svx/messages.po
index bf45ec40d6d..cafa26e99f1 100644
--- a/source/hi/svx/messages.po
+++ b/source/hi/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8016,6 +8016,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12549,88 +12554,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "परिवेश संपादक"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "लागू करें"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "कार्यस्थान"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "चुनें"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "आयत"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "दीर्घवृत्त"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुज"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिंदु संपादित करें"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिंदु हटाएँ"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिंदु जोड़ें"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिंदु मिटाएँ"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "स्वचालित परिवेश"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "वापस लें"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "लाल"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "पिपेट"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12960,124 +12970,118 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "पादिका"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "चित्रमानचित्र संपादक"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "लागू करें"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "खोलें..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "सहेजें..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "बन्द करें"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "चुनें"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "आयत"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "दीर्घवृत्त"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुज"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "स्वतंत्र बहुभुज"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिंदु संपादित करें"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिंदु हटाएँ"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिंदु जोड़ें"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिंदु मिटाएँ"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "वापस लें"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "लाल"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "सक्रिय"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "मैक्रो..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "विशेषताएँ: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "पता:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ढ़ाचां"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/hi/sw/messages.po b/source/hi/sw/messages.po
index ab864fdf67f..24a6bf91b22 100644
--- a/source/hi/sw/messages.po
+++ b/source/hi/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hi\n"
@@ -3162,9 +3162,9 @@ msgid "Change object title of $1"
msgstr "$1 के वस्तु शीर्षक को बदलें"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 के वस्तु विवरण को बदलें"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12483,147 +12483,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12633,152 +12633,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13870,7 +13870,7 @@ msgstr "समायोजित अनुच्छेद में दस्त
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17295,47 +17295,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "पूर्वावलोकन"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "पूर्वावलोकन"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "प्रकार"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "प्रविष्टि"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "शैली"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "स्तंभ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "पूर्वावलोकन"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "स्तर (_L)"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "प्रकार (_T)"
@@ -17580,319 +17580,319 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "संपादन (_E)..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "शीर्षक (_T)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "प्रकार:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "विषय सूची"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "अकारादि सूची"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "सारणी सूची"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "उपयोक्ता परिभाषित"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "वस्तु सूची"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ग्रन्थ-सूची"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "दस्ती परिवर्तनों से संरक्षित"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
#, fuzzy
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "प्रकार और शीर्षक"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "फ़ॉर्म"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "सम्पूर्ण दस्तावेज़"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "अध्याय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
#, fuzzy
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "एक स्तर ऊपर तक मूल्यांकन"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "ख़ाका"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "सारणी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "पाठ फ्रेम "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "आलेखी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE वस्तु"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "स्रोत अध्याय से स्तर का उपयोग करें"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "सशर्त शैली"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "शैली"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "शैलियाँ निर्दिष्ट करें"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "शीर्षक"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "वस्तु नाम"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "श्रेणी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "दिखाएँ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "संदर्भ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "श्रेणी और संख्या"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "शीर्षक पाठ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
#, fuzzy
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "से बनाएँ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
#, fuzzy
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "निम्नलिखित वस्तु से बनाएँ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "कोष्ठक"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[कोई नहीं]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
#, fuzzy
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "प्रविष्टियों का प्रारूपण"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "समान प्रविष्टियों को मिलाएँ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "- इसके साथ मिलाएँ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "स्थिति सचेतन"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "प्रविष्टि को स्वतः बड़े वर्ण में बदलें"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "कुंजी अलग प्रविष्टियों के रूप में"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "फ़ाइल (_F)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "विकल्प"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "भाषा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "कुंजी प्रकार"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "छाँटे"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "परत (_L)..."
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "अनुच्छेद शैली"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "तयशुदा (_D)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "संपादन (_E)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "कार्यभार"
diff --git a/source/hr/basctl/messages.po b/source/hr/basctl/messages.po
index 5421c611a70..eac1197381b 100644
--- a/source/hr/basctl/messages.po
+++ b/source/hr/basctl/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-02-02 12:42+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2019-05-20 20:29+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\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: 1549111338.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558384180.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -425,22 +425,22 @@ msgstr "Stranice:"
#: basctl/inc/strings.hrc:101
msgctxt "RID_STR_PRINTDLG_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "Sve ~stranice"
#: basctl/inc/strings.hrc:102
msgctxt "RID_STR_PRINTDLG_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "Str~anice:"
#: basctl/inc/strings.hrc:103
msgctxt "RID_STR_PRINTDLG_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "Parne stranic~e"
#: basctl/inc/strings.hrc:104
msgctxt "RID_STR_PRINTDLG_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "Neparne s~tranice"
#: basctl/inc/strings.hrc:105
msgctxt "RID_STR_CHOOSE"
@@ -551,12 +551,12 @@ msgstr "Uredi"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:363
msgctxt "basicmacrodialog|delete"
msgid "_Delete"
-msgstr ""
+msgstr "_Obriši"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:377
msgctxt "basicmacrodialog|new"
msgid "_New"
-msgstr ""
+msgstr "_Novi"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:391
msgctxt "basicmacrodialog|organize"
diff --git a/source/hr/chart2/messages.po b/source/hr/chart2/messages.po
index 3dd14d4a8fe..11da77c6f2f 100644
--- a/source/hr/chart2/messages.po
+++ b/source/hr/chart2/messages.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: 2019-01-12 13:17+0100\n"
-"PO-Revision-Date: 2019-02-02 12:43+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2019-05-20 20:27+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\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: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1549111420.000000\n"
+"X-POOTLE-MTIME: 1558384051.000000\n"
#: chart2/inc/chart.hrc:17
msgctxt "tp_ChartType|liststore1"
@@ -971,7 +971,7 @@ msgstr "Raspon podataka"
#: chart2/uiconfig/ui/datarangedialog.ui:170
msgctxt "datarangedialog|series"
msgid "Data Series"
-msgstr ""
+msgstr "Skupovi podataka"
#: chart2/uiconfig/ui/dlg_DataLabel.ui:13
msgctxt "dlg_DataLabel|dlg_DataLabels"
diff --git a/source/hr/cui/messages.po b/source/hr/cui/messages.po
index 35132e919fa..595512a7c7e 100644
--- a/source/hr/cui/messages.po
+++ b/source/hr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-02-02 12:53+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Unesite valjanu adresu teme ili izraz pretraživanja"
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Ne postavljaj obrube"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Postavi samo vanjski obrub"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Postavi vanjski obrub i vodoravne crte"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Postavi vanjski obrub i sve unutarnje crte"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Postavi vanjski obrub bez promjene unutarnjih crta"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Postavi samo dijagonalne linije"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Postavi sva četiri obruba"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Postavi samo lijevi i desni obrub"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Postavi samo gornji i donji obrub"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Postavi samo lijevi obrub"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Postavi gornje obrube, donje obrube i sve unutarnje linije"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Postavi lijeve obrube, desne obrube i sve unutarnje linije"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Bez sjene"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Bacanje sjene desno dolje"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Bacanje sjene desno gore"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Bacanje sjene lijevo dolje"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Bacanje sjene lijevo gore"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Potpisao %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Sve datoteke"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "O %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Zaslu_ge"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Web stranica"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID Inačice: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Jezik: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Jezik korisničkoga sučelja: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Pogledajte zapisnik: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME je moderan uredski paket otvorenog koda jednostavan za korištenje. Namijenjen je obradi teksta, izradi proračunskih tablica, prezentacija i drugo."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Autorska prava © 2000–2019 Doprinositelji LibreOfficeu."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice je nastao na temelju OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME je nastao iz LibreOfficea koji je nastao na temelju OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Ovo je izdanje omogućio %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Zamijeni"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Zamijeni"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_S:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Samo tekst"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimalna duljina riječi"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Svojstva"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Okvi_r:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Naziv:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternativni _tekst:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Opis:"
@@ -9019,80 +9179,80 @@ msgstr "Prikaži skočni prozor \"Pomoć nije instalirana lokalno\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoć"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Koristi %PRODUCTNAME dijaloške okvire"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Otvori/Spremi dijaloške okvire"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Koristi %PRODUCTNAME _dialogs"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dijaloški okviri ispisa"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Is_pis mijenja status dokumenta u 'dokument izmijenjen'"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Status dokumenta"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Kao godine tumači brojeve između "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Godina (dvije znamenke)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Prikupljanje podataka o korištenju i njihovo ustupanje organizaciji The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomozite poboljšati %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Učitaj %PRODUCTNAME tijekom podizanja sustava"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Omogući brzo pokretanje iz sistemske trake"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Brzo pokretanje"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Predinstalirane teme"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Vlastita tema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Učitavanje tema Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Ili odaberite iz tema instaliranih putem dodataka:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox teme"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Sigurnosne mogućnosti"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Odaberite Firefox teme"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Izraz pretraživanja ili adresa"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ka_tegorija:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Sažetak"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film i televizija"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Blagdan"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Glazba"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Priroda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Drugo"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Godišnja doba"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Ispunjeno"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Internetske stranice"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Istaknuto"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/hr/dbaccess/messages.po b/source/hr/dbaccess/messages.po
index 6f489d8d63a..ae83842283e 100644
--- a/source/hr/dbaccess/messages.po
+++ b/source/hr/dbaccess/messages.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: 2019-04-24 18:25+0200\n"
-"PO-Revision-Date: 2019-02-02 12:54+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2019-05-20 20:29+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\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: 1549112076.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558384199.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1597,7 +1597,7 @@ msgstr "Greška prilikom stvaranja"
#: dbaccess/inc/strings.hrc:341
msgctxt "STR_UNEXPECTED_ERROR"
msgid "An error occurred. The operation could not be performed."
-msgstr ""
+msgstr "Dogodila se greška. Operacija nije mogla biti izvršena."
#: dbaccess/inc/strings.hrc:342
msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
diff --git a/source/hr/extensions/messages.po b/source/hr/extensions/messages.po
index 4488c094f62..6d6763fc323 100644
--- a/source/hr/extensions/messages.po
+++ b/source/hr/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-02 12:57+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Raspored stupaca tablice „%1“"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Skraćeni naziv"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autor(i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Izdavač"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Poglavlje"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Urednik"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tip"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Godina"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Nas_lov"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dresa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_Stranica(e)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "_Izdanje"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Nas_lov knjige"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Svezak"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Tip publika_cije"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zacija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_ucija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "S_veučilište"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Ti_p izvještaja"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mjesec"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Dnevnik"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "_Broj"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_rija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_otacija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Bilj_eška"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Korisnički određeno polje _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Korisnički određeno polje _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Korisnički određeno polje _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Korisnički određeno polje _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Korisnički određeno polje _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nazivi stupaca"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Unesite naziv za novu vrstu podatka:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Poveži polja"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Predloži"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Podobrasci se mogu koristiti za prikaz detaljnih podataka o trenutnom zapisu nadzornoga obrasca. Da biste ga napravili, trebate odrediti koji stupci podobrasca odgovaraju stupcima u nadzornom obrascu."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "oznaka"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "oznaka"
diff --git a/source/hr/filter/messages.po b/source/hr/filter/messages.po
index 814ef0e6e70..5cc4a6ca4d2 100644
--- a/source/hr/filter/messages.po
+++ b/source/hr/filter/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-03-24 06:45+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2019-05-20 20:31+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\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: 1521873954.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558384275.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_UNKNOWN_APPLICATION"
@@ -423,12 +423,12 @@ msgstr "Stvara PDF koji se lako može uređivati u %PRODUCTNAME"
#: filter/uiconfig/ui/pdfgeneralpage.ui:466
msgctxt "pdfgeneralpage|pdfa"
msgid "Archive P_DF/A-2b (ISO 19005-2)"
-msgstr ""
+msgstr "Arhivski P_DF/A-2b (ISO 19005-2)"
#: filter/uiconfig/ui/pdfgeneralpage.ui:470
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
msgid "Creates an ISO 19005-2 compliant PDF file, ideal for long-term document preservation"
-msgstr ""
+msgstr "Stvara ISO 19005-2 usuglašenu PDF datoteku, idealnu za dugogodišnje čuvanje dokumenta"
#: filter/uiconfig/ui/pdfgeneralpage.ui:482
msgctxt "pdfgeneralpage|tagged"
diff --git a/source/hr/formula/messages.po b/source/hr/formula/messages.po
index 535491b0740..7e239a69d33 100644
--- a/source/hr/formula/messages.po
+++ b/source/hr/formula/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-02-02 12:57+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2019-05-20 20:27+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\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: 1549112233.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558384040.000000\n"
#: formula/inc/core_resource.hrc:2268
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -2081,7 +2081,7 @@ msgstr "REGEX"
#: formula/inc/core_resource.hrc:2688
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FOURIER"
-msgstr ""
+msgstr "FOURIER"
#: formula/inc/strings.hrc:25
msgctxt "STR_OPTIONAL"
diff --git a/source/hr/helpcontent2/source/auxiliary.po b/source/hr/helpcontent2/source/auxiliary.po
index 76cb09a75a8..cad14fb191a 100644
--- a/source/hr/helpcontent2/source/auxiliary.po
+++ b/source/hr/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Opće informacije"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "Alatne trake"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Crteži (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Izbornici"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Alatne trake"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objekti, grafika i bitmape"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Tekst u prezentacijama i slikama"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/sbasic/guide.po b/source/hr/helpcontent2/source/text/sbasic/guide.po
index e37aac7b8cc..7d8206acb3e 100644
--- a/source/hr/helpcontent2/source/text/sbasic/guide.po
+++ b/source/hr/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Otvaranje dijaloškog okvira programskim kodom"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>modul/preklapanje dijaloga</bookmark_value><bookmark_value>dijalozi;upotreba programskog koda za prikaz (primjer)</bookmark_value><bookmark_value>primjeri; prikaz dijaloga programskim kodom</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/hr/helpcontent2/source/text/sbasic/python.po b/source/hr/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/hr/helpcontent2/source/text/sbasic/python.po
+++ b/source/hr/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/hr/helpcontent2/source/text/sbasic/shared.po b/source/hr/helpcontent2/source/text/sbasic/shared.po
index 732147fa0c6..9e36d0b4c45 100644
--- a/source/hr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hr/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,7 +36197,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/hr/helpcontent2/source/text/sbasic/shared/03.po b/source/hr/helpcontent2/source/text/sbasic/shared/03.po
index 0e8f87a56d0..6e5740a5e2f 100644
--- a/source/hr/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/hr/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/hr/helpcontent2/source/text/scalc/01.po b/source/hr/helpcontent2/source/text/scalc/01.po
index a33bada3890..6cad7ccba51 100644
--- a/source/hr/helpcontent2/source/text/scalc/01.po
+++ b/source/hr/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,7 +40949,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/hr/helpcontent2/source/text/schart/00.po b/source/hr/helpcontent2/source/text/schart/00.po
index 59f2114433f..654a509c727 100644
--- a/source/hr/helpcontent2/source/text/schart/00.po
+++ b/source/hr/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/hr/helpcontent2/source/text/shared/00.po b/source/hr/helpcontent2/source/text/shared/00.po
index 693c7ba62a1..059a892451b 100644
--- a/source/hr/helpcontent2/source/text/shared/00.po
+++ b/source/hr/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/hr/helpcontent2/source/text/shared/01.po b/source/hr/helpcontent2/source/text/shared/01.po
index 0bcdcd68308..1039170aec7 100644
--- a/source/hr/helpcontent2/source/text/shared/01.po
+++ b/source/hr/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/hr/helpcontent2/source/text/shared/02.po b/source/hr/helpcontent2/source/text/shared/02.po
index 3072fe62daa..c331ffb58a3 100644
--- a/source/hr/helpcontent2/source/text/shared/02.po
+++ b/source/hr/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/hr/helpcontent2/source/text/shared/guide.po b/source/hr/helpcontent2/source/text/shared/guide.po
index 57c5779ae89..39d87543a64 100644
--- a/source/hr/helpcontent2/source/text/shared/guide.po
+++ b/source/hr/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/hr/helpcontent2/source/text/shared/optionen.po b/source/hr/helpcontent2/source/text/shared/optionen.po
index c665916ae53..d97e22f42e4 100644
--- a/source/hr/helpcontent2/source/text/shared/optionen.po
+++ b/source/hr/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/hr/helpcontent2/source/text/simpress/01.po b/source/hr/helpcontent2/source/text/simpress/01.po
index 179a6f3e99b..3191ba1c0a6 100644
--- a/source/hr/helpcontent2/source/text/simpress/01.po
+++ b/source/hr/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/hr/helpcontent2/source/text/swriter/guide.po b/source/hr/helpcontent2/source/text/swriter/guide.po
index 0209e2dc299..d9275fcf47b 100644
--- a/source/hr/helpcontent2/source/text/swriter/guide.po
+++ b/source/hr/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "U <emph>Standardnoj traci</emph>, odaberite ikonu<emph> Navigatora</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\">Icon</alt></image>kako biste ga otvorili."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
index da1b75f8d1b..1507fdb51d0 100644
--- a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-08 17:09+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Više polja"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Kartično"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Grupna traka"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/hr/sc/messages.po b/source/hr/sc/messages.po
index 389d60e5a3e..95d76aee671 100644
--- a/source/hr/sc/messages.po
+++ b/source/hr/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-03 10:29+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15221,6 +15221,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(isključiv pristup)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15774,12 +15779,12 @@ msgstr "Upravljanje uvjetnim oblikovanjem"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16997,81 +17002,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Obrazac podataka"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Zatvori"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Novi slog"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Novo"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Obriši"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Obnovi"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Prethodni zapis"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Slj_edeći zapis"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Zatvori"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Protok podataka uživo"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Unesite URL izvornog dokumenta sa lokalnoga datotečnoga sustava ili interneta."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Pretraživanje..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Raspon baze podataka:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Pružatelj podataka:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Pojam pretraživanja:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Izvor protoka podataka"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18787,32 +18752,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Rezultati u:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Podaci"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Stupci"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Redci"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Grupirano po"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametri"
@@ -18952,167 +18922,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Pomoć"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Datoteka"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Postavljanje obruba označenoj ćeliji."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Povećanje uvlake"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Smanjenje uvlake"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "P_očetno"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "P~očetno"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Po_lje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Umetanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Umetanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Razmještaj"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Razmještaj"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistički podaci"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Podaci"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Podaci"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Provjeravanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Provjeravanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Pregled"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Pregled"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Sl_ike"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Sli~ke"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Crtanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Crtanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medijske datoteke"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medijske datoteke"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Ispisivanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Ispisivanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ob_rasci"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ob~rasci"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Alati"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Alati"
@@ -21593,17 +21565,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Rezultati pretraživanja"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23473,107 +23455,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "K_onturni simboli"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Prozor"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Linije _mreže:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Boja:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Prikaži"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Prikaži na obojenim ćelijama"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Sakrij"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Prijelomi stranica"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Pomoćne linije p_ri pomicanju"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Vizualna pomagala"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jekti/Slike:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "G_rafikoni:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Crtani objekti:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Prikaži"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Sakrij"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Prikaži"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Sakrij"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Prikaži"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Sakrij"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_inkroniziraj listove"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Uvećanje"
diff --git a/source/hr/scp2/source/ooo.po b/source/hr/scp2/source/ooo.po
index 37bf5ede9d6..84d5d7c7b9c 100644
--- a/source/hr/scp2/source/ooo.po
+++ b/source/hr/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Otvaranje dokumenta"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/hr/scp2/source/winexplorerext.po b/source/hr/scp2/source/winexplorerext.po
index 9c5808c376a..0107a439ee5 100644
--- a/source/hr/scp2/source/winexplorerext.po
+++ b/source/hr/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 20:49+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 07:34+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369380875.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Omogućuje programu Microsoft Windows Explorer prikazivanje informacije o dokumentima %PRODUCTNAME, kao što su pregledi u obliku sličica."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/hr/sd/messages.po b/source/hr/sd/messages.po
index 0f98b559de0..2ca99d321b4 100644
--- a/source/hr/sd/messages.po
+++ b/source/hr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-03 12:18+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Kliknite za otvaranje poveznice:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Imenuj HTML dizajn"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Datoteka"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Pomoć"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Datoteka"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Polazno"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Početno"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Po~lje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Umetanje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Umetanje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Stranica"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Stranica"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Pregled"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Pogled"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Pretvaranje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Alati"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Prikaz oblika"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/hr/sfx2/messages.po b/source/hr/sfx2/messages.po
index 6ec2abbe696..eed77bc6bcf 100644
--- a/source/hr/sfx2/messages.po
+++ b/source/hr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-19 16:58+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Izbriši Svojstvo"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Unesena vrijednost ne odgovara određenom tipu.\n"
"Vrijednost će biti spremljena kao tekst."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Stil već postoji. Želite li pisati preko njega?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Vrati izvorno"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Ime je već u upotrebi."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Ovaj Stil ne postoji."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Ovaj stil se ne može koristi kao osnovni stil,\n"
"jer bi to dovelo do rekurzivne reference."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Naziv već postoji kao zadani stil.\n"
"Odaberite drugi naziv."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Brisanjem tih stilova tekst će biti oblikovan prethodnim stilom.\n"
"Želite li još uvijek obrisati ove stilove?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stilovi u uporabi: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Neispravna potvrda lozinke"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Pošalji"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Font"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Prikaži preglede"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Prikaži komentar inačice"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(naziv nije postavljen)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Popis stilova"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hijerarhijski"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Ispuna kao način rada"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Novi stil iz odabira"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Ažuriraj stil"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Želite li stvarno odustati od snimanja? Svi koraci dosad snimljeni bit će izgubljeni."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Odustani od snimanja"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Predlošci se inicijaliziraju za prvu upotrebu."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Zadani pisač nije pronađen.\n"
"Odaberite pisač i pokušajte ponovno."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Nije moguće pokrenuti pisač.\n"
"Provjerite postavke pisača."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Pisač je zauzet"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (samo za čitanje)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"Veličina i orijentacija stranice su promijenjene.\n"
"Želite li spremiti nove postavke u aktivni dokument?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"Želite li da nove postavke budu snimljene \n"
"u aktivni dokument?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1125,7 +1120,7 @@ msgstr ""
"Veličina i orijentacija stranice su promijenjene.\n"
"Želite li spremiti nove postavke u aktivni dokument?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1134,7 +1129,7 @@ msgstr ""
"Dokument ne može biti zatvoren zbog\n"
"ispisivanja na pisaču."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1142,7 +1137,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1153,17 +1148,17 @@ msgstr ""
"\n"
"Kod greške $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Greška kod slanja mail-a"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Dokument se ne može uređivati, moguće zbog nedostatnih privilegija pristupa. Želite li uređivati kopiju dokumenta?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1174,349 +1169,359 @@ msgstr ""
"\n"
"Također možete pokušati zanemariti zaključavanje i otvoriti datoteku za uređivanje."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Otvori ~kopiju"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Otvori"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (obnovljen dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Dokument nije odjavljen na poslužitelju."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Pomozite nam napraviti %PRODUCTNAME još boljim!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Uključite se"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dokument je otvoren samo za čitanje."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Ova je PDF datoteka otvorena na način da ju je moguće samo čitati kako bi se omogućilo potpisivanje datoteke."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Klasifikacijska oznaka ovog dokumenta je %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Ovaj dokument mora biti klasificiran prije nego li sadržaj priručne memorije može biti umetnut."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Ovaj dokument ima nižu razinu klasifikacije nego priručna memorija."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Razina"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nacionalna sigurnost:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Kontrola izvoza:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Odjavi datoteku"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Uređivanje dokumenta"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Potpisivanje dokumenta"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Ovaj dokument ima neispravan potpis."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Potpis je bio ispravan, ali je dokument u međuvremenu izmjenjen"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Potpis je u redu, ali certifikat ne može biti provjeren."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Potpis je u redu, ali je dokument samo djelomično potpisan."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dokument je digitalno potpisan i potpis je valjan."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Prikaži potpise"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Zatvori ploči"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Prikvači"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Otkvači"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Više mogućnosti"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zatvori bočnu traku"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Postavke bočne trake"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Prilagodba"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Vrati zadano"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Zatvori bočnu traku"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Košnica"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Plava krivulja"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Tlocrt"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Svjetloplava"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Elegantno crveno"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Šumska ptica"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impresivno"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracija"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Svjetla"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Intenzivno zeleno"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropola"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Ponoćnoplava"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Ilustracije prirode"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Olovka"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavir"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfelj"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Napredak"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Zalazak sunca"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Neka prošla vremena"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Živahno"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Rezime"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Uobičajeno"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderno poslovno pismo u sans-serifu"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderno poslovno pismo u serifu"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Posjetnica s logom"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Ukloni"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Očisti sve"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Dužina zaporke"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Lozinka koju ste unijeli uzrokuje probleme interoperabilnosti. Unesite zaporku kraću od 52 bajta ili duža od 55 bajta."
@@ -1861,32 +1866,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Komentar inačice:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Naziv"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tip"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Vrijednost"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tip"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Da"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ne"
@@ -1896,17 +1886,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Dodaj _svojstvo"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Ime"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tip"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Vrijednost"
@@ -2036,17 +2026,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Lokacija:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tip:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_Promijeni lozinku"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Predložak:"
@@ -2056,27 +2046,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Svojstva dokumenta “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Općenito "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Opis"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Prilagođena Svojstva"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS svojstva"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Sigurnost"
@@ -2290,6 +2280,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/hr/shell/messages.po b/source/hr/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/hr/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/hr/starmath/messages.po b/source/hr/starmath/messages.po
index d73df306c81..a0c8dd4c6b7 100644
--- a/source/hr/starmath/messages.po
+++ b/source/hr/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Primjeri"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standardno"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kurziv"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Podebljano"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "crna"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "plava"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "zelena"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "crvena"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cijan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "siva"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "limeta"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kestenjasta"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "mornarska"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "maslinasta"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ljubičasta"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "srebrna"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "tirkizna"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "žuta"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "sakrij"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "veličina"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "lijevo"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "sredina"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "desno"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Naredbe"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Spremam dokument..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "GREŠKA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Neočekivani znak"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Neočekivani token"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' očekivano"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' očekivano"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' očekivano"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' očekivano"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Nepodudaranje lijevih i desnih simbola"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "očekuje se 'fiksno', 'sans' ili 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'veličina' praćena neočekivanim tokenom"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dvostruko poravnanje nije dopušteno"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dvostruki indeks/eksponent nije dozvoljen"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' očekivano"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Boja je nužna"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'DESNO' očekivano"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Sadržaj"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Naslov"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Tekst formule"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Obrubi"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Veličina"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Izvorna veličina"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Prilagodi stranici"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skaliranje"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementi"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/hr/svtools/messages.po b/source/hr/svtools/messages.po
index 4b9fd9ebe8b..4e618dea143 100644
--- a/source/hr/svtools/messages.po
+++ b/source/hr/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195530.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Vrati: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Ponovi: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Ponovi: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Neoblikovan tekst"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Neoblikovan tekst (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmapna slika (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metadatoteka sučelja grafičkoga pogona (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME datotečni format crtanja"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmapa/animacija (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Info stanje od Svx interne veze"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME poveznica (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscapeova zabilješka"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format Star poslužitelja"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format Star objekta"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet objekt"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objekt priključka"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 objekt"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 objekt"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 objekt"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 objekt"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 objekt"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Nadzorni objekt 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Nadzorni objekt 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw objekt"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 objekt"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 objekt"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 objekt"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc objekt"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 objekt"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 objekt"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart objekt"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 objekt"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage objekt"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 objekt"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 objekt"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath objekt"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 objekt"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 objekt"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint objekt"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Pročišćen HyperText Markup Language (Jednostavan HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel binarni datotečni format razmjene podataka 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel binarni datotečni format razmjene podataka 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Svila"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dinamička razmjena podataka (DDE poveznica)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Datotečni format razmjene podataka (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word objekt"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet objekt"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office dokument objekt"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes dokument info"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokument"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekt"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafički objekt"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer objekt"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web objekt"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Nadzorni objekt"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw objekt"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress objekt"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc objekt"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart objekt"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math objekt"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metadatoteka"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objekt izvor podataka"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Izvor podataka - tablica"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL upit"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dijalog"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Veza"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML oblik bez komentara"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Grafika za prenošenje mrežom (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % nije bilo moguće umetnuti."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt iz datoteke % nije bilo moguće umetnuti."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Daljnji objekti"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Nepoznati izvor"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Naziv"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Veličina"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Datum promjene"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tip"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajtova"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Redak: %1, Stupac: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tip: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Mapa"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Datoteka"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Prazno polje"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerički"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Obično"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Znakovni skup"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Rječnik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Potez kistom"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonski imenik"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetski (alfanumerički prvo)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetski (alfanumerički zadnje)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerički"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Rječnik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Potez kistom"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetski (alfanumerički prvo, grupirano prema slogovima)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetski (alfanumerički prvo, grupirano prema suglasnicima)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetski (alfanumerički na kraju, grupirano prema slogovima)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetski (alfanumerički prvo, grupirano prema suglasnicima)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Danas"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Ništa"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Svjetlo"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Lagani kurziv"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Obično"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kurziv"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Podebljano"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Podebljani kurziv"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Crna"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Crni kurziv"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Book"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Podebljano nakošeno"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Zgusnuto"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Zgusnuto podebljano"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Zgusnuto podebljano kurziv"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Zgusnuto podebljano nakošeno"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Zgusnuto kurziv"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Zgusnuto nakošeno"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ultralako"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ultralako kurziv"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Nakošeno"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Djelomično podebljano"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Djelomično podebljano kurziv"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Isti font će biti korišten na vašem pisaču i zaslonu."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Ovo je font za ispis. Slika na zaslonu može odstupati."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Ovaj stil fonta bit će simuliran ili će biti korišten najbliži odgovarajući stil."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Ovaj font nije instaliran. Koristit će se najbliži odgovarajući font."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Pretraživanje..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Pomakni na početak"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Pomakni lijevo"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Pomakni desno"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Pomakni na kraj"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Dodaj"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vodoravno ravnalo"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Okomito ravnalo"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "granica od 1 bita"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit podrhtavanje"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bita sivi tonovi"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bita boja"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bita sivi tonovi"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bita boja"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bit stvarne boje"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Slika treba otprilike %1 KB memorije."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Slika treba otprilike %1 KB memorije, veličina datoteke iznosi %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Veličina datoteke je %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "poslužitelj"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Drugi CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Spreman"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pauzirano"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Čeka se brisanje"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Zauzeto"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicijalizacija"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Čekanje"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Zagrijavanje"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "U radu"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Ispisujem"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Neumreženo"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Greška"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Nepoznati poslužitelj"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zastoj papira"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nema dovoljno papira"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Ručno punjenje"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem s papirom"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "U/I aktivno"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Izlazni prostor pun"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner pri kraju"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Nema tonera"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Obriši stranicu"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Potrebno je korisnikova intervencija"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Nema dovoljno memorije"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Omotnica otvorena"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Štednja energije"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Zadani pisač"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumenti"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Završi"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Naprijed >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Natra~g"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Koraci"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ništa>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Tvrtka"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Odjel"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ime"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Prezime"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Ulica"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Zemlja"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Poštanski broj"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Grad"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Naslov"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Položaj"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adresni obrazac"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicijali"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Pozdravno zatvaranje"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: kućni"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: posao"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Zabilješka"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Korisnik 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Korisnik 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Korisnik 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Korisnik 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Država"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: ured"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Dojavljivač"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobilni"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: ostalo"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendar"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Pozovi"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME zahtjeva Java izvedbeno okruženje (JRE) kako bi izvršio ovaj zadatak. Instalirajte JRE i ponovno pokrenite %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Za izvršavanje ovoga zadatka %PRODUCTNAME zahtijeva %BITNESS-bitno Javino izvršno okruženje (JRE). Instalirajte potrebno okruženje (JRE) i ponovno pokrenite %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME postava je promijenjena. Pod %PRODUCTNAME - Mogućnosti - %PRODUCTNAME - Napredno, odaberite Java izvedbeno okruženje koje želite da %PRODUCTNAME koristi."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME postava je promijenjena. Pod Alati - Mogućnosti - %PRODUCTNAME - Napredno, odaberite Java izvedbeno okruženje koje želite da %PRODUCTNAME koristi."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Potrebno je Java izvedbeno okruženje (JRE) kako bi %PRODUCTNAME izveo ovaj zadatak. Odabrano JRE je neispravno. Odaberite drugu inačicu ili instalirajte novo JRE i odaberite ga kroz %PRODUCTNAME - Mogućnosti - %PRODUCTNAME - Napredno."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Potrebno je Java izvedbeno okruženje (JRE) kako bi %PRODUCTNAME izveo ovaj zadatak. Odabrano JRE je neispravno. Odaberite drugu inačicu ili instalirajte novo JRE i odaberite ga kroz Alati - Mogućnosti - %PRODUCTNAME - Napredno."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE nužan"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Odaberi JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE je neispravan"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Izvorni kod"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Datoteka zabilješki"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafika"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Datoteka s postavkama"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Program"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tablica baze podataka"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sustavska datoteka"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word dokument"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Datoteka pomoći"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arhivirana datoteka"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Dnevnik"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOfficea baza podataka"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Nadzorni dokument"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOfficea slika"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstna datoteka"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Veza"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOfficea 3.0 - 5.0 predložak"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel dokument"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel predložak"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch datoteka"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Datoteka"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Mapa"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstni dokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Proračunska tablica"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentacija"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Crtanje"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Nadzorni dokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Baza podataka"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 predložak proračunske tablice"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 predložak crteža"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 predložak prezentacije"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 predložak tekst dokumenta"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokalni pogon"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk pogon"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM pogon"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Mrežna veza"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint dokument"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint predložak"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint prikaz"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 formula"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 grafikon"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 crtež"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 proračunska tablica"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 prezentacija"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 tekst dokument"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 nadzorni dokument"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument baza podataka"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument crtež"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument formula"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument nadzorni dokument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument prezentacija"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument proračunska tablica"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument tekst"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument predložak proračunske tablice"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument predložak crteža"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument predložak prezentacije"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument predložak teksta"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Dodatak za %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Računalna provjera pravopisa Hunspellom"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Rastavljanje na slogove Libhyphenom"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Popis ignoriranih riječi"
diff --git a/source/hr/svx/messages.po b/source/hr/svx/messages.po
index a4f3d0dc0b3..90c040caa75 100644
--- a/source/hr/svx/messages.po
+++ b/source/hr/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Slijeva nadesno (okomito)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Odredite okomiti odmak u postocima od središta za gradijentno sjenčanje. Okomito je središte na 50%."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Uređivač kontura"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Primijeni"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Radni prostor"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Odaberi"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Pravokutnik"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Poligon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Uređivanje točaka"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Premjesti točke"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Umetni točke"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Obriši točke"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Automatska kontura"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Vrati "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Ponovi"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolerancija boje"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Podnožje"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Uređivač slikovnih poveznica"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Primijeni"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Otvori..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Spremi..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Zatvori"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Odaberi"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Pravokutnik"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Poligon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Ručno crtani poligon"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Uređivanje točaka"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Premjesti točke"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Umetni točke"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Obriši točke"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Vrati "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Ponovi"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktivno"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makronaredba..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Svojstva..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresa:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Okvir:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekst:"
diff --git a/source/hr/sw/messages.po b/source/hr/sw/messages.po
index d8b4e7fd064..c9558e2c626 100644
--- a/source/hr/sw/messages.po
+++ b/source/hr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-19 16:58+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3124,9 +3124,9 @@ msgid "Change object title of $1"
msgstr "Izmijeni naziv objekta $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Promjeni opis objekta $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12013,147 +12013,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12163,152 +12163,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Datoteka"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Umetni"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Omatanje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Raspored elemenata"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referen_ce"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Provje_ra"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Pogled"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_ablica"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Slika"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "C_rtanje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Medijske datoteke"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Ispis"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Ala_ti"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13375,8 +13375,8 @@ msgstr "Proširivanje razmaka između riječī ručno prelomljenih redaka u odlo
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Obrazac zaštite"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16656,47 +16656,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Tablica sadržaja, indeks ili bibliografija"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Pregled"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Pregled"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tip"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Unosi"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stilovi"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Stupci"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Pozadina"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Pregled"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Razina"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tip"
@@ -16926,302 +16926,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Uredi..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Naslov:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tip:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Tablica sadržaja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Abecedni indeks"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Tablica slika"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Indeks tablica"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Korisnički određeno"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tablica objekata"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografija"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Zaštićeno od ručnih izmjena"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tip i naslov"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Za:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Cijeli dokument"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Poglavlje"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Procijeni do razine:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Stvori indeks ili tablicu sadržaja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Kontura"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Oznake inde_ksa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tablice"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Te_kstualni okviri"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafike"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE objekti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Koristi razinu iz izvornog poglavlja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Dod_atni stilovi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stil_ovi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Dodijeli stilove..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Opisi elementa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Nazivi objekata"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorija:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Prikaz:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Reference"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorija i broj"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Opis elementa teksta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Stvori iz"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Stvori iz sljedećih objekata"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Zagrade:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "U_nosi broja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[none]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Oblikovanje unosa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Združi identične unose"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Združi identične unose s p ili _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Kombiniraj s -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Osjetljivo na velika i mala slova"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Unose automatski piši velikim slovima"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Ključevi kao zasebni unosi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Datoteka konkordancije"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Datoteka"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Mogućnosti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Jezik:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tip tipke:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Razvrstavanje"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Razine"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Stilovi odlomka"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Za_dano"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Ur_edi"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Dodjeljivanje"
diff --git a/source/hr/xmlsecurity/messages.po b/source/hr/xmlsecurity/messages.po
index de5f4cdd416..c152bc2d112 100644
--- a/source/hr/xmlsecurity/messages.po
+++ b/source/hr/xmlsecurity/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-06-09 06:17+0000\n"
-"Last-Translator: Kruno <ksebetic@gmx.com>\n"
+"PO-Revision-Date: 2019-05-20 20:28+0000\n"
+"Last-Translator: Mihovil Stanić <mihovil@miho.im>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\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: 1528525068.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558384082.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -188,12 +188,12 @@ msgstr "Kriptiraj"
#: xmlsecurity/uiconfig/ui/certdetails.ui:49
msgctxt "certdetails|field"
msgid "Field"
-msgstr ""
+msgstr "Polje"
#: xmlsecurity/uiconfig/ui/certdetails.ui:62
msgctxt "certdetails|value"
msgid "Value"
-msgstr ""
+msgstr "Vrijednost"
#: xmlsecurity/uiconfig/ui/certgeneral.ui:33
msgctxt "certgeneral|label1"
diff --git a/source/hsb/cui/messages.po b/source/hsb/cui/messages.po
index 8c2de4d49c4..234ac0482f5 100644
--- a/source/hsb/cui/messages.po
+++ b/source/hsb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-05-03 16:16+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1637,107 +1637,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Prošu zapodajće płaćiwu temowu adresu abo pytanski wuraz."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "Drastowy API Mozilla tuchwilu k dispoziciji njeje."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Žadyn ramik"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Jenož wonkowny ramik"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Wonkowny ramik a horiconalne linije"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Wonkowny ramik a wšě nutřkowne linje"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Wonkowny ramik bjez změny nutřkownych linijow"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Jenož diagonalne linije"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Dospołny ramik"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Jenož lěwa a prawa kroma"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Jenož horni a delni ramik"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Jenož lěwy ramik"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Hornja a delnja kroma a wšě nutřkowne linije"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Lěwa a prawa kroma a wšě nutřkowne linije"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Žadyn sćin"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Sćin doprawa deleka mjetać"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Sćin doprawa horjeka mjetać"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Sćin dolěwa deleka mjetać"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Sćin dolěwa horjeka mjetać"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Signowany wot: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Wšě dataje"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Zregistrowane datowe banki"
@@ -1780,7 +1775,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1900,7 +1895,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2140,7 +2135,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2395,12 +2390,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2470,7 +2465,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2550,7 +2545,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2791,7 +2786,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3375,66 +3370,71 @@ msgid "About %PRODUCTNAME"
msgstr "Wo %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Při_noški"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Websydło"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID zestajenki: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Narodna šema: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Rěč wužiwarskeho powjercha. $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Hlejće protokol: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME je moderny lochko wužiwajomny programowy paket wotewrjeneho žórła za tekstowe předźěłowanje, tabelowu kalkulaciju, prezentacije a wjace."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 přinošowarjo k LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice na OpenOffice.org bazuje."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME je wot LibreOffice wotwodźeny, kotryž na OpenOffice.org bazuje."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Tute wozjewjenje je so wot %OOOVENDOR k dispozicji stajiło."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://hsb.libreoffice.org/about-us/credits/"
@@ -3549,17 +3549,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Narunać"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Wu_měnić"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Z:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Jenož _tekst"
@@ -4379,6 +4379,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimalna słowna dołhosć"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5489,27 +5649,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Kajkosće"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Ramik:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Mjeno:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternatiwny _tekst:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Wopisanje:"
@@ -9018,80 +9178,80 @@ msgstr "Wuskakowace wokno „Pomoc offline njeinstalowana“ pokazać"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoc"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Dialogi %PRODUCTNAME wužiwać"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogi wočinić/składować"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Dia_logi %PRODUCTNAME wužiwać"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Ćišćerske dialogi"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Ćišćenje _status \"dokument změnjeny\" staja"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentowy status"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretować jako lěta mjez "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "a "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Lěto (dwuměstnowe)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Wužiwanske daty hromadźić a na załožbu The Document Foundation pósłać"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomoc při polěpšenju %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME za systemowy start začitać"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Spěšny startowak w žłobiku zmóžnić"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Spěšny startowak %PRODUCTNAME"
@@ -10964,25 +11124,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Předinstalowana drasta"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Swójska drasta"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Drastu Firefox začitać"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Abo wubjerće drasty instalowane přez rozšěrjenja:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Drasty Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11609,102 +11754,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Wěstotne nastajenja"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Drastu Firefox wubrać"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Pytanski wuraz abo adresa"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ka_tegorija:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Zjeće"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Přičiny"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film a telewizija"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Dowol"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Hudźba"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Přiroda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Druhe"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Scenerija"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Počasowy"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Jednobarbne"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Websydła"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Předstajene"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12711,27 +12760,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr "Pokiw dnja"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr "_Pokiwy při starće pokazać"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Přichodny pokiw"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Sće hižo wědźał?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Wotkaz"
diff --git a/source/hsb/extensions/messages.po b/source/hsb/extensions/messages.po
index e89ae96ea8d..0930a8dd2ea 100644
--- a/source/hsb/extensions/messages.po
+++ b/source/hsb/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-08 13:37+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554730645.000000\n"
#: extensions/inc/command.hrc:29
@@ -3092,162 +3092,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Přirjadowanje špaltow za tabelu „%1“"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Krótke mjeno"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Awtorojo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Wudawaćel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Kapitl"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Redaktor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Typ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Lěto"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Titu_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dresa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "S_trony"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "W_udaće"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "K_nižny titul"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Zwjazk"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Wo_zjewjenski typ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "_Organizacija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_ucija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uniw_ersita"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "_Rozprawniski typ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Měsac"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Ča_sopis"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Lič_ba"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_rije"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Přispo_mnjenka"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Notica"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Swójske polo _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Swójske polo _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Swójske polo _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Swójske polo _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Swójske polo _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Mjena špaltow"
@@ -3422,27 +3422,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Zapodajće mjeno za nowy datowy typ:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Pola zwjazać"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Namjetować"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Podformulary dadźa so wužiwać, zo bychu nadrobne daty wo aktualnej datowej sadźbje hłowneho formulara pokazali. Zo byšće to činił, móžeće podać, kotre špalty w podformularje kotrym špaltam w hłownym formularje wotpowěduja."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "popis"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "popis"
diff --git a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
index 847571a79f9..d38d8fb0120 100644
--- a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hsb/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 16:42+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-22 15:17+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557679329.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558538263.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -21039,7 +21039,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~User Guides"
-msgstr "W~užiwarske přiručniki"
+msgstr "W~užiwarske přiručki"
#: GenericCommands.xcu
msgctxt ""
@@ -23399,6 +23399,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Dalše pola"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Diagram znowa spłodźić"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25688,6 +25697,15 @@ msgstr "W rajtarkach"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25706,6 +25724,15 @@ msgstr "Zeskupjeny"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/hsb/sc/messages.po b/source/hsb/sc/messages.po
index f62b8a7b4cd..c48656154e5 100644
--- a/source/hsb/sc/messages.po
+++ b/source/hsb/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 16:42+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 07:24+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557679365.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558596269.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15224,6 +15224,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ekskluziwny přistup)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "We wubranym dokumenće pomjenowane wobłuki k dispoziciji njejsu."
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15777,14 +15782,14 @@ msgstr "Wuměnjene formatowanje rjadować"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr "Prěnje wuměnjenje"
-
-#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
msgid "Range"
msgstr "Wobwod"
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Prěnje wuměnjenje"
+
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
msgid "Add"
@@ -17000,81 +17005,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Datowy formular"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Začinić"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nowa datowa sadźba"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nowy"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Zhašeć"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Wo_bnowić"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Př_edchadna datowa sadźba"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Př_ichodna datowa sadźba"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Začinić"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Datowe prudy live"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Zapodajće URL žórłoweho dokumenta w lokalnym datajowym systemje abo w interneće."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Přepytać..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Wobłuk datoweje banki:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Poskićowar datow:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Znamješkowy rjećazk pytać:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Prud žórłowych datow"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18790,32 +18755,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Wuslědki do:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Zapodawanski wobłuk na aktualny datowy wobsah přitřihać"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Daty"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Špalty"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Linki"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Zeskupjeny po"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interwal:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametry"
@@ -18955,167 +18925,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Pomoc"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Dataja"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Podajće ramiki wubranych celow."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Zasunjenje powjetšić"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Zasunjenje pomjeńšić"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Start"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Po_lo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasadźić"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasadźić"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "Wu_hotowanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Objektowe wusměrjenje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "W~uhotowanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistika"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Daty"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Daty"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Přepruwowanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Přepruwowanje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Napohlad"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Napohlad"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rysować"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rysować"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ć_išćeć"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Ć~išćeć"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Nastroje"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nastroje"
@@ -21596,17 +21568,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Pytanske wuslědki"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "_Tutón dialog pokazać"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "Zmóžńće dialog w Nastroje > Nastajenja > Calc > Napohlad znowa"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Tabela"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Cela"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Wobsah"
@@ -23476,107 +23458,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Rozrjadowe symbole"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "Zjeće w_o pytanju"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Wokno"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Lěsyčne linije:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Barba:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Pokazać"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Na barbnych celach pokazać"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Schować"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Łamanja _strony"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Po_mocne linije při pohibowanju"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Optiske pomocki"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Objekty/wobrazy:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Diagramy:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Rysowanske objekty:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Pokazać"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Schować"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Pokazać"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Schować"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Pokazać"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Schować"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekty"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Tabele syn_chronizować"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Měritko"
diff --git a/source/hsb/scp2/source/ooo.po b/source/hsb/scp2/source/ooo.po
index 202499d0e30..8223c1229f3 100644
--- a/source/hsb/scp2/source/ooo.po
+++ b/source/hsb/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-08 13:22+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-22 15:18+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1554729758.000000\n"
+"X-POOTLE-MTIME: 1558538287.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -34,6 +34,14 @@ msgstr "Dokument wočinić"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (wěsty modus)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/hsb/scp2/source/winexplorerext.po b/source/hsb/scp2/source/winexplorerext.po
index 74cf3044f46..27ad1a1484d 100644
--- a/source/hsb/scp2/source/winexplorerext.po
+++ b/source/hsb/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-08-22 20:52+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1534971156.000000\n"
#: module_winexplorerext.ulf
@@ -28,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Zmóžnja Microsoft Windows Explorer informacije wo dokumentach %PRODUCTNAME pokazać, na přikład napohlady miniaturkow."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/hsb/sd/messages.po b/source/hsb/sd/messages.po
index 4bce217f2cb..534e2372b53 100644
--- a/source/hsb/sd/messages.po
+++ b/source/hsb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-08 13:32+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2582,6 +2582,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Klikńće, zo byšće wotkaz wočinił: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3037,164 +3042,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Mjeno HTML-designa"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Dataja"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Pomoc"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Dataja"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Po_lo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasadźić"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasadźić"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Strona"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Strona"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Přepruwowanje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Přepruwowanje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Napohlad"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Napohlad"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertować"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rysować"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rysować"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Nastroje"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nastroje"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4582,160 +4772,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Twary pokazać"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Dataja"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Pomoc"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Dataja"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Po_lo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasadźić"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasadźić"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Folija"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "Fo~lija"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Prezentacija"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Prezentacija"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Přepruwowanje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Přepruwowanje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Napohlad"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Napohlad"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertować"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rysować"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rysować"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Nastroje"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Nastroje"
diff --git a/source/hsb/sfx2/messages.po b/source/hsb/sfx2/messages.po
index b3b167472af..eceb03ff538 100644
--- a/source/hsb/sfx2/messages.po
+++ b/source/hsb/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-08 13:23+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-22 15:23+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1554729793.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558538619.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -918,11 +918,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " L: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Kajkosć wotstronić"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -931,27 +926,27 @@ msgstr ""
"Zapodata hódnota podatemu typej njewotpowěduje.\n"
"Hódnota budźe so jako tekst składować."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Předłoha hižo eksistuje. Přepisać?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Wob~nowić"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Tute mjeno so hižo wužiwa."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Tuta předłoha njeeksistuje."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -960,7 +955,7 @@ msgstr ""
"Tuta předłoha njeda so jako bazowa předłoha wužiwać,\n"
"dokelž rekursija by nastała."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -969,7 +964,7 @@ msgstr ""
"Mjeno hižo jako standardna předłoha eksistuje.\n"
"Prošu wubjerće druhe mjeno."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -980,92 +975,92 @@ msgstr ""
"Jeli tute předłohi zhašeće, so tekstej nadrjadowana předłoha připokaza.\n"
"Chceće tute předłohi zhašeć?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Wužite předłohi: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Nawigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Zmylne wobkrućenje hesła"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Pósłać"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Pismo"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Přehlady pokazać"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Wersijowy komentar pokazać"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(žane mjeno nastajene)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lisćina předłohow"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarchisce"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Krjepjawkowy modus"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nowa předłoha z wuběra"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Stilowe akcije"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Předłohu aktualizować"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Chceće natočenje woprawdźe přetorhnyć? Wšě kroki natočene do toho so zhubja."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Natočenje přetorhnyć"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Předłohi so runje za prěnje wužiwanje inicializuja."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1074,7 +1069,7 @@ msgstr ""
"Standardny ćišćak njeje so namakał.\n"
"Prošu wubjerće ćišćak a spytajće hišće raz."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1083,17 +1078,17 @@ msgstr ""
"Ćišćak njeda so startować.\n"
"Prošu přepruwujće konfiguraciju swojeho ćišćaka."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Ćišćak hižo dźěła"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (jenož za čitanje)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"Chceće nowe nastajenja w aktiwnym\n"
"dokumenće składować?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"Chceće nowe nastajenja w aktiwnym\n"
"dokumenće składować?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1126,7 +1121,7 @@ msgstr ""
"Chceće nowe nastajenja w aktiwnym dokumenće\n"
"składować?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1135,7 +1130,7 @@ msgstr ""
"Dokument njeda so začinić, dokelž\n"
"ćišćerski nadawk so runje přewjedźe."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,7 +1140,7 @@ msgstr ""
"Prošu přepruwujće nastajenja %PRODUCTNAME abo nastajenja wašeho e-mejloweho programa."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1156,17 +1151,17 @@ msgstr ""
"\n"
"Zmylkowy kod je $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Zmylk při słanju mejlki"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Tutón dokument njeda so wobdźěłać, snano falowacych prawow dla. Chceće kopiju dokumenta wobdźěłować?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1177,349 +1172,359 @@ msgstr ""
"\n"
"Móžeće tež zawrjenje ignorować a dataju za wobdźěłowanje wočinić."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "~Kopiju wočinić"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "W~očinić"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (porjedźeny dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Tutón dokument njeje so wot serwera wotzjewił."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Pomhajće nam, %PRODUCTNAME polěpšić!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Čińće sobu"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Waše dary naše swětodaloke zhromadźenstwo podpěruja."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Darić"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Wužiwaće wersiju %PRODUCTVERSION %PRODUCTNAME prěni raz. Chceće zhonić, što je nowe?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Wersijowe informacije"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Tutón dokument je jenož za čitanje wočinjeny."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Tutón PDF je jenož za čitanje wočinjeny, zo by so signowanje eksistowaceje dataje zmóžniło."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Popis klasifikacije tutoho dokumenta je %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Tutón dokument dyrbi so klasifikować, prjedy hač wobsah z mjezyskłada da so zasadźić."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Tutón dokument ma nišu klasifikacisku runinu hač wobsah mjezyskłada."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Runina"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Narodna wěstota:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Eksportowa kontrola:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Wupruwowanje"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Dokument wobdźěłać"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Dokument signować"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Tutón dokument ma njepłaćiwu signaturu."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Signatura bě płaćiwa, ale dokument je so změnił"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Signatura je w porjadku, ale certifikat njeda so přepruwować."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Signatura je w porjadku, ale dokument je jenož zdźěla signowany."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Certifikat njeda so wobkrućić a dokument je jenož zdźěla signowany."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dokument je digitalnje signowany a signatura je płaćiwa."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Signatury pokazać"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Wokno začinić"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Přidokować"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Wotdokować"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Dalše nastajenja"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Bóčnicu začinić"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Nastajenja bóčnicy"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Přiměrjenje"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Standard wobnowić"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Bóčnicu začinić"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Kołć"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Modra křiwka"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Módropawsowe plany"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Swětłomódra"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Elegantna čerwjeń"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Lěsny ptačk"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracija"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Swětła"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Bujna zelena"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Połnócna módrina"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Přirodna ilustracija"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pisak"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klawěr"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Aktowka"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Postup"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Chowanje słónca"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradicionelny"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Žiwy"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Žiwjenjoběh"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Tabelariski žiwjenjoběh"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderny"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderny wobchodny list bjez serifow"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderny wobchodny list ze serifami"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Wizitka z logom"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Wotstronić"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Wšě zhašeć"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Dołhosć hesła"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Hesło, kotrež sće zapodał, problemy za zhromadne dźěło zawinuje. Prošu zapodajće hesło, kotrež je krótše hač 52 bajtow abo dlěše hač 55 bajtow."
@@ -1864,32 +1869,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Wersijowy komentar:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Mjeno"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Typ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Hódnota"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Typ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Haj"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ně"
@@ -1899,17 +1889,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "_Kajkosć přidać"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Mjeno"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Typ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Hódnota"
@@ -2039,17 +2029,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Městno:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Typ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_Hesło změnić"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Předłoha:"
@@ -2059,27 +2049,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Kajkosće „%1“"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Powšitkowny "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Wopisanje"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Swójske kajkosće"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS-kajkosće"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Wěstota"
@@ -2302,6 +2292,26 @@ msgstr ""
"\n"
"Tutón produkt je so wot %OOOVENDOR wutworił, na zakładźe OpenOffice.org, kotryž copyrightej 2000, 2011 Oracle a/abo jeho wotnožkam podleži. %OOOVENDOR připóznawa wšěch čłonow zhromadźenstwa, hlejće prošu http://hsb.libreoffice.org/about-us/credits/ za dalše podrobnosće."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/hsb/shell/messages.po b/source/hsb/shell/messages.po
new file mode 100644
index 00000000000..adaccdf080f
--- /dev/null
+++ b/source/hsb/shell/messages.po
@@ -0,0 +1,51 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-22 15:21+0000\n"
+"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: hsb\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558538515.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Dokument wočinić"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Wočinjeće dokument.\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Chceće jón wočinić, zo byšće sej jón wobhladał abo wobdźěłał?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Wobhladać"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Wobdźěłać"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Přetorhnyć"
diff --git a/source/hsb/starmath/messages.po b/source/hsb/starmath/messages.po
index 1f6b6b4e854..afadb955aef 100644
--- a/source/hsb/starmath/messages.po
+++ b/source/hsb/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-21 18:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1651,261 +1651,286 @@ msgid "Examples"
msgstr "Přikłady"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiwny"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Tučny"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "čorny"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "módry"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "zeleny"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "čerwjeny"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "šěry"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "swětłozeleny"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kastanijowy"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ćmowomódry"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliwowy"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purpurny"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "slěbro"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "módrozeleny"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "žołty"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "schować"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "wulkosć"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "pismo"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "nalěwo"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centrowany"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "naprawo"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Přikazy"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formla"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokument so składuje..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formla"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ZMYLK : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Njewočakowane znamješko"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Njewočakowane znamješko"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' wočakowana"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' wočakowana"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' wočakowana"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' wočakowana"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Lěwy a prawy symbol jenakej njejstej"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans' abo 'serif' wočakowany"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' slědowany wot njewočakowaneho znamješka"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dwójne wusměrjenje dowolene njeje"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dwójne powyšenje/zniženje dowolene njeje"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' wočakowany"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Barba trěbna"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' wočakowany"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Wobsah"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titul"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formlowy tekst"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Ramiki"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Wulkosć"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "O~riginalna wulkosć"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Wulkosći ~strony přiměrić"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalowanje"
@@ -1970,6 +1995,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementy"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/hsb/svtools/messages.po b/source/hsb/svtools/messages.po
index b0e0f821bca..cfac2ba44ba 100644
--- a/source/hsb/svtools/messages.po
+++ b/source/hsb/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-12 16:44+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,1521 +12,1523 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557679481.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Cofnyć: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Znowa: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Wospjetować: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Njeformatowany tekst"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Njeformatowany tekst (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Wobraz bitmap (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Format rysowankow %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitmap/animacija StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statusowe informacije wot Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Wotkaz %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Zapołožka Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Serwerowy format Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Objektowy format Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objekt Applet"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objekt Tykač"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objekt StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objekt StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objekt StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objekt StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objekt StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objekt StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objekt StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objekt StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objekt StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objekt StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objekt StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objekt StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objekt StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objekt StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objekt StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objekt StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objekt StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objekt StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objekt StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objekt StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objekt StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objekt StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objekt StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objekt Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objekt StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objekt Dokument Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informacije dokumenta Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokument"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objekt StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Wobrazowy objekt"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objekt OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objekt OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objekt OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objekt OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objekt OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objekt OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objekt OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows MetaFile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objekt datowych žórłow"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabela datowych žórłow"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-wotprašowanje"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialog OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Wotkaz"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-format bjez komentarow"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objekt % njeda so zasadźić."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objekt z dataje % njeda so zasadźić."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Dalše objekty"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Njeznate žórło"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Mjeno"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Wulkosć"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Datum změny"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Typ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bajty"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Linka: %1, špalta: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Typ: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Rjadowak"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Dataja"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Prózdne polo"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeriski"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normalny"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Znamješkowa sadźba"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Słownik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Smužka"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Dźujin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonowa kniha"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetisce (alfanumeriske jako prěnje)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetisce (alfanumeriske jako poslednje)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeriski"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Słownik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinjin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Smužka"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Dźujin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetisce (alfanumeriske jako prěnje, zeskupjene po złóžkach)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetisce (alfanumeriske jako prěnje, zeskupjene po konsonantach)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetisce (alfanumeriske jako poslednje, zeskupjene po złóžkach)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetisce (alfanumerisce jako poslednje, zeskupjene po konsonantach)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Dźensa"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Žadyn"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lochki"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Lochko kursiwny"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normalny"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiwny"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Tučny"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Tučny kursiwny"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Čorny"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Čorny kursiwny"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Kniha"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Tučny nakósny"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Wuski"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Wuski tučny"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Wuski tučny kursiwny"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Wuski tučny nakósny"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Wuski kursiwny"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Wuski nakósny"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Jara lochki"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Jara lochki kursiwny"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Nakósny"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Połtučny"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Połtučny kursiwny"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Samsne pismo budźe so na wašim ćišćaku a wašej wobrazowce wužiwać."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "To je pismo ćišćaka. Napohlad na wobrazowce móže so wotchilić."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Tutón pismowy stil so similuje abo najbliša přihódna stil budźe so wužiwać."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Tute pismo njeje nainstalowane. Najbliše k dispoziciji stejace pismo budźe so wužiwać."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Přepytać..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "K spočatkej"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Dolěwa"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Doprawa"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Ke kóncej"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Přidać"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horicontalny lineal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Wertikalny lineal"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bitowy próh"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit simulowany"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bitowe stopnje šěrje"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bitowa barba"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bitowe stopnje šěrje"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bitowa barba"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bitowa wěrna barba"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Wobraz něhdźe %1 KB składa trjeba."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Wobraz něhdźe %1 KB składa trjeba, datajowa wulkosć je %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Datajowa wulkosć je %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Druhe CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Hotowo"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Zastajene"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Zhašenje čaka"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Wućeženy"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicializacija"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Čaka so"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Wohrěwanje"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Předźěłowanje"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Ćišćenje"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Zmylk"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Njeznaty serwer"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zatykanje papjera"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nic dosć papjery"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuelne dodawanje"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem z papjeru"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Z/W aktiwne"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Wudawanski fach połny"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Mało tonera"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Žadyn toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Stronu zhašeć"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Přistup wužiwarja trěbny"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Přemało składa"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Pokryw wočinjeny"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiju lutowacy modus"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standardny ćišćak"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumentow"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Do~kónčić"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Dale >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< W~róćo"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Kroki"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<žadyn>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Předewzaće"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Wotrjad"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Předmjeno"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Swójbne mjeno"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Hasa/Dróha"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Kraj"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "PWČ"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Město"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titul"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pozicija"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Narěčenje"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciale"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Postrowna formula"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefon: Priwatny"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefon: Słužbny"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mejlowa adresa"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notica"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Wužiwar 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Wužiwar 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Wužiwar 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Wužiwar 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Zwjazkowy kraj"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefon: běrow"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Škričkowanski přijimak (Pager)"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobilny telefon"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefon: druhe"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Protyka"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Přeprosyć"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME trjeba wokolinu běžneho časa Java (JRE), zo by tutón nadawk wuwjedł. Prošu instalujće JRE a startujće %PRODUCTNAME znowa."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME trjeba %BITNESS-bitowu wokolinu běžneho časa Java (JRE), zo by tutón nadawk wuwjedł. Prošu instalujće JRE a startujće %PRODUCTNAME znowa."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME sej na Mac OS 10.10 abo nowšim Java Development Kit (JDK) Oracle wužaduje, zo by tutón nadawk wuwjedł. Prošu instalujće jón a startujće %PRODUCTNAME znowa."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracija %PRODUCTNAME je so změniła. Wubjerće pod %PRODUCTNAME - Nastajenja - %PRODUCTNAME - Rozšěrjene wokolinu běžneho časa Java, kotruž %PRODUCTNAME ma wužiwać."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracija %PRODUCTNAME je so změniła. Wubjerće Nastroje - Nastajenja - %PRODUCTNAME - Rozšěrjene wokolinu běžneho časa, kotruž %PRODUCTNAME ma wužiwać."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME sej wokolinu běžneho časa Java (JRE) wužaduje, zo by tutón nadawk wuwjedł. Wubrana wokolina běžneho časa je wobškodźena. Prošu wubjerće druhu wersiju abo instalujće nowu wokolinu běžneho časa a wubjerće ju pod %PRODUCTNAME - Nastajenja - %PRODUCTNAME - Rozšěrjene."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME sej wokolinu běžneho časa Java (JRE) wužaduje, zo by tutón nadawk wuwjedł. Wubrana wokolina běžneho časa je wobškodźena. Prošu wubjerće druhu wersiju abo instalujće nowu wokolinu běžneho časa a wubjerće ju pod Nastroje - Nastajenja - %PRODUCTNAME - Rozšěrjene."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE trěbny"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE wubrać"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE je defektny"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Žórłowy kod"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Dataja zapołožkow"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Wobrazy"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfiguraciska dataja"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Nałoženje"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabela datoweje banki"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systemowa dataja"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dokument MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Dataja pomocy"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archiwna dataja"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Protokolowa dataja"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Datowa banka StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Globalny dokument StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Wobraz StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstowa dataja"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Wotkaz"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Předłoha StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Dokument MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Předłoha MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Staplowa dataja"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Dataja"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Rjadowak"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstowy dokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Tabelowy dokument"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentacija"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Rysowanka"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Globalny dokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formla"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datowa banka"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Předłoha tabeloweho dokumenta OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Předłoha rysowanki OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Předłoha prezentacije OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Předłoha tekstoweho dokumenta OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokalne běhadło"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disketnik"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-běhadło"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Syćowy zwisk"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Dokument MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Předłoha MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Prezentacija MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Formla OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagram OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Rysowanka OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Tabelowy dokument OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Prezentacija OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Tekstowy dokument OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Globalny dokument OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Datowa banka OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Rysowanka OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Formla OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Globalny dokument OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Prezentacija OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Tabelowy dokument OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Tekst OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Předłoha tabeloweho dokumenta OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Předłoha rysowanki OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Předłoha prezentacije OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Předłoha tekstoweho dokumenta Opendocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Rozšěrjenje %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Prawopisna kontrola Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Dźělenje złóžkow Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Tezawrus Mythes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lisćina ignorowanych słowow"
diff --git a/source/hsb/svx/messages.po b/source/hsb/svx/messages.po
index ce35112e5b5..5a5b7b4a8ad 100644
--- a/source/hsb/svx/messages.po
+++ b/source/hsb/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-12 17:14+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-22 15:18+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557681273.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558538335.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7919,6 +7919,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Wotlěwa doprawa (padoruny)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Wot deleka horje, wotlěwa doprawa (wertikalny)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12186,82 +12191,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Podajće procentowu sadźbu wertikalneho wotchilenja wot srjedźišća za stil sćina barbneho přeběha. 50% je wertikalne srjedźišćo."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Konturowy editor"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Nałožić"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Dźěłowa płonina"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Wubrać"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Praworóžk"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Dypki wobdźěłać"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Dypki přesunyć"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Dypki zasadźić"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Dypki zhašeć"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Awtomatiska kontura"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Cofnyć "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Wospjetować"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Barbna toleranca"
@@ -12572,112 +12582,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Nohowa linka"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor wobrazowych kartow"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Nałožić"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Wočinić..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Składować..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Začinić"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Wubrać"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Praworóžk"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Wólnoručny polygon"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Dypki wobdźěłać"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Dypki přesunyć"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Dypki zasadźić"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Dypki zhašeć"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Cofnyć "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Wospjetować"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktiwny"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Kajkosće..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresa:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Wobłuk:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekst:"
diff --git a/source/hsb/sw/messages.po b/source/hsb/sw/messages.po
index a54baef30cd..3cf270056ed 100644
--- a/source/hsb/sw/messages.po
+++ b/source/hsb/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557679716.000000\n"
+"X-POOTLE-MTIME: 1558538366.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3124,7 +3124,7 @@ msgid "Change object title of $1"
msgstr "Titul objekta $1 změnić"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Wopisanje objekta $1 změnić"
@@ -12016,147 +12016,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Pomoc"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Dataja"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasadźić"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Zasadźić"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Wu_hotowanje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Wuhotowanje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referen_cy"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referen~ce"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Přepruwowanje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Přepruwować"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Napohlad"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Napohlad"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Wo_braz"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rysować"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rysować"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medije"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medije"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Ć_išćeć"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Ć~išćeć"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Nastroje"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Nastroje"
@@ -12166,152 +12166,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Dataja"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "~Dataja"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Start"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Zasadźić"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "~Zasadźić"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Wobběh"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Wuhotowanje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "Wu~hotowanje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referen_cy"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr "Referen~ce"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Přepruwowanje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr "~Přepruwować"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Napohlad"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "~Napohlad"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abela"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Wobraz"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Wob~raz"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Rysować"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Rysowanka"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Medije"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Medije"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Ćišćeć"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Ć~išćeć"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Nastroje"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "~Nastroje"
@@ -13378,8 +13378,8 @@ msgstr "Słowne wotstupy w linkach z manuelnymi linkowymi łamanjemi w blokowej
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Formular škitać"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16659,47 +16659,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Zapis wobsaha, hesłar abo literarny zapis"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Přehlad"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Přehlad"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Typ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Zapiski"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Předłohi"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Špalty"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Pozadk"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Přehlad"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Runina"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Typ"
@@ -16929,302 +16929,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Wob_dźěłać..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titul:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Typ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Zapis wobsaha"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Hesłar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Zapis wobrazow"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Zapis tabelow"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Swójski"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Zapis objektow"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Literarny zapis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Přećiwo manuelnym změnam škitany"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Typ a titul"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Za:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Cyły dokument"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Kapitl"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Wuhódnoćić hač do runiny:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Hesłar abo zapis wobsaha wutworić"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Rozrjad"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Zapisowe marki"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabele"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Te_kstowe wobłuki"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Wobrazy"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objekty"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Runinu ze žórłoweho kapitla wužiwać"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Přidatne předłohi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Předłohi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Předłohi připokazać..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Popisy"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektowe mjena"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorija:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Pokazać:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referency"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorija a čisło"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Popisowy tekst"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Wutworić z"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Ze slědowacych objektow wutworić"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Spinki:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Zapiski čisłować"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[žadyn]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatowanje zapiskow"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Identiske zapiski zjednoćić"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "I_dentiske zapiski ze s abo ss zjednoćić"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Zjednoćić z -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Na wulkopisanje dźiwać"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Zapiski awtomatisce we wulkich pismikach"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Kluče jako separatne zapiski"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Konkordancna dataja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Dataja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Nastajenja"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Rěč:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Klučowy typ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sortěrować"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Runiny"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Wo_tstawkowe předłohi"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Standard"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Wo_bdźěłać"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Připokazanje"
diff --git a/source/hu/basctl/messages.po b/source/hu/basctl/messages.po
index 2ecb4164754..f6d6820f378 100644
--- a/source/hu/basctl/messages.po
+++ b/source/hu/basctl/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-01-17 20:08+0000\n"
-"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
+"PO-Revision-Date: 2019-05-30 05:48+0000\n"
+"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1547755697.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559195326.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -425,22 +425,22 @@ msgstr "Oldalak:"
#: basctl/inc/strings.hrc:101
msgctxt "RID_STR_PRINTDLG_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "Összes ~oldal"
#: basctl/inc/strings.hrc:102
msgctxt "RID_STR_PRINTDLG_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "Ol~dalak:"
#: basctl/inc/strings.hrc:103
msgctxt "RID_STR_PRINTDLG_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "~Páros oldalak"
#: basctl/inc/strings.hrc:104
msgctxt "RID_STR_PRINTDLG_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "Pára~tlan oldalak"
#: basctl/inc/strings.hrc:105
msgctxt "RID_STR_CHOOSE"
@@ -551,12 +551,12 @@ msgstr "Szerkesztés"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:363
msgctxt "basicmacrodialog|delete"
msgid "_Delete"
-msgstr ""
+msgstr "_Törlés"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:377
msgctxt "basicmacrodialog|new"
msgid "_New"
-msgstr ""
+msgstr "Ú_j"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:391
msgctxt "basicmacrodialog|organize"
diff --git a/source/hu/cui/messages.po b/source/hu/cui/messages.po
index b1f286ee9de..87b5c3f85f2 100644
--- a/source/hu/cui/messages.po
+++ b/source/hu/cui/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-03-11 23:44+0000\n"
-"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-30 05:49+0000\n"
+"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1552347872.000000\n"
+"X-POOTLE-MTIME: 1559195348.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1639,110 +1639,105 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Adjon meg egy érvényes témacímet vagy egy keresési kifejezést."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Szegély nélkül"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Csak külső szegély"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Külső szegély és vízszintes vonalak beállítása"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Külső szegély és az összes belső vonal beállítása"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Külső szegély beállítása a belső vonalak módosítása nélkül"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Csak az átlós vonalak beállítása"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Mind a négy szegély beállítása"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Csak a jobb és bal szegély beállítása"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Csak a fenti és lenti szegély beállítása"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Csak a bal oldali szegély beállítása"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Fenti és lenti szegély és az összes belső vonal beállítása"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Jobb és bal szegély és az összes belső vonal beállítása"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Nincs árnyékolás"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Árnyék jobb alsó irányba"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Árnyék jobb felső irányba"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Árnyék bal alsó irányba"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Árnyék bal felső irányba"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Aláírta: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Minden fájl"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
-msgstr ""
+msgstr "Regisztrált adatbázisok"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -1782,7 +1777,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1902,7 +1897,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2142,7 +2137,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2397,12 +2392,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2472,7 +2467,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2552,7 +2547,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2793,7 +2788,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3377,66 +3372,71 @@ msgid "About %PRODUCTNAME"
msgstr "A %PRODUCTNAME névjegye"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "_Köszönet"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Webhely"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build az.: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Területi beállítások: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "UI nyelve: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Lásd a naplót: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "A %PRODUCTNAME egy korszerű, egyszerűen használható nyílt forrású irodai programcsomag szövegszerkesztéshez, táblázatkezeléshez, bemutatókészítéshez és sok máshoz."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000 – 2019 a LibreOffice hozzájárulói."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "A LibreOffice az OpenOffice.org-on alapul."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "A(z) %PRODUCTNAME a LibreOffice-ból származik, ami az OpenOffice.org-on alapul."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "A kiadás szállítója: %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3551,17 +3551,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Csere"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Csere"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Helyettesítő szöveg:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Csak s_zöveg"
@@ -4381,6 +4381,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimális szóhossz"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5491,27 +5651,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Tulajdonságok"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Ke_ret:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Név:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "A_lternatív szöveg:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Leírás:"
@@ -9020,80 +9180,80 @@ msgstr "Jelenjen meg a „Nincs telepítve a helyi súgó” ablak"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Súgó"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME-párbeszédablakok _használata"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Megnyitás és mentés párbeszédablakok"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME-párbeszédablakok _használata"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Nyomtatási párbeszédablakok"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Nyomtatáskor „módosított” állapotba kerül"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentumállapot"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "A _következő évszámok között: "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "és "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Év (két számjeggyel)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Felhasználási adatok gyűjtése és elküldése a The Document Foundationnek"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Segítsen a %PRODUCTNAME tökéletesítésében"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "A %PRODUCTNAME betöltése a rendszer indításakor"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Gyorsindító engedélyezése"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME gyorsindító"
@@ -10966,25 +11126,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Előre telepített téma"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Saját téma"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Firfox téma betöltése"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Vagy válasszon a kiterjesztésként telepített témák közül:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox témák"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11611,102 +11756,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Biztonsági beállítások"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Firefox-téma választása"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Kifejezés vagy cím keresése"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "_Kategória:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Absztrakt"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Ügyek"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Divat"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film és TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Nyaralás"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Zene"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Természet"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Egyéb"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Tájak"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Szezonális"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Folytonos"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Webhelyek"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Kiemelt"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12713,27 +12762,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/hu/extensions/messages.po b/source/hu/extensions/messages.po
index fd75bf739b1..540678f7b2f 100644
--- a/source/hu/extensions/messages.po
+++ b/source/hu/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-11 10:22+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "„%1” tábla oszlopainak elrendezése"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Rövid név"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Szer_ző(k)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Kiadó"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Fejezet"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Szerkesztő"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Típus"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "É_v"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "_Mű címe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "_Cím"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Ol_dal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "_Kiadás"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Könyv címe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Kötet"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "_Kiadványtípus"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "_Szervezet"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Intéz_mény"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Egye_tem"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "A jelentés típ_usa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Hónap"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Folyóirat"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "_Szám"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "So_rozat"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "_Magyarázó jegyzet"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Jegyzet"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Egyéni mező _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Egyéni mező _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Egyéni mező _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Egyéni mező _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Egyéni mező _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Oszlopnevek"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Írja be az új adattípus nevét:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Mezők hivatkozása"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Javaslat"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "A főűrlap aktuális rekordjaira vonatkozó részletes adatok alűrlapokkal jeleníthetők meg. Ehhez meg kell adnia, hogy az alűrlap mely oszlopai egyeznek a főűrlap oszlopaival."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "címke"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "címke"
diff --git a/source/hu/formula/messages.po b/source/hu/formula/messages.po
index caefd90aa2b..75c87016905 100644
--- a/source/hu/formula/messages.po
+++ b/source/hu/formula/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2018-11-23 22:41+0000\n"
-"Last-Translator: Andras Timar <timar74@gmail.com>\n"
+"PO-Revision-Date: 2019-05-30 06:48+0000\n"
+"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1543012864.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559198888.000000\n"
#: formula/inc/core_resource.hrc:2268
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -2081,7 +2081,7 @@ msgstr "REGEX"
#: formula/inc/core_resource.hrc:2688
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FOURIER"
-msgstr ""
+msgstr "FOURIER"
#: formula/inc/strings.hrc:25
msgctxt "STR_OPTIONAL"
diff --git a/source/hu/helpcontent2/source/auxiliary.po b/source/hu/helpcontent2/source/auxiliary.po
index d481d57a1c2..34d86fd5911 100644
--- a/source/hu/helpcontent2/source/auxiliary.po
+++ b/source/hu/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-08 11:49+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Általános információk"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Prezentációk és rajzok (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Eszköztárak"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Rajzok (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menük"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Eszköztárak"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objektumok, grafikák és bitképek"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Csoportok és rétegek"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Szöveg bemutatókban és rajzokban"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/sbasic/guide.po b/source/hu/helpcontent2/source/text/sbasic/guide.po
index 3d59f71af7c..88101d61785 100644
--- a/source/hu/helpcontent2/source/text/sbasic/guide.po
+++ b/source/hu/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-04 18:13+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Az Access2Base és az Microsoft Access VBA összehasonlítása"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Párbeszédablak megnyitása programkód segítségével"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>modul/párbeszédablak váltása</bookmark_value><bookmark_value>párbeszédablakok;megjelenítés programkóddal (példa)</bookmark_value><bookmark_value>példák; párbeszédablak megjelenítés programkóddal</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/sbasic/python.po b/source/hu/helpcontent2/source/text/sbasic/python.po
index 3d44014799d..c8164d45776 100644
--- a/source/hu/helpcontent2/source/text/sbasic/python.po
+++ b/source/hu/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-08 12:51+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,7 +77,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,7 +1469,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1493,7 +1493,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1515,6 +1515,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/hu/helpcontent2/source/text/sbasic/shared.po b/source/hu/helpcontent2/source/text/sbasic/shared.po
index 44092a168f2..121be75d9d7 100644
--- a/source/hu/helpcontent2/source/text/sbasic/shared.po
+++ b/source/hu/helpcontent2/source/text/sbasic/shared.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: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-12-12 11:03+0000\n"
"Last-Translator: Andras Timar <timar74@gmail.com>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Súgó\">%PRODUCTNAME Basic Súgó</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/sbasic/shared/03.po b/source/hu/helpcontent2/source/text/sbasic/shared/03.po
index c6aafb95672..47a5778ae5c 100644
--- a/source/hu/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/hu/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-04 18:08+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr "Függvények és szubrutinok modulvezérléshez."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/hu/helpcontent2/source/text/scalc/01.po b/source/hu/helpcontent2/source/text/scalc/01.po
index f93673e7f00..c5aa0d6cd4b 100644
--- a/source/hu/helpcontent2/source/text/scalc/01.po
+++ b/source/hu/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Keresse meg a beszúrandó adatokat tartalmazó fájlt.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Válassza ki a beszúrandó táblát vagy adattartományt.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Meghatározza azt a cellatartományt, amelyet összesíteni kíván az <emph>Összesített tartományok</emph> mezőben felsorolt cellatartományokkal. Jelöljön ki egy cellatartományt egy munkalapon, majd kattintson a <emph>Hozzáadás</emph> gombra. Ezenkívül egy előre meghatározott cella nevét is kijelölheti a <emph>Forrásadat-tartomány</emph> listáról.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/schart/00.po b/source/hu/helpcontent2/source/text/schart/00.po
index fdbe11bce3d..656257ccb70 100644
--- a/source/hu/helpcontent2/source/text/schart/00.po
+++ b/source/hu/helpcontent2/source/text/schart/00.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-10-05 12:04+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: Hungarian <timar@fsf.hu>\n"
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">A Vonal vagy XY típusú diagramnál, amely vonalakat jelenít meg, válassza a Sima elemet a Vonalak legördülő mezőben, és kattintson a Tulajdonságok gombra.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">A Vonal vagy XY típusú diagramnál, amely vonalakat jelenít meg, válassza a Lépcsős elemet a Vonalak legördülő mezőben, és kattintson a Tulajdonságok gombra.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/hu/helpcontent2/source/text/shared/00.po b/source/hu/helpcontent2/source/text/shared/00.po
index 033483138da..7739e4ecbd0 100644
--- a/source/hu/helpcontent2/source/text/shared/00.po
+++ b/source/hu/helpcontent2/source/text/shared/00.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/hu/helpcontent2/source/text/shared/01.po b/source/hu/helpcontent2/source/text/shared/01.po
index d49cdfb78e6..a31d4855042 100644
--- a/source/hu/helpcontent2/source/text/shared/01.po
+++ b/source/hu/helpcontent2/source/text/shared/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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/hu/helpcontent2/source/text/shared/02.po b/source/hu/helpcontent2/source/text/shared/02.po
index 63b4c031a7f..7acac39ea5f 100644
--- a/source/hu/helpcontent2/source/text/shared/02.po
+++ b/source/hu/helpcontent2/source/text/shared/02.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/hu/helpcontent2/source/text/shared/guide.po b/source/hu/helpcontent2/source/text/shared/guide.po
index 42f10c12222..61ec9e16212 100644
--- a/source/hu/helpcontent2/source/text/shared/guide.po
+++ b/source/hu/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/shared/optionen.po b/source/hu/helpcontent2/source/text/shared/optionen.po
index e1984654b13..679962134f9 100644
--- a/source/hu/helpcontent2/source/text/shared/optionen.po
+++ b/source/hu/helpcontent2/source/text/shared/optionen.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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hungarian <openscope at gmail dot com>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Személyre szabás"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>témák;beállítási lehetőségek</bookmark_value> <bookmark_value>beállítási lehetőségek;témák</bookmark_value> <bookmark_value>személyre szabás;Mozilla Firefox témák</bookmark_value> <bookmark_value>personak;személyre szabás</bookmark_value> <bookmark_value>személyre szabás;personak</bookmark_value> <bookmark_value>Mozilla Firefox témák;személyre szabás</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Személyre szabás</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "A %PRODUCTNAME ugyanazokkal a témákkal szabható személyre, mint a Mozilla Firefox. A menüsáv, a dokkolt felső és alsó eszköztárak háttérként a kiválasztott témát fogják megjeleníteni."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "A Mozilla Firefox témák a következő Mozilla weboldalon érhetők el: <link href=\"https://addons.mozilla.org/hu/firefox/themes/\">https://addons.mozilla.org/hu/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Bármely Firefox-téma használható a %PRODUCTNAME felületén. Azonban nem mindegyik fog jól kinézni – ha a kép túl mozgalmas, az ronthatja az ikonok és menük olvashatóságát."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Firefox témák:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "A következő beállítások érhetők el:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Egyszerű megjelenés, témák használata nélkül"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Az eszköztárak háttere örökli az asztali környezet háttérbeállításait.</ahelp> Ez a %PRODUCTNAME alapbeállítása."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Saját téma"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Válassza ezt a lehetőséget a „Firefox-téma választása” ablak megnyitásához és kedvence kiválasztásához.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Firefox-téma választása ablak"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Ez az ablak lehetővé teszi adott téma telepítését, illetve kitekintést nyújt a Mozilla Firefox témák oldaláról elérhető izgalmas témákra."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Kilenc véletlen témát jelenít meg a gombokon látható kategóriák alapján.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Kattintson az öt gomb bármelyikére kilenc véletlenszerűen választott, a gomb kategóriájának megfelelő téma megjelenítéséhez a lenti képterületen."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "A megjelenített témák egyikének kiválasztásához kattintson a képére, és nyomja meg az <item type=\"menuitem\">OK</item> gombot."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/hu/helpcontent2/source/text/simpress/01.po b/source/hu/helpcontent2/source/text/simpress/01.po
index b2562cbcb35..bebb5074434 100644
--- a/source/hu/helpcontent2/source/text/simpress/01.po
+++ b/source/hu/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-10-17 12:48+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/hu/helpcontent2/source/text/swriter/guide.po b/source/hu/helpcontent2/source/text/swriter/guide.po
index eb7f051f765..47382bec553 100644
--- a/source/hu/helpcontent2/source/text/swriter/guide.po
+++ b/source/hu/helpcontent2/source/text/swriter/guide.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: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "A <emph>Standard eszköztáron</emph> kattintson a <emph>Navigátor</emph> ikonra <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Ikon</alt></image> a <emph>Navigátor</emph> megnyitásához."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
index b6496b0a67b..b56cb4b5924 100644
--- a/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hu/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-08 11:38+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 06:50+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
"Language: hu\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: 1554723501.000000\n"
+"X-POOTLE-MTIME: 1559199026.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -1832,7 +1832,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ourier Analysis..."
-msgstr ""
+msgstr "F~ourier analízis…"
#: CalcCommands.xcu
msgctxt ""
@@ -4145,7 +4145,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Default"
-msgstr ""
+msgstr "Alapértelmezett"
#: CalcCommands.xcu
msgctxt ""
@@ -4154,7 +4154,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Default Cell Style"
-msgstr ""
+msgstr "Alapértelmezett cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4172,7 +4172,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 1"
-msgstr ""
+msgstr "Kiemelés 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4181,7 +4181,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 1 Cell Style"
-msgstr ""
+msgstr "Kiemelés 1 cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4199,7 +4199,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 2"
-msgstr ""
+msgstr "Kiemelés 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4208,7 +4208,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 2 Cell Style"
-msgstr ""
+msgstr "Kiemelés 2 cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4226,7 +4226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 3"
-msgstr ""
+msgstr "Kiemelés 3"
#: CalcCommands.xcu
msgctxt ""
@@ -4235,7 +4235,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 3 Cell Style"
-msgstr ""
+msgstr "Kiemelés 3 cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4253,7 +4253,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 1"
-msgstr ""
+msgstr "Címsor 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 1 Cell Style"
-msgstr ""
+msgstr "Címsor 1 cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4280,7 +4280,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 2"
-msgstr ""
+msgstr "Címsor 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4289,7 +4289,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 2 Cell Style"
-msgstr ""
+msgstr "Címsor 2 cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4307,7 +4307,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bad"
-msgstr ""
+msgstr "Rossz"
#: CalcCommands.xcu
msgctxt ""
@@ -4316,7 +4316,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bad Cell Style"
-msgstr ""
+msgstr "Rossz cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Error"
-msgstr ""
+msgstr "Hiba"
#: CalcCommands.xcu
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Error Cell Style"
-msgstr ""
+msgstr "Hiba cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4361,7 +4361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Good"
-msgstr ""
+msgstr "Jó"
#: CalcCommands.xcu
msgctxt ""
@@ -4370,7 +4370,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Good Cell Style"
-msgstr ""
+msgstr "Jó cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Neutral"
-msgstr ""
+msgstr "Semleges"
#: CalcCommands.xcu
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Neutral Cell Style"
-msgstr ""
+msgstr "Semleges cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Warning"
-msgstr ""
+msgstr "Figyelmeztetés"
#: CalcCommands.xcu
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Warning Cell Style"
-msgstr ""
+msgstr "Figyelmeztetés cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4442,7 +4442,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Footnote"
-msgstr ""
+msgstr "Lábjegyzet"
#: CalcCommands.xcu
msgctxt ""
@@ -4451,7 +4451,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Footnote Cell Style"
-msgstr ""
+msgstr "Lábjegyzet cellastílus"
#: CalcCommands.xcu
msgctxt ""
@@ -4469,7 +4469,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Note"
-msgstr ""
+msgstr "Megjegyzés"
#: CalcCommands.xcu
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Note Cell Style"
-msgstr ""
+msgstr "Megjegyzés cellastílus"
#: CalcWindowState.xcu
msgctxt ""
@@ -7196,7 +7196,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Impress R~emote..."
-msgstr ""
+msgstr "Impress ~távirányító…"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "További mezők"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Lapok"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Csoportosított szalag"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/hu/sc/messages.po b/source/hu/sc/messages.po
index 593f14ae2f0..b4d48b38358 100644
--- a/source/hu/sc/messages.po
+++ b/source/hu/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-12 10:13+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15216,6 +15216,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(kizárólagos hozzáférés)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15769,12 +15774,12 @@ msgstr "Feltételes formázás kezelése"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16992,81 +16997,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Adatűrlap"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Bezárás"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Új rekord"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "Ú_j"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Törlés"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Helyreállítás"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Előző rekord"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "_Következő rekord"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Bezárás"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Élő adatfolyamok"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Írja be a forrásdokumentum fájlnevét vagy URL-jét."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Tallózás..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Adatbázis-tartomány"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Adatszolgáltató:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Keresendő karakterlánc:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Forrás adatfolyam"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18782,32 +18747,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Eredmények:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Adatok"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Oszlopok"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Sorok"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Csoportosítva"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervallum:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Paraméterek"
@@ -18947,167 +18917,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Súgó"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fájl"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Adja meg a kijelölt cellák szegélyeit."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Behúzás növelése"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Behúzás csökkentése"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Kezdő"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Kezdő"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Me_ző"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Beszúrás"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Beszúrás"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "Elren_dezés"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Elrendezés"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statisztika"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Adatok"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Adatok"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Véleményezés"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Véleményezés"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Nézet"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Nézet"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "~Kép"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ké~p"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rajz"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rajz"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objektum"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objektum"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Méd_ia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Nyomtatás"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Nyomtatás"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ű~rlap"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ű~rlap"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eszközök"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eszközök"
@@ -21588,17 +21560,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Keresés eredménye"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23468,107 +23450,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Váz_latjelek"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Ablak"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Rácsvonalak:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "S_zín:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Megjelenítés"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Megjelenítés színes cellákon"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Elrejtés"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Oldaltörések"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "S_egédvonalak látszanak áthelyezéskor"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Vizuális segítségek"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "O_bjektumok/képek:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Diagramok:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Raj_zobjektumok:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Megjelenítés"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Elrejtés"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Megjelenítés"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Elrejtés"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Megjelenítés"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Elrejtés"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objektumok"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "_Munkalapok szinkronizálása"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Nagyítás"
diff --git a/source/hu/scp2/source/ooo.po b/source/hu/scp2/source/ooo.po
index 1bf07b33b1b..a9fd8a7f15a 100644
--- a/source/hu/scp2/source/ooo.po
+++ b/source/hu/scp2/source/ooo.po
@@ -3,9 +3,9 @@ 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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-05-02 20:01+0000\n"
-"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-30 06:47+0000\n"
+"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1556827310.000000\n"
+"X-POOTLE-MTIME: 1559198879.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Dokumentum megnyitása"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (Tiszta lap mó)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/hu/scp2/source/winexplorerext.po b/source/hu/scp2/source/winexplorerext.po
index 2f2c1d1d2e3..e4b8a09b2fc 100644
--- a/source/hu/scp2/source/winexplorerext.po
+++ b/source/hu/scp2/source/winexplorerext.po
@@ -2,19 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2013-07-12 15:59+0000\n"
-"Last-Translator: Gábor <kelemeng@gnome.hu>\n"
+"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1373644748.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1373644748.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Lehetővé teszi, hogy a Windows Intéző adatokat jelenítsen meg a %PRODUCTNAME dokumentumokról, például előnézetet."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/hu/sd/messages.po b/source/hu/sd/messages.po
index 3f72a1e383b..a88fd8d8979 100644
--- a/source/hu/sd/messages.po
+++ b/source/hu/sd/messages.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-03-29 13:06+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 06:45+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1553864793.000000\n"
+"X-POOTLE-MTIME: 1559198723.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -154,52 +154,52 @@ msgstr "Hátoldalak / páros oldalak"
#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "All ~Slides"
-msgstr ""
+msgstr "Ö~sszes dia"
#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "S~lides:"
-msgstr ""
+msgstr "~Diák:"
#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Even slides"
-msgstr ""
+msgstr "~Páros diák"
#: sd/inc/DocumentRenderer.hrc:85
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Odd slides"
-msgstr ""
+msgstr "Pára~tlan diák"
#: sd/inc/DocumentRenderer.hrc:86
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Selection"
-msgstr ""
+msgstr "~Kijelölés"
#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "All ~Pages"
-msgstr ""
+msgstr "Összes ~oldal"
#: sd/inc/DocumentRenderer.hrc:92
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Pages:"
-msgstr ""
+msgstr "~Oldalak:"
#: sd/inc/DocumentRenderer.hrc:93
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Even pages"
-msgstr ""
+msgstr "~Páros oldalak"
#: sd/inc/DocumentRenderer.hrc:94
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Odd pages"
-msgstr ""
+msgstr "Pára~tlan oldalak"
#: sd/inc/DocumentRenderer.hrc:95
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Selection"
-msgstr ""
+msgstr "~Kijelölés"
#: sd/inc/errhdl.hrc:29
msgctxt "RID_SD_ERRHDL"
@@ -962,7 +962,7 @@ msgstr "Makró"
#, c-format
msgctxt "STR_FULLSCREEN_SLIDESHOW"
msgid "Presenting: %s"
-msgstr ""
+msgstr "Előad: %s"
#. Strings for animation effects
#: sd/inc/strings.hrc:152
@@ -2385,7 +2385,7 @@ msgstr "Mozgatási útvonalak: %1"
#: sd/inc/strings.hrc:445
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
-msgstr ""
+msgstr "Egyéb: %1"
#: sd/inc/strings.hrc:446
msgctxt "STR_SLIDETRANSITION_NONE"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Kattintás a hiperhivatkozás megnyitásához:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML-terv neve"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fájl"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Súgó"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fájl"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Kezdőlap"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Kezdő"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Me_ző"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Beszúrás"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Beszúrás"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Oldal"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Oldal"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Véleményezés"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Véleményezés"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Nézet"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Nézet"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "Szö_veg"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "Szö~veg"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Táblázat"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Táblázat"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Átalakítás"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "~Kép"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ké~p"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rajz"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rajz"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektum"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektum"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Méd_ia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ű~rlap"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ű~rlap"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eszközök"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eszközök"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -3312,12 +3502,12 @@ msgstr "3_D"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7775
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Betűbűvész"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7889
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_Rács"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8029
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Alakzatok megjelenítése"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fájl"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Súgó"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fájl"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Kezdő"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Kezdő"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Me_ző"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Beszúrás "
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Beszúrás"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Dia"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "~Dia"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Diavetíté_s"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Bem~utató"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Véleményezés"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Véleményezés"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Nézet"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Nézet"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Táblázat"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Táblázat"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konvertálás"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Kép"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ké~p"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rajz"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rajz"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objektum"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektum"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Méd_ia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ű_rlap"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ű~rlap"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eszközök"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Eszközök"
@@ -4863,12 +5053,12 @@ msgstr "3_D"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7888
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Betűbűvész"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8002
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_Rács"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8142
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -5019,7 +5209,7 @@ msgstr "_Nézet"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6058
msgctxt "notebookbar_groupedbar_full|reviewp"
msgid "_Review"
-msgstr ""
+msgstr "_Véleményezés"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6199
msgctxt "notebookbar_groupedbar_full|slideshowtt"
diff --git a/source/hu/sfx2/messages.po b/source/hu/sfx2/messages.po
index 0674f540110..1af47e7d3ed 100644
--- a/source/hu/sfx2/messages.po
+++ b/source/hu/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-03-29 13:07+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 06:47+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1553864820.000000\n"
+"X-POOTLE-MTIME: 1559198864.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -918,11 +918,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " É: %1 H: %2 N: %3 Ó: %4 P: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Tulajdonság eltávolítása"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -931,27 +926,27 @@ msgstr ""
"A beírt érték nem felel meg a megadott típusnak.\n"
"Az érték szövegként lesz tárolva."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "A stílus már létezik. Felülírja?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Alapállapot"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Ez a név már használatban van."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Ez a stílus nem létezik."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -960,7 +955,7 @@ msgstr ""
"Ezt a stílust nem lehet alapstílusként használni,\n"
"mert ez önmagára mutató hivatkozást eredményezne."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -969,7 +964,7 @@ msgstr ""
"Ez a név már használatban van az alapstílus neveként.\n"
"Válasszon másik nevet."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -980,92 +975,92 @@ msgstr ""
"Ha törli ezeket a stílusokat, akkor a szöveg visszaáll a szülő stílusra.\n"
"Biztosan törölni szeretné ezeket a stílusokat?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Használatban lévő stílusok: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigátor"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Hibás a jelszó megerősítése"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Küldés"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Betűkészlet"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Előnézetek megjelenítése"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Verziómegjegyzés megjelenítése"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(nincs beállítva érték)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Stíluslista"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarchikus"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Kitöltés formátummal"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Új stílus a kijelölés alapján"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
-msgstr ""
+msgstr "Stílusműveletek"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Stílus frissítése"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Valóban megszakítja a rögzítést? Az eddig rögzített lépések elvesznek."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Rögzítés megszakítása"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Sablonok előkészítése az első használatra."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1074,7 +1069,7 @@ msgstr ""
"Nincs alapértelmezett nyomtató megadva.\n"
"Válasszon egy nyomtatót, és próbálja meg újra."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1083,17 +1078,17 @@ msgstr ""
"A nyomtató nem üzemkész.\n"
"Ellenőrizze a nyomtató beállításait"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "A nyomtató foglalt"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (csak olvasható)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"Szeretné menteni az új beállításokat az\n"
"aktív dokumentumba?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"Menti az új beállításokat\n"
"az aktív dokumentumba?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1126,7 +1121,7 @@ msgstr ""
"Szeretné menteni az új beállításokat az\n"
"aktív dokumentumba?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1135,15 +1130,17 @@ msgstr ""
"A dokumentum nem zárható be, mert\n"
"egy nyomtatási feladat fut."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
"Please check the %PRODUCTNAME settings or your email program settings."
msgstr ""
+"Üzenetküldés közben hiba történt, ennek oka a hiányzó felhasználónév vagy egyéb hibás beállítás lehet.\n"
+"Ellenőrizze a %PRODUCTNAME és a levelezőprogramja beállításait."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1154,17 +1151,17 @@ msgstr ""
"\n"
"Hibakód: $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Hiba a levélküldés közben"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "A dokumentumot nem lehet szerkeszteni, valószínűleg a hozzáférési jogosultság hiánya miatt. Szeretné a dokumentum másolatát szerkeszteni?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1175,349 +1172,359 @@ msgstr ""
"\n"
"Megpróbálhatja figyelmen kívül hagyni a zárolást, és megnyitni a fájlt szerkesztésre."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Másolat ~megnyitása"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "Meg~nyitás"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (megjavított dokumentum)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "A dokumentum nincs lekérve a kiszolgálón."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Segítsen még jobbá tenni a %PRODUCTNAME-t!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Közreműködés"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Adományával támogathatja világméretű közösségünket."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Támogatás"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Először indíja el a %PRODUCTNAME %PRODUCTVERSION verziót. Meg akarja ismerni az újdonságokat?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Kiadási megjegyzések"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "A dokumentum csak olvasható."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Ez a PDF csak olvasható módban van megnyitva a meglévő fájl aláírásához."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "A dokumentum besorolási címkéje: %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "A dokumentumot be kell sorolni a vágólap beillesztése előtt."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "A dokumentum besorolási szintje alacsonyabb a vágólapénál."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Szint"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nemzetbiztonsági:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Exportfelügyelet:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Lekérés"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Dokumentum szerkesztése"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Dokumentum aláírása"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "A dokumentum aláírása nem érvényes."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Az aláírás érvényes, de a dokumentum módosítva lett"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Az aláírás rendben van, de a tanúsítványt nem lehetett érvényesíteni."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Az aláírás rendben van, de a dokumentum csak részben van aláírva."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "A tanúsítványt nem lehet érvényesíteni, és a dokumentum csak részlegesen van aláírva."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "A dokumentum alá van írva, és az aláírás érvényes."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Aláírás megjelenítése"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Ablaktábla bezárása"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Dokkolás"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Leválasztás"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Több beállítás"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Oldalsáv bezárása"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Oldalsáv beállításai"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Testreszabás"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Alapértelmezés visszaállítása"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Oldalsáv bezárása"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Méhkas"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Kék görbe"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Tervrajzok"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Élénk kék"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Stílusos vörös"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNS"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fókusz"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Erdei madár"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiráció"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Fények"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Friss zöld"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolisz"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Éjfélkék"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Természeti illusztráció"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Ceruza"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Zongora"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfólió"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Folyamat"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Napnyugta"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Régiség"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Élénk"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Önéletrajz"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Alapértelmezett"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modern üzleti levél talpatlan betűvel"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modern üzleti levél talpas betűvel"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Névjegykártya logóva"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Eltávolítás"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Összes törlése"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Jelszóhossz"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "A megadott jelszó interoperabilitási problémákat okoz. Adjon meg egy 52 bájtnál rövidebb, vagy 55 bájtnál hosszabb jelszót."
@@ -1862,32 +1869,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Megjegyzés a verzióhoz:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Név"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Típus"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Érték"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Típus"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Igen"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nem"
@@ -1897,17 +1889,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "_Tulajdonság hozzáadása"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Név"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Típus"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Érték"
@@ -2037,17 +2029,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "He_ly:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Típus:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Jelszó meg_változtatása"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Sablon:"
@@ -2057,27 +2049,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "„%1” tulajdonságai"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Általános "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Leírás"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Egyéni tulajdonságok"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS tulajdonságok"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Biztonság"
@@ -2300,6 +2292,26 @@ msgstr ""
"\n"
"A terméket a %OOOVENDOR készítette az OpenOffice.org alapján, amelynek szerzői joga az Oracle-t és/vagy leányvállalatait illeti, © 2000, 2011. A %OOOVENDOR köszöni minden közösségi tag hozzájárulását. További információ: http://www.libreoffice.org/."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
@@ -2898,7 +2910,7 @@ msgstr "vagy hozzon létre újat"
#: sfx2/uiconfig/ui/templatedlg.ui:45
msgctxt "colsmenu|insert"
msgid "Reset Default Template"
-msgstr ""
+msgstr "Alapértelmezett sablon visszaállítása"
#: sfx2/uiconfig/ui/templatedlg.ui:61
msgctxt "templatedlg|TemplateDialog"
diff --git a/source/hu/shell/messages.po b/source/hu/shell/messages.po
new file mode 100644
index 00000000000..73763731c6c
--- /dev/null
+++ b/source/hu/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-30 06:41+0000\n"
+"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: hu\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559198514.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Dokumentum megnyitása"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"A következő dokumentumot nyitja meg:\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Megtekintésre vagy szerkesztésre nyitja meg?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Megtekintés"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Szerkesztés"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Mégse"
diff --git a/source/hu/starmath/messages.po b/source/hu/starmath/messages.po
index c804159751e..a909f63d697 100644
--- a/source/hu/starmath/messages.po
+++ b/source/hu/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Példák"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Dőlt"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Félkövér"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "fekete"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "kék"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "zöld"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "vörös"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ciánkék"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "bíbor"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "szürke"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "zöldcitrom"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "gesztenyebarna"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "tengerészkék"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olajzöld"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lila"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ezüst"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "pávakék"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "sárga"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "elrejtés"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "méret"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "betűkészlet"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "balra"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "középre"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "jobbra"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Parancsok"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Képlet"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Dokumentum mentése..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION-képlet"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "HIBA: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Váratlan karakter"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Váratlan token"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Hiányzó „{” jel"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Hiányzó „}” jel"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Hiányzó „(” jel"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Hiányzó „)” jel"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "A bal és jobb szimbólumok nem egymás párjai"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "a „fixed”, „sans” vagy „serif” egyikének kellene itt állnia"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "a „size” után váratlan token áll"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "A dupla igazítás nem engedélyezett"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "A dupla alsó/felső indexek nem engedélyezettek"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Hiányzó „#” jel"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Hiányzó szín"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "„JOBB” hiányzik"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Tartalom"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Cím"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Képlet szövege"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "S~zegélyek"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Méret"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "E~redeti méret"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Igazítás az oldal méretéhez"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Méretezés"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elemek"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/hu/svtools/messages.po b/source/hu/svtools/messages.po
index e6b5d79359a..af7872e641b 100644
--- a/source/hu/svtools/messages.po
+++ b/source/hu/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-03-11 10:25+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 06:28+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1552299920.000000\n"
+"X-POOTLE-MTIME: 1559197736.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Visszavonás: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Ismét: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "I~smétlés: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Formázatlan szöveg"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Formázatlan szöveg (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitkép (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Grafikuseszköz-interfész metafájl (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Gazdag szövegformázás (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Gazdag szövegformázás (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME-rajz formátum"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView-bitkép/animáció (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Állapot lekérdezése az Svx belső hivatkozáson keresztül"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME-kapcsolat (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-könyvjelző"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star-kiszolgálóformátum"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star-objektumformátum"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Kisalkalmazás-objektum"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Bővítőmodul-objektum"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0-objektum"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0-objektum"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0-objektum"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0-objektum"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0-objektum"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0-objektum"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0-objektum"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-objektum"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0-objektum"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0-objektum"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0-objektum"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-objektum"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0-objektum"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0-objektum"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-objektum"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0-objektum"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objektum"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-objektum"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0-objektum"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0-objektum"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-objektum"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0-objektum"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0-objektum"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint-objektum"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Hipertext-jelölőnyelv (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Egyszerűsített hipertext-jelölőnyelv (egyszerű HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel bináris csereformátum 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel bináris csereformátum 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dinamikus adatcsere (DDE hivatkozás)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word-objektum"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet-objektum"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-dokumentumobjektum"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-dokumentuminformáció"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokumentum"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objektum"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafikus objektum"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer objektum"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web objektum"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/főobjektum"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw objektum"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress objektum"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc objektum"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart objektum"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math objektum"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-metafájl"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Adatforrás-objektum"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Adatforrástábla"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-lekérdezés"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ablak"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Hivatkozás"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML formátum megjegyzések nélkül"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "A(z) % objektumot nem sikerült beilleszteni."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Az objektumot nem sikerült beilleszteni a következő fájlból: %"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "További objektumok"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Ismeretlen forrás"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Név"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Méret"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Módosítás dátuma"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Típus"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "bájt"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "kB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Sor: %1, oszlop: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Típus: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Mappa"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fájl"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Üres mező"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerikus"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normál"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Karakterkészlet"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Szótár"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Ecsetvonás"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Gyök"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonkönyv"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetikus (alfanumerikus először)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetikus (alfanumerikus utoljára)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerikus"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Szótár"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Gyök"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Ecsetvonás"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetikus (alfanumerikus először, szótagok szerint csoportosítva)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetikus (alfanumerikus először, mássalhangzók szerint csoportosítva)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetikus (alfanumerikus utoljára, szótagok szerint csoportosítva)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetikus (alfanumerikus utoljára, mássalhangzók szerint csoportosítva)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Ma"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Nincs"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Vékony"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Vékony dőlt"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Általános"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Dőlt"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Félkövér"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Félkövér dőlt"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Fekete"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Gót dőlt"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Könyv"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Félkövér döntött"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Sűrített"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Sűrített félkövér"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Sűrített félkövér dőlt"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Sűrített félkövér ferde"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Sűrített dőlt"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Sűrített döntött"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extravékony"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extravékony dőlt"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Döntött"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Félkövér"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Félkövér dőlt"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Ugyanez a betűkészlet jelenik meg képernyőn és a nyomtatón is."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Ez egy nyomtató-betűkészlet. A képernyőn megjelenő kép különbözhet."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Ez a betűstílus más stílus átalakításával, vagy a leginkább hasonló stílus alkalmazásával jeleníthető csak meg."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Ez a betűkészlet nincs telepítve. A leginkább hasonló betűkészlet lesz látható."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Tallózás..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mozgatás az elejére"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mozgatás balra"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mozgatás jobbra"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mozgatás a végére"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Hozzáadás"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vízszintes vonalzó"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Függőleges vonalzó"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bites küszöbérték"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bites színközelítés"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bites szürkeárnyalatos"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bites színes"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bites szürkeárnyalatos"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bites színes"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bites valós színű"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "A kép kb. %1 KB memóriát igényel."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "A kép kb. %1 KB memóriát igényel, a fájlméret %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "A fájlméret %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "gép"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Egyéb CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Kész"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Felfüggesztve"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Törlés folyamatban"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Foglalt"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Felkészülés"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Várakozás"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Bemelegítés"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Feldolgozás"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Nyomtatás"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Hiba"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Ismeretlen kiszolgáló"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papírelakadás"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nincs elég papír"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Kézi adagolás"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papírhiba"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O-aktivitás"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "A kimeneti tálca megtelt"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Kevés a festék"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Nincs festék"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Oldal törlése"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Felhasználói beavatkozás szükséges"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Kevés a memória"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "A fedél nyitva van"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiatakarékos üzemmód"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Alapértelmezett nyomtató"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumentum"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Befejezés"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Tovább >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Vissza"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Lépések"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<semmi>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Szervezet"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Részleg"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Utónév"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Vezetéknév"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Utca"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Ország"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Irányítószám"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Város"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Cím"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pozíció"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Címűrlap"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Monogram"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Udvarias befejezés"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Otthoni tel:"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Mh. tel:"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
-msgstr ""
+msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Megjegyzés"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Felhasználói 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Felhasználói 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Felhasználói 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Felhasználói 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Azonosító"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Állam"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Mh. tel:"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Személyhívó"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Egyéb tel:"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Naptár"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Meghívás"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$: $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "A %PRODUCTNAME Java-futattókörnyezetet (JRE-t) igényel a feladat végrehajtásához. Telepítsen egy JRE-t, és indítsa újra a %PRODUCTNAME-t."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "A %PRODUCTNAME %BITNESS bites Java-futattókörnyezetet (JRE-t) igényel a feladat végrehajtásához. Telepítsen egy JRE-t, és indítsa újra a %PRODUCTNAME-t."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "A %PRODUCTNAME a feladat végrehajtásához az Oracle Java Development Kitet (JDK) igényli macOS 10.10 vagy újabb rendszeren. Telepítse ezt, és indítsa újra a %PRODUCTNAME-t."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "A %PRODUCTNAME konfigurációja megváltozott. A %PRODUCTNAME - Beállítások - %PRODUCTNAME - Speciális panelen válassza ki a %PRODUCTNAME programmal együtt használandó Java-futtatókörnyezetet."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "A %PRODUCTNAME konfigurációja megváltozott. Az Eszközök - Beállítások - %PRODUCTNAME - Speciális panelen válassza ki a %PRODUCTNAME programmal együtt használandó Java-futtatókörnyezetet."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "A %PRODUCTNAME Java-futattókörnyezetet (JRE-t) igényel a feladat végrehajtásához. A kiválasztott JRE hibás. Válasszon másik verziót, vagy telepítsen egy új JRE-t, majd válassza ki a %PRODUCTNAME - Beállítások - %PRODUCTNAME - Speciális panelen."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "A %PRODUCTNAME Java-futattókörnyezetet (JRE-t) igényel a feladat végrehajtásához. A kiválasztott JRE hibás. Válasszon másik verziót, vagy telepítsen egy új JRE-t, majd válassza ki az Eszközök - Beállítások - %PRODUCTNAME - Speciális panelen."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE szükséges"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE választása"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "A JRE hibás"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Forráskód"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Könyvjelzőfájl"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Kép"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigurációs fájl"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Alkalmazás"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Adatbázistábla"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Rendszerfájl"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-dokumentum"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Súgófájl"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-dokumentum"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archívumfájl"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Naplófájl"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice-adatbázis"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0-fődokumentum"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice-kép"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Szövegfájl"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Hivatkozás"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0-sablon"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-dokumentum"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-sablon"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Parancsfájl"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fájl"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Mappa"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Szöveges dokumentum"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Munkafüzet"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Bemutató"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Rajz"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-dokumentum"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Fődokumentum"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Képlet"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Adatbázis"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 táblázatsablon"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 rajzsablon"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 bemutatósablon"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 szövegesdokumentum-sablon"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Helyi meghajtó"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Lemezmeghajtó"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM meghajtó"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Hálózati kapcsolat"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-dokumentum"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-sablon"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-bemutató"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 képlet"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 diagram"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 rajz"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 táblázat"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 bemutató"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 szöveges dokumentum"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 fődokumentum"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokumentum"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-adatbázis"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-rajz"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-képlet"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-fődokumentum"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-bemutató"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-munkafüzet"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-szöveg"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-munkafüzetsablon"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-rajzsablon"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-bemutatósablon"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-szövegsablon"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-kiterjesztés"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell helyesírás-ellenőrző"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen elválasztó"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes szinonimaszótár"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Mellőzött szavak listája"
@@ -4127,7 +4129,7 @@ msgstr "Iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Angol (Zambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
@@ -4667,12 +4669,12 @@ msgstr "Az OpenCL módosítások életbe lépéséhez a %PRODUCTNAME programot
#: svtools/uiconfig/ui/restartdialog.ui:250
msgctxt "restartdialog|reason_threading"
msgid "For the multi-threaded calculation changes to take effect, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "A többszálú számítások módosításainak életbe lépéséhez a %PRODUCTNAME programot újra kell indítani."
#: svtools/uiconfig/ui/restartdialog.ui:265
msgctxt "restartdialog|reason_mscompatible_formsmenu"
msgid "For restructuring the Forms menu, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Az Űrlapok menü átrendezéséhez a %PRODUCTNAME programot újra kell indítani."
#: svtools/uiconfig/ui/restartdialog.ui:280
msgctxt "restartdialog|label"
diff --git a/source/hu/svx/messages.po b/source/hu/svx/messages.po
index e0e69151fb8..a005520bfbe 100644
--- a/source/hu/svx/messages.po
+++ b/source/hu/svx/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-11-21 21:37+0000\n"
-"Last-Translator: Andras Timar <timar74@gmail.com>\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 06:42+0000\n"
+"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542836251.000000\n"
+"X-POOTLE-MTIME: 1559198571.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -5817,7 +5817,7 @@ msgstr "Felülírás"
#: include/svx/strings.hrc:1230
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
-msgstr ""
+msgstr "Beszúrás"
#: include/svx/strings.hrc:1231
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Balról jobbra (függőleges)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Lentről felfelé, balról jobbra (függőleges)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "_Rész száma:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Részszöveg:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "8. fényforrás"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "1. világos szín"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "2. világos szín"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "3. világos szín"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "4. világos szín"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "5. világos szín"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "6. világos szín"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "7. világos szín"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "8. világos szín"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -11880,7 +11885,7 @@ msgstr "%PRODUCTNAME %PRODUCTVERSION dokumentum-helyreállító"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:76
msgctxt "docrecoverysavedialog|label1"
msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "Egy hiba miatt a %PRODUCTNAME program futása megszakadt. Az összes fájl amelyen dolgozott mentésre kerül. A %PRODUCTNAME következő indulásakor a mentett fájlok automatikusan helyre lesznek állítva."
#: svx/uiconfig/ui/docrecoverysavedialog.ui:98
msgctxt "docrecoverysavedialog|label2"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Adja meg a függőleges eltolás százalékos arányát a középponttól a színátmenet árnyalási stílusához. Az 50% a függőleges közép."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Körvonalszerkesztő"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Alkalmaz"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Munkaterület"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Kijelölés"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Téglalap"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipszis"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Sokszög"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Pontok szerkesztése"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Pontok áthelyezése"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Pontok beszúrása"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Pontok törlése"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Automatikus körvonal"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Visszavonás "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Újra"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipetta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Megengedett színeltérés"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Élőláb"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Interaktívkép-szerkesztő"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Alkalmaz"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Megnyitás..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Mentés…"
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Bezárás"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Kijelölés"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Téglalap"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipszis"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Sokszög"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Szabad formájú sokszög"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Pontok szerkesztése"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Pontok áthelyezése"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Pontok beszúrása"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Pontok törlése"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Visszavonás "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Újra"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktív"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makró..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Tulajdonságok…"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Cím:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Keret:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Szöveg:"
@@ -13368,12 +13373,12 @@ msgstr "Megjegyzés"
#: svx/uiconfig/ui/redlineviewpage.ui:146
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Változások"
#: svx/uiconfig/ui/redlineviewpage.ui:245
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Változások"
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"A %PRODUCTNAME Tiszta lap módban fut, amely ideiglenesen letiltja a felhasználó beállításokat és kiterjesztéseket.\n"
+"\n"
+"A következő változtatásokat végezheti a felhasználói profiljában, hogy a %PRODUCTNAME újra használható állapotba kerüljön."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
@@ -14011,7 +14019,7 @@ msgstr "Hegystílus"
#: svx/uiconfig/ui/sidebarlists.ui:22
msgctxt "sidebarlists|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Felsorolás és számozás"
#: svx/uiconfig/ui/sidebarparagraph.ui:26
msgctxt "sidebarparagraph|numberbullet|tooltip_text"
diff --git a/source/hu/sw/messages.po b/source/hu/sw/messages.po
index 4cb7bf777ff..fcc46acfcca 100644
--- a/source/hu/sw/messages.po
+++ b/source/hu/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-01 07:48+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-30 06:27+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554104881.000000\n"
+"X-POOTLE-MTIME: 1559197663.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1509,31 +1509,31 @@ msgstr "Számozás: ivx"
#: sw/inc/strings.hrc:207
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
-msgstr ""
+msgstr "• felsorolásjel"
#. Bullet \u2013
#: sw/inc/strings.hrc:209
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
-msgstr ""
+msgstr "– felsorolásjel"
#. Bullet \uE4C4
#: sw/inc/strings.hrc:211
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
-msgstr ""
+msgstr " felsorolásjel"
#. Bullet \uE49E
#: sw/inc/strings.hrc:213
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
-msgstr ""
+msgstr " felsorolásjel"
#. Bullet \uE20B
#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
-msgstr ""
+msgstr " felsorolásjel"
#: sw/inc/strings.hrc:216
msgctxt "STR_COLUMN_VALUESET_ITEM0"
@@ -1720,7 +1720,7 @@ msgstr "Statisztika"
#: sw/inc/strings.hrc:255
msgctxt "STR_OUTLINENUMBERING_DISABLED"
msgid "This option is disabled when chapter numbering is assigned to a paragraph style"
-msgstr ""
+msgstr "Ez a beállítása letiltott, ha a fejezetszámozás van rendelve a bekezdésstílushoz"
#. Statusbar-titles
#: sw/inc/strings.hrc:257
@@ -3118,7 +3118,7 @@ msgid "Change object title of $1"
msgstr "$1 objektum címének változtatása"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "$1 objektum leírásának változtatása"
@@ -3145,7 +3145,7 @@ msgstr "Táblázat törlése"
#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
-msgstr ""
+msgstr "Űrlapmező beszúrása"
#: sw/inc/strings.hrc:551
msgctxt "STR_ACCESS_DOC_NAME"
@@ -3431,27 +3431,27 @@ msgstr "Jobbról balra írás"
#: sw/inc/strings.hrc:611
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "Összes ~oldal"
#: sw/inc/strings.hrc:612
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "~Oldalak:"
#: sw/inc/strings.hrc:613
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "~Páros oldalak"
#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "Pára~tlan oldalak"
#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
-msgstr ""
+msgstr "~Kijelölés"
#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
@@ -3511,7 +3511,7 @@ msgstr "Húzás módja"
#: sw/inc/strings.hrc:629
msgctxt "STR_SEND_OUTLINE_TO_CLIPBOARD_ENTRY"
msgid "Send Outline to Clipboard"
-msgstr ""
+msgstr "Vázlat vágólapra küldése"
#: sw/inc/strings.hrc:630
msgctxt "STR_HYPERLINK"
@@ -4448,6 +4448,9 @@ msgid ""
"\n"
"Do you want to enter email account information now?"
msgstr ""
+"A körlevelek e-mailben történő küldéséhez a %PRODUCTNAME programnak információra van szüksége a használni kívánt postafiók beállításairól.\n"
+"\n"
+"Meg kívánja most adni a postafiók beállításait?"
#: sw/inc/strings.hrc:827
msgctxt "ST_FILTERNAME"
@@ -4522,7 +4525,7 @@ msgstr "A helyesírás ellenőrzése kész."
#: sw/inc/strings.hrc:844
msgctxt "STR_DICTIONARY_UNAVAILABLE"
msgid "No dictionary available"
-msgstr ""
+msgstr "Nem érhető el szótár"
#. --------------------------------------------------------------------
#. Description: strings for the types
@@ -4879,7 +4882,7 @@ msgstr "Munkahelyi telefonszám"
#: sw/inc/strings.hrc:931
msgctxt "FLD_EU_FAX"
msgid "Fax"
-msgstr ""
+msgstr "Fax"
#: sw/inc/strings.hrc:932
msgctxt "FLD_EU_EMAIL"
@@ -6660,7 +6663,7 @@ msgstr "~Lefelé"
#: sw/inc/strings.hrc:1339
msgctxt "STR_DROP_DOWN_EMPTY_LIST"
msgid "No Item specified"
-msgstr ""
+msgstr "Nincs elem megadva"
#. --------------------------------------------------------------------
#. Description: Classification strings
@@ -7016,17 +7019,17 @@ msgstr "Rendelje össze az adatforrás mezőit a megfelelő címzéselemmel."
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:185
msgctxt "assignfieldsdialog|ST_ADDRESSELEMENT"
msgid "Address elements"
-msgstr ""
+msgstr "Címzéselemek"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:197
msgctxt "assignfieldsdialog|ST_PREVIEW"
msgid "Preview"
-msgstr ""
+msgstr "Előnézet"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:210
msgctxt "assignfieldsdialog|ST_MATCHESTO"
msgid "Matches to field"
-msgstr ""
+msgstr "Összerendelt mezők"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:236
msgctxt "assignfieldsdialog|PREVIEW_LABEL"
@@ -7451,7 +7454,7 @@ msgstr "Otthoni telefonszám"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:214
msgctxt "businessdatapage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Faxszám"
#: sw/uiconfig/swriter/ui/businessdatapage.ui:231
msgctxt "businessdatapage|email-atkobject"
@@ -7676,7 +7679,7 @@ msgstr "Karakter"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Normál"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -8366,27 +8369,27 @@ msgstr "Szerkesztés"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:16
msgctxt "dropdownformfielddialog|DropDownFormFieldDialog"
msgid "Drop-down Form Field"
-msgstr ""
+msgstr "Legördülő űrlapmező"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:96
msgctxt "dropdownformfielddialog|item_label"
msgid "Item"
-msgstr ""
+msgstr "Elem"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:146
msgctxt "dropdownformfielddialog|listitem_label"
msgid "Items on list"
-msgstr ""
+msgstr "Elemek a listában"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:218
msgctxt "dropdownformfielddialog|up"
msgid "Move Up"
-msgstr ""
+msgstr "Mozgatás felfelé"
#: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:232
msgctxt "dropdownformfielddialog|down"
msgid "Move Down"
-msgstr ""
+msgstr "Mozgatás lefelé"
#: sw/uiconfig/swriter/ui/editcategories.ui:18
msgctxt "editcategories|EditCategoriesDialog"
@@ -9895,7 +9898,7 @@ msgstr "_Páros oldalakon tükrözés"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Szöveghatárokon belül tartás"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|label11"
@@ -10285,27 +10288,27 @@ msgstr "El_rejtés feltétele:"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:198
msgctxt "insertbookmark|page"
msgid "Page"
-msgstr ""
+msgstr "Oldal"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:211
msgctxt "insertbookmark|name"
msgid "Name"
-msgstr ""
+msgstr "Név"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:224
msgctxt "insertbookmark|text"
msgid "Text"
-msgstr ""
+msgstr "Szöveg"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:237
msgctxt "insertbookmark|hidden"
msgid "Hidden"
-msgstr ""
+msgstr "Rejtett"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:250
msgctxt "insertbookmark|condition"
msgid "Condition"
-msgstr ""
+msgstr "Feltétel"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:275
msgctxt "insertbookmark|goto"
@@ -11525,7 +11528,7 @@ msgstr "Milyen típusú dokumentumot kíván létrehozni?"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:18
msgctxt "mmresultemaildialog|MMResultEmailDialog"
msgid "Email merged document"
-msgstr ""
+msgstr "Körlevél-dokumentum küldése e-mailben"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:37
msgctxt "mmresultemaildialog|ok"
@@ -12007,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Súgó"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fájl"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Kezdő"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Kezdő"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Beszúrás"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Beszúrás"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Elren_dezés"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Elrendezés"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Hivatkozások"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Hi~vatkozások"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Véleményezés"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Véleményezés"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Nézet"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Nézet"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Táblázat"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Táblázat"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "~Kép"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ké~p"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Rajz"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Rajz"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "~Objektum"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objektum"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Méd_ia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Média"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Nyomtatás"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Nyomtatás"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Ű~rlap"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Ű~rlap"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eszközök"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Eszközök"
@@ -12157,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Fájl"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Fájl"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Kezdőlap"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Kezdőlap"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Beszúrás"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Beszúrás"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Körbefuttatás"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Elrendezés"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Elrendezés"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Hivatkozások"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Hi~vatkozások"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Véleményezés"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Véleményezés"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Nézet"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Nézet"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "_Táblázat"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Táblázat"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Kép"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Ké~p"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Rajzolás"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Rajzolás"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objektum"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objektum"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "Méd_ia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Média"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Nyomtatás"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "Nyo~mtatás"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Ű~rlap"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Ű~rlap"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Eszközök"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Eszközök"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12419,7 +12422,7 @@ msgstr "3_D"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7409
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Betűbűvész"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7523
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8608
@@ -12446,7 +12449,7 @@ msgstr "_Objektum"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "Ke_ret"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12656,7 +12659,7 @@ msgstr "Méd_ia"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objektum"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13369,8 +13372,8 @@ msgstr "Szavak közti térköz növelése kézi sortöréssel lezárt sorkizárt
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Űrlap védelme"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13405,12 +13408,12 @@ msgstr "„%DOCNAME” kompatibilitási beállításai"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:166
msgctxt "optcompatpage|globalcompatoptions"
msgid "Reorganize Forms menu to have it MS compatible"
-msgstr ""
+msgstr "Űrlapok menü átrendezése, hogy MS kompatibilis legyen"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:184
msgctxt "optcompatpage|label2"
msgid "Global compatibility options"
-msgstr ""
+msgstr "Globális kompatibilitási beállítások"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -14934,7 +14937,7 @@ msgstr "Otthoni telefonszám"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:265
msgctxt "privateuserpage|url-atkobject"
msgid "Fax number"
-msgstr ""
+msgstr "Faxszám"
#: sw/uiconfig/swriter/ui/privateuserpage.ui:282
msgctxt "privateuserpage|email-atkobject"
@@ -15523,12 +15526,12 @@ msgstr "A kiválasztott fájl több mint egy táblát tartalmaz. Válassza ki a
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:139
msgctxt "selecttabledialog|column1"
msgid "Name"
-msgstr ""
+msgstr "Név"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:152
msgctxt "selecttabledialog|column2"
msgid "Type"
-msgstr ""
+msgstr "Típus"
#: sw/uiconfig/swriter/ui/selecttabledialog.ui:179
msgctxt "selecttabledialog|preview"
@@ -16108,7 +16111,7 @@ msgstr "Vízszintes"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Függőleges (fentről lefelé)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
msgctxt "tabletextflowpage|liststore1"
@@ -16118,7 +16121,7 @@ msgstr "Szülőobjektum beállításainak használata"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:301
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Függőleges (lentről felfelé)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:322
msgctxt "tabletextflowpage|headline"
@@ -16393,7 +16396,7 @@ msgstr "Oldalstílus"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:71
msgctxt "templatedialog8|standard"
msgid "Standard"
-msgstr ""
+msgstr "Szabványos"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:166
msgctxt "templatedialog8|organizer"
@@ -16650,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Tárgymutató, tartalomjegyzék vagy irodalomjegyzék"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Előnézet"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Előnézet"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Típus"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Bejegyzések"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stílusok"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Hasábok"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Háttér"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Előnézet"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Szint"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Típus"
@@ -16920,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "S_zerkesztés..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Cím:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Típus:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Tartalomjegyzék"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Betűrendes tárgymutató"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Ábrajegyzék"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Táblázatjegyzék"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Egyéni"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektumjegyzék"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Irodalomjegyzék"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Csak automatikusan frissíthető"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Típus és cím"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Hatókör:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Teljes dokumentum"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Fejezet"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Maximális szint:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Tárgymutató vagy tartalomjegyzék létrehozása"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Vázlat"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Tá_rgymutatójelek"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Táblák"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "S_zövegkeretek"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Képek"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objektumok"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "A forrásfejezet szintjének használata"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "T_ovábbi stílusok"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Stílusok"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Stílusok hozzárendelése…"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Feliratok"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektumok nevei"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategória:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Megjelenítés:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Hivatkozások"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategória és szám"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Feliratszöveg"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Létrehozás forrása"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Létrehozás a következő objektumokból"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Zárójelek:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Szám_bejegyzések"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[nincs]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Bejegyzések formázása"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Azonos bejegyzések egyesítése"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Azonos bejegyzések egyesítése _p-vel, illetve pp-vel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Kötőjellel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Kis- és nagybetűk megkülönböztetése"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Bejegyzések automatikus nagybetűsítése"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "A kulcsok legyenek külön bejegyzések"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "S_zómutatófájl"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Fájl"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Beállítások"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Nyelv:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Kulcstípus:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Rendezés"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Szintek"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Bekezdés_stílusok"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Alapértelmezett"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "S_zerkesztés"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Hozzárendelés"
@@ -17268,17 +17271,17 @@ msgstr "Megjelenítés"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:223
msgctxt "viewoptionspage|hiddentextfield"
msgid "Hidden te_xt"
-msgstr ""
+msgstr "_Rejtett szöveg"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:237
msgctxt "viewoptionspage|hiddenparafield"
msgid "Hidden p_aragraphs"
-msgstr ""
+msgstr "Rejtett bekez_dések"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:257
msgctxt "viewoptionspage|fieldslabel"
msgid "Display fields"
-msgstr ""
+msgstr "Mezők megjelenítése"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:301
msgctxt "viewoptionspage|smoothscroll"
diff --git a/source/hu/vcl/messages.po b/source/hu/vcl/messages.po
index f1baf897367..d087aac8806 100644
--- a/source/hu/vcl/messages.po
+++ b/source/hu/vcl/messages.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-12 23:20+0000\n"
-"Last-Translator: gellert.gyuris <bubu@ujevangelizacio.hu>\n"
+"PO-Revision-Date: 2019-05-30 06:14+0000\n"
+"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1555111245.000000\n"
+"X-POOTLE-MTIME: 1559196890.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -140,7 +140,7 @@ msgstr "Executive"
#: vcl/inc/print.hrc:52
msgctxt "RID_STR_PAPERNAMES"
msgid "German Legal Fanfold"
-msgstr ""
+msgstr "Német jogi hajtogatott"
#: vcl/inc/print.hrc:53
msgctxt "RID_STR_PAPERNAMES"
@@ -175,7 +175,7 @@ msgstr "#12 boríték"
#: vcl/inc/print.hrc:59
msgctxt "RID_STR_PAPERNAMES"
msgid "16 Kai (16k)"
-msgstr ""
+msgstr "16 Kai (16k)"
#: vcl/inc/print.hrc:60
msgctxt "RID_STR_PAPERNAMES"
@@ -185,7 +185,7 @@ msgstr "32 Kai"
#: vcl/inc/print.hrc:61
msgctxt "RID_STR_PAPERNAMES"
msgid "Big 32 Kai"
-msgstr "Big 32 Kai"
+msgstr "Nagy 32 Kai"
#: vcl/inc/print.hrc:62
msgctxt "RID_STR_PAPERNAMES"
@@ -205,47 +205,47 @@ msgstr "B6 (JIS)"
#: vcl/inc/print.hrc:65
msgctxt "RID_STR_PAPERNAMES"
msgid "Ledger"
-msgstr ""
+msgstr "Ledger"
#: vcl/inc/print.hrc:66
msgctxt "RID_STR_PAPERNAMES"
msgid "Statement"
-msgstr ""
+msgstr "Statement"
#: vcl/inc/print.hrc:67
msgctxt "RID_STR_PAPERNAMES"
msgid "Quarto"
-msgstr ""
+msgstr "Quarto"
#: vcl/inc/print.hrc:68
msgctxt "RID_STR_PAPERNAMES"
msgid "10x14"
-msgstr ""
+msgstr "10x14"
#: vcl/inc/print.hrc:69
msgctxt "RID_STR_PAPERNAMES"
msgid "#14 Envelope"
-msgstr ""
+msgstr "#14 boríték"
#: vcl/inc/print.hrc:70
msgctxt "RID_STR_PAPERNAMES"
msgid "C3 Envelope"
-msgstr ""
+msgstr "C3 boríték"
#: vcl/inc/print.hrc:71
msgctxt "RID_STR_PAPERNAMES"
msgid "Italian Envelope"
-msgstr ""
+msgstr "Olasz boríték"
#: vcl/inc/print.hrc:72
msgctxt "RID_STR_PAPERNAMES"
msgid "U.S. Standard Fanfold"
-msgstr ""
+msgstr "USA szabványos hajtogatott"
#: vcl/inc/print.hrc:73
msgctxt "RID_STR_PAPERNAMES"
msgid "German Standard Fanfold"
-msgstr ""
+msgstr "Német szabványos hajtogatott"
#: vcl/inc/print.hrc:74
msgctxt "RID_STR_PAPERNAMES"
@@ -270,27 +270,27 @@ msgstr "15x11"
#: vcl/inc/print.hrc:78
msgctxt "RID_STR_PAPERNAMES"
msgid "Invitation Envelope"
-msgstr ""
+msgstr "Meghívó boríték"
#: vcl/inc/print.hrc:79
msgctxt "RID_STR_PAPERNAMES"
msgid "SuperA"
-msgstr ""
+msgstr "SuperA"
#: vcl/inc/print.hrc:80
msgctxt "RID_STR_PAPERNAMES"
msgid "SuperB"
-msgstr ""
+msgstr "SuperB"
#: vcl/inc/print.hrc:81
msgctxt "RID_STR_PAPERNAMES"
msgid "Letter Plus"
-msgstr ""
+msgstr "Letter Plus"
#: vcl/inc/print.hrc:82
msgctxt "RID_STR_PAPERNAMES"
msgid "A4 Plus"
-msgstr ""
+msgstr "A4 Plus"
#: vcl/inc/print.hrc:83
msgctxt "RID_STR_PAPERNAMES"
@@ -385,27 +385,27 @@ msgstr "C8 boríték"
#: vcl/inc/print.hrc:101
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch A"
-msgstr ""
+msgstr "Arch A"
#: vcl/inc/print.hrc:102
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch B"
-msgstr ""
+msgstr "Arch B"
#: vcl/inc/print.hrc:103
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch C"
-msgstr ""
+msgstr "Arch C"
#: vcl/inc/print.hrc:104
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch D"
-msgstr ""
+msgstr "Arch D"
#: vcl/inc/print.hrc:105
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch E"
-msgstr ""
+msgstr "Arch E"
#: vcl/inc/print.hrc:106
msgctxt "RID_STR_PAPERNAMES"
@@ -977,17 +977,17 @@ msgstr "Üres mező"
#: vcl/inc/strings.hrc:147
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
-msgstr ""
+msgstr "Nap"
#: vcl/inc/strings.hrc:148
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
-msgstr ""
+msgstr "Hét"
#: vcl/inc/strings.hrc:149
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
-msgstr ""
+msgstr "Ma"
#. To translators: This is the first entry of a sequence of measurement unit names
#: vcl/inc/units.hrc:28
@@ -1520,7 +1520,7 @@ msgstr "Adja meg a hitelesítési adatait a(z) „%s” kiszolgálóhoz"
#: vcl/uiconfig/ui/cupspassworddialog.ui:145
msgctxt "cupspassworddialog|label1"
msgid "_Domain:"
-msgstr ""
+msgstr "_Tartomány:"
#: vcl/uiconfig/ui/editmenu.ui:12
msgctxt "editmenu|undo"
@@ -1705,12 +1705,12 @@ msgstr "Nyomtató"
#: vcl/uiconfig/ui/printdialog.ui:540
msgctxt "printdialog|rbAllPages"
msgid "_All pages"
-msgstr ""
+msgstr "Össz_es oldal"
#: vcl/uiconfig/ui/printdialog.ui:556
msgctxt "printdialog|rbPageRange"
msgid "_Pages:"
-msgstr ""
+msgstr "_Oldalak:"
#: vcl/uiconfig/ui/printdialog.ui:577
msgctxt "printdialog|pagerange"
@@ -1720,47 +1720,47 @@ msgstr "például: 1, 3-5, 7, 9"
#: vcl/uiconfig/ui/printdialog.ui:587
msgctxt "printdialog|rmEvenPages"
msgid "_Even pages"
-msgstr ""
+msgstr "_Páros oldalak"
#: vcl/uiconfig/ui/printdialog.ui:605
msgctxt "printdialog|rbOddPages"
msgid "_Odd pages"
-msgstr ""
+msgstr "Pára_tlan oldalak"
#: vcl/uiconfig/ui/printdialog.ui:625
msgctxt "printdialog|fromwhich"
msgid "_From which print:"
-msgstr ""
+msgstr "_Ebből nyomtatandó:"
#: vcl/uiconfig/ui/printdialog.ui:650
msgctxt "printdialog|labelpapersides"
msgid "Paper _sides:"
-msgstr ""
+msgstr "Papírszé_lek:"
#: vcl/uiconfig/ui/printdialog.ui:677
msgctxt "printdialog|labelcopies"
msgid "_Number of copies:"
-msgstr ""
+msgstr "_Másolatok száma:"
#: vcl/uiconfig/ui/printdialog.ui:701
msgctxt "printdialog|reverseorder"
msgid "Print in _reverse order"
-msgstr ""
+msgstr "Nyomtatás _fordított sorrendben"
#: vcl/uiconfig/ui/printdialog.ui:722
msgctxt "printdialog|collate"
msgid "_Collate"
-msgstr ""
+msgstr "Szét_válogatás"
#: vcl/uiconfig/ui/printdialog.ui:758
msgctxt "printdialog|cbPrintOrder"
msgid "_Order:"
-msgstr ""
+msgstr "_Sorrend:"
#: vcl/uiconfig/ui/printdialog.ui:780
msgctxt "printdialog|rbRangeSelection"
msgid "_Selection"
-msgstr ""
+msgstr "_Kiválasztás"
#: vcl/uiconfig/ui/printdialog.ui:828
msgctxt "printdialog|label2"
diff --git a/source/hu/wizards/messages.po b/source/hu/wizards/messages.po
index b1014998f58..00687ff6ef5 100644
--- a/source/hu/wizards/messages.po
+++ b/source/hu/wizards/messages.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-04-08 09:36+0000\n"
+"PO-Revision-Date: 2019-05-30 06:03+0000\n"
"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554716217.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559196235.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -1085,7 +1085,7 @@ msgstr "Saját napirendsablon"
#: wizards/com/sun/star/wizards/common/strings.hrc:264
msgctxt "RID_AGENDAWIZARDDIALOG_START_43"
msgid "An error occurred while saving the agenda template."
-msgstr ""
+msgstr "Hiba történt a napirendsablon mentése közben."
#: wizards/com/sun/star/wizards/common/strings.hrc:265
msgctxt "RID_AGENDAWIZARDDIALOG_START_44"
@@ -1145,7 +1145,7 @@ msgstr "Név és hely"
#: wizards/com/sun/star/wizards/common/strings.hrc:276
msgctxt "RID_AGENDAWIZARDDIALOG_START_56"
msgid "An error occurred while opening the agenda template."
-msgstr ""
+msgstr "Hiba történt a napirendsablon megnyitása közben."
#: wizards/com/sun/star/wizards/common/strings.hrc:277
msgctxt "RID_AGENDAWIZARDDIALOG_START_57"
diff --git a/source/hu/wizards/source/resources.po b/source/hu/wizards/source/resources.po
index 73ec00eef04..7143bfe60ff 100644
--- a/source/hu/wizards/source/resources.po
+++ b/source/hu/wizards/source/resources.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2018-01-18 18:48+0000\n"
-"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
+"PO-Revision-Date: 2019-05-30 06:04+0000\n"
+"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516301286.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559196242.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -4219,7 +4219,7 @@ msgctxt ""
"RTErrorDesc\n"
"property.text"
msgid "An error has occurred in the wizard."
-msgstr ""
+msgstr "Hiba történt a tündérben."
#: resources_en_US.properties
msgctxt ""
diff --git a/source/hu/xmlsecurity/messages.po b/source/hu/xmlsecurity/messages.po
index 0b930b8f567..fe1d0e18279 100644
--- a/source/hu/xmlsecurity/messages.po
+++ b/source/hu/xmlsecurity/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-06-29 21:08+0000\n"
-"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
+"PO-Revision-Date: 2019-05-30 06:03+0000\n"
+"Last-Translator: Meskó Balázs <meskobalazs@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1530306517.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559196210.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -188,12 +188,12 @@ msgstr "Titkosítás"
#: xmlsecurity/uiconfig/ui/certdetails.ui:49
msgctxt "certdetails|field"
msgid "Field"
-msgstr ""
+msgstr "Mező"
#: xmlsecurity/uiconfig/ui/certdetails.ui:62
msgctxt "certdetails|value"
msgid "Value"
-msgstr ""
+msgstr "Érték"
#: xmlsecurity/uiconfig/ui/certgeneral.ui:33
msgctxt "certgeneral|label1"
diff --git a/source/id/cui/messages.po b/source/id/cui/messages.po
index ffbf44825e1..3c0910af2e9 100644
--- a/source/id/cui/messages.po
+++ b/source/id/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-09 08:29+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-28 12:57+0000\n"
"Last-Translator: Leonardus Kristaris Sastra <leonachild@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\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: 1557390557.000000\n"
+"X-POOTLE-MTIME: 1559048277.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Harap masukkan alamat tema yang valid atau suatu istilah yang akan dicari."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "API Theme Mozilla saat ini tidak tersedia."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Atur Tidak Ada Garis Tepi"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Atur Hanya Garis Tepi Terluar"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Atur Garis Tepi Luar dan Garis Horisontal"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Atur Garis Tepi Terluar dan Semua Garis di Dalam"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Atur Garis Tepi Tanpa Merubah Garis di Dalam"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Atur Hanya Garis Diagonal"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Atur Keempat Garis Tepi"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Atur Hanya Garis Tepi Kanan dan Kiri"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Atur Hanya Garis Tepi Atas dan Bawah"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Atur Hanya Garis Tepi Kiri"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Atur Garis Tepi Atas dan Bawah, serta Seluruh Garis Dalam"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Atur Garis Tepi Kanan dan Kiri, serta Seluruh Garis Dalam"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Tanpa Bayangan"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Munculkan Bayang di Kanan Bawah"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Munculkan Bayang di Kanan Atas"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Munculkan Bayang di Kiri Bawah"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Munculkan Bayang di Kiri Atas"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Ditandatangani oleh: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Semua berkas"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Basis Data Terdaftar"
@@ -1746,42 +1741,42 @@ msgstr "Basis Data Terdaftar"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME dapat membuka dan menyimpan file yang disimpan pada peladen jarak jauh per CMIS."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr ""
+msgstr "Perkakas > Koreksi Otomatis > Opsi Koreksi Otomatis… > Tukar penyedian daftar pergantian umum. Lihatlah dan lengkapi dengan penggantian Anda sendiri."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can handle styles conditionally: paragraph styles that have different properties depending on the context."
-msgstr ""
+msgstr "Writer dapat menangani gaya secara kondisional: gaya paragraf yang memiliki properti berbeda tergantung pada konteksnya."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/05130100.html
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With File > Versions you can store multiple versions of the document in the same file. You can also open, delete, and compare previous versions."
-msgstr ""
+msgstr "Dengan Berkas > Versi, Anda dapat menyimpan beberapa versi dokumen dalam berkas yang sama. Anda juga dapat membuka, menghapus, dan membandingkan versi sebelumnya."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/01190000.html
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
-msgstr ""
+msgstr "Anda dapat membuat indeks ilustrasi dari nama objek, tidak hanya dari keterangan."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/05190000.html
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To temporarily starts with a fresh user profile or to restore a non-working %PRODUCTNAME instance start Help > Restart in Safe Mode."
-msgstr ""
+msgstr "Untuk memulai sementara dengan profil pengguna baru atau mengembalikan sampel %PRODUCTNAME yang tidak berfungsi, mulailah Bantuan > Mulai Ulang dalam Mode Aman."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Tentang %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Kre_dit"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Situs _web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID Build: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Locale: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Bahasa-UI: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Lihat Log: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME adalah kelompok aplikasi produktivitas yang open source, mudah dipakai, dan modern untuk pengolahan kata, lembar kerja, presentasi, dan lainnya."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Hak Cipta © 2000–2019 para kontributor LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice dibuat berdasarkan OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME diturunkan dari LibreOffice yang dibuat berdasarkan OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Rilis ini dipasok oleh %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Ganti"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Gan_ti"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Dengan:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Hanya _teks"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Panjang Kata Minimal"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Properti"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Bing_kai:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nama:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Teks alternatif:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Deskripsi:"
@@ -9019,80 +9179,80 @@ msgstr "Tampilkan popup \"TIdak ada bantuan luring yang terpasang\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Bantuan"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "G_unakan dialog %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialog Buka/Simpan"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Gunakan _dialog %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialog Cetak"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Mencetak mengubah status \"dokumen berubah\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Status Dokumen"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Tafs_irkan sebagai tahun antara "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "dan "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Tahun (Dua Digit)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Kumpulkan data pemakaian dan kirim ke Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Bantu Perbaiki %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Memuat %PRODUCTNAME saat awal mula sistem"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Aktifkan Awal-Cepat baki sistem"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Awal-Cepat %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Tema Terprapasang"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tema Sendiri"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Muat tema Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Atau, pilih dari Tema yang terpasang melalui ekstensi:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Tema Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opsi Keamanan"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Pilih Tema Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Cari istilah atau alamat"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "K_ategori:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstrak"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Penyebab"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Mode"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film dan TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Liburan"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musik"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Alam"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Lainnya"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Pemandangan"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Musiman"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Rata"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Olahraga"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "SitusWeb"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Ditampilkan"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/id/extensions/messages.po b/source/id/extensions/messages.po
index f4497ef6dd4..3a5d7310e1c 100644
--- a/source/id/extensions/messages.po
+++ b/source/id/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-09 08:18+0000\n"
"Last-Translator: Leonardus Kristaris Sastra <leonachild@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: 1557389916.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Tata Letak Kolom bagi Tabel “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Nama _pendek"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Peng_arang"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Penerbit"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Bab"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Penyunting"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Tahun"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Judu_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_lamat"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_Halaman"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_isi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Judul _buku"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "T_ipe publikasi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_sasi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_usi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versitas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tipe la_poran"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Bulan"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Jurnal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "_Nomor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_ri"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_otasi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Catata_n"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Ruas tentuan-pengguna _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Ruas tentuan-pengguna _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Ruas tentuan-pengguna _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Ruas tentuan-pengguna _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Ruas tentuan-pengguna _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nama Kolom"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Ketikkan nama untuk jenis data baru:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Ruas taut"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Sarankan"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Subformulir bisa dipakai untuk menampilkan data detail mengenai rekaman saat ini pada formulir induk. Untuk melakukannya, Anda bisa menentukan kolom mana pada subformulir yang cocok dengan kolom pada formulir induk."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "label"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "label"
diff --git a/source/id/helpcontent2/source/auxiliary.po b/source/id/helpcontent2/source/auxiliary.po
index a95f646cc76..013116b055c 100644
--- a/source/id/helpcontent2/source/auxiliary.po
+++ b/source/id/helpcontent2/source/auxiliary.po
@@ -3,9 +3,9 @@ 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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-09 05:54+0000\n"
-"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-29 13:36+0000\n"
+"Last-Translator: Leonardus Kristaris Sastra <leonachild@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1554789245.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559136997.000000\n"
#: sbasic.tree
msgctxt ""
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Informasi Umum"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Presentasi dan Gambar (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Bilah alat"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Gambar (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menu"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Bilah alat"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objek, Grafik, dan Bitmap"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grup dan layer"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Teks pada Presentasi dan Menggambar"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -662,7 +742,7 @@ msgctxt ""
"030101\n"
"node.text"
msgid "%PRODUCTNAME Formula Elements"
-msgstr ""
+msgstr "%PRODUCTNAME Elemen Formula"
#: smath.tree
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/sbasic/guide.po b/source/id/helpcontent2/source/text/sbasic/guide.po
index 55b46d40a6f..39851b29644 100644
--- a/source/id/helpcontent2/source/text/sbasic/guide.po
+++ b/source/id/helpcontent2/source/text/sbasic/guide.po
@@ -3,9 +3,9 @@ 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: 2019-04-24 18:25+0200\n"
-"PO-Revision-Date: 2019-02-24 05:33+0000\n"
-"Last-Translator: Agung Dewantara <agungdewan709@gmail.com>\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-29 13:37+0000\n"
+"Last-Translator: Leonardus Kristaris Sastra <leonachild@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1550986411.000000\n"
+"X-POOTLE-MTIME: 1559137022.000000\n"
#: access2base.xhp
msgctxt ""
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Bandingkan Access2Base dengan Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -350,7 +374,7 @@ msgctxt ""
"hd_id3155338\n"
"help.text"
msgid "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Programming Examples for Controls in the Dialog Editor</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"sample_code\"><link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Programming Examples for Controls in the Dialog Editor\">Contoh Pemrograman untuk Kontrol di Editor Dialog </link> </variable>"
#: sample_code.xhp
msgctxt ""
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Membuka Dialog dengan Kode Program"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>modul/toggle dialog</bookmark_value><bookmark_value>dialog;menggunakan kode porgram untuk menunjukkan (contoh)</bookmark_value><bookmark_value>contoh; menampilkan dialog menggunakan kode program</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/sbasic/python.po b/source/id/helpcontent2/source/text/sbasic/python.po
index b878dda693e..0c15a3f906c 100644
--- a/source/id/helpcontent2/source/text/sbasic/python.po
+++ b/source/id/helpcontent2/source/text/sbasic/python.po
@@ -3,9 +3,9 @@ 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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-02-24 04:55+0000\n"
-"Last-Translator: diahelfin <dyahelfin05@gmail.com>\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-29 13:38+0000\n"
+"Last-Translator: Leonardus Kristaris Sastra <leonachild@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1550984124.000000\n"
+"X-POOTLE-MTIME: 1559137103.000000\n"
#: main0000.xhp
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -86,14 +86,14 @@ msgctxt ""
"N0334\n"
"help.text"
msgid "<bookmark_value>Python;dialogs</bookmark_value> <bookmark_value>dialog box;Python</bookmark_value> <bookmark_value>dialogs;Python</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Python;dialog </bookmark_value> <bookmark_value>kotak dialog; Python </bookmark_value> <bookmark_value>dialog; Python </bookmark_value>"
#: python_dialogs.xhp
msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "%PRODUCTNAME Dasar tidak memiliki pengakuan asli Mac OS X sementara properti ComputerName hanya tersedia untuk Windows. Panggilan dasar ke makro Python membantu mengatasi keterbatasan tersebut."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr "Menggunakan Basic classmodule:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/id/helpcontent2/source/text/sbasic/shared.po b/source/id/helpcontent2/source/text/sbasic/shared.po
index 8f9226b8d40..cf1d7cb1489 100644
--- a/source/id/helpcontent2/source/text/sbasic/shared.po
+++ b/source/id/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-04 10:11+0000\n"
"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Bantuan $[officename] Basic\">Bantuan %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/sbasic/shared/03.po b/source/id/helpcontent2/source/text/sbasic/shared/03.po
index 685d0c0c7ad..c779ea16c7b 100644
--- a/source/id/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/id/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-14 07:36+0000\n"
"Last-Translator: muriaakmal <akmalrifqirifqiakmal@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: 1547451380.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Fungsi dan subrutin untuk kontrol modul."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/id/helpcontent2/source/text/scalc/01.po b/source/id/helpcontent2/source/text/scalc/01.po
index 1796010a7cb..f9e3d41eb3e 100644
--- a/source/id/helpcontent2/source/text/scalc/01.po
+++ b/source/id/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libo_help scalc 4.2\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-02-26 02:51+0000\n"
"Last-Translator: KucingMaboek <kucingmaboek.iam@gmail.com>\n"
"Language-Team: ID <id@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Temukan file yang berisi data yang ingin Anda masukkan.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Masukkan URL atau nama file yang berisi data yang ingin Anda masukkan, lalu tekan Enter. </ahelp> Hanya URL dari jaringan atau sistem file yang akan diminta."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Pilih tabel atau rentang data yang ingin Anda masukkan.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Menentukan rentang sel yang ingin Anda konsolidasi dengan rentang sel yang tercantum dalam kotak <emph>rentang Konsolidasi</emph>.Pilih rentang sel dalam satu lembar, lalu klik <emph>Tambah</emph>. Anda juga dapat memilih nama sel yang telah ditentukan dari daftar <emph>Sumber data rentang</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/schart/00.po b/source/id/helpcontent2/source/text/schart/00.po
index a57b9bc01b3..4fad1049b11 100644
--- a/source/id/helpcontent2/source/text/schart/00.po
+++ b/source/id/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-21 14:05+0000\n"
"Last-Translator: Andika Triwidada <andika@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: 1550757934.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Dalam dialog Tipe Bagan dari suatu Bagan garis atau Bagan XY yang menampilkan garis, pilih Haluskan dalam dropdown Tipe garis, lalu klik tombol Properti.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">Dalam dialog Tipe Bagan dari suatu Bagan garis atau Bagan XY yang menampilkan garis, pilih Bertingkat dalam dropdown Tipe garis, lalu klik tombol Properti.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/id/helpcontent2/source/text/shared/00.po b/source/id/helpcontent2/source/text/shared/00.po
index 3b6491c5847..3d1e5905050 100644
--- a/source/id/helpcontent2/source/text/shared/00.po
+++ b/source/id/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-26 03:03+0000\n"
"Last-Translator: KucingMaboek <kucingmaboek.iam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Pilih <switchinline select=\"sys\"><caseinline
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Pilih <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph> %PRODUCTNAME - Preferensi</emph></caseinline><defaultinline><emph>Perkakas - Opsi</emph></defaultinline></switchinline><emph> - $[officename] - Personalisasi</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/id/helpcontent2/source/text/shared/01.po b/source/id/helpcontent2/source/text/shared/01.po
index 74ddf2a1fd0..de083b409e0 100644
--- a/source/id/helpcontent2/source/text/shared/01.po
+++ b/source/id/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libo 4.3 help shared/01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-26 03:07+0000\n"
"Last-Translator: KucingMaboek <kucingmaboek.iam@gmail.com>\n"
"Language-Team: Indonesian <id@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/id/helpcontent2/source/text/shared/02.po b/source/id/helpcontent2/source/text/shared/02.po
index 8a1b9ba0d50..d978e5ffc77 100644
--- a/source/id/helpcontent2/source/text/shared/02.po
+++ b/source/id/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-26 03:18+0000\n"
"Last-Translator: KucingMaboek <kucingmaboek.iam@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: 1551151136.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Menentukan apakah pemilihan teks pada ke tetap dipilih saat fokus tidak lagi pada kendali. </ahelp> Jika Anda mengatur <emph> Sembunyikan pilihan </emph> ke \"Tidak\", teks yang dipilih tetap dipilih saat fokus tidak lagi pada kendali yang berisi teks."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/id/helpcontent2/source/text/shared/guide.po b/source/id/helpcontent2/source/text/shared/guide.po
index 4d6f9845163..1275cd64939 100644
--- a/source/id/helpcontent2/source/text/shared/guide.po
+++ b/source/id/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-26 03:41+0000\n"
"Last-Translator: KucingMaboek <kucingmaboek.iam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/id/helpcontent2/source/text/shared/optionen.po b/source/id/helpcontent2/source/text/shared/optionen.po
index 755e269df60..97ad94dd51e 100644
--- a/source/id/helpcontent2/source/text/shared/optionen.po
+++ b/source/id/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-24 07:17+0000\n"
"Last-Translator: asep <rizseptiawan@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: 1550992646.000000\n"
#: 01000000.xhp
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "untuk informasi lebih lanjut tentang OpenCL, kunjungi <link href=\"https://www.khronos.org/opencl/\">situs OpenCL</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalisasi"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>themes;pengaturan opsi</bookmark_value> <bookmark_value>setting options;tema</bookmark_value> <bookmark_value>personalization;Tema Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalisasi</bookmark_value> <bookmark_value>personalization;kepribadian</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalisasi</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalisasi</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Anda dapat menyesuaikan %PRODUCTNAME dengan tema yang sama yang tersedia untuk Mozilla Firefox. Bilah menu dan bilah alat merapat di bagian atas dan bawah jendela akan menampilkan tema yang dipilih di latar belakang."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Tema Mozilla Firefox tersedia di situs web Mozilla di alamat berikut: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/ themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Tema apa pun yang sesuai dengan Firefox akan berfungsi dengan %PRODUCTNAME. Namun, tidak setiap tema akan memberikan hasil visual yang baik — jika gambar terlalu sibuk, itu dapat mengganggu keterbacaan ikon dan menu."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Tema Firefox:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Opsi berikut tersedia:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Tampilan bawaan, jangan pakai tema"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Latar belakang bilah alat mewarisi pengaturan latar belakang lingkungan desktop anda.</ahelp>Ini adalah pengaturan bawaan di %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Tema Terprapasang"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Pilih opsi ini untuk menggunakan salah satu tema yang sudah diinstal sebelumnya.</ahelp> Selain opsi bawaan, administrator sistem anda mungkin telah menambahkan tema khusus selama instalasi %PRODUCTNAME. Opsi ini akan menampilkannya."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Tema Sendiri"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Pilih opsi ini untuk membuka dialog \"Pilih Tema Firefox\" dan pilih sendiri.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Pilih dialog Tema Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Dialog ini memungkinkan anda untuk menginstal tema tertentu atau memberi anda gambaran tentang tema menarik lainnya dari situs web tema Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Cari"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Berikan istilah pencarian untuk mencari tema dari situs add-on Mozilla, atau tempel di alamat tema untuk mengambil tema tertentu secara langsung.</ahelp> Untuk mendapatkan alamat, gunakan browser anda untuk menavigasi ke halaman web tema dan menyalin URL yang ditampilkan di bilah alamat. Kemudian, tempel di kotak pencarian dialog. Klik <item type=\"menuitem\">Pencarian</item>atau tekan<item type=\"keycode\">Enter</item>untuk mengunduh dan menginstalnya di %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Menjelajahi tema berdasarkan kategori"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Memperlihatkan pilihan acak dari sembilan tema berdasarkan kategori yang ditampilkan di tombol.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Klik salah satu dari lima tombol untuk ditampilkan di area gambar di bawah pilihan acak sembilan tema yang sesuai dengan kategori yang ditunjukkan pada tombol."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Untuk memilih salah satu tema yang ditampilkan, klik pada gambarnya dan tekan<item type=\"menuitem\">OK</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/id/helpcontent2/source/text/simpress/01.po b/source/id/helpcontent2/source/text/simpress/01.po
index 9652c35c648..f2323013a8b 100644
--- a/source/id/helpcontent2/source/text/simpress/01.po
+++ b/source/id/helpcontent2/source/text/simpress/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libo_help simpress 4.3\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-02-24 07:33+0000\n"
"Last-Translator: asep <rizseptiawan@gmail.com>\n"
"Language-Team: ID <id@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/id/helpcontent2/source/text/swriter/guide.po b/source/id/helpcontent2/source/text/swriter/guide.po
index b5383882340..f1f86888698 100644
--- a/source/id/helpcontent2/source/text/swriter/guide.po
+++ b/source/id/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-24 07:53+0000\n"
"Last-Translator: Mokhamad Asif <mokhamadasif@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Pada <emph>Bilah Standar</emph>, klik ikon <emph>Navigator</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Ikon</alt></image> untuk membuka <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "Pada <emph>Navigator</emph>, klik ikon <emph>Tilikan Isi</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Ikon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Klik suatu tajuk dalam daftar <emph>Navigator</emph>, lalu klik <emph>Naikkan Bab</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Ikon</alt></image> atau ikon <emph>Turunkan Bab</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Ikon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Klik ikon <emph>Naikkan Tingkat</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Ikon</alt></image> atau <emph>Turunkan Tingkat</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Ikon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Klik ikon <emph>Tingkat Tajuk yang Ditampilkan</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Ikon</alt></image> dan pilih sebuah angka dari daftar."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po b/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
index 013f30c0550..6f874c035f5 100644
--- a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/id/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-23 07:05+0000\n"
"Last-Translator: wulancahya562@gmail.com <wulancahya562@gmail.com>\n"
"Language-Team: Indonesian <>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Lebih banyak Isian"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Tab"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Bilah terkelompok"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/id/sc/messages.po b/source/id/sc/messages.po
index c6752949a26..0b0953819c3 100644
--- a/source/id/sc/messages.po
+++ b/source/id/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-23 07:52+0000\n"
"Last-Translator: arivleone <stanislausjp@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(akses eksklusif)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,12 +15775,12 @@ msgstr "Kelola Pemformatan Bersyarat"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulir Data"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Tutup"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Rekaman Baru"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Baru"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Hapus"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Pulihkan"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Rekaman Se_belumnya"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Rekaman Se_lanjutnya"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Tutup"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Arus Data Langsung"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Masukkan URL dari dokumen sumber dalam sistem berkas lokal atau Internet di sini."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Telusur..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Rentang Basis Data:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Penyedia Data:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "String Pencarian:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Arus Sumber"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Hasil ke:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolom"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Baris"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Dikelompokkan menurut"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parameter"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Ba_ntuan"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~File"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Tentukan batas dari sel yang dipilih."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "kata terkait"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Kurangi Indentasi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Beranda"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Home"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Ruas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "S_isip"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Insert"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Layout"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Tata letak"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistik"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "P_ratinjau"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Tinjauan"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Ta_mpilan"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Tilik"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Cit_ra"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Citra"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Gambar"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Menggambar"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objek"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objek"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Cetak"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Cetak"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ala_t"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Alat"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Hasil Pencarian"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Simbol _outline"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Jendela"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Garis kisi:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Warna:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Tampilkan"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Tampilkan pada sel yang diwarnai"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Sembunyi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Ganti _halaman"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "_Garis bantu ketika memindah"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Bantuan Visual"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jek/Citra:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Baga_n:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Objek _menggambar:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Tampilkan"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Sembunyi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Tampilkan"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Sembunyi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Tampilkan"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Sembunyi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objek"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "_Selaraskan lembar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zum"
diff --git a/source/id/scp2/source/ooo.po b/source/id/scp2/source/ooo.po
index 26baf63ed85..a66933a7ce3 100644
--- a/source/id/scp2/source/ooo.po
+++ b/source/id/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-15 10:00+0000\n"
"Last-Translator: Faqih Yugo Susilo <faqihyugos@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Buka Dokumen"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/id/scp2/source/winexplorerext.po b/source/id/scp2/source/winexplorerext.po
index 1aa54e1ddff..58c182260e6 100644
--- a/source/id/scp2/source/winexplorerext.po
+++ b/source/id/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 20:53+0200\n"
-"Last-Translator: andika <andika@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:41+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\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: LibreOffice\n"
+"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369352491.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Membuat Microsoft Windows Explorer mampu menampilkan informasi tentang dokumen %PRODUCTNAME, misalnya pratinjau ibu jari."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/id/sd/messages.po b/source/id/sd/messages.po
index d3579ab51a8..09819e87e28 100644
--- a/source/id/sd/messages.po
+++ b/source/id/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-24 04:16+0000\n"
"Last-Translator: artemtech <sofyanartem@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Klik untuk membuka pranala:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Namai Disain HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Berkas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Ba_ntuan"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Berkas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Beranda"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Beranda"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Ruas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "S_isip"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Sisipkan"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Halaman"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Halaman"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Tinjau"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Ulasan"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Ta_mpilan"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Tampilan"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_eks"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~eks"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konversi"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Cit_ra"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Cit~ra"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Gambar"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Gambar"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obyek"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obyek"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Form~ulir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ala_t"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Perkakas"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Tampilkan Bangun"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Berkas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Ba_ntuan"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Berkas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Beranda"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Beranda"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Ruas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "S_isip"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Sisip"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "Sa_lindia"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "Sa~lindia"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Pertunjukan _Salindia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Tampilkan Salindia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Tinjau"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Tinjau"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Tilik"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Tampilan"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konversi"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Cit_ra"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Cit~ra"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Gambar"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Gambar"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obyek"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obyek"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ala_t"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Perkakas"
diff --git a/source/id/sfx2/messages.po b/source/id/sfx2/messages.po
index 39ab2629f33..df5e0ad0211 100644
--- a/source/id/sfx2/messages.po
+++ b/source/id/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-25 14:24+0000\n"
"Last-Translator: kul.abdi <sholikhul.abdi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " T: %1 B: %2 H: %3 J: %4 M: %5 D: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Buang Properti"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Nilai yang dimasukkan tidak sesuai dengan tipe yang dinyatakan.\n"
"Nilai akan disimpan sebagai teks."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Gaya sudah ada. Ditimpa?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Atu~r Ulang"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Nama ini telah dipakai."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Gaya ini tidak ada."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Gaya ini tidak bisa digunakan sebagai Gaya basis,\n"
"karena ini akan menyebabkan referensi rekursif."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Nama sudah ada sebagai Gaya baku.\n"
"Silakan pilih nama lain."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Bila Anda menghapus gaya ini, teks akan dikenai gaya induknya.\n"
"Apakah Anda masih hendak menghapus gaya ini?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Gaya yang dipakai: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Konfirmasi sandi yang bermasalah"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Kirim"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Fonta"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Tampilkan pratinjau"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Sisip Komentar Versi"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(nama tak ditata)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Daftar Gaya"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hirarkikal"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Modus Format Isian"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Gaya Baru dari Seleksi"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Tindakan gaya"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Perbarui Gaya"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Apakah Anda yakin untuk membatalkan perekaman? Semua langkah yang direkam hingga titik ini akan dihilangkan."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Batalkan Perekaman"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Palet sedang diinisialisasi untuk pemakaian pertama."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Tidak ada pencetak utama yang ditemukan.\n"
"Harap pilih sebuah pencetak dan coba lagi."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Tak dapat menjalankan pencetak.\n"
"Harap periksa konfigurasi pencetak Anda."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Pencetak sibuk"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (hanya-baca)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Apakah Anda ingin menyimpan pengaturan baru\n"
"di dalam dokumen yang aktif?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Apakah pengaturan baru tersebut\n"
"disimpan pada dokumen yang aktif?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Apakah Anda ingin menyimpan pengaturan baru\n"
"di dalam dokumen yang aktif?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Dokumen tidak bisa ditutup karena\n"
" suatu tugas cetak sedang dikerjakan."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Silakan periksa pengaturan %PRODUCTNAME atau pengaturan program email Anda."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Kode galat adalah $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Galat saat mengirim surat."
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Dokumen tidak bisa disunting, mungkin karena tidak adanya hak akses. Apakah Anda hendak menyunting salinan dokumen tersebut?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Anda juga dapat mencoba mengabaikan kuncian dan membuka berkas untuk penyuntingan."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Buka ~Salinan"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Buka"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (dokumen yang diperbaiki)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Dokumen ini tak di-check-out pada server."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Bantu kami membuat %PRODUCTNAME lebih baik!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Terlibat"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Donasi anda mendukung komunitas kami di seluruh dunia."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Donasi"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dokumen dibuka dalam mode hanya-baca."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "PDF ini dibuka dalam mode hanya-baca untuk mengijinkan penandatanganan berkas yang ada."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Label klasifikasi dokumen ini adalah %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Dokumen ini mesti diklasifikasikan sebelum papan klip dapat ditempelkan."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Dokumen ini punya tingkat klasifikasi lebih rendah daripada papan klip."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Tingkat"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Keamanan Nasional:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Kendali Ekspor:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Check Out"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Sunting Dokumen"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Tandatangani Dokumen"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dokumen ini punya tanda tangan yang tidak valid."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Tanda tangan valid, tapi dokumen telah diubah"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Tanda tangan OK, tapi sertifikat tidak dapat divalidasi."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Tanda tangan OK, tapi dokumen hanya ditandatangani sebagian."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Sertifikat tidak dapat divalidasi dan dokumen hanya ditandai sebagian."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dokumen ini ditandatangani secara digital dan tanda tangannya valid."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Tampilkan Tanda Tangan"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Tutup Panel"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Tambatkan"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Lepaskan"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Lebih Banyak Opsi"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Tutup Dek Bilah Sisi"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Pengaturan Bilah Sisi"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Kustomisasi"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Kembalikan Baku"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Tutup Bilah Sisi"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Merah Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Sarang Lebah"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Kurva Biru"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Rencana Cetak Biru"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Biru Cerah"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Merah Berkelas"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Burung hutan"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Mengesankan"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasi"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Cahaya"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Hijau Rimbun"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Biru malam"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Ilustrasi Alam"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pinsil"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portofolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Perkembangan"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Matahari Terbenam"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Antik"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Terang"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Lanjutkan"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Baku"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Surat bisnis modern sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Surat bisnis modern serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Kartu nama dengan logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Hapus"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Bersihkan Semua"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Panjang kata sandi"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Kata sandi yang anda masukkan menyebabkan masalah interoperabilitas. Silakan masukkan kata sandi yang lebih pendek dari 52 byte, atau lebih panjang dari 55 byte."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Komentar versi:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nama"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Jenis"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Nilai"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Jenis"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ya"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Tidak"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Tambah _Properti"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nama"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Jenis"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Nilai"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Lokasi:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipe:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Ubah _Sandi"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Palet:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Properti “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Umum "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Deskripsi"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Properti Tambahan"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Properti CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Keamanan"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Produk ini diciptakan oleh %OOOVENDOR, berdasarkan OpenOffice.org, yang merupakan Hak Cipta 2000, 2011 Oracle dan/atau afiliasinya. %OOOVENDOR mengakui semua anggota komunitas, silakan lihat http://www.libreoffice.org/ untuk detail lebih lanjut."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/id/shell/messages.po b/source/id/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/id/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/id/starmath/messages.po b/source/id/starmath/messages.po
index 6c6761870a3..8deaa24bc1c 100644
--- a/source/id/starmath/messages.po
+++ b/source/id/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-12-02 11:49+0000\n"
"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Contoh"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standar"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Miring"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Tebal"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "black"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blue"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "green"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "red"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "kelabu"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "limau"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marun"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "navy"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "zaitun"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ungu"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "perak"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "teal"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "yellow"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "hide"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "size"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "left"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "center"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "right"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Perintah"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Rumus"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Menyimpan dokumen..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Rumus %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "GALAT : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Karakter yang tidak diharapkan"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Token tidak terduga"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Diharapkan adanya '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Diharapkan adanya '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Diharapkan adanya '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Diharapkan adanya ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Simbol kiri dan kanan tidak cocok"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "diharapkan 'fixed', 'sans', atau 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' diikuti oleh token yang tidak terduga"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Perataan ganda tidak diizinkan"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Sub/superskrip ganda tidak diizinkan"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Diharapkan adanya '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Diharapkan adanya warna"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Diharapkan adanya 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Isi"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Judul"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Teks rumus"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Batas"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ukuran"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Uku~ran asli"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Paskan halaman"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Pen~skalaan"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elemen"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/id/svtools/messages.po b/source/id/svtools/messages.po
index 8283d02cad3..de33791da67 100644
--- a/source/id/svtools/messages.po
+++ b/source/id/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-17 08:31+0000\n"
"Last-Translator: Enigma <sakharisma@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1550392283.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Mundur: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "U~langi: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "U~lang: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Teks tanpa pemformatan"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Teks tanpa format (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Citra Bitmap (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Berkas meta Graphics Device Interface (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Format gambar %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Bitmap/animasi StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Info Status dari Taut Dalam Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Link %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Penanda Buku Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format server Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format objek Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objek aplet"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objek tambahan"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objek StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objek StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objek StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objek StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objek StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objek StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objek StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objek StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objek StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objek StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objek StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objek StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objek StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objek StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objek StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objek StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objek StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objek StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objek StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objek StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objek StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objek StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objek StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objek StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (taut DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objek Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objek StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objek Office document"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Catatan informasi dokumen"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Dokumen Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objek StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objek grafik"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objek OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objek OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objek OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objek OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objek OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objek OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objek OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objek OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Berkas meta Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objek sumber data"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabel sumber data"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Kuiri SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialog OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Taut"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Format HTML tanpa komentar"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objek % tak dapat disisipkan."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objek dari berkas % tak dapat disisipkan."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Objek lebih lanjut"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Sumber tak dikenal"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nama"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Ukuran"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Tanggal modifikasi"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Jenis"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bita"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Baris: %1, Kolom: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Jenis: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Folder"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Berkas"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Ruas Kosong"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerik"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Kelompok karakter"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Kamus"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Garis Lurus"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unikode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Buku telepon"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetik (alfanumerik pertama)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetik (alfanumerik terakhir)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerik"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Kamus"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Garis Lurus"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetik (alfanumerik pertama, dikelompokkan oleh silabel)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetik (alfanumerik pertama, dikelompokkan oleh konsonan)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetik (alfanumerik terakhir, dikelompokkan oleh silabel)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetik (alfanumerik terakhir, dikelompokkan oleh konsonan)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Hari ini"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Nihil"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Tipis"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Miring Tipis"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Biasa"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Miring"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Tebal"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Miring Tebal"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Hitam"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Miring Hitam"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Buku"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Tebal Dimiringkan"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Dirapatkan"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Rapat Tebal"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Rapat Tebal Miring"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Rapat Tebal Dimiringkan"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Rapat Miring"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Rapat Dimiringkan"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ekstra Tipis"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstra Tipis Miring"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Dimiringkan"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Setengah Tebal"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Setengah Tebal Miring"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Fonta yang sama akan dipakai oleh pencetak dan monitor Anda."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Ini adalah fonta bagi pencetak. Grafik di monitor mungkin berbeda."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Gaya fonta ini akan disimulasikan atau gaya yang paling mirip yang akan dipakai."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Fonta ini belum terpasang. Fonta yang paling mendekatinya (yang terpasang) akan dipakai."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Telusur..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Pindahkan ke Depan"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Ke Kiri"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Ke Kanan"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Pindahkan ke Akhir"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Tambah"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Penggaris Horisontal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Penggaris Vertikal"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bit ambang"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bit dithered"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bit skala abu-abu"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bit warna"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bit skala abu-abu"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bit warna"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bit warna nyata"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Citra memerlukan memori sekitar %1 KB."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Citra memerlukan memori sekitar %1 KB, ukuran berkas adalah %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Ukuran berkasnya %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "CMIS Lain"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Siap"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Ditahan"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Tunda penghapusan"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Sibuk"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Menginisiasi"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Menunggu"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Pemanasan"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Memproses"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Mencetak"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Kesalahan"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Server Tak Dikenal"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Kertas tersangkut"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Tidak cukup kertas"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Feed manual"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Masalah kertas"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktif"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Baki keluaran penuh"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner rendah"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Tidak ada toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Hapus halaman"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Intervensi pengguna diperlukan"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memori tidak cukup"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Penutup terbuka"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modus hemat energi"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Pencetak utama"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumen"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Selesai"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "La~njut >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< ~Kembali"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Langkah-langkah"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<nihil>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Perusahaan"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departemen"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nama depan"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Nama belakang"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Jalan"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Negara"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Kode Pos"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Kota"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Gelar"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posisi"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Form. Alamat"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inisial"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Gelar"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel: Rumah"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: Kerja"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Email"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Catatan"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Pengguna 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Pengguna 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Pengguna 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Pengguna 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Bagian/Provinsi"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: Kantor"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Penyeranta"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Ponsel"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: Lainnya"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Undangan"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME memerlukan Java runtime environment (JRE) untuk melakukan tugas ini. Harap pasang JRE dan jalankan ulang %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME memerlukan Java runtime environment (JRE) %BITNESS-bit untuk melakukan tugas ini. Harap pasang JRE dan jalankan ulang %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME membutuhkan Oracle's Java Development Kit (JDK) pada macOS 10.10 atau lebih tinggi untuk melakukan tugas ini. Tolong install dan ulang %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfigurasi %PRODUCTNAME telah berubah. Di bawah %PRODUCTNAME - Preferensi - %PRODUCTNAME - Tingkat Lanjut, pilih Java runtime environment yang ingin Anda pakai dengan %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfigurasi %PRODUCTNAME telah berubah. Di bawah Alat - Opsi - %PRODUCTNAME - Tingkat Lanjut, pilih Java runtime environment yang ingin Anda pakai dengan %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME memerlukan sebuah Java runtime environment (JRE) untuk melaksanakan tugas ini. JRE yang dipilih cacat. Harap pilih versi lain atau pasang sebuah JRE baru dan pilihlah itu di bawah %PRODUCTNAME - Preferensi - %PRODUCTNAME - Tingkat Lanjut."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME memerlukan sebuah Java runtime environment (JRE) untuk melaksanakan tugas ini. JRE yang dipilih cacat. Harap pilih versi lain atau pasang sebuah JRE baru dan pilihlah itu di bawah Alat - Opsi - %PRODUCTNAME - Tingkat Lanjut."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE Diperlukan"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Pilih JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE Tidak Aktif"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Kode sumber"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Berkas penanda buku"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafik"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Berkas konfigurasi"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplikasi"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabel basis data"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sistem berkas"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dokumen MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Berkas Bantuan"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Dokumen HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Berkas arsip"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Berkas log"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Basis Data StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Dokumen Induk StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Gambar StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Berkas teks"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Taut"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Palet StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Dokumen MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Palet MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Berkas Batch"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Berkas"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Folder"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Dokumen Teks"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Lembar Kerja"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentasi"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Menggambar"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Dokumen HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Dokumen induk"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Rumus"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Basis data"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Palet Lembar Kerja OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Palet Gambar OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Palet Presentasi OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Palet Dokumen Teks OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Drive lokal"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Drive disk"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Drive CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Koneksi jaringan"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Dokumen MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Palet MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Pertunjukan MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Rumus OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Bagan OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Gambar OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Lembar Kerja OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentasi OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Dokumen Teks OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Dokumen Induk OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Dokumen MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Basis Data OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Menggambar OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Rumus OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Dokumen Induk OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentasi OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Lembar Kerja OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Teks OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Palet Lembar Kerja OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Palet Menggambar OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Palet Presentasi OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Palet Teks OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Ekstensi %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Pemeriksa Ejaan Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Pemutus Kata Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Tesaurus Mythes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Daftar Kata Tak Terpakai"
diff --git a/source/id/svx/messages.po b/source/id/svx/messages.po
index 0aeda2ee063..e6795738275 100644
--- a/source/id/svx/messages.po
+++ b/source/id/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-25 03:33+0000\n"
"Last-Translator: Andik Nur Achmad <andik.achmad@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Kiri ke kanan (vertikal)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Nyatakan persentase ofset vertikal dari pusat bagi gaya arsir gradien. 50% adalah pusat vertikal."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Penyunting Kontur"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Terapkan"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Ruang Kerja"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Pilih"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Persegi"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elips"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Poligon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Sunting Titik"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Pindah Titik"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Sisip Titik"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Hapus Titik"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "OtoKontur"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Tak jadi "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Jadi lagi"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipet"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Toleransi Warna"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Kaki"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Penyunting PetaCitra"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Terapkan"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Buka..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Simpan..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Tutup"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Pilih"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Persegi"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elips"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Poligon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Poligon Bebas"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Sunting Titik"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Pindah Titik"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Sisip Titik"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Hapus Titik"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Tak Jadi "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Jadi Lagi"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktif"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Properti..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Alamat:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Bingkai:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Teks:"
diff --git a/source/id/sw/messages.po b/source/id/sw/messages.po
index a6e5a5baaec..4d80dbc2886 100644
--- a/source/id/sw/messages.po
+++ b/source/id/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: kul.abdi <sholikhul.abdi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -3113,9 +3113,9 @@ msgid "Change object title of $1"
msgstr "Mengubah nama objek $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Mengubah deskripsi objek $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12005,147 +12005,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Ba_ntuan"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Berkas"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Beranda"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Beranda"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "S_isip"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "S~isip"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Tata _Letak"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Tata ~Letak"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Rujuka_n"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referen~si"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Tinjau"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Tin~jauan"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Tilik"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Tampilan"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Cit_ra"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Citra"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Gambar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Gambar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objek"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objek"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Cetak"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Cetak"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rm"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rm"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ala_t"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Perkakas"
@@ -12155,152 +12155,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Berkas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "S_isipkan"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Lipat"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Tata letak"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referen_si"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Tinjau"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "Ta_mpilan"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abel"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Citra"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Gamba_r"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objek"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Cetak"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Per_kakas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13367,8 +13367,8 @@ msgstr "Kembangkan spasi kata pada baris-baris dengan pemutusan baris manual dal
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Lindungi dari"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16648,47 +16648,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Daftar Isi, Indeks, atau Bibliografi"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Pratinjau"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Pratayang"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipe"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entri"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Gaya"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Kolom"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Latar Belakang"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Pratayang"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Tingkat"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tipe"
@@ -16918,302 +16918,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Sunting..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Judul:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipe:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Daftar Isi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Indeks Alfabetis"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Tabel Gambar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Indeks Tabel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Gubahan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Daftar Objek"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Terlindungi dari perubahan manual"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipe dan Judul"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Untuk:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Seluruh dokumen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Bab"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evaluasi sampai tingkat:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Buat Indeks atau Daftar Isi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Outline"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Tanda inde_ks"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Bingkai te_ks"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafik"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Objek OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Pakai tingkat dari bab sumber"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Gaya t_ambahan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Ga_ya"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Tugaskan gaya..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Kapsi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Nama objek"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategori:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Tampilan:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referensi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategori dan Angka"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Teks Kapsi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Buat Dari"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Buat Dari Objek-objek Berikut"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Kurung:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Entri a_ngka"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[nihil]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Pemformatan Entri"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Gabungkan entri identik"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Gabungkan entri identik dengan p atau _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Gabungkan dengan -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Peka huruf besar kecil"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "OtoKapital entri"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Kunci sebagai entri-entri terpisah"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Berkas _concordance"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Berkas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opsi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Bahasa:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipe kunci:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Urutkan"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Tingkat"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Gaya Paragraf"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Baku"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Sunting"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Penugasan"
diff --git a/source/is/basctl/messages.po b/source/is/basctl/messages.po
index e2903bd0c6a..dc103e80c30 100644
--- a/source/is/basctl/messages.po
+++ b/source/is/basctl/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-05-03 12:50+0000\n"
+"PO-Revision-Date: 2019-05-24 12:56+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\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: 1556887829.000000\n"
+"X-POOTLE-MTIME: 1558702575.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -435,12 +435,12 @@ msgstr "Síð~ur:"
#: basctl/inc/strings.hrc:103
msgctxt "RID_STR_PRINTDLG_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "S~létttölusíður"
#: basctl/inc/strings.hrc:104
msgctxt "RID_STR_PRINTDLG_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "~Oddatölusíður"
#: basctl/inc/strings.hrc:105
msgctxt "RID_STR_CHOOSE"
diff --git a/source/is/cui/messages.po b/source/is/cui/messages.po
index 8279dedd378..c984b0de92b 100644
--- a/source/is/cui/messages.po
+++ b/source/is/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-05-03 12:49+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Settu inn gilt vistfang á þema eða leitarstreng."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "API-forritaviðmót Mozilla þema er ekki aðgengilegt í augnablikinu."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Setja enga jaðra"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Setja bara ytri jaðra"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Setja ytri hliðar og láréttar línur"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Setja ytri hliðar og allar innri línur"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Setja ytri hliðar án þess að breyta innri línum"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Setja bara skálínur"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Setja allar fjórar hliðar"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Setja bara vinstri og hægri hlið"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Setja bara efri og neðri hlið"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Setja bara vinstri hlið"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Setja efri og neðri hliðar, og allar innri línur"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Setja vinstri og hægri hliðar, og allar innri línur"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Engin skuggi"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Varpa skugga neðst til hægri"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Varpa skugga efst til hægri"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Varpa skugga neðst til vinstri"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Varpa skugga efst til vinstri"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Undirritað af: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Allar skrár"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Skráðir gagnagrunnar"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Um %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "F_ramlög"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Vefsvæði"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Byggingarauðkenni: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Staðfærsla: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Tungumál notendaviðmóts: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Sjá í annál: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME er hópur nútímalegra, auðveldra, frjálsra framleiðniaukandi forrita fyrir ritvinnslu, töflureikninga, kynningar og fleira."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Höfundarréttur © 2000 - 2019, þátttakendur í LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice var upphaflega byggt á OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME er dregið af LibreOffice sem byggðist upphaflega á OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Þessi hugbúnaður er gefinn út af %OOOVENDOR"
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Skipta út"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Skipta út"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Með:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Texta eingöngu"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minnsta lengd orða"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Eiginleikar"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_Vefslóð:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Rammi:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Heiti:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Vara_texti:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Lýsing:"
@@ -9019,80 +9179,80 @@ msgstr "Birta sprettglugga með \"Engin hjálparskjöl uppsett á tölvunni\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hjálp"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Nota valmyndir %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Opna/Vista gluggar"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Nota _valmyndir %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Prentunargluggar"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Prentun breytir stöðu \"breytt skjal\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Staða skjals"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Túlka sem ár á m_illi"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "og "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ár (tveir tölustafir)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Safna gögnum um notkun og senda þau til The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Hjálpa til við að bæta %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Hlaða inn %PRODUCTNAME við kerfisræsingu"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Virkja flýtiræsi í kerfisbakka"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME flýtiræsir"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Foruppsett þema"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Eigið þema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Hlaða inn Firefox þema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Eða, veldu úr þeim þemum sem sett hafa verið inn með viðbótum:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox þemu"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Öryggisvalkostir"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Veldu Firefox þema"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Leitarorð eða vistfang"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "_Flokkur:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Útdráttur"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Baráttumál"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Tíska"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Kvikmyndir og sjónvarp"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Frídagar"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Tónlist"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Náttúra"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Annað"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Landslag"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Árstíðir"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Einlitt"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Íþróttir"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Vefsvæði"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Sérvalið"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/is/extensions/messages.po b/source/is/extensions/messages.po
index b2e021b281c..759cdb93c3c 100644
--- a/source/is/extensions/messages.po
+++ b/source/is/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-18 11:36+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Framsetning töfludálka í \"%1\""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Stutt h_eiti"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Höfundur(_ar)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Út_gefandi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Kafli"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Ritstjóri"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tegund"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Útgáf_uár"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Titi_ll"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "_Heimilisfang"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_Síða(ur)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Útgá_fa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Bókartitill"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Bindi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Tegun_d útgáfuefnis"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "St_ofnun/Samtök/Félag"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Stof_nun"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "H_áskóli"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tegun_d skýrslu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mánuður"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Færslubó_k"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Núm_er"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "_Ritröð"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Staðset_ning"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Athugase_md"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "Slóð"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Gagnasvið skilgreint af notanda _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Gagnasvið skilgreint af notanda _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Gagnasvið skilgreint af notanda _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Gagnasvið skilgreint af notanda _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Gagnasvið skilgreint af notanda _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nöfn dálka"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Sláðu inn nafn fyrir nýju gagnategundina:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Tengja gagnasvið"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Stinga uppá"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Hægt er að nota undireyðublöð til að birta ítarlegri gögn um færslur á aðaleyðublöðum. Til að gera þetta, geturðu tilgreint hvaða dálkar í undireyðublaði samsvara hvaða dálkum í aðaleyðublaðinu."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "skýring"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "skýring"
diff --git a/source/is/filter/messages.po b/source/is/filter/messages.po
index a0365952aa9..ef9323c6136 100644
--- a/source/is/filter/messages.po
+++ b/source/is/filter/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2017-11-22 16:30+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-24 12:58+0000\n"
+"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511368208.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558702681.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_UNKNOWN_APPLICATION"
@@ -423,12 +423,12 @@ msgstr "Útbýr PDF-skjal sem auðvelt er að meðhöndla í %PRODUCTNAME"
#: filter/uiconfig/ui/pdfgeneralpage.ui:466
msgctxt "pdfgeneralpage|pdfa"
msgid "Archive P_DF/A-2b (ISO 19005-2)"
-msgstr ""
+msgstr "Safnskrá P_DF/A-2b (ISO 19005-2)"
#: filter/uiconfig/ui/pdfgeneralpage.ui:470
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
msgid "Creates an ISO 19005-2 compliant PDF file, ideal for long-term document preservation"
-msgstr ""
+msgstr "Býr til ISO 19005-2 samhæfða PDF skrá, góður kostur til að geyma skjöl til notkunar í fjarlægri framtíð"
#: filter/uiconfig/ui/pdfgeneralpage.ui:482
msgctxt "pdfgeneralpage|tagged"
@@ -493,7 +493,7 @@ msgstr "_Flytja út frátökutákn"
#: filter/uiconfig/ui/pdfgeneralpage.ui:609
msgctxt "pdfgeneralpage|comments"
msgid "_Comments as PDF annotations"
-msgstr ""
+msgstr "Athugasem_dir sem PDF-glósur"
#: filter/uiconfig/ui/pdfgeneralpage.ui:624
msgctxt "pdfgeneralpage|emptypages"
@@ -1023,12 +1023,12 @@ msgstr "Stillingar XML síu"
#: filter/uiconfig/ui/xmlfiltersettings.ui:103
msgctxt "xmlfiltersettings|header_name"
msgid "Name"
-msgstr ""
+msgstr "Heiti"
#: filter/uiconfig/ui/xmlfiltersettings.ui:116
msgctxt "xmlfiltersettings|header_type"
msgid "Type"
-msgstr ""
+msgstr "Tegund"
#: filter/uiconfig/ui/xmlfiltersettings.ui:144
msgctxt "xmlfiltersettings|new"
diff --git a/source/is/helpcontent2/source/auxiliary.po b/source/is/helpcontent2/source/auxiliary.po
index d194d617c7a..c186fd21b8b 100644
--- a/source/is/helpcontent2/source/auxiliary.po
+++ b/source/is/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2018-10-31 15:40+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-24 13:07+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\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: 1541000432.000000\n"
+"X-POOTLE-MTIME: 1558703223.000000\n"
#: sbasic.tree
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"0701\n"
"node.text"
msgid "%PRODUCTNAME BASIC"
-msgstr ""
+msgstr "%PRODUCTNAME BASIC"
#: sbasic.tree
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"070101\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "Almennar upplýsingar og notkun notandaviðmóts"
#: sbasic.tree
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"070102\n"
"node.text"
msgid "Command Reference"
-msgstr ""
+msgstr "Tilvísanir í skipanir"
#: sbasic.tree
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"07010202\n"
"node.text"
msgid "Functions, Statements, and Operators"
-msgstr ""
+msgstr "Föll, skipanasetningar og virkjar"
#: sbasic.tree
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"07010201\n"
"node.text"
msgid "Alphabetic List of Functions, Statements, and Operators"
-msgstr ""
+msgstr "Listi í stafrófsröð yfir keyrslutímaföll, skipanasetningar og virkja"
#: sbasic.tree
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"07010205\n"
"node.text"
msgid "Advanced Basic Libraries"
-msgstr ""
+msgstr "Ítarleg grunnaðgerðasöfn"
#: sbasic.tree
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"070103\n"
"node.text"
msgid "Guides"
-msgstr ""
+msgstr "Leiðbeiningasíður"
#: sbasic.tree
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"0702\n"
"node.text"
msgid "Python Scripts Help"
-msgstr ""
+msgstr "Hjálp við Python-skriftur"
#: sbasic.tree
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"070201\n"
"node.text"
msgid "General Information and User Interface Usage"
-msgstr ""
+msgstr "Almennar upplýsingar og notkun notandaviðmóts"
#: sbasic.tree
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"070202\n"
"node.text"
msgid "Programming with Python"
-msgstr ""
+msgstr "Forritun með Python"
#: scalc.tree
msgctxt ""
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Almennar upplýsingar"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Kynningar og teikning (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Tækjaslár"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Teikningar (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Valmyndir"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Tækjaslár"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Hlutir, myndefni og bitamyndir"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Hópar og lög"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Texti í kynningum og teikningum"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -662,7 +742,7 @@ msgctxt ""
"030101\n"
"node.text"
msgid "%PRODUCTNAME Formula Elements"
-msgstr ""
+msgstr "%PRODUCTNAME formúlueiningar"
#: smath.tree
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/sbasic/guide.po b/source/is/helpcontent2/source/text/sbasic/guide.po
index 0fd4339020e..4cb3b4fe6c4 100644
--- a/source/is/helpcontent2/source/text/sbasic/guide.po
+++ b/source/is/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,7 +541,7 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
+msgid "Opening a Dialog With Basic"
msgstr ""
#: show_dialog.xhp
@@ -525,7 +549,7 @@ msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
msgstr ""
#: show_dialog.xhp
diff --git a/source/is/helpcontent2/source/text/sbasic/python.po b/source/is/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/is/helpcontent2/source/text/sbasic/python.po
+++ b/source/is/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/is/helpcontent2/source/text/sbasic/shared.po b/source/is/helpcontent2/source/text/sbasic/shared.po
index a38be19dcd4..c30d27f278c 100644
--- a/source/is/helpcontent2/source/text/sbasic/shared.po
+++ b/source/is/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36201,7 +36201,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/is/helpcontent2/source/text/sbasic/shared/03.po b/source/is/helpcontent2/source/text/sbasic/shared/03.po
index 84a327fb51b..94000b22658 100644
--- a/source/is/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/is/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/is/helpcontent2/source/text/scalc/01.po b/source/is/helpcontent2/source/text/scalc/01.po
index 6ace678bf04..92de47a06cf 100644
--- a/source/is/helpcontent2/source/text/scalc/01.po
+++ b/source/is/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -41001,7 +41001,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -41033,7 +41033,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41057,7 +41057,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46345,7 +46345,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/is/helpcontent2/source/text/schart/00.po b/source/is/helpcontent2/source/text/schart/00.po
index 39b3a792b71..7e519758616 100644
--- a/source/is/helpcontent2/source/text/schart/00.po
+++ b/source/is/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/is/helpcontent2/source/text/shared/00.po b/source/is/helpcontent2/source/text/shared/00.po
index eb40da15938..86923fed69d 100644
--- a/source/is/helpcontent2/source/text/shared/00.po
+++ b/source/is/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/is/helpcontent2/source/text/shared/01.po b/source/is/helpcontent2/source/text/shared/01.po
index 4ff01924765..6ffbb1af4e8 100644
--- a/source/is/helpcontent2/source/text/shared/01.po
+++ b/source/is/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/is/helpcontent2/source/text/shared/02.po b/source/is/helpcontent2/source/text/shared/02.po
index ec45c59494b..c6ee168c5a9 100644
--- a/source/is/helpcontent2/source/text/shared/02.po
+++ b/source/is/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/is/helpcontent2/source/text/shared/guide.po b/source/is/helpcontent2/source/text/shared/guide.po
index e2c2c14be7e..cae5c59d7ad 100644
--- a/source/is/helpcontent2/source/text/shared/guide.po
+++ b/source/is/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/is/helpcontent2/source/text/shared/optionen.po b/source/is/helpcontent2/source/text/shared/optionen.po
index 689a1a11895..ec57ddd5879 100644
--- a/source/is/helpcontent2/source/text/shared/optionen.po
+++ b/source/is/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/is/helpcontent2/source/text/simpress.po b/source/is/helpcontent2/source/text/simpress.po
index 3d7db01e5e1..b208e4712bb 100644
--- a/source/is/helpcontent2/source/text/simpress.po
+++ b/source/is/helpcontent2/source/text/simpress.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-10-31 11:12+0000\n"
+"PO-Revision-Date: 2019-05-24 13:14+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1540984358.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558703650.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3148610\n"
"help.text"
msgid "You can also assign a number of dynamic effects to your slides, including animation and transition effects."
-msgstr ""
+msgstr "Þú getur úthlutað fjölmörgum virkum sjónhverfingum eða brellum á skyggnurnar þínar, þar með töldum hreyfibrellum og millifærslum."
#: main0503.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Breyta"
#: main_edit.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_edit.xhp\" name=\"Breyta\">Breyta</link>"
#: main_edit.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Þessi valmynd er með skipunum til breytinga á núverandi skjali.</ahelp>"
#: main_edit.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"hd_id3154649\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Punktar\">Punktar</link>"
#: main_edit.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id3154766\n"
"help.text"
msgid "Switches the <emph>Edit Points</emph> mode on and off."
-msgstr ""
+msgstr "Víxlar hamnum <emph>Breyta punktum</emph> á og af."
#: main_edit.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"hd_id3145116\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Festipunktar\">Festipunktar</link>"
#: main_edit.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id3147403\n"
"help.text"
msgid "Switches the <emph>Edit Glue Points</emph> mode on and off."
-msgstr ""
+msgstr "Víxlar hamnum <emph>Breyta festipunktum</emph> á og af."
#: main_edit.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"hd_id3150396\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Gagnasvið\">Gagnasvið</link>"
#: main_edit.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"hd_id3149355\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Tenglar\">Tenglar</link>"
#: main_edit.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"hd_id0914201502131542\n"
"help.text"
msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Hlutur\">Hlutur</link>"
#: main_format.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Sníða"
#: main_format.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_format.xhp\" name=\"Sníða\">Sníða</link>"
#: main_format.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inniheldur skipanir til að sníða útlit og efni skjalsins.</ahelp>"
#: main_format.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"hd_id3147401\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Stafur\">Stafur</link>"
#: main_format.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"hd_id3149941\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Málsgrein\">Málsgrein</link>"
#: main_format.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"hd_id3147299\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Áherslumerki og tölusetning\">Áherslumerki og tölusetning</link>"
#: main_format.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"hd_id3149499\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Staðsetning og stærð\">Staðsetning og stærð</link>"
#: main_format.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"hd_id3154510\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Lína\">Lína</link>"
#: main_format.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"hd_id3149021\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Flötur\">Flötur</link>"
#: main_format.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"hd_id3155961\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Texti\">Texti</link>"
#: main_format.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"hd_id3156286\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Uppsetning á síðu...\">Hönnun skyggnu</link>"
#: main_format.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"hd_id3163827\n"
"help.text"
msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Breyta framsetningu\">Framsetning skyggnu</link>"
#: main_slide.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Skyggna"
#: main_slide.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"hd_id0908201507475698\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Skyggna</link>"
#: main_slide.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_id0908201507482661\n"
"help.text"
msgid "This menu provides slide management and navigation commands."
-msgstr ""
+msgstr "Þessi valmynd gefur skipanir varðandi umsýslu og flakk um skyggnur."
#: main_slide.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Ný skyggna\">Ný skyggna</link>"
#: main_slide.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"hd_id551556824896520\n"
"help.text"
msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Eiginleikar\">Eiginleikar</link>"
#: main_tools.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "Verkfæri"
#: main_tools.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"hd_id3154017\n"
"help.text"
msgid "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_tools.xhp\" name=\"Verkfæri\">Verkfæri</link>"
#: main_tools.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inniheldur stafsetningaráhöld og safn með ýmiskonar myndefni sem þú getur sett inn í skjöl, auk tóla til að sérsníða valmyndir og til að breyta hegðun forritsins.</ahelp>"
#: main_tools.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"hd_id3145590\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"Myndakort\">Myndakort</link>"
#: main_tools.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id3153248\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"Sjálfvirk stafsetningarleiðrétting\">Sjálfvirk stafsetningarleiðrétting</link> skipti út orði."
#: main_tools.xhp
msgctxt ""
@@ -1606,4 +1606,4 @@ msgctxt ""
"hd_id3149130\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Sérsníða\">Sérsníða</link>"
diff --git a/source/is/helpcontent2/source/text/simpress/01.po b/source/is/helpcontent2/source/text/simpress/01.po
index 4fa0c04c3c1..821f46eda76 100644
--- a/source/is/helpcontent2/source/text/simpress/01.po
+++ b/source/is/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-01 13:18+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/is/helpcontent2/source/text/smath.po b/source/is/helpcontent2/source/text/smath.po
index 804df912ec7..e74884ed1ef 100644
--- a/source/is/helpcontent2/source/text/smath.po
+++ b/source/is/helpcontent2/source/text/smath.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: smath\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-11-12 12:23+0100\n"
-"PO-Revision-Date: 2018-11-01 08:16+0000\n"
+"PO-Revision-Date: 2019-05-24 13:05+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <openoffice@openoffice.is>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1541060176.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558703105.000000\n"
#: main0000.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id3143269\n"
"help.text"
msgid "Have a look at <link href=\"https://www.dmaths.org\">www.dmaths.org</link> for a set of additional %PRODUCTNAME Math icons and macros."
-msgstr ""
+msgstr "Skoðaðu <link href=\"https://www.dmaths.org\">www.dmaths.org</link> til að vita meira um viðbótarfjölva og táknmyndir fyrir %PRODUCTNAME Math."
#: main0100.xhp
msgctxt ""
diff --git a/source/is/helpcontent2/source/text/swriter/guide.po b/source/is/helpcontent2/source/text/swriter/guide.po
index bd9fbcab9d8..e0d1cf58dd0 100644
--- a/source/is/helpcontent2/source/text/swriter/guide.po
+++ b/source/is/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,7 +229,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
msgstr ""
#: arrange_chapters.xhp
@@ -237,7 +237,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/is/officecfg/registry/data/org/openoffice/Office/UI.po b/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
index 425b6a5db56..4b79e48ea56 100644
--- a/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ 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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-18 11:36+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Fleiri gagnasvið"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Með flipum"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Hópunarstika"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/is/sc/messages.po b/source/is/sc/messages.po
index ca186e583fa..9700da294bf 100644
--- a/source/is/sc/messages.po
+++ b/source/is/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-18 10:17+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15207,6 +15207,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(einkaaðgangur)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15760,12 +15765,12 @@ msgstr "Sýsla með skilyrtar forsníðingar"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16983,81 +16988,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Gagnaeyðublað"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Loka"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Ný færsla"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nýtt"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Eyða"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Endu_rheimta"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Fyrri færsla"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Næ_sta færsla"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Loka"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Gagnastreymi"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "Slóð:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Sláðu inn URL fyrir upprunalegt skjal á skráasafninu eða Internetinu hérna."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Velja..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Gagnagrunnssvið:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Gagnamiðlari:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Leitarskilyrði:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Upprunastraumur"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18773,32 +18738,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Niðurstöður í:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Gögn"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Dálkar"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Raðir"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Hópað eftir"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Millibil:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Færibreytur"
@@ -18938,167 +18908,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hjálp"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Skrá"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Tilgreindu jaðra fyrir valda reiti."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Auka inndrátt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Minnka inndrátt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Heim"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Heim"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Gagnasvið"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Setja _inn"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Setja ~inn"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Framsetning"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Fra~msetning"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Tölfræði"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Gögn"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Gögn"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Yfi_rfara"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Yfirfa~ra"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "S_koða"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "S~koða"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "M_ynd"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "M~ynd"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Tei_kna"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Tei~kna"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Hlutur"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Hlutur"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Margmiðlun"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Margmiðlun"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Prenta"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Prenta"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Eyðu_blað"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Eyðu~blað"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Verkfæri"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Verkfæri"
@@ -21579,17 +21551,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Leitarniðurstöður"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23459,107 +23441,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Efnisskipanartákn"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Gluggi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Möskvalínur:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Litur:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Birta"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Birta á lituðum reitum"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Fela"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Síðus_kil"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Hjálparlínur _við færslu"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Sjónræn hjálp"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Hlutir/m_yndir:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Línu_rit:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Teiknaðir hlutir:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Birta"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Fela"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Birta"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Fela"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Birta"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Fela"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Hlutir"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Samst_illa blöð"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Aðdráttur"
diff --git a/source/is/scp2/source/ooo.po b/source/is/scp2/source/ooo.po
index 25b579eda93..7551bf6f626 100644
--- a/source/is/scp2/source/ooo.po
+++ b/source/is/scp2/source/ooo.po
@@ -3,8 +3,8 @@ msgid ""
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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-05-03 12:51+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-24 12:58+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\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: 1556887899.000000\n"
+"X-POOTLE-MTIME: 1558702711.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Opna skjal"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (öryggishamur)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/is/scp2/source/winexplorerext.po b/source/is/scp2/source/winexplorerext.po
index 50be6aec1e9..5aa7bf76370 100644
--- a/source/is/scp2/source/winexplorerext.po
+++ b/source/is/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 11:02+0200\n"
-"Last-Translator: Sveinn í Felli <sveinki@nett.is>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 07:39+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
+"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369381140.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Lætur Microsoft Windows Explorer geta sýnt upplýsingar um %PRODUCTNAME skjöl, svo sem smámyndir."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/is/sd/messages.po b/source/is/sd/messages.po
index cecbdd0abe2..faa18a6752d 100644
--- a/source/is/sd/messages.po
+++ b/source/is/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Smella til að opna veftengil:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nefna HTML-hönnun"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Sýna form"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/is/sfx2/messages.po b/source/is/sfx2/messages.po
index 72030ad8214..79f33ebd100 100644
--- a/source/is/sfx2/messages.po
+++ b/source/is/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-05-03 12:53+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-24 13:02+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\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: 1556887982.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558702946.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Fjarlægja eiginleika"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Innfært gildi passar ekki við tilgreinda tegund.\n"
"Gildið verður vistað sem texti."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Stíllinn er þegar til. Skrifa yfir?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Endursetja"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Þetta nafn er nú þegar í notkun."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Þessi stíll er ekki til."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Þennan stíl er ekki hægt að nota sem grunnstíl,\n"
"þar sem það myndi valda tilvísun í hring."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Heitið er þegar í notkun sem sjálfgefinn stíll.\n"
"Veldu eitthvað annað heiti."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Ef þú eyðir þessum stílum mun viðkomandi texti fá á sig stíl af stigi fyrir ofan.\n"
"Ertu alveg viss um að þú viljir eyða þessum stílum?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stílar í notkun: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Uppbygging"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Röng staðfesting á lykilorði"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Senda"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Letur"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Virkja forskoðun"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Skoða athugasemd með útgáfu"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(ekkert heiti sett)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Stílalisti"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Stigskipt"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Fyllihamur"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nýr stíll eftir þessu vali"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Stílaðgerðir"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Uppfæra stíl"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Eru viss um að þú viljir hætta upptöku fjölvans? Öll skref sem þú hefur skráð til þessa munu tapast."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Hætta upptöku"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Verið er að laga sniðmátin til fyrir fyrstu notkun."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Fann engan sjálfgefinn prentara.\n"
"Veldu prentara og reyndu aftur."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Gat ekki ræst prentarann.\n"
"Athugaðu prentarauppsetninguna þína."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Prentari upptekinn"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (skrifvarið)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Á að vista nýju stærðina í skjalinu\n"
"sem er virkt?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Á að vista nýju stærðina í skjalinu\n"
"sem er virkt?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Á að vista nýju stærðina í skjalinu\n"
"sem er virkt?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Ekki er hægt að loka skjalinu\n"
"því prentun er í gangi."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Athugaðu stillingar %PRODUCTNAME eða stillingar tölvupóstforritsins þíns."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Villukóðinn var: $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Villa við að senda póst"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Það er ekki hægt að breyta þessu skjali, hugsanlega vegna skorts á aðgangsheimildum. Viltu vinna með afrit af skjalinu?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Þú getur líka reynt að hunsa læsinguna og opnað skrána til að breyta henni."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "O~pna afrit"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Opna"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (viðgert skjal)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Skjalið er ekki uppfært vinnuafrit frá þjóni."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Hjálpaðu okkur að gera %PRODUCTNAME ennþá betra!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Taktu þátt í verkefninu"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Framlög þín styðja við samfélag okkar í öllum heimshornum."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Styrkja"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Þú ert að nota útgáfu %PRODUCTVERSION af %PRODUCTNAME í fyrsta sinn. Viltu fá að vita hvað sé nýtt við hana?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Útgáfuupplýsingar"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Þetta skjal er opið í lesanlegum ham (skrifvarið)."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Þetta PDF-skjal er opið í lesanlegum ham (skrifvarið) sem gerir kleift að undirrita það."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Flokkunarmerki þessa skjals er %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Þetta skjal verður að vera flokkað áður en hægt er að líma innihald klippispjaldsins."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Þetta skjal er með lægra flokkunarstig en klippispjaldið."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Stig"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Þjóðaröryggi:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Útflutningshömlur:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Búa til vinnuafrit (check-out)"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Breyta skjali"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Skrifa undir skjal"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Þetta skjal er með ógilda undirritun."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Undirritunin var gild, en skjalinu hefur verið breytt"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Undirritunin er í lagi, en ekki var hægt að sannreyna skilríkið."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Undirritunin er í lagi, en skjalið er aðeins undirritað að hluta."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Ekki var hægt að sannreyna skilríkið og er skjalið því aðeins undirritað að hluta."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Þetta skjal er með stafrænni undirritun og undirritunin er gild."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Birta undirritanir"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Loka hliðarspjaldi"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Á spjaldið"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Af spjaldi"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Fleiri valmöguleikar"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Loka hliðarspjaldsramma"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Stillingar hliðarspjalds"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Sérsníðing"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Endurheimta sjálfgefið"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Loka hliðarstiku"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarín"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Býflugnabú"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Bláir sveigir"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Kalkipappír"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Skærblátt"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Glæsirautt"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fókus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Skógarfugl"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Áhrifamikið"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Innblástur"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ljós"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Þægindagrænt"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópólis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Miðnæturblátt"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Náttúrumyndir"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Blýantur"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Píanó"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Kynningarmappa"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Framvinda"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sólsetur"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Gamaldags"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Skært"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Ferilskrá"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Kynningarbréf"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Sjálfgefið"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Nútímalegt"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Nútímalegt viðskiptabréf steinskrift (sans-serif)"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Nútímalegt viðskiptabréf krókaletur (serif)"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Nafnspjald með fyrirtækismerki"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Fjarlægja"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Hreinsa allt"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Lengd lykilorðs"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Lykilorðið sem þú settir inn veldur vandamálum varðandi samhæfingu. Settu inn lykilorð sem er styttra en 52 bæti eða lengra en 55 bæti."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Athugasemd við útgáfu:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Heiti"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tegund"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Gildi"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tegund"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Já"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nei"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "_Bæta við eiginleika"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Heiti"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tegund"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Gildi"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Staðsetning:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tegund:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Breyta _lykilorði"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Sniðmát:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Eiginleikar “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Almennt "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Lýsing"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Sérsniðnir eiginleikar"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Eiginleikar CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Öryggi"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Þessi hugbúnaður var gerður af %OOOVENDOR, byggður á OpenOffice.org, sem aftur er undir klausunni 'Höfundarréttur 2000, 2011 Oracle og/eða tengdir aðilar'. %OOOVENDOR þakkar öllum þátttakendum í verkefninu, endilega skoðaðu http://www.libreoffice.org/ til að fá nánari upplýsingar."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/is/shell/messages.po b/source/is/shell/messages.po
new file mode 100644
index 00000000000..7fd5aa00c5e
--- /dev/null
+++ b/source/is/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-24 13:03+0000\n"
+"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: is\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558703012.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Opna skjal"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Þú ert að opna skjalið\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Viltu opna það til að skoða eða til að breyta?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Skoða"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Breyta"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Hætta við"
diff --git a/source/is/starmath/messages.po b/source/is/starmath/messages.po
index 17547b36c76..56fabb216be 100644
--- a/source/is/starmath/messages.po
+++ b/source/is/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1658,261 +1658,286 @@ msgid "Examples"
msgstr "Dæmi"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Venjulegt"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Skáletrað"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Feitletrað"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "svart"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blátt"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "grænt"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "rautt"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "blágrænt"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "blárautt"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grátt"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "límóna"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "ljósbrúnt"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "dökkblátt"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ólífugrænt"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purpurablátt"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silfur"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "djúp-blágrænt"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "gult"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "fela"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "stærð"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "letur"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "vinstri"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "miðja"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "hægri"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Skipanir"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formúla"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Vista skjal..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION formúla"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "VILLA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Óvæntur bókstafur"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Óvænt teikn"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "bjóst við '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "bjóst við '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "bjóst við '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "bjóst við ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Vinstri og hægri tákn samsvara ekki"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "bjóst við 'fixed', 'sans', eða 'serif' "
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' fylgdi óvænt teikn"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "bjóst við '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Vantar lit"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Bjóst við 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Efnisyfirlit"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titill"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formúlutexti"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Jaðrar"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Stærð"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Upp~runaleg stærð"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Passa á síðu"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Kvörðun"
@@ -1977,6 +2002,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Einindi"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/is/svtools/messages.po b/source/is/svtools/messages.po
index 2f547779734..b9d9bb2a660 100644
--- a/source/is/svtools/messages.po
+++ b/source/is/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-02-18 09:37+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-24 13:00+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1550482656.000000\n"
+"X-POOTLE-MTIME: 1558702850.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Afturkalla: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Endurtaka: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Endurtaka: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Hreinn texti"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Ósniðinn texti (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitamynd (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface lýsiskrá (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Sniðinn texti (RichText - RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Sniðinn texti (RichText - RTF)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME teikningasnið"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitamynd/myndskeið (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Stöðuupplýsingar frá SVX innri tengli"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME tengill (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape bókamerki"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server snið"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Snið Star hlutar"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Forritlingshlutur"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Íforritshlutur"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 hlutur"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 hlutur"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 hlutur"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 hlutur"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 hlutur"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 hlutur"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 hlutur"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw hlutur"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 hlutur"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 hlutur"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 hlutur"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc hlutur"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 hlutur"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 hlutur"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart hlutur"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 hlutur"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 hlutur"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage hlutur"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 hlutur"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 hlutur"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath hlutur"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 hlutur"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 hlutur"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint hlutur"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Strípuð HyperText Markup Language (einfalt HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (breytilegur DDE tengill)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word hlutur"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet hlutur"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Hluti úr Office skjali"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Hluti úr Notes skjali"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "SFX skjal"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 hlutur"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Myndefnishlutur"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer hlutur"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web hlutur"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master hlutur"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw hlutur"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress hlutur"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc hlutur"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart hlutur"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math hlutur"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows lýsiskrá"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Gagnagjafahlutur"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tafla gagnagjafa"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL fyrirspurn"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 samskiptagluggi"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Tengill"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-snið án athugasemda"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG-myndskrá)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Ekki tókst að setja inn hlut %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Ekki tókst að setja inn hlut frá skrá %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Fleiri hlutir"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Óþekktur uppruni"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Heiti"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Stærð"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Breytt þann"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tegund"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bæti"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Röð: %1, Dálkur: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tegund: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Mappa"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Skrá"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Tómt gagnasvið"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Tölur og bókstafir"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Venjulegt"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Stafamengi"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Orðasafn"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Strik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Stofn"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Símaskrá"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Hljóðfræðitákn (bók- og tölustafir fyrst)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Hljóðfræðitákn (bók- og tölustafir síðast)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Tölur og bókstafir"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Orðasafn"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Stofn"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Strik"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Hljóðfræðitákn (bók- og tölustafir fyrst, hópað eftir atkvæðum)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Hljóðfræðitákn (bók- og tölustafir fyrst, hópað eftir samhljóðum)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Hljóðfræðitákn (bók- og tölustafir síðast, hópað eftir atkvæðum)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Hljóðfræðitákn (bók- og tölustafir síðast, hópað eftir samhljóðum)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Í dag"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Engar"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Létt"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Grannt skáletur"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Venjulegt"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Skáletrað"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Feitletrað"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Feit- og skáletrað"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Svart"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Svart- og skáletrað"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Bók"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Hallandi skáletur"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Þjappað "
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Þjappað feitletrað"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Þjappað feit- og skáletrað"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Þjappað feitletrað hallandi"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Þjappað skáletur"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Þjappað hallandi"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Mjög létt"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Mjög létt skáletrað"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Hallandi"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Næstum-feitletrað"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Næstum-feitletrað skáletur"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Sama letrið verður notað á prentaranum og skjánum."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Þetta er prentaraletur. Það sem þú sérð á skjánum getur verið öðruvísi."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Reynt verður að herma eftir leturstílnum eða að nota stíl sem kemst næst því að samsvara."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Letrið hefur ekki verið sett upp. það letur sem kemst næst verður notað."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Velja..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Færa heim"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Fjarlægja"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Færa til hægri"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Færa til enda"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Bæta við"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Lárétt reglustika"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Lóðrétt reglustika"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bita litmörk"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bita litflétting"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bita grátóna"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bita litir"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 bita grátóna"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bita litir"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bita raunlitir"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Þessi mynd þarfnast um %1 KB af minni."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Þessi mynd þarfnast um %1 KB af minni, skráarstærðin er %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Skráarstærðin er %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "vél"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "gátt"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Önnur CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Tilbúinn"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Í bið"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Eyðing í bið"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Upptekinn"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Frumstilling"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Bið"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Upphitun"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Í vinnslu"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Prentun"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Ótengdur"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Villa"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Þjónn óþekktur"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Pappírsstífla"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ekki nóg til af pappír"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Handvirk mötun"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Pappírsvandamál"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Í/F virkt"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Frálagshólf fullt"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Lítið prentduft"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Prentduft á þrotum"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Eyða síðu"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Notandinn þarf að taka til hendinni"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ekki nóg minni"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Lokið er opið"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Orkusparnaðarhamur"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Sjálfgefinn prentari"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d skjöl"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Ljúka"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Á~fram >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Til ba~ka"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Skref"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ekkert>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Fyrirtæki"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Deild"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Skírnarnafn"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Eftirnafn"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Gata"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Póstnúmer"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Borg"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Starfsheiti"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Staðsetning"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Heimilisf. eyðublað"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Upphafsstafir"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Viðbótar-niðurlag"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Heimasími"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Vinnusími"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
-msgstr ""
+msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Tölvupóstfang"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Athugasemd"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Sérsniðið 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Sérsniðið 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Sérsniðið 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Sérsniðið 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Auðkenni"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Staða"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Skrifst.sími"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Símboði"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Farsími"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Annað símnr."
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Dagatal"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Bjóða"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ fyrir $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME krefst Java keyrsluumhverfis (JRE) til að framkvæma þetta verk. Settu upp JRE og endurræstu %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME krefst %BITNESS-bita Java keyrsluumhverfis (JRE) til að framkvæma þetta verk. Settu upp JRE og endurræstu %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME krefst Oracle Java Development Kit (JDK) á macOS 10.10 eða nýrra til að framkvæma þessa aðgerð. Settu það upp og endurræstu síðan %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Uppsetningu %PRODUCTNAME hefur verið breytt. Farðu í %PRODUCTNAME - Valkostir - %PRODUCTNAME - Nánar, veldu þar Java keyrsluumhverfið sem %PRODUCTNAME á að nota."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Uppsetningu %PRODUCTNAME hefur verið breytt. Farðu í Verkfæri - Valkostir - %PRODUCTNAME - Nánar, veldu þar Java keyrsluumhverfið sem %PRODUCTNAME á að nota."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME krefst Java keyrsluumhverfis (JRE) til að framkvæma þetta verk. Valið JRE er gallað. Veldu einhverja aðra útgáfu eða settu upp nýtt JRE sem þú velur með því að fara í %PRODUCTNAME - Valkostir - %PRODUCTNAME - Nánar."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME krefst Java keyrsluumhverfis (JRE) til að framkvæma þetta verk. Valið JRE er gallað. Veldu einhverja aðra útgáfu eða settu upp nýtt JRE sem þú velur með því að fara í Verkfæri - Valkostir - %PRODUCTNAME - Nánar."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE nauðsynlegt"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Veldu JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE er gallað"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Kóði"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Bókamerkjaskrá"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Myndefni"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Stillingaskrá"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Forrit"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Gagnagrunnstafla"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Kerfisskrá"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word skjal"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Hjálparskrá"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-skjal"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Safnskrá"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Annálsskrá"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice gagnagrunnur"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 stýriskjal"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice mynd"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Textaskrá"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Tengill"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 sniðmát"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel skjal"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel sniðmát"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Fjölskipanaskrá"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Skrá"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Mappa"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Textaskjal"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Töflureiknir"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Kynning"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Teikning"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-skjal"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Stýriskjal"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formúla"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Gagnagrunnur"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 sniðmát fyrir töflureikniskjal"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 sniðmát fyrir teikningu"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 sniðmát fyrir glærukynningu"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 sniðmát fyrir textaskjal"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Staðbundið drif"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskadrif"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM drif"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Nettenging"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint skjal"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint sniðmát"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint glærukynning"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 formúla"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 graf"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 teikning"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 töflureikniskjal"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 glærukynning"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 textaskjal"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 stýriskjal"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML skjal"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument gagnagrunnur"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument teikning"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument formúla"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument stýriskjal"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument glærukynning"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument töflureikniskjal"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument textaskjal"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument sniðmát fyrir töflureikniskjal"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument sniðmát fyrir teikningu"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument sniðmát fyrir glærukynningu"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument sniðmát fyrir textaskjal"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME viðbót"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell stafsetningaryfirferð"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen orðskipting"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes samheitasafn"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Listi yfir hunsuð orð"
@@ -4127,7 +4129,7 @@ msgstr "Iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Enska (Sambía)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
@@ -4667,7 +4669,7 @@ msgstr "Til að breytingar á OpenCL taki gildi, þá verður að endurræsa %PR
#: svtools/uiconfig/ui/restartdialog.ui:250
msgctxt "restartdialog|reason_threading"
msgid "For the multi-threaded calculation changes to take effect, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Til að marg-þráða útreikningar taki gildi, þá verður að endurræsa %PRODUCTNAME."
#: svtools/uiconfig/ui/restartdialog.ui:265
msgctxt "restartdialog|reason_mscompatible_formsmenu"
diff --git a/source/is/svx/messages.po b/source/is/svx/messages.po
index 55381dc10e5..d25d63e397a 100644
--- a/source/is/svx/messages.po
+++ b/source/is/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-02-18 09:28+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-24 12:59+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\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: 1550482081.000000\n"
+"X-POOTLE-MTIME: 1558702791.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -5817,7 +5817,7 @@ msgstr "Skrifa yfir"
#: include/svx/strings.hrc:1230
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
-msgstr ""
+msgstr "Setja inn"
#: include/svx/strings.hrc:1231
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Vinstri-til-hægri (lóðrétt)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Neðan-og-upp, vinstri-til-hægri (lóðrétt)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Tiltaktu lóðrétta hliðrun frá miðju fyrir stíl litstiguls. 50% er lóðrétt miðja."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Útlínuritill"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Staðfesta"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Vinnusvæði"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Velja"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rétthyrningur"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Sporbaugur"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Marghyrningur"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Breyta punktum"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Færa punkta"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Setja inn punkta"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Eyða punktum"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Sjálfvirk útlína"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Afturkalla "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Gera aftur"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Litaplokkari"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Litmörk"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Síðufótur"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Myndhlutakortaritill"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Staðfesta"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Opna..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Vista..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Loka"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Velja"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rétthyrningur"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Sporbaugur"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Marghyrningur"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Frjáls marghyrningur"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Breyta punktum"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Færa punkta"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Setja inn punkta"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Eyða punktum"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Afturkalla "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Gera aftur"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Virkt"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Fjölvi..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Eiginleikar..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Vistfang:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Rammi:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Texti:"
@@ -13368,12 +13373,12 @@ msgstr "Athugasemd"
#: svx/uiconfig/ui/redlineviewpage.ui:146
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Breytingar"
#: svx/uiconfig/ui/redlineviewpage.ui:245
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Breytingar"
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
@@ -14011,7 +14016,7 @@ msgstr "Stíll línuenda"
#: svx/uiconfig/ui/sidebarlists.ui:22
msgctxt "sidebarlists|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Áherslumerki og tölusetning"
#: svx/uiconfig/ui/sidebarparagraph.ui:26
msgctxt "sidebarparagraph|numberbullet|tooltip_text"
diff --git a/source/is/sw/messages.po b/source/is/sw/messages.po
index 1e447c6c5a5..bcfa62e0362 100644
--- a/source/is/sw/messages.po
+++ b/source/is/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-02-18 09:22+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Breyta titli hlutar $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Breyta lýsingu hlutar $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hjálp"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Skrá"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Heim"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Heim"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Setja _inn"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Setja ~inn"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Framsetning"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Fra~msetning"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Tilví_sanir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Tilví~sanir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Yfi_rfara"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Yfirfa~ra"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "S_koða"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Skoða"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tafla"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tafla"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "M_ynd"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "M~ynd"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Tei_kna"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Tei~kna"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Hlutur"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Hlutur"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Margmiðlun"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Margmiðlun"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Prenta"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Prenta"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Eyðu_blað"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Eyðu~blað"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Verkfæri"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Verkfæri"
@@ -12160,152 +12160,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "S_krá"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Setja _inn"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Textaskrið"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Framsetning"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Tilví_sanir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Yfi_rfara"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "S_koða"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Ta_fla"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Mynd"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Teikna"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Hlutur"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Margmiðlun"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Prenta"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Verkfæri"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13372,8 +13372,8 @@ msgstr "Víkka orðabil á línum með handvirkum línuskilum í hliðjöfnuðum
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Vernda eyðublað"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Efnisyfirlit, atriðaskrá eða heimildaskrá"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Forskoðun"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Forskoðun"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tegund"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Færslur"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stílar"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Dálkar"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Bakgrunnur"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Forskoðun"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Sti_g"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tegund"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Br_eyta..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titill:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tegund:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Efnisyfirlit"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Efni í stafrófsröð"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Yfirlit yfir töflur"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Skilgreint af notanda"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tafla yfir hluti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Heimildaskrá"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Varið gegn handvirkum breytingum"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tegund og titill"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Fyrir:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Allt skjalið"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Kafla"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Meta upp að stigi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Búa til efnisyfirlit eða atriðaskrá"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Efnisskipan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Yfirlitsmerki"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Töflur"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Te_xtarammar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Myndefni"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE hlutir"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Nota stig frá upprunalegum kafla"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Aukastílar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stíl_ar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Úthluta stílum..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Skýringatextar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Heiti hluta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Flokkur:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Birting:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Tilvitnanir"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Flokkur og númer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Skýringartexti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Búa til út frá"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Búa til út frá eftirtöldum hlutum"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "S_vigar:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Tölusettar færslur"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[ekkert]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Snið færslnanna"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Sameina eins færslur"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Sameina eins færslur með p eða _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Sameina við -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Háð há/lágstöfum"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Setja færslur sjálfvirkt í hástafi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Lyklar sem aðskildar færslur"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Orðstöðuly_klaskrá"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Skrá"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Valkostir"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Tungumál:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tegund lykils:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Röðun"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Sti_g"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Málsgreinar_stílar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Sjálfgefið"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Bre_yta"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Úthlutun"
diff --git a/source/it/cui/messages.po b/source/it/cui/messages.po
index 8846b473930..0806f94f6ec 100644
--- a/source/it/cui/messages.po
+++ b/source/it/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-01-12 10:59+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Digita un indirizzo di tema valido o un termine per la ricerca."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Non impostare bordi"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Imposta solo bordi esterni"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Imposta bordo esterno e righe orizzontali"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Imposta bordo esterno e tutte le righe interne"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Imposta il bordo esterno senza modificare le righe interne"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Imposta solo linee diagonali"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Imposta tutti e quattro i bordi"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Imposta solo il bordo sinistro e destro"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Imposta il bordo superiore e inferiore"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Imposta solo il bordo sinistro"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Imposta bordi superiori e inferiori e tutte le linee interne"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Imposta bordi sinistri e destri e tutte le linee interne"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Nessuna ombreggiatura"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Ombreggiatura a destra in basso"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Ombreggiatura a destra in alto"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Ombreggiatura a sinistra in basso"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Ombreggiatura a sinistra in alto"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Firmato da: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Informazioni su %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Riconoscimenti"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Sito _web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Versione locale: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Lingua interfaccia: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Vedi registro: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME è una suite per ufficio moderna e di facile utilizzo per la redazione di testi, fogli elettronici, presentazioni e altro ancora."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000 - 2019 Contributori di LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice era basato su OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME deriva da LibreOffice che era basato su OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Questo rilascio è stato fornito da %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Sostituisci"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Sostituis_ci"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "con:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Solo _testo"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Lunghezza minima della parola"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Proprietà"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "F_rame:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nome:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Testo alternativo:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Descrizione:"
@@ -9020,80 +9180,80 @@ msgstr "Mostra la finestra a comparsa \"La guida locale non è installata\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Guida"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Usa finestre di dialogo di %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Finestre di dialogo apri/salva"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Usa le finestre di _dialogo di %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Finestre di dialogo di stampa"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Dopo la stampa cambia lo stato in \"documento modificato\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stato del documento"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Considera come anno tra "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "e "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Anno (due cifre)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Raccogli i dati di utilizzo e inviali a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Aiutaci a migliorare %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Carica %PRODUCTNAME all'avvio del sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Abilita QuickStart nell'area di notifica"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "QuickStart di %PRODUCTNAME"
@@ -10966,25 +11126,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Tema preinstallato"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tema personale"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Oppure selezionalo dai temi installati tramite le estensioni:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Temi di Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11611,102 +11756,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opzioni di sicurezza"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Seleziona il tema di Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Termine di ricerca o indirizzo"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "C_ategoria:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Astratto"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Iniziative"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film e tv"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Vacanze"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musica"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natura"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Altro"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Paesaggio"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Stagioni"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Colori uniformi"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Siti web"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Consigliati"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12713,27 +12762,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/it/extensions/messages.po b/source/it/extensions/messages.po
index 532c3535895..fda295943d4 100644
--- a/source/it/extensions/messages.po
+++ b/source/it/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-12 10:58+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Assegnazione colonne per la tabella “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Abbrevia_zione"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autore/i"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Editore"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Capitolo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Redattore"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Anno"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tito_lo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "In_dirizzo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pa_gina/e"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_izione"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Titolo del li_bro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "T_ipo di edizione"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zzazione"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_uzione"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versità"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Ti_po di relazione"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mese"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Ri_vista"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Num_ero"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_rie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Ann_otazione"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Campo utente _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Campo utente _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Campo utente _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Campo utente _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Campo utente _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nomi colonna"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Indica un nome per il nuovo tipo di dati:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Collega campi"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suggerisci"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "I formulari secondari possono essere utilizzati per mostrare dati dettagliati sul record attuale del formulario principale. A questo scopo, puoi specificare quali colonne del formulario secondario corrispondono alle colonne di quello principale."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etichetta"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etichetta"
diff --git a/source/it/helpcontent2/source/auxiliary.po b/source/it/helpcontent2/source/auxiliary.po
index cea36aa06ec..317feea2bb9 100644
--- a/source/it/helpcontent2/source/auxiliary.po
+++ b/source/it/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-14 13:12+0000\n"
"Last-Translator: Paolo Pelloni <info@paolopelloni.it>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Informazioni generali"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Presentazioni e disegni (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Barre degli strumenti"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Disegni (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menu"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Barre degli strumenti"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Oggetti, immagini e bitmap"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Gruppi e livelli"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Testo nelle presentazioni e nei disegni"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sbasic/guide.po b/source/it/helpcontent2/source/text/sbasic/guide.po
index 600a4e7dc13..e2972b8d792 100644
--- a/source/it/helpcontent2/source/text/sbasic/guide.po
+++ b/source/it/helpcontent2/source/text/sbasic/guide.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: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-12-09 11:04+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Confrontate Access2Base con Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Visualizzare una finestra di dialogo usando un codice di programma"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>Modulo/finestra di dialogo;scambio</bookmark_value><bookmark_value>Finestra di dialogo;codice per mostrare finestre di dialogo (esempio)</bookmark_value><bookmark_value>Esempio;codice per mostrare finestre di dialogo</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sbasic/python.po b/source/it/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/it/helpcontent2/source/text/sbasic/python.po
+++ b/source/it/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/it/helpcontent2/source/text/sbasic/shared.po b/source/it/helpcontent2/source/text/sbasic/shared.po
index 240a8b2a7c2..b0e3836843f 100644
--- a/source/it/helpcontent2/source/text/sbasic/shared.po
+++ b/source/it/helpcontent2/source/text/sbasic/shared.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: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-12-09 17:36+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Guida di $[officename] Basic\">Guida di %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sbasic/shared/03.po b/source/it/helpcontent2/source/text/sbasic/shared/03.po
index 59d9c0e7b9c..638b8010205 100644
--- a/source/it/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/it/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-12-09 11:04+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr "Funzioni e subroutine per il controllo dei moduli."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/it/helpcontent2/source/text/scalc/01.po b/source/it/helpcontent2/source/text/scalc/01.po
index 5a7e4ad0c57..da213a6b9b2 100644
--- a/source/it/helpcontent2/source/text/scalc/01.po
+++ b/source/it/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-01-09 12:53+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -40950,8 +40950,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Individua il file contenente i dati da inserire.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40982,8 +40982,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Inserire l'URL o il nome del file contenente i dati da inserire, quindi premere Invio.</ahelp> Solo allora l'URL verrà richiesto dalla rete o dal file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41006,8 +41006,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Selezionare la tabella o l'area dati da inserire.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46294,8 +46294,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Consente di specificare l'area di celle da consolidare con le aree di celle elencate nella casella <emph>Aree di consolidamento</emph>. Selezionare un'area di celle in un foglio, quindi fare clic su <emph>Aggiungi</emph>. È possibile anche selezionare il nome di una cella predefinita dall'elenco <emph>Area dati sorgente</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/schart/00.po b/source/it/helpcontent2/source/text/schart/00.po
index 605bd7f11fd..a358961b61d 100644
--- a/source/it/helpcontent2/source/text/schart/00.po
+++ b/source/it/helpcontent2/source/text/schart/00.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-06-07 14:44+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Nella finestra di dialogo Tipo di grafico di un grafico a linee o un grafico XY che visualizza linee, scegliete Smorza nel menu a tendina del tipo Linee, poi premete il pulsante Proprietà.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">Nella finestra di dialogo Tipo di grafico di un grafico a linee o un grafico XY che visualizza linee, scegliete A gradini nel menu a tendina del tipo Linee, poi premete il pulsante Proprietà.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/it/helpcontent2/source/text/shared/00.po b/source/it/helpcontent2/source/text/shared/00.po
index c0a92812db8..a881e3fb40a 100644
--- a/source/it/helpcontent2/source/text/shared/00.po
+++ b/source/it/helpcontent2/source/text/shared/00.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-12-16 10:51+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Scegliete <switchinline select=\"sys\"><casein
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Personalizzazione</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/it/helpcontent2/source/text/shared/01.po b/source/it/helpcontent2/source/text/shared/01.po
index 27c1c53964f..4430c798680 100644
--- a/source/it/helpcontent2/source/text/shared/01.po
+++ b/source/it/helpcontent2/source/text/shared/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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-09 22:42+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/it/helpcontent2/source/text/shared/02.po b/source/it/helpcontent2/source/text/shared/02.po
index 4288fdde67b..64696392034 100644
--- a/source/it/helpcontent2/source/text/shared/02.po
+++ b/source/it/helpcontent2/source/text/shared/02.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-12 20:13+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.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: 1547324000.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifica se la selezione di testo su un controllo rimane attiva quando il punto focale non si trova più sul controllo.</ahelp> Se impostate <emph>Nascondi la selezione</emph> su \"No\", il testo selezionato rimane tale anche quando il punto focale non è più sul controllo che contiene il testo."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/guide.po b/source/it/helpcontent2/source/text/shared/guide.po
index 1760087b103..d679ce4d1d6 100644
--- a/source/it/helpcontent2/source/text/shared/guide.po
+++ b/source/it/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-09 22:50+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/it/helpcontent2/source/text/shared/optionen.po b/source/it/helpcontent2/source/text/shared/optionen.po
index 1c4063d09fd..345db0ee759 100644
--- a/source/it/helpcontent2/source/text/shared/optionen.po
+++ b/source/it/helpcontent2/source/text/shared/optionen.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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-02 21:55+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "Per ulteriori informazioni su OpenCL, visitate il <link href=\"https://www.khronos.org/opencl/\">sito di OpenCL</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalizzazione"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>Tema;impostare le opzioni</bookmark_value><bookmark_value>Impostare opzioni;temi</bookmark_value><bookmark_value>Personalizzazione;temi di Mozilla Firefox</bookmark_value><bookmark_value>Personas;personalizzazione</bookmark_value><bookmark_value>Personalizzazione;personas</bookmark_value><bookmark_value>Mozilla Firefox, temi di;personalizzazione</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalizzazione</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Con gli stessi temi disponibili per Mozilla Firefox, potete personalizzare la vostra copia di %PRODUCTNAME. Il tema scelto sarà visualizzato nello sfondo della barra dei menu e della barra degli strumenti superiore e inferiore."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "I temi di Mozilla Firefox sono disponibili nel sito web di Mozilla a questo indirizzo: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Tutti i temi compatibili con Firefox funzioneranno anche con %PRODUCTNAME. Tuttavia, non tutti i temi daranno risultati estetici ottimali: se troppo ricco di dettagli, il tema potrebbe interferire con la leggibilità delle icone e dei menu."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Firefox Themes:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Sono disponibili le seguenti opzioni:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Aspetto predefinito, non usare i temi"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Lo sfondo delle barre degli strumenti eredita le impostazioni dello sfondo del gestore finestre del proprio desktop.</ahelp> Questa è l'impostazione predefinita di %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Tema preinstallato"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Scegliere questa opzione per utilizzare uno dei temi preinstallati.</ahelp> In aggiunta alle opzioni predefinite, il vostro amministratore di sistema potrebbe aver aggiunto un tema personalizzato durante l'installazione di %PRODUCTNAME. Questa opzione permette di visualizzarlo."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Tema personale"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Scegliere questa opzione per aprire la finestra di dialogo \"Seleziona il tema di Firefox\" e accedere a una vasta gamma di temi.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Seleziona il tema di Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "In questa finestra di dialogo potete installare un tema specifico o dare una scorsa ad altri temi interessanti all'interno del sito web di Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Cerca"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Fornire un termine per la ricerca di temi dal sito delle estensioni di Mozilla, oppure incollare l'indirizzo di un tema per recuperare in modo diretto un tema specifico.</ahelp> Per ottenere l'indirizzo, utilizzate il vostro browser per navigare fino alla pagina web del tema, copiate l'URL visualizzato nella barra degli indirizzi, poi incollatelo nella casella di ricerca contenuta nella finestra di dialogo. Fate clic su <item type=\"menuitem\">Cerca</item> oppure premete il tasto <item type=\"keycode\">Invio</item> per scaricarlo e installarlo in %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Esplorare i temi per categoria"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Mostra una scelta casuale di nove temi basata sulle categorie visualizzate nei pulsanti.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Fate clic su uno dei cinque pulsanti per visualizzare nell'area delle immagini sottostante una scelta casuale di nove temi che corrispondono alla categoria indicata nel pulsante. "
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Fate clic sull'immagine relativa a un tema premete il pulsante <item type=\"menuitem\">OK</item> per selezionarlo."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/it/helpcontent2/source/text/simpress/01.po b/source/it/helpcontent2/source/text/simpress/01.po
index e990327d37e..9c9daaf2862 100644
--- a/source/it/helpcontent2/source/text/simpress/01.po
+++ b/source/it/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-14 22:13+0000\n"
"Last-Translator: Paolo Pelloni <info@paolopelloni.it>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/it/helpcontent2/source/text/swriter/guide.po b/source/it/helpcontent2/source/text/swriter/guide.po
index 29921f94825..67f3687cf39 100644
--- a/source/it/helpcontent2/source/text/swriter/guide.po
+++ b/source/it/helpcontent2/source/text/swriter/guide.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: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-12-09 22:36+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -230,16 +230,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Nella <emph>barra standard</emph>, fate clic sull'icona <emph>Navigatore</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icona</alt></image> per aprire il <emph>Navigatore</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "Nel <emph>Navigatore</emph>, fate clic sull'icona <emph>Vista contenuto</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icona</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -262,8 +262,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Fate clic su un'intestazione nell'elenco del <emph>Navigatore</emph>, poi fate clic sull'icona <emph>Alza il capitolo</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icona</alt></image> o <emph>Abbassa il capitolo</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icona</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -294,8 +294,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Fate clic sull'icona <emph>Alza di un livello</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icona</alt></image> o <emph>Abbassa di un livello</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icona</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -310,8 +310,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Fate clic sull'icona <emph>Livelli di intestazione visualizzati</emph><image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icona</alt></image> e selezionate un numero dall'elenco."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po b/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
index 554c7d092d0..22e8fe56ed8 100644
--- a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/it/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-09 08:13+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Altri campi"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "A schede"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Barra raggruppata"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/it/sc/messages.po b/source/it/sc/messages.po
index d7709055cce..9da96abdef4 100644
--- a/source/it/sc/messages.po
+++ b/source/it/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-14 21:30+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15214,6 +15214,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(accesso esclusivo)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15767,12 +15772,12 @@ msgstr "Gestisci formattazione condizionale"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16990,81 +16995,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulario dati"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "C_hiudi"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nuovo record di dati"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nuovo"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Elimina"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Ripristina"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Record _precedente"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Record _successivo"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "C_hiudi"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Flussi di dati dal vivo"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Inserisci qui l'URL del documento sorgente presente nel sistema locale di file o in Internet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Sfoglia..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Area del database:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Fornitore dati:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Stringa di ricerca:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Flusso sorgente"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18780,32 +18745,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Risultato in:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Dati"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Colonne"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Righe"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Raggruppamento per"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervallo:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametri"
@@ -18945,167 +18915,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Aiuto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~File"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Specifica i bordi delle celle selezionate."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Aumenta il rientro"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Riduci il rientro"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inizio"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Inizio"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Cam_po"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserisci"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserisci"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Layout"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Layout"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistiche"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dati"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dati"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisione"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisione"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualizza"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualizza"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imma_gine"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imma~gine"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Disegno"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Oggetto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Oggetto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Stampa"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Stampa"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "S_trumenti"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "S~trumenti"
@@ -21586,17 +21558,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Risultati di una ricerca"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23466,107 +23448,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Punti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Finestra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Linee della _griglia:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Colore:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Mostra in celle colorate"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Nascondi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Interruzioni _pagina"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Linee guida _durante lo spostamento"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Supporti visivi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "O_ggetti/immagini:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "G_rafici:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Oggetti di d_isegno:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Nascondi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Nascondi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Mostra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Nascondi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Oggetti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_incronizza fogli"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoom"
diff --git a/source/it/scp2/source/ooo.po b/source/it/scp2/source/ooo.po
index a735630f165..271ea217a0c 100644
--- a/source/it/scp2/source/ooo.po
+++ b/source/it/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-25 10:44+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
@@ -35,6 +35,14 @@ msgstr "Apri documento"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/it/scp2/source/winexplorerext.po b/source/it/scp2/source/winexplorerext.po
index 9f421289e93..f163c885380 100644
--- a/source/it/scp2/source/winexplorerext.po
+++ b/source/it/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 23:00+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:43+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369352615.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permette di mostrare varie informazioni sui documenti di %PRODUCTNAME in Esplora risorse, ad esempio l'anteprima in forma di miniature."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/it/sd/messages.po b/source/it/sd/messages.po
index 586976af44a..68ea039a93c 100644
--- a/source/it/sd/messages.po
+++ b/source/it/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-14 21:31+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Clic per aprire il collegamento ipertestuale: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nome struttura HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_File"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Aiuto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~File"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inizio"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inizio"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Campo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserisci"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserisci"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Pagina"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Pagina"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "~Revisione"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisione"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualizza"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualizza"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_esto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~esto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabella"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabella"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converti"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imma_gine"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imma~gine"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Disegno"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Disegno"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oggetto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oggetto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "S_trumenti"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "S~trumenti"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Mostra le forme"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_File"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Aiuto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~File"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inizio"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inizio"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Campo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserisci"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserisci"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Diapositiva"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "~Diapositiva"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Pre_sentazione"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Pre~sentazione"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisione"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisione"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualizza"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualizza"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabella"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabella"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converti"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Imma_gine"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imma~gine"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Disegno"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Disegno"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oggetto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oggetto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "S_trumenti"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "S~trumenti"
diff --git a/source/it/sfx2/messages.po b/source/it/sfx2/messages.po
index 27b25d36220..752685b8faf 100644
--- a/source/it/sfx2/messages.po
+++ b/source/it/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-08 12:08+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " A: %1 M: %2 G: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Rimuovi proprietà"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Il valore inserito non corrisponde al tipo specificato.\n"
"Il valore sarà memorizzato come testo."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Lo stile esiste già. Vuoi sovrascriverlo?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Ripristina"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Questo nome è già utilizzato."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Questo stile non esiste."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Questo stile non può essere usato come stile di base\n"
"perché creerebbe un riferimento ricorsivo."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Il nome è già usato da uno stile predefinito.\n"
"Scegli un altro nome."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Se elimini questi stili il testo ritornerà allo stile genitore.\n"
"Vuoi ancora eliminare questi stili?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stili in uso: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigatore"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Conferma errata della password"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Invia"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Carattere"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Mostra anteprime"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Visualizza commento versioni"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(nessun nome impostato)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Elenco stili"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Gerarchico"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Modo riempimento"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nuovo stile dalla selezione"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Aggiorna stile"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Vuoi davvero annullare la registrazione? Tutti i passaggi registrati fino a questo punto andranno persi."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Annulla registrazione"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Inizializzazione dei modelli per il primo utilizzo del programma."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Stampante predefinita non trovata.\n"
"Scegli una stampante e riprova."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Impossibile avviare la stampante.\n"
"Verifica la sua configurazione."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Stampante occupata"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (sola lettura)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Vuoi salvare le nuove impostazioni nel\n"
"documento attivo?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Trasferire le nuove impostazioni nel documento\n"
"attivo?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Vuoi salvare le nuove impostazioni nel\n"
"documento attivo?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Non è possibile chiudere il documento poiché\n"
"c'è una stampa in corso."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,7 +1139,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1155,17 +1150,17 @@ msgstr ""
"\n"
"Il codice di errore è $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Errore durante l'invio del messaggio"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Questo documento non può essere modificato, forse per mancanza delle autorizzazioni di accesso richieste. Vuoi modificare una copia del documento?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1176,349 +1171,359 @@ msgstr ""
"\n"
"Puoi anche ignorare il blocco e aprire comunque il file per modificarlo."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Apri ~copia"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Apri"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (documento riparato)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Questo documento non è stato scaricato dal server."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Aiutaci a rendere %PRODUCTNAME sempre migliore!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Partecipa"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Le tue donazioni sostengono la nostra comunità mondiale."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Fai una donazione"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Questo documento è aperto in modo sola lettura."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Questo PDF è aperto in modo sola lettura per consentire di firmare il file esistente."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "L'etichetta di classificazione di questo documento è %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Questo documento deve essere classificato prima che gli appunti possano essere incollati."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Questo documento ha un livello di classificazione inferiore agli appunti."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Livello"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Sicurezza nazionale:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Controllo esportazione:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Scarica"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Modifica documento"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Firma documento"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Questo documento possiede una firma non valida."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "La firma era valida ma il documento è stato modificato"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "La firma è valida ma il certificato non può essere convalidato."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "La firma è valida ma il documento è firmato solo parzialmente."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Il certificato non può essere convalidato e il documento è firmato solo parzialmente."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Questo documento è firmato digitalmente e la firma è valida."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Mostra le firme"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Chiudi riquadro"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Aggancia"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Sgancia"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Altre opzioni"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Chiudi la barra laterale"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Impostazioni della barra laterale"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalizzazione"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Ripristina valori predefiniti"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Chiudi la barra laterale"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarina"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Alveare"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Curva del blu"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Planimetrie"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Azzurro brillante"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Rosso elegante"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Foresta verde"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Ispirazione"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Luci"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verde rigoglioso"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropoli"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Blu notte"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Matita"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Avanzamento"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Tramonto"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivido"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Curriculum"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Predefinito"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Lettera commerciale moderna senza grazie"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Lettera commerciale moderna con grazie"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Biglietto da visita con logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Rimuovi"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Pulisci tutto"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Lunghezza della password"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "La password che hai inserito crea problemi d'interoperabilità. Digita una password che sia più corta di 52 byte o più lunga di 55."
@@ -1863,32 +1868,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Commento versione:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nome"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipo"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valore"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Sì"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "No"
@@ -1898,17 +1888,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Aggiungi _proprietà"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nome"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valore"
@@ -2038,17 +2028,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Posizione:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipo:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Cambia _password"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Modello:"
@@ -2058,27 +2048,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Proprietà di “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Generale "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descrizione"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Proprietà personalizzate"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Proprietà CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Sicurezza"
@@ -2301,6 +2291,26 @@ msgstr ""
"\n"
"Questo prodotto è stato creato da %OOOVENDOR, e basato su OpenOffice.org, che è Copyright 2000, 2011 Oracle e/o loro affiliati. %OOOVENDOR ringrazia tutti i membri della comunità, consultate http://www.libreoffice.org/ per più dettagli."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/it/shell/messages.po b/source/it/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/it/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/it/starmath/messages.po b/source/it/starmath/messages.po
index 7d3719af1d6..13479d0f9df 100644
--- a/source/it/starmath/messages.po
+++ b/source/it/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Esempi"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Corsivo"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Grassetto"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "nero"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blu"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "rosso"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ciano"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grigio"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "limetta"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "granata"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "blu marina"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliva"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "viola"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "argento"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "foglia di tè"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "giallo"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "nascondi"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "dimensione"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "carattere"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "a sinistra"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "al centro"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "a destra"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comandi"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Il documento viene salvato..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION - Formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERRORE: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Carattere inatteso"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Parametro inatteso"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Atteso '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Atteso '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Atteso '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Atteso ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "I simboli destro e sinistro non corrispondono"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Attesi 'fixed', 'sans' o 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' seguito da un parametro inatteso"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "L'allineamento doppio non è permesso"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Gli apici/pedici doppi non sono permessi"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Atteso '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Atteso colore"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Atteso 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contenuto"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titolo"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Testo ~formula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Margini"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Dimensione"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Dimensione o~riginale"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Adatta alla ~pagina"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Scala"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementi"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/it/svtools/messages.po b/source/it/svtools/messages.po
index f32c46ab602..7c82dbe0adf 100644
--- a/source/it/svtools/messages.po
+++ b/source/it/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-12-29 20:15+0000\n"
"Last-Translator: Paolo Pelloni <info@paolopelloni.it>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1546114531.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Annulla: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Ripristina: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Ultimo comando: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Testo non formattato"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Testo non formattato (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Immagine bitmap (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Metafile Graphics Device Interface (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Formattazione rich-text (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Formattazione rich-text (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formato di disegno %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Animazione/bitmap StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Info stato da collegamento interno Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Collegamento di %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Segnalibro Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formato server Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formato oggetto Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Oggetto applet"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Oggetto plugin"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Oggetto StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Oggetto StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Oggetto StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Oggetto StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Oggetto StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Oggetto StarWriter/Global 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Oggetto StarWriter/Global 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Oggetto StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Oggetto StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Oggetto StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Oggetto StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Oggetto StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Oggetto StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Oggetto StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Oggetto StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Oggetto StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Oggetto StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Oggetto StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Oggetto StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Oggetto StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Oggetto StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Oggetto StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Oggetto StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Oggetto StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Formato di interscambio binario Microsoft Excel 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Formato di interscambio binario Microsoft Excel 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (collegamento DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Oggetto Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Oggetto StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Oggetto Office Document"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Info documento Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documento Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Oggetto StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Oggetto grafico"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Oggetto OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Oggetto OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Oggetto OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Oggetto OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Oggetto OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Oggetto OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Oggetto OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Oggetto OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows Metafile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Oggetto sorgenti dati"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabella sorgente dati"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Ricerca SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Finestra di dialogo OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Collegamento"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formato HTML senza commenti"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Impossibile inserire l'oggetto %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Impossibile inserire l'oggetto % dal file."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Altri oggetti"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Sorgente sconosciuta"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nome"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Dimensioni"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Data di modifica"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipo"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Byte"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Riga: %1, colonna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", tipo: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Cartella"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "File"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Campo vuoto"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerico"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normale"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Set di caratteri"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dizionario"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radicale"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Elenco telefonico"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetico (alfanumerico prima)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetico (alfanumerico ultimo)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerico"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dizionario"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radicale"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetico (alfanumerico prima, ordinato per sillabe)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetico (alfanumerico prima, ordinato per consonanti)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetico (alfanumerico ultimo, ordinato per sillabe)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetico (alfanumerico ultimo, ordinato per consonanti)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Oggi"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Senza"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Light"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Corsivo Light"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Standard"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Corsivo"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Grassetto"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Corsivo Grassetto"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Black"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Corsivo Black"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Book"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Grassetto Obliquo"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensed"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensed Grassetto"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensed Grassetto Corsivo"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensed Grassetto Obliquo"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensed Corsivo"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensed Obliquo"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "ExtraLight"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "ExtraLight Corsivo"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Obliquo"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semigrassetto"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semigrassetto Corsivo"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Questo tipo di carattere sarà utilizzato sia per lo schermo, sia per la stampante."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Il tipo di carattere visualizzato differisce da quello stampato."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Sarà riprodotto lo stile di questo tipo di carattere oppure sarà utilizzato quello che gli è più simile."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Questo tipo di carattere non è installato. Il programma utilizzerà quello che gli è più simile."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Sfoglia..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Sposta all'inizio"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Sposta a sinistra"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Sposta a destra"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Sposta alla fine"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Aggiungi"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Righello orizzontale"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Righello verticale"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Valore soglia a 1 bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Dithering a 1 bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Toni di grigio a 4 bit"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Colori a 4 bit"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Toni di grigio a 8 bit"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Colori a 8 bit"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Colori reali a 24 bit"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "L'immagine richiede circa %1 KB di memoria."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "L'immagine richiede circa %1 KB di memoria, la dimensione del file è %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "La dimensione del file è %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "porta"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Altro CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Pronto"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "In pausa"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "In attesa di eliminazione"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Occupato"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inizializzazione..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Attesa..."
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Riscaldamento..."
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Elaborazione..."
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Stampa..."
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Fuori linea"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Errore"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Server sconosciuto"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Inceppamento"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Carta esaurita"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentazione manuale"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Errore carta"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O attivo"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Il vassoio di uscita è pieno"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Livello del toner basso"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Manca il toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Elimina pagina"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "È necessario l'intervento dell'utente"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memoria insufficiente"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Coperchio aperto"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modo risparmio energetico"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Stampante predefinita"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documenti"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Fine"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Successivo >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Indietro"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Passi"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<nessuno>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Azienda"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Reparto"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nome"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Cognome"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Via"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Paese"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "CAP"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Località"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titolo"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posizione"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Inizio lettera"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniziali"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Formula di chiusura"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefono (casa)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefono (lavoro)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Note"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Utente 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Utente 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Utente 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Utente 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provincia"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefono (uff.)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Cellulare"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefono (altro)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendario"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invito"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ di $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Per eseguire questa operazione è necessario l'ambiente di runtime Java (JRE). Installa una versione di JRE e riavvia %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Per eseguire questa operazione è necessario l'ambiente di runtime Java (JRE) a %BITNESS bit. Installa una versione di JRE e riavvia %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configurazione di %PRODUCTNAME è stata cambiata. Vai al menu %PRODUCTNAME - Preferenze - %PRODUCTNAME - Avanzate e seleziona la versione dell'ambiente di runtime Java che %PRODUCTNAME dovrà utilizzare."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configurazione di %PRODUCTNAME è stata cambiata. Vai al menu Strumenti - Opzioni - %PRODUCTNAME - Avanzate e seleziona la versione dell'ambiente di runtime Java che %PRODUCTNAME dovrà utilizzare."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Per eseguire questa operazione è necessario l'ambiente di runtime Java (JRE). La versione di JRE selezionata è difettosa. Seleziona un'altra versione di JRE oppure installane una nuova e selezionala in %PRODUCTNAME - Preferenze - %PRODUCTNAME - Avanzate."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Per eseguire questa operazione è necessario l'ambiente di runtime Java (JRE). La versione di JRE selezionata è difettosa. Seleziona un'altra versione di JRE, oppure installane una nuova, e selezionala in Strumenti - Opzioni - %PRODUCTNAME - Avanzate."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE richiesto"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Seleziona il JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE difettoso"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Codice sorgente"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "File di segnalibro"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Immagine"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "File di configurazione"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Applicazione"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabella database"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "File di sistema"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documento MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "File della Guida"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "File di archivio"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "File di registro"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Database StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Documento master StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Immagine StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "File di testo"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Collegamento"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Modello StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documento MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Modello MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "File di batch"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "File"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Cartella"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documento di testo"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Foglio elettronico"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentazione"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Disegno"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Documento master"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Database"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Modello di foglio elettronico OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Modello di disegno OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Modello di presentazione OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Modello di documento di testo OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unità locale"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Floppy disk"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unità CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Connessione di rete"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documento MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Modello MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Proiezione MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 - Formula"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 - Grafico"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 - Disegno"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 - Foglio elettronico"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 - Presentazione"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 - Documento di testo"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 - Documento master"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documento MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument - Database"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument - Disegno"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument - Formula"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument - Documento master"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument - Presentazione"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument - Foglio elettronico"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument - Testo"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument - Modello di foglio elettronico"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument - Modello di disegno"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument - Modello di presentazione"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument - Modello di testo"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Estensione di %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Correttore ortografico Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Sillabatore Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Dizionario dei sinonimi MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Elenco di parole ignorate"
diff --git a/source/it/svx/messages.po b/source/it/svx/messages.po
index ca3dc857479..59225bf2a32 100644
--- a/source/it/svx/messages.po
+++ b/source/it/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-12-29 21:22+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Da sinistra a destra (verticale)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Specifica la percentuale di scostamento verticale dal centro per lo stile di sfumatura dell'ombreggiatura. 50% è il centro verticale."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor contorno"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Applica"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Area di lavoro"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Seleziona"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rettangolo"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellisse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Poligono"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Modifica punti"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Sposta punti"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserisci punti"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Elimina punti"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Contorno automatico"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Annulla "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Ripeti"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipetta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolleranza colore"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Piè di pagina"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor mappa immagine"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Applica"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Apri..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Salva..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Chiudi"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Seleziona"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rettangolo"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellisse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Poligono"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Poligono a mano libera"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Modifica punti"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Sposta punti"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserisci punti"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Elimina punti"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Annulla "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Ripeti"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Attivo"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Proprietà..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Indirizzo:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Frame:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Testo:"
diff --git a/source/it/sw/messages.po b/source/it/sw/messages.po
index 23f4469c3dc..2390d23455a 100644
--- a/source/it/sw/messages.po
+++ b/source/it/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-01-02 17:45+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3118,9 +3118,9 @@ msgid "Change object title of $1"
msgstr "Cambia il titolo dell'oggetto di $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Cambia la descrizione dell'oggetto di $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12007,147 +12007,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Aiuto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~File"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Inizio"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inizio"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserisci"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserisci"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Layout"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Layout"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Riferimen_ti"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Riferimen~ti"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisione"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisione"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Visualizza"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Visualizza"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabella"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabella"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Imma_gine"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Imma~gine"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Disegno"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Disegno"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Oggetto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Oggetto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Stampa"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Stampa"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulario"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulario"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "S_trumenti"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "S~trumenti"
@@ -12157,152 +12157,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_File"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserisci"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Scorrimento"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Layout"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Riferimen_ti"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisione"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Visualizza"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abella"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Immagine"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "D_isegna"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Oggetto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Stampa"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "S_trumenti"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13369,8 +13369,8 @@ msgstr "Espandi lo spazio parola sulle righe con interruzione manuale di riga ne
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Proteggi formulario"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16650,47 +16650,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Indice generale, indice o bibliografia"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Anteprima"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Anteprima"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Voci"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stili"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Colonne"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Sfondo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Anteprima"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Li_vello"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tipo"
@@ -16920,302 +16920,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Modifica..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titolo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Indice generale"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Indice analitico"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Indice delle tabelle"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Indice personalizzato"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Indice degli oggetti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protetto contro modifiche manuali"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipo e titolo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Per:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Documento intero"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capitolo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Valuta fino al livello:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Crea indice analitico o indice generale"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Struttura"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Contrassegni _indice"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabelle"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Cornici di _testo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Immagine"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Oggetti OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Usa livello dal capitolo sorgente"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Stili _aggiuntivi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stil_i"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Assegna stili..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Didascalie"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Nomi degli oggetti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categoria:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Mostra:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Riferimenti incrociati"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categoria e numero"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Testo didascalia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Crea da"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Crea dai seguenti oggetti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Parentesi:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Numera voci"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[nessuno]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formattazione delle voci"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Riunisci voci uguali"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Riunisci voci uguali con p. o _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Riunisci con -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Maiuscole/minuscole"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Scrivi le voci maiuscole"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Chiavi come voci separate"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "File di _concordanza"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_File"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opzioni"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Lingua:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipo di chiave:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ordine"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Livelli"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Stili di paragrafo"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Pre_definito"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Modifica"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Assegnazione"
diff --git a/source/ja/cui/messages.po b/source/ja/cui/messages.po
index 6887d81b485..6f678450219 100644
--- a/source/ja/cui/messages.po
+++ b/source/ja/cui/messages.po
@@ -3,9 +3,9 @@ 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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-02-25 10:28+0000\n"
-"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-27 09:48+0000\n"
+"Last-Translator: 村上正記 <mucky85236@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1551090490.000000\n"
+"X-POOTLE-MTIME: 1558950532.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -330,7 +330,7 @@ msgstr "メール"
#: cui/inc/strings.hrc:80
msgctxt "RID_SVXSTR_HYPERDLG_HLMAILTP_HELP"
msgid "This is where you create a hyperlink to an email address."
-msgstr ""
+msgstr "メールアドレスのハイパーリンクを作成します。"
#: cui/inc/strings.hrc:81
msgctxt "RID_SVXSTR_HYPERDLG_HLDOCTP"
@@ -1638,110 +1638,105 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "テーマの正確なアドレス、または検索語を入力してください。"
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "枠線なしを設定"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "外枠のみを設定"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "外枠と横線を設定"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "外枠と表内のすべての線を設定"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "表内の線を変更せず、外枠線を設定"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "斜め線だけを設定"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "四辺の枠線を設定"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "左右の外枠線を設定"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "上下の外枠線を設定"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "左外枠を設定"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "上下の境界線と内部のすべての線を設定"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "左右の境界線と内部のすべての線を設定"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "影なし"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "右下に影を付ける"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "右上に影を付ける"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "左下に影を付ける"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "左上に影を付ける"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "署名者: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
-msgstr ""
+msgstr "登録されたデータベース"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME について"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "クレジット(_D)"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ウェブサイト(_W)"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "ロケール: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "UIの言語: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "ログ: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME はワードプロセッサー、表計算、プレゼンテーションやその他を含む、モダンで使いやすいオープンソースのオフィススイートです。"
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 LibreOffice contributors."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOfficeはOpenOffice.orgを元にしています。"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME は OpenOffice.org を元にした LibreOffice から派生しています。"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "このリリースは %OOOVENDOR が提供しました。"
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "置換(_R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "置換(_C)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "置換文字列(_W):"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "テキストのみ(_T)"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "最低文字数"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "プロパティ"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "フレーム(_R):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "名前(_N):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "代替テキスト(_T):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "説明(_D):"
@@ -9019,80 +9179,80 @@ msgstr "「オフラインヘルプがインストールされていません」
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ヘルプ"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ダイアログを使用する(_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "「開く」ダイアログと「保存」ダイアログ"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ダイアログを使用する(_D)"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "印刷ダイアログ"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "印刷を「ドキュメントの変更」とみなす(_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ドキュメントの状態"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "次の年の間と解釈する(_I)"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "から"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "年(2桁)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "利用状況データを収集し、The Document Foundationへ送信する"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "%PRODUCTNAME の改善を手伝う"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "システム起動時に %PRODUCTNAME を読み込む"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "システムトレイでのクイック起動を有効にする"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME クイック起動"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "組込みのテーマ"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "独自のテーマ"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "または、拡張機能としてインストールされたテーマから選択する:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefoxのテーマ"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "セキュリティオプション"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Firefoxのテーマを選択"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "検索語またはアドレス"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "カテゴリー(_T):"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "その他"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ja/extensions/messages.po b/source/ja/extensions/messages.po
index 66bbda80f62..07fce6c109e 100644
--- a/source/ja/extensions/messages.po
+++ b/source/ja/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-24 05:29+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "“%1” テーブルの列分類"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "略称(_S)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "著者(_A)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "出版社(_P)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "章(_C)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "編者"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "種類(_T)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "著作年(_Y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "タイトル(_L)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "住所(_D)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "ページ(_G)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "版(_I)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "書名(_B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "巻"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "出版物種別(_Y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "組織団体名(_Z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "機関名(_U)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "大学名(_V)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "報告書の種類(_P)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "月(_M)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "定期刊行物(_J)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "番号(_E)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "叢書(_R)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "注釈(_O)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "ノート(_N)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "ユーザー欄 _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "ユーザー欄 _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "ユーザー欄 _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "ユーザー欄 _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "ユーザー欄 _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "列名"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "新しいデータタイプの名前を入力:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "リンクフィールド"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "候補"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "サブフォームを使用して、マスターフォームの現在のレコードに関する詳細なデータを表示できます。これを行うために、サブフォームのどの列がマスターフォームのどの列に一致するかを指定できます。"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ラベル"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "ラベル"
diff --git a/source/ja/helpcontent2/source/auxiliary.po b/source/ja/helpcontent2/source/auxiliary.po
index c0e3e518193..38ae1a4062a 100644
--- a/source/ja/helpcontent2/source/auxiliary.po
+++ b/source/ja/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-29 00:26+0000\n"
"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "一般的な情報"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "ツールバー"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "図形描画 (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "メニュー"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "ツールバー"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "オブジェクト、画像、ビットマップ"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "グループとレイヤー"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "プレゼンテーションおよび図形描画でのテキストの使用法"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/sbasic/guide.po b/source/ja/helpcontent2/source/text/sbasic/guide.po
index 5c93c0b51af..9e853a27373 100644
--- a/source/ja/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ja/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-15 00:49+0000\n"
"Last-Translator: junichi matsukawa <jr4air@kagaku.xii.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "ダイアログ表示用のプログラムコード"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>モジュールとダイアログの切り替え</bookmark_value><bookmark_value>ダイアログ;表示にプログラムコードを使用する (例)</bookmark_value><bookmark_value>例; プログラムコードを使ってダイアログを表示する</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/sbasic/python.po b/source/ja/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/ja/helpcontent2/source/text/sbasic/python.po
+++ b/source/ja/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/ja/helpcontent2/source/text/sbasic/shared.po b/source/ja/helpcontent2/source/text/sbasic/shared.po
index b4efb137e45..e26b4e74214 100644
--- a/source/ja/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ja/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-29 00:27+0000\n"
"Last-Translator: shirahara <luixxiul@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic ヘルプ</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/sbasic/shared/03.po b/source/ja/helpcontent2/source/text/sbasic/shared/03.po
index 9fc3817f9b6..309176c4686 100644
--- a/source/ja/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ja/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/ja/helpcontent2/source/text/scalc/01.po b/source/ja/helpcontent2/source/text/scalc/01.po
index 16b638b793a..683f15dc79f 100644
--- a/source/ja/helpcontent2/source/text/scalc/01.po
+++ b/source/ja/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-29 00:31+0000\n"
"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">挿入するデータを含むファイルを選択します。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">挿入する表または範囲を選択します。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">リストボックス <emph>統合の範囲</emph> に表示されたセル範囲に統合するセル範囲を指定します。シートでセル範囲を選択して、<emph>追加</emph> をクリックします。あるいは、入力ボックス <emph>ソースデータの範囲</emph> のリストから定義済みのセルの名前も選択できます。</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/schart/00.po b/source/ja/helpcontent2/source/text/schart/00.po
index dbbaa2cf743..52f761e57ad 100644
--- a/source/ja/helpcontent2/source/text/schart/00.po
+++ b/source/ja/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">行を表示する折れ線グラフや散布図のグラフダイアログで、プロパティボタンをクリックし、線の平滑化タイプをドロップダウンで選択します。</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">行を表示する折れ線グラフや散布図のグラフダイアログで、プロパティボタンをクリックし、線の平滑化タイプをドロップダウンで選択します。</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/ja/helpcontent2/source/text/shared/00.po b/source/ja/helpcontent2/source/text/shared/00.po
index 117298d54fd..6f735372d5c 100644
--- a/source/ja/helpcontent2/source/text/shared/00.po
+++ b/source/ja/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/ja/helpcontent2/source/text/shared/01.po b/source/ja/helpcontent2/source/text/shared/01.po
index ff53069aff8..0941b34b7a7 100644
--- a/source/ja/helpcontent2/source/text/shared/01.po
+++ b/source/ja/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/ja/helpcontent2/source/text/shared/02.po b/source/ja/helpcontent2/source/text/shared/02.po
index 278c58387ac..803b1233d58 100644
--- a/source/ja/helpcontent2/source/text/shared/02.po
+++ b/source/ja/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/ja/helpcontent2/source/text/shared/guide.po b/source/ja/helpcontent2/source/text/shared/guide.po
index aeefd0d7da2..772877aebdd 100644
--- a/source/ja/helpcontent2/source/text/shared/guide.po
+++ b/source/ja/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/ja/helpcontent2/source/text/shared/optionen.po b/source/ja/helpcontent2/source/text/shared/optionen.po
index 60199490dcf..6f8fcf47a6f 100644
--- a/source/ja/helpcontent2/source/text/shared/optionen.po
+++ b/source/ja/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/ja/helpcontent2/source/text/simpress/01.po b/source/ja/helpcontent2/source/text/simpress/01.po
index 6a4e06c24c2..e046b7ef261 100644
--- a/source/ja/helpcontent2/source/text/simpress/01.po
+++ b/source/ja/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/ja/helpcontent2/source/text/swriter/guide.po b/source/ja/helpcontent2/source/text/swriter/guide.po
index a56723a813c..b400763337e 100644
--- a/source/ja/helpcontent2/source/text/swriter/guide.po
+++ b/source/ja/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "<emph>標準バー</emph> 上で、 <emph> ナビゲーター</emph> アイコン <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\">アイコン</alt></image> をクリックして、<emph>ナビゲーター</emph> を開きます。"
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
index 1dbf101ea08..b09ee95c684 100644
--- a/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-24 07:59+0000\n"
"Last-Translator: Jun NOGATA <nogajun@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "他のフィールド"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "タブ"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "グループバー"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ja/sc/messages.po b/source/ja/sc/messages.po
index 3e082979fde..ac5fc6043d8 100644
--- a/source/ja/sc/messages.po
+++ b/source/ja/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-07 11:36+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15210,6 +15210,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(排他的アクセス)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15763,12 +15768,12 @@ msgstr "条件付き書式を管理"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16986,81 +16991,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "データフォーム"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "閉じる(_C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "新しいレコード"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "新規作成(_N)"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "削除(_D)"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "復元(_R)"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "前のレコード(_P)"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "次のレコード(_X)"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "閉じる(_C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "ライブデータストリーム"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "ローカルファイルシステムまたはインターネット上のソースドキュメントのURLをここに入力"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "検索(_B)..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "データベース範囲:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "データプロバイダー:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "検索語:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "ソースストリーム"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18776,32 +18741,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "結果貼り付け先:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "データ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "列"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "行"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "グループ化"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "間隔:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "パラメーター"
@@ -18941,167 +18911,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "ヘルプ(_H)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "ファイル(~F)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "選択したセルの枠線を指定します。"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "ホーム(_H)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "ホーム(~H)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "フィールド(_D)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "挿入(_I)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "挿入(~I)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "レイアウト(_L)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "レイアウト(~L)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "統計(_S)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "データ(_D)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "データ(~D)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "レビュー(_R)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "レビュー(~R)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "表示(_V)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "表示(~V)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "メディア(_M)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "印刷(_P)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "ツール(_T)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "ツール(~T)"
@@ -21582,17 +21554,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "検索結果"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23462,107 +23444,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "アウトライン記号(_O)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "ウィンドウ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "グリッド線(_G):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "色(_C):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "表示"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "色付きしたセルでも表示"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "非表示"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "改ページ(_P)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "移動時の補助線(_W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "ビジュアル補助"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "オブジェクト/イメージ(_J):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "グラフ(_R):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "図形描画オブジェクト(_D):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "表示"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "非表示"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "表示"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "非表示"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "表示"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "非表示"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "オブジェクト"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "シートを同期させる(_Y)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "ズーム"
diff --git a/source/ja/scp2/source/ooo.po b/source/ja/scp2/source/ooo.po
index debb8aca3eb..bfb170350e6 100644
--- a/source/ja/scp2/source/ooo.po
+++ b/source/ja/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-19 10:03+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "ドキュメントを開く"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ja/scp2/source/winexplorerext.po b/source/ja/scp2/source/winexplorerext.po
index d1b184c11b3..ef902346542 100644
--- a/source/ja/scp2/source/winexplorerext.po
+++ b/source/ja/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-07-05 15:43+0200\n"
-"Last-Translator: Ikuya <ikuya@fruitsbasket.info>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:44+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\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: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369352682.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows エクスプローラーで、%PRODUCTNAME ドキュメントの情報 (サムネイルのプレビューなど) を表示できるようにします。"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ja/sd/messages.po b/source/ja/sd/messages.po
index 7d02955d7b0..7de55f9bac9 100644
--- a/source/ja/sd/messages.po
+++ b/source/ja/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-07 11:37+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "クリックでハイパーリンクを開きます:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTMLデザイン名"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "ファイル(_F)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "ヘルプ(_H)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "ファイル(~F)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "ホーム(_H)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "ホーム(~H)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "フィールド(_D)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "挿入(_I)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "挿入(~I)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "ページ(_P)"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "ページ(~P)"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "レビュー(_R)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "レビュー(~R)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "表示(_V)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "表示(~V)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "表(_T)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "表(~T)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "メディア(_M)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "ツール(_T)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "ツール(~T)"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "シェイプを表示"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "ファイル(_F)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "ヘルプ(_H)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "ファイル(~F)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "ホーム(_H)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "ホーム(~H)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "フィールド(_D)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "挿入(_I)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "挿入(~I)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "スライド(_L)"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "スライドショー(_S)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "スライドショー(~S)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "レビュー(_R)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "レビュー(~R)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "表示(_V)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "表示(~V)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "メディア(_M)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "ツール(_T)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "ツール(~T)"
diff --git a/source/ja/sfx2/messages.po b/source/ja/sfx2/messages.po
index ef121caf4ba..d7009f58e50 100644
--- a/source/ja/sfx2/messages.po
+++ b/source/ja/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-19 15:06+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "プロパティの削除"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"入力された値は指定された型と一致しません。\n"
"値はテキストとして格納されます。"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "スタイルはすでにあります。上書きしますか?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "元に戻す(~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "この名前はすでに、あるスタイルに使われています。"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "このスタイルは存在していません。"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"このスタイルは再帰参照を引き起こすため、\n"
"基本スタイルとして使用できません。"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"この名前はすでに標準スタイル名で使われています。\n"
"別の名前を選択してください。"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"このスタイルを削除すると、テキストは親スタイルに戻ります。\n"
"本当にこのスタイルを削除しますか?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "使用したスタイル: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "ナビゲーター"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "パスワードの確認ができていません"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "送る"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "フォント"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "プレビューを表示"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "バージョンコメントの表示"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(名前がセットされていません)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "スタイルのリスト"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "階層"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "水やりモード"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "選択スタイルから新規作成"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "スタイルの更新"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "記録をキャンセルしますか。記録されたステップは、この時点ですべて失われます。"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "記録をキャンセルする"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "テンプレートは今回初めて使用するにあたって、まず初期化されます。"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"既定のプリンターが見つかりませんでした。\n"
"プリンターを選択し 再度試みてください。"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"プリンターを起動できませんでした。\n"
"プリンターの設定をチェックしてください。"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "プリンターは動作中です"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(読み取り専用)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"新しい設定をアクティブなドキュメントで\n"
"保存しますか?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"変更された設定を現在のドキュメントに\n"
"適用しますか?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"新しい設定をアクティブなドキュメントで\n"
"保存しますか?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"印刷ジョブの処理中です。\n"
"この間ドキュメントを閉じることはできません。"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,7 +1139,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1152,17 +1147,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "メールの送信エラー"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "このドキュメントは、おそらくアクセス権限がないため、編集できません。ドキュメントのコピーを編集しますか?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1170,349 +1165,359 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "コピーを開く(~C)"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "開く(~O)"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (修復されたドキュメント)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "文書はサーバー上でチェックアウトされていません。"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "%PRODUCTNAME をさらに良いものにする手助けをしてください!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "参加する"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "このドキュメントは読み取り専用で開いています。"
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "既存のファイルに署名するためにこのPDFは読み取り専用モードで開かれています。"
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "この文書の機密レベルは %1 です。"
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "この文書はクリップボードより低い機密レベルになっています。"
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "レベル"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "国家安全保障:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "コントロールのエクスポート:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "チェックアウト"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "文書を編集"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ドキュメントに署名..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "このドキュメントの署名は無効です。"
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "証明書は有効ですが、このドキュメントは変更されています"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "署名は問題ありませんが、証明書を検証することができませんでした。"
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "署名は問題ありませんが、署名されているのは文書の一部だけです。"
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "このドキュメントはデジタル署名されており、証明書は有効です。"
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "署名を表示する"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "ペインを閉じる"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "格納"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "分離"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "詳細オプション"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "サイドバーデッキを閉じる"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "サイドバーの設定"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "カスタマイズ"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "標準に戻す"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "サイドバーを閉じる"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "ハチの巣"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "インスピレーション"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "ラッシュグリーン"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "メトロポリス"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "ミッドナイトブルー"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "鉛筆"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "ピアノ"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "ポートフォリオ"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "サンセット"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "ヴィンテージ"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "履歴書"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "職務経歴書"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "モダン"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "ロゴ入り名刺"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "削除"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "すべて消去"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "パスワードの長さ"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "入力されたパスワードだと相互運用性の問題が生じます。52バイトより短いパスワード、または55バイトより長いパスワードを入力してください。"
@@ -1857,32 +1862,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "バージョンコメント:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "名前"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "種類"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "値"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "種類"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "はい"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "いいえ"
@@ -1892,17 +1882,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "プロパティの追加(_P)"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "名前"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "種類"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "値"
@@ -2032,17 +2022,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "場所(_L):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "タイプ(_T):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "パスワードの変更(_P)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "テンプレート:"
@@ -2052,27 +2042,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "“%1”のプロパティ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "全般 "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "説明"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "カスタムプロパティ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMISプロパティ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "セキュリティ"
@@ -2286,6 +2276,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ja/shell/messages.po b/source/ja/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ja/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ja/starmath/messages.po b/source/ja/starmath/messages.po
index c7850a20d12..82b3eada2e2 100644
--- a/source/ja/starmath/messages.po
+++ b/source/ja/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "例"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "通常"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "斜体"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "太字"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "黒"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "青"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "緑"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "赤"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "シアン"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "マゼンタ"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "灰色"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "ライム"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "マルーン"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ネイビー"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "オリーブ"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "紫色"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "銀色"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "青緑色"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "黄"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "隠す"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "サイズ"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "フォント"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "左"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "中央"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "右"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "コマンド"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "数式"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ドキュメントを保存しています..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION 数式"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "エラー :"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "不適当な文字"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "予期しないトークンがあります"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{'が必要です"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}'が必要です"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'('が必要です"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')'が必要です"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "左右の記号が合っていません"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed'、'sans'、'serif'のどれかでなければなりません"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size'の後に予期しないトークンがあります"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "align指定を続けてはいけません"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "添字を続けてはいけません"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#'が必要です"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "色が必要です"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT'が必要です"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "内容"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "タイトル(~T)"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "数式文字列(~F)"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "枠(~O)"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "サイズ"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "元のサイズ(~R)"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ページサイズに合わせる(~P)"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "倍率(~S)"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "要素"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ja/svtools/messages.po b/source/ja/svtools/messages.po
index 2905d1fddcc..b7f04b401f5 100644
--- a/source/ja/svtools/messages.po
+++ b/source/ja/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-19 15:06+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547910395.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "元に戻す: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "やり直し(~D):"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "繰り返し(~R):"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "書式設定されていないテキスト"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "書式化されていないテキスト(TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "ビットマップ画像(BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "グラフィックス・デバイス・インターフェイス・メタファイル(GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "リッチテキスト形式(RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "リッチテキスト形式(Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME 描画形式"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx Internal Link からのステータス情報"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape ブックマーク"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star サーバーの書式"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star オブジェクトの書式"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "アプレットのオブジェクト"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "プラグインのオブジェクト"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 オブジェクト"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 オブジェクト"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 オブジェクト"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 オブジェクト"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 オブジェクト"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 オブジェクト"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 オブジェクト"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw オブジェクト"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 オブジェクト"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 オブジェクト"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 オブジェクト"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc オブジェクト"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 オブジェクト"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 オブジェクト"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart オブジェクト"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 オブジェクト"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 オブジェクト"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage オブジェクト"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 オブジェクト"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 オブジェクト"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath オブジェクト"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 オブジェクト"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 オブジェクト"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint オブジェクト"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "動的データ交換(DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word オブジェクト"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet オブジェクト"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office Document オブジェクト"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes ドキュメント情報"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx ドキュメント"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 オブジェクト"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "図オブジェクト"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer オブジェクト"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web オブジェクト"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master オブジェクト"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw オブジェクト"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress オブジェクト"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc オブジェクト"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart オブジェクト"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math オブジェクト"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows メタファイル"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "データソースのオブジェクト"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "データソースのテーブル"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL クエリー"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ダイアログ"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "リンク"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML 書式(コメントなし)"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "オブジェクト % は挿入できませんでした。"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ファイル % からのオブジェクトは挿入できませんでした。"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "その他のオブジェクト"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "不明なソース"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "ファイル名"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "サイズ"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "変更日時"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "構成内容"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "バイト"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "キロバイト"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "行: %1, 列: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", タイプ: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "フォルダー"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ファイル"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "空白フィールド"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "英数字"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "通常フォント"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "文字種"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "辞書"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "ピンイン(中国語のローマ字表記法)"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "総画数"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "漢字の部首"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "注音(中国語の漢字の発音を表記するための表記文字)"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "電話帳"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "読み(英数字を先に)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "読み(英数字を後に)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "英数字"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "辞書"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "ピンイン(中国語のローマ字表記法)"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "漢字の部首"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "総画数"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "注音(中国語の漢字の発音を表記するための表記文字)"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "読み(英数字を先に、あいうえお順)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "読み(英数字を先に、あかさたな順)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "読み(英数字を後に、あいうえお順)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "読み(英数字を後に、あかさたな順)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "今日"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "なし"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "細字"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "細字 斜体"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "標準"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "斜体"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "太字"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "太字斜体"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "黒"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "黒の斜体"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "本"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "狭くする"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "斜体"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "中太字"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "印刷と画面表示には同じフォントが使用されます。"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "プリンター用のフォントです。画面表示とは少し異なります。"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "このフォントスタイルは修正されるか、または最も適切なスタイルが使用されます。"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "このフォントはインストールされていません。最も適切なフォントが選ばれます。"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "検索..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ホームに移動"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "左方向"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "右方向"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "末尾に移動"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "追加"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "水平ルーラー"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "垂直ルーラー"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1ビットしきい値"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1ビッドディザリング"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4ビットグレースケール"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4ビットカラー"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8ビットグレースケール"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8ビットカラー"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24ビット True Color"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "この画像は %1 KBほどのメモリーが必要です。"
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "この画像は %1 KBほどのメモリーが必要で、ファイルサイズは %2 KBです。"
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "このファイルのサイズは %1 KBです。"
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ホスト"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ポート"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "他のCMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "印刷可"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "一時停止"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "印刷ジョブを削除しています"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "ビジー状態"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "初期化"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "待機中"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "準備中"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "処理"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "印刷中"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "オフライン"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "エラー"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "不明のサーバー"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "用紙詰まり"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "用紙不足"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "手動で用紙供給"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "用紙の問題"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O アクティブ"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "印刷アウトプット用の容器がいっぱいです。"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "トナーの残量が少なくなっています"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "トナーがありません。"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ページ削除"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ユーザーのアクセスが必要"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "ディスク空き容量が足りません。"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "プリンターの蓋が開いています"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "エネルギー節減モード"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "デフォルトのプリンター"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d のドキュメント"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "完了(~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "次へ(~N) >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< 戻る(~K)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ステップ"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<なし>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "会社名"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "部署"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "名"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "姓"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "市町村名"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "国名"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "郵便番号"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "都道府県名"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "肩書き"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "職務"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "敬称"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "イニシャル"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "挨拶文"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "自宅電話"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "会社電話"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ノート"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ユーザー 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ユーザー 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ユーザー 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ユーザー 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "州名"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "オフィス電話"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "ポケットベル"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "携帯電話"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "その他の電話"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "カレンダー"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "招待"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "このタスクを実行するには、%PRODUCTNAME に Java 実行環境 (JRE) が必要です。JRE をインストールし、%PRODUCTNAME を再起動してください。"
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "このタスクを実行するには、%PRODUCTNAME に %BITNESS-bit Java 実行環境 (JRE) が必要です。JRE をインストールし、%PRODUCTNAME を再起動してください。"
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME の設定を変更しました。%PRODUCTNAME - 設定 - %PRODUCTNAME - 詳細 で、%PRODUCTNAME で利用したい Java 実行環境(JRE)を選択してください。"
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME の設定が変更されました。ツール - オプション - %PRODUCTNAME - 詳細 の順に選択して、%PRODUCTNAME で使用する Java 実行環境(JRE)を選択してください。"
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME はこの作業を行うのに Java 実行環境 (JRE) を要求します。選択されている JRE は正しくありません。%PRODUCTNAME - 設定 - %PRODUCTNAME - 詳細 にて、ほかのバージョンを選択するか、新たに JRE をインストールしてそれを選択してください。"
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "このタスクを実行するには、%PRODUCTNAME に Java 実行環境 (JRE) が必要です。選択されている JRE は正しくありません。別のバージョンを選択するか、新しい JRE をインストールして ツール - オプション - %PRODUCTNAME - 詳細 の順に選択して新しい JRE を選択します。"
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JREが必要"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE の選択"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE には障害が存在します"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "ソースコード"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ブックマークファイル"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "図"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "環境設定ファイル"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "アプリケーション"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "データベーステーブル"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "システムファイル"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Microsoft Word ドキュメント"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "ヘルプファイル"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML ドキュメント"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "アーカイブファイル"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ログファイル"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice データベース"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 マスタードキュメント"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice イメージ"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "テキストファイル"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "リンク"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 テンプレート"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Microsoft Excel ドキュメント"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Microsoft Excel テンプレート"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "バッチファイル"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ファイル"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "フォルダー"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "文書ドキュメント"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "表計算ドキュメント"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "プレゼンテーション"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "図形描画"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML ドキュメント"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "マスタードキュメント"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "数式"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "データベース"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 表計算ドキュメントテンプレート"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 図形描画テンプレート"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 プレゼンテーションテンプレート"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 文書ドキュメントテンプレート"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ローカルのドライブ"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "フロッピーディスク"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ドライブ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "ネットワークの接続"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint ドキュメント"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint テンプレート"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint スライドショー"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 数式"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 グラフ"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 図形描画"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 表計算ドキュメント"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 プレゼンテーション"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 文書ドキュメント"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 マスタードキュメント"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML ドキュメント"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument データベース"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument の図形描画"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument の数式"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument のマスタードキュメント"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument のプレゼンテーション"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument の表計算ドキュメント"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument のテキスト"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument の表計算ドキュメントテンプレート"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument の図形描画テンプレート"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument のプレゼンテーションテンプレート"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument のテキストテンプレート"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME 拡張機能"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspellスペルチェッカー"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes類語辞典"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ja/svx/messages.po b/source/ja/svx/messages.po
index 596d8af1849..a0dec049132 100644
--- a/source/ja/svx/messages.po
+++ b/source/ja/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-24 07:45+0000\n"
"Last-Translator: Naruhiko Ogasawara <naruoga@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "左から右へ(縦書き)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "透過スタイルの中心の垂直位置をパーセントによるオフセット値で指定します。50% が上下の中央です。"
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "輪郭エディター"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "適用"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "編集範囲"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "選択"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "長方形"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "楕円"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "多角形"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "制御点の編集"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "制御点の移動"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "制御点の挿入"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "制御点の削除"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "オート輪郭"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "元に戻す "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "やり直し"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "スポイト"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "色の許容"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "フッター"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "イメージマップエディター"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "適用"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "開く..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "保存..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "閉じる"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "選択"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "長方形"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "楕円"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "多角形"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "フリーハンドの多角形"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "制御点の編集"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "制御点の移動"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "制御点の挿入"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "制御点の削除"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "元に戻す "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "やり直す"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "アクティブ"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "マクロ..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "プロパティ..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "アドレス:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "フレーム:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "テキスト:"
diff --git a/source/ja/sw/messages.po b/source/ja/sw/messages.po
index a15ac98cbd2..b471e7194cb 100644
--- a/source/ja/sw/messages.po
+++ b/source/ja/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-02-24 08:15+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3112,9 +3112,9 @@ msgid "Change object title of $1"
msgstr "$1 のオブジェクトタイトルを変更"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 のオブジェクトの説明を変更"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12001,147 +12001,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "ヘルプ(_H)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "ファイル(~F)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "ホーム(_H)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "ホーム(~H)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "挿入(_I)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "挿入(~I)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "レイアウト(_L)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "レイアウト(~L)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "参照(_S)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "参照(~S)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "レビュー(_R)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "レビュー(~R)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "表示(_V)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "表示(~V)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "表(~T)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "メディア(_M)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "印刷(_P)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "ツール(_T)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "ツール(~T)"
@@ -12151,152 +12151,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "ファイル(_F)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "挿入(_I)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "折り返し"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "レイアウト"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "参照(_S)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "レビュー(_R)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "表示(_V)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "表(_A)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "画像"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "オブジェクト"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "メディア(_M)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "印刷"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "ツール(_T)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13363,7 +13363,7 @@ msgstr "両端揃えされた段落内の手動で改行された行で語間を
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -16642,47 +16642,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "目次、索引または参考文献"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "プレビュー"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "プレビュー"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "種類"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "項目"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "スタイル"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "段組み"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "背景"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "プレビュー"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "レベル(_L)"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "種類(_T)"
@@ -16912,302 +16912,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "編集(_E)..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "タイトル(_T):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "タイプ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "目次"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "索引"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "図の一覧"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "表の索引"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "ユーザー定義"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "オブジェクトの索引"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "参考文献表"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "任意変更から保護"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "種類とタイトル"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "対象:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "ドキュメント全体"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "現在の章"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "次のレベルまで適用:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "目次と索引の作成"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "アウトライン"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "目次と索引の項目(_X)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "表"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "テキスト枠(_X)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "図"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE オブジェクト"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "もとの章のレベル"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "その他のスタイル(_A)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "スタイル(_E)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "スタイルの適用..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "キャプション"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "オブジェクト名"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "分類:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "表示:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "すべて"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "カテゴリーと番号"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "キャプションのテキスト"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "内容"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "次のオブジェクトから作成"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "かっこ(_B):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "項目に番号を付ける(_N)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[なし]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "項目の書式設定"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "同じ項目をまとめて表示"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "続きページをpまたは_ppで表示"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "続きページを-で表示"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "大文字と小文字を区別する"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "語頭を自動的に大文字にする"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "分類タイトルを項目表示"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "コンコーダンスファイル(_C)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ファイル(_F)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "オプション"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "言語:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "キーの種類:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "並べ替え"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "レベル(_L)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "段落スタイル(_S)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "標準(_D)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "編集(_E)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "配置"
diff --git a/source/jv/cui/messages.po b/source/jv/cui/messages.po
index 2cb24b28ba1..e95ab201847 100644
--- a/source/jv/cui/messages.po
+++ b/source/jv/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1644,107 +1644,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr ""
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1787,7 +1782,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1907,7 +1902,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2147,7 +2142,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2402,12 +2397,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2477,7 +2472,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2557,7 +2552,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2798,7 +2793,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3411,67 +3406,72 @@ msgid "About %PRODUCTNAME"
msgstr ""
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3592,18 +3592,18 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Ganti"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Ganti"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4456,6 +4456,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5601,27 +5761,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Properti"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Jeneng:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9250,83 +9410,83 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
#, fuzzy
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "pitulung"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Dialog %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Dialog %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11231,24 +11391,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -11899,102 +12044,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -13029,27 +13078,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/jv/extensions/messages.po b/source/jv/extensions/messages.po
index de0497072c0..97ec2ad1923 100644
--- a/source/jv/extensions/messages.po
+++ b/source/jv/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3120,166 +3120,166 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Tipe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Judhul"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "alamat"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
#, fuzzy
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr ""
@@ -3460,28 +3460,28 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "jeneng"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po b/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
index 58f1d9e59d7..c284b02b025 100644
--- a/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-11 23:00+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23594,6 +23594,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25924,6 +25933,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25942,6 +25960,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/jv/sc/messages.po b/source/jv/sc/messages.po
index 4c552a80e66..4078c8da3eb 100644
--- a/source/jv/sc/messages.po
+++ b/source/jv/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15330,6 +15330,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15892,12 +15897,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17154,83 +17159,42 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Tutup"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Anyar"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Busak"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Tutup"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Tlusuri..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18993,33 +18957,38 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "~Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19163,167 +19132,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21882,17 +21853,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23806,108 +23787,113 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "window"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Umpetnā"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Umpetnā"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Umpetnā"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Umpetnā"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Obyèk"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr ""
diff --git a/source/jv/scp2/source/ooo.po b/source/jv/scp2/source/ooo.po
index eb4a379021f..287a3729cc0 100644
--- a/source/jv/scp2/source/ooo.po
+++ b/source/jv/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36,6 +36,14 @@ msgstr "DokumenBebas"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/jv/scp2/source/winexplorerext.po b/source/jv/scp2/source/winexplorerext.po
index 10dee128e55..5890b5af46b 100644
--- a/source/jv/scp2/source/winexplorerext.po
+++ b/source/jv/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2013-05-24 07:46+0000\n"
"Last-Translator: Anonymous Pootle User\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: 1369381566.000000\n"
#: module_winexplorerext.ulf
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
msgstr ""
diff --git a/source/jv/sd/messages.po b/source/jv/sd/messages.po
index bb6bfd10d6d..045825a3e6c 100644
--- a/source/jv/sd/messages.po
+++ b/source/jv/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2621,6 +2621,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3099,164 +3104,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4664,160 +4854,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/jv/sfx2/messages.po b/source/jv/sfx2/messages.po
index bea0d7f55a9..a40d752836f 100644
--- a/source/jv/sfx2/messages.po
+++ b/source/jv/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -904,53 +904,48 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr ""
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
#, fuzzy
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Setél ulang"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -958,118 +953,118 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr ""
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr ""
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
#, fuzzy
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "huruf"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr ""
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr ""
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr ""
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
#, fuzzy
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "mung-diwācā"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1077,7 +1072,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1085,7 +1080,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1093,14 +1088,14 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1108,7 +1103,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1116,17 +1111,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1134,350 +1129,360 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr ""
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr ""
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Buw~ang"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1833,32 +1838,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr ""
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr ""
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipe"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Biji"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipe"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr ""
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr ""
@@ -1868,17 +1858,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipe"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Biji"
@@ -2017,18 +2007,18 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Jenis:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2039,27 +2029,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Katrangan"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2280,6 +2270,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/jv/shell/messages.po b/source/jv/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/jv/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/jv/starmath/messages.po b/source/jv/starmath/messages.po
index 88f800357e9..7d5a8821a08 100644
--- a/source/jv/starmath/messages.po
+++ b/source/jv/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1661,277 +1661,302 @@ msgid "Examples"
msgstr ""
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
#, fuzzy
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "standar"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr ""
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
#, fuzzy
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "kandel"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "ireng"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr ""
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
#, fuzzy
msgctxt "STR_RED"
msgid "red"
msgstr "mācā"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr ""
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "baris"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "umpetaké"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "ukuran"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "huruf"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "kiwā"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "tengah"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr ""
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
#, fuzzy
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "prèntah"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "rumus"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr ""
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr ""
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
#, fuzzy
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "konten"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Judhul"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr ""
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ukuran:"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr ""
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
@@ -2003,6 +2028,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "elemen"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/jv/svtools/messages.po b/source/jv/svtools/messages.po
index e4dbe8677c1..48c461eea59 100644
--- a/source/jv/svtools/messages.po
+++ b/source/jv/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1545 +16,1547 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195589.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr ""
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
+msgid "Redo: "
msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr ""
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr ""
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr ""
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
#, fuzzy
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "pranālā"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr ""
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Ukuran:"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr ""
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipe"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ""
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
#, fuzzy
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "folder"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
#, fuzzy
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "berkas"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
#, fuzzy
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
#, fuzzy
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Karakter"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
#, fuzzy
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "bausastrā"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "bausastrā"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr ""
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr ""
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr ""
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
#, fuzzy
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "kandel"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
#, fuzzy
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ireng"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
#, fuzzy
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "buku"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
#, fuzzy
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "_Tlusuri..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Tambah"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "urut"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Tahan"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
#, fuzzy
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "kaluputan"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr ""
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr ""
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr ""
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr ""
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr ""
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr ""
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr ""
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr ""
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr ""
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Judhul"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
#, fuzzy
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "posisi"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
#, fuzzy
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
#, fuzzy
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "cathetan"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
#, fuzzy
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Kācā"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Ngundang"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafik"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr ""
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
#, fuzzy
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "aplikasi"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
#, fuzzy
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dokumèn MS-Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr ""
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
#, fuzzy
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "pranālā"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
#, fuzzy
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "berkas"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
#, fuzzy
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "folder"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr ""
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Lembar kerjā"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "presentasi"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "nggambar"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr ""
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr ""
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "rumus"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Basis data"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr ""
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr ""
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr ""
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr ""
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr ""
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr ""
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/jv/svx/messages.po b/source/jv/svx/messages.po
index 4ba853b8691..ad4f6de41b5 100644
--- a/source/jv/svx/messages.po
+++ b/source/jv/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-11 23:02+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7979,6 +7979,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
#, fuzzy
msgctxt "RID_ATTR_NAMES"
@@ -12300,84 +12305,89 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Trapké"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
#, fuzzy
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "pilih"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
#, fuzzy
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Tāndhā titik titik"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr ""
@@ -12699,116 +12709,111 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "suku"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Trapké"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Tutup"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
#, fuzzy
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "pilih"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
#, fuzzy
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Tāndhā titik titik"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktif"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Properti..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "alamat"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/jv/sw/messages.po b/source/jv/sw/messages.po
index 7fc6c090aea..9d5c32d9744 100644
--- a/source/jv/sw/messages.po
+++ b/source/jv/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-03-11 23:03+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3185,7 +3185,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12389,147 +12389,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12539,152 +12539,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13771,7 +13771,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17150,50 +17150,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
#, fuzzy
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "pratampilan"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-#, fuzzy
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "pratampilan"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipe"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
#, fuzzy
msgctxt "tocdialog|background"
msgid "Background"
msgstr "latar"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+#, fuzzy
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "pratampilan"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17429,313 +17429,313 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Judhul"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipe"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "garis wates"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafik"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
#, fuzzy
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Obyèk OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Opsi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "kategori"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "display"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
#, fuzzy
msgctxt "tocindexpage|display"
msgid "References"
msgstr "rujukan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opsi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "bāsā"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
#, fuzzy
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "urut"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "gawan"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Sunting"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr ""
diff --git a/source/ka/cui/messages.po b/source/ka/cui/messages.po
index 46a270b0a92..310d34ca07b 100644
--- a/source/ka/cui/messages.po
+++ b/source/ka/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1656,107 +1656,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "ჩარჩოების გარეშე დაყენება"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "მხოლოდ გარე ჩარჩოს დაყენება"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "მხოლოდ გარე ჩარჩოს და ჰორიზონტალური ხაზების დაყენება"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "მხოლოდ გარე ჩარჩოს და შიდა ხაზების დაყენება"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "მხოლოდ გარე ჩარჩოს დაყენება შიდა ხაზების დაყენების გარეშე"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "მხოლოდ დიაგონალური ხაზების დაყენება"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "ყველა ჩარჩოს დაყენება"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "მხოლოდ მარცხენა და მარჯვენა ჩარჩოების დაყენება"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "მხოლოდ ზედა და ქვედა ჩარჩოების დაყენება"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "მხოლოდ მარცხენა ჩარჩოს დაყენება"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "ზედა და ქვედა ჩარჩოების, აგრეთვე ყველა შიდა ხაზის დაყენება"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "მარცხენა და მარჯვენა ჩარჩოების, აგრეთვე ყველა შიდა ხაზის დაყენება"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "უჩრდილო"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ჩრდილი ქვედა მარჯვენა მხარეს"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ჩრდილი ზედა მარჯვენა მხარეს"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ჩრდილი ქვედა მარცხენა მხარეს"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ჩრდილი ზედა მარცხენა მხარეს"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1799,7 +1794,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1919,7 +1914,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2159,7 +2154,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2414,12 +2409,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2489,7 +2484,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2569,7 +2564,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2810,7 +2805,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3442,67 +3437,72 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME-ის შესახებ"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ჩემი ვებგვერდი"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3623,17 +3623,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_ჩანაცვლება"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "ჩანაცვ_ლება"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_სიგანე:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "მხოლოდ _ტექსტი"
@@ -4505,6 +4505,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5666,29 +5826,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "თვისებები"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ჩარჩო:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_სახელი"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9433,83 +9593,83 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "დახმარება"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME დიალოგების _გამოყენება"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "გახსნა/შენახვა დიალოგები"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME დიალოგების _გამოყენება"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_ბეჭდვის მიერ \"დოკუმენტი შეიცვალა\" სტატუსის დაყენება"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "დოკუმენტის სტატუსი"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "და "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "წელი (ორი ციფრი)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME-ის ჩატვირთვა სისტემის გაშვების მომენტში"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter-ი"
@@ -11459,24 +11619,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12137,102 +12282,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13298,27 +13347,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ka/extensions/messages.po b/source/ka/extensions/messages.po
index 921b0e08513..977db03490d 100644
--- a/source/ka/extensions/messages.po
+++ b/source/ka/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3196,191 +3196,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "სვეტის განლაგება %1 ცხრილისათვის"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "მოკლე სახელი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "ავტორ(ები)ი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "გამომცემელი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "თავი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "რედაქტორი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_აკრეფვა"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "წელი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "წოდება"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "მისამართი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "გ~ვერდ(ებ)ი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "გა~მოცემა"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "წ~იგნის სათაური"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "ტომი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "პუბლიკაციი ~ტიპი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "ორგანი~ზაცია"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "ინს~ტიტუტი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "უნივერსიტეტი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "ა~ნგარიშის ტიპი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "თვე"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "ჟურნალი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "რიცხვი"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "სე~რია"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "ა~ნოტაცია"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "შენიშვნა"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "მომხმარებლის მიერ განსაზღვრული ველი ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "მომხმარებლის მიერ განსაზღვრული ველი ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "მომხმარებლის მიერ განსაზღვრული ველი ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "მომხმარებლის მიერ განსაზღვრული ველი ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "მომხმარებლის მიერ განსაზღვრული ველი ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3565,31 +3565,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "კავშირის ველები"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "შეთავაზება"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "ქვეფორმები შეიძლება გამოყენებულ იქნას მასტერ ფორმის შესახებ მიმდინარე ჩანაწერის დეტალური მონაცემების საჩვენებლად."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ჭდე"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/ka/helpcontent2/source/auxiliary.po b/source/ka/helpcontent2/source/auxiliary.po
index 32d8f49e49a..88023274ad3 100644
--- a/source/ka/helpcontent2/source/auxiliary.po
+++ b/source/ka/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,17 +699,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/ka/helpcontent2/source/text/sbasic/guide.po b/source/ka/helpcontent2/source/text/sbasic/guide.po
index fe71f187443..6870f99b908 100644
--- a/source/ka/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ka/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,15 +541,15 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "დიალოგის გახსნა პროგრამული კოდით"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
msgstr ""
#: show_dialog.xhp
diff --git a/source/ka/helpcontent2/source/text/sbasic/python.po b/source/ka/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/ka/helpcontent2/source/text/sbasic/python.po
+++ b/source/ka/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/ka/helpcontent2/source/text/sbasic/shared.po b/source/ka/helpcontent2/source/text/sbasic/shared.po
index db64e9a4359..a3b34005737 100644
--- a/source/ka/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ka/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic დახმარება\">%PRODUCTNAME -ის Basic დახმარება</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/ka/helpcontent2/source/text/sbasic/shared/03.po b/source/ka/helpcontent2/source/text/sbasic/shared/03.po
index 4093fa0585b..e13a94c0c05 100644
--- a/source/ka/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ka/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/ka/helpcontent2/source/text/scalc/01.po b/source/ka/helpcontent2/source/text/scalc/01.po
index 577827cb409..59489067c42 100644
--- a/source/ka/helpcontent2/source/text/scalc/01.po
+++ b/source/ka/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">იპოვეთ ჩასასმელი მონაცემების მქონე ფაილი.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/ka/helpcontent2/source/text/schart/00.po b/source/ka/helpcontent2/source/text/schart/00.po
index e9788d4acca..a93349929e5 100644
--- a/source/ka/helpcontent2/source/text/schart/00.po
+++ b/source/ka/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/ka/helpcontent2/source/text/shared/00.po b/source/ka/helpcontent2/source/text/shared/00.po
index ad6d86bf4d7..6597c433334 100644
--- a/source/ka/helpcontent2/source/text/shared/00.po
+++ b/source/ka/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/ka/helpcontent2/source/text/shared/01.po b/source/ka/helpcontent2/source/text/shared/01.po
index e5f83c9322d..ca689751bac 100644
--- a/source/ka/helpcontent2/source/text/shared/01.po
+++ b/source/ka/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/ka/helpcontent2/source/text/shared/02.po b/source/ka/helpcontent2/source/text/shared/02.po
index 2e285dd2a1e..812b4438f4c 100644
--- a/source/ka/helpcontent2/source/text/shared/02.po
+++ b/source/ka/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/ka/helpcontent2/source/text/shared/guide.po b/source/ka/helpcontent2/source/text/shared/guide.po
index 5f8aa2cfd53..3ee574c6016 100644
--- a/source/ka/helpcontent2/source/text/shared/guide.po
+++ b/source/ka/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/ka/helpcontent2/source/text/shared/optionen.po b/source/ka/helpcontent2/source/text/shared/optionen.po
index e83f9672cdd..89a0b36109d 100644
--- a/source/ka/helpcontent2/source/text/shared/optionen.po
+++ b/source/ka/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/ka/helpcontent2/source/text/simpress/01.po b/source/ka/helpcontent2/source/text/simpress/01.po
index ea95ad77aea..ae1ff4fef9b 100644
--- a/source/ka/helpcontent2/source/text/simpress/01.po
+++ b/source/ka/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/ka/helpcontent2/source/text/swriter/guide.po b/source/ka/helpcontent2/source/text/swriter/guide.po
index ac260119d62..19781b0a3af 100644
--- a/source/ka/helpcontent2/source/text/swriter/guide.po
+++ b/source/ka/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,7 +229,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
msgstr ""
#: arrange_chapters.xhp
@@ -237,7 +237,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
index db8b852f731..5ffa0fbafa5 100644
--- a/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23696,6 +23696,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26039,6 +26048,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26057,6 +26075,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ka/sc/messages.po b/source/ka/sc/messages.po
index b2b10576e86..838d671935e 100644
--- a/source/ka/sc/messages.po
+++ b/source/ka/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15560,6 +15560,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ექსკლუზიური წვდომა)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
#, fuzzy
msgctxt "subtotalgrppage|liststore1"
@@ -16131,12 +16136,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17422,86 +17427,44 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "და_ხურვა"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "ახალი ჩანაწერი"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "ა_ხალი"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_წაშლა"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "აღდგენა"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "წინა ჩანაწერი"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "ახალი ჩანაწერი"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "და_ხურვა"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_მიმოხილვა..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "მონაცემთა ბაზის დიაპაზონები"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19291,36 +19254,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "თარიღი"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "სვეტები"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "რიგი"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "დაჯგუპებულია: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "ინტერვალი"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19468,167 +19436,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22256,17 +22226,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24224,113 +24204,118 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~ფანჯარა"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "ბადის ხაზები"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_ფერი"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "~ჩვენება"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "დამალვა"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "გვერდის დაცილება"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "გრაფიკები"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "სა_ხატავი ობიექტები"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "~ჩვენება"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "დამალვა"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "~ჩვენება"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "დამალვა"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "~ჩვენება"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "დამალვა"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "ობიექტები"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/ka/scp2/source/ooo.po b/source/ka/scp2/source/ooo.po
index dcef729b63a..ae6462ab821 100644
--- a/source/ka/scp2/source/ooo.po
+++ b/source/ka/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "ღია დოკუმენტი"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ka/scp2/source/winexplorerext.po b/source/ka/scp2/source/winexplorerext.po
index 5fb8510fcc9..f578109ce23 100644
--- a/source/ka/scp2/source/winexplorerext.po
+++ b/source/ka/scp2/source/winexplorerext.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 23:15+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ka\n"
@@ -12,8 +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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369352850.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "ნებადართულია Microsoft Windows Explorer-ის გაჩვენოთ ინფორმაცია %PRODUCTNAME დოკუმენტის შესახებ, როგორც thumbnail-ის გადახედვა."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ka/sd/messages.po b/source/ka/sd/messages.po
index f69ea3762e9..32c224a83ba 100644
--- a/source/ka/sd/messages.po
+++ b/source/ka/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2638,6 +2638,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3113,164 +3118,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4746,160 +4936,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ka/sfx2/messages.po b/source/ka/sfx2/messages.po
index 848279765f3..c1d189edaee 100644
--- a/source/ka/sfx2/messages.po
+++ b/source/ka/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -902,39 +902,34 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ფაილი უკვე არსებობს. გადავაწერო?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~ხელახალი კონფიგურაცია"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ეს სახელი უკვე არსებობს."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ეს სტილი არ არსებობს."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -944,7 +939,7 @@ msgstr ""
"შეუძლებელია ამ სტილის გამოყენება საბაზისო სტილად,\n"
"რადგან ეს გამოიწვევს რეკურსიულ მიმართვას."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -953,7 +948,7 @@ msgstr ""
"ეს სახელი უკვე არსებობს ნაგულისხმევ სტილად.\n"
"გთხოვთ აირჩიოთ ახალი სახელი."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -961,95 +956,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "ნავიგატორი"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "პაროლის არასწორი დადასტურება"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "~გაგაზავნა"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "შრიფტი"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "ვერსიის კომენტარის ჩართვა"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "იერარქიული"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ფორმატის რეჟიმის შევსება"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "ახალი სტილი მონიშნულიდან"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "სტილის განახლება"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "მართლა გსურთ ჩანაწერის წაშლა? ნებისმიერი ნაბიჯი,რომელიც ჩაწერილია ამ წერტილში,დაიკარგება."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ჩანაწერის შეჩერება"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ხდება შაბლონების ინიციალიზაცია პირველად გამოყენებისთვის."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1058,7 +1053,7 @@ msgstr ""
"ნაგულისხმევი პრინტერის პოვნა ვერ მოხერხდა. \n"
" გთხოვთ აირჩიოთ პრინტერი და სცადოთ თავიდან."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1067,17 +1062,17 @@ msgstr ""
"პრინტერის ჩართვა ვერ მოხერხდა. \n"
" გთხოვთ შეამოწმოთ პრინტერის კონფიგურაცია."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "პრინტერი დაკავებულია"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(მხოლოდ წასაკითხად)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1088,7 +1083,7 @@ msgstr ""
"გსურთ შეინახოთ ახალი პარამეტრები.\n"
"აქტიურ დოკუმეტში?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1099,7 +1094,7 @@ msgstr ""
" გსურთ ახალი პარამეტრების შენარჩუნება\n"
" გააქტიურებულ დოკუმენტში? "
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1110,7 +1105,7 @@ msgstr ""
"გსურთ შეინახოთ ახალი პარამეტრები.\n"
"აქტიურ დოკუმეტში?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1120,7 +1115,7 @@ msgstr ""
"დოკუმენტის დახურვა არ ხერხდება რადგან \n"
" მიმდინარეობს ბეჭდვითი სამუშაო. "
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1128,7 +1123,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1136,18 +1131,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ამ დოკუმენტის რედაქტირება შეუძლებელია, სავარაუდოდ შესაბამისად გამოყენების უფლების არარსებობის გამო. გსურთ ამ დოკუმენტის ასლის რედაქტირება?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1155,353 +1150,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (შეკეთებული დოკუმენტი)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "დოკუმენტის რედაქტირება"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ფაილის დოკუმენტი"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "საშუალებების სორტირება"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "მორგებული ანიმაცია..."
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "წაშლა"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1860,32 +1865,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "ვერსიის კომენტარი"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "სახელი"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "ტიპი"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "მნიშვნელობა"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "ტიპი"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "დიახ"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "არა"
@@ -1895,17 +1885,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "სახელი"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "ტიპი"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "მნიშვნელობა"
@@ -2046,19 +2036,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "მდებარეობა:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ტიპი:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "პაროლის ~შეცვლა..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "შაბლონი:"
@@ -2069,28 +2059,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "პარამეტრები:"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "ზოგადი"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "აღწერილობა"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "უსაფრთხოება"
@@ -2316,6 +2306,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ka/shell/messages.po b/source/ka/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ka/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ka/starmath/messages.po b/source/ka/starmath/messages.po
index 80b764f482c..0d557af8785 100644
--- a/source/ka/starmath/messages.po
+++ b/source/ka/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1648,273 +1648,298 @@ msgid "Examples"
msgstr "მაგალითი"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "სტანდარტული"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "კურსივი"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "მუქი"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "შავი"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ლურჯი"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "მწვანე"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "იისფერი"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ნაცრისფერი"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "დრო"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "ყვითელი"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "დამალვა"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "სინუსი"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "შრიფტი"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "მარცხნივ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ცენტრში"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "მარჯვნივ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "ბრძანებები"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "ფორმულა"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "შინახება დოკუმენტი..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION ფორმულა"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "შედცომა:"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "დაუშვებელი სიმბოლო"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' აკლია"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' აკლია"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' აკლია"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' აკლია"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' აკლია"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "მოთხოვნილი ფერი"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' აკლია"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME API"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "შინაარსი"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "სათაური"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~ფორმულის ტექსტი"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "ჩარჩოები"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "ზომა"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "საწყისი ~ზომა"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "გ~ვერდზე გასწორება"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1985,6 +2010,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "ელემენტი"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/ka/svtools/messages.po b/source/ka/svtools/messages.po
index c82dfa1d4e6..92ac78cfab7 100644
--- a/source/ka/svtools/messages.po
+++ b/source/ka/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1524 +16,1526 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195596.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "უკუსვლა: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "კვლავ შესრულება: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "გამეორება:"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "დაუფორმატირებელი ტექსტი"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "სტატუსის ინფორმაცია Svx შიდა ბმულიდან"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape -ის სანიშნე"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star სერვერის ფორმატი"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star ობიექტის ფორმატი"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet ობიექტი"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "ჩანარტის ობიექტი"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 ობიექტი"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 ობიექტი"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 ობიექტი"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 ობიექტი"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 ობიექტი"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 ობიექტი"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 ობიექტი"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw ობიექტი"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 ობიექტი"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 ობიექტი"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 ობიექტი"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc ობიექტი"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 ობიექტი"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 ობიექტი"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart ობიექტი"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 ობიექტი"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage ობიექტი"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 ობიექტი"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 ობიექტი"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath ობიექტი"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 ობიექტი"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 ობიექტი"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint ობიექტი"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word ობიექტი"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet ობიექტი"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office დოკუნეტის ობიექტი"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes დოკუნეტნის ინფორმაცია"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx დოკუმენტი"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 object"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "გრაფიკული ობიექტი"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metafile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "მონაცემთა წყაროს ობიექტი"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "მონაცემთა წყაროს ცხრილი"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL მოთხოვნა"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "ბმული"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML ფორმატი კომენტარების გარეშე"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "ობიექტი ვერ ჩაემატა."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ობიექტი დოკუმენტი %-დან ვერ ჩაემატა."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "სხვა ობიექტები"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "უცნობი წყარო"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "სახელი"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "ზომა"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "მონაცემთა ცვლილება"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "ტიპი"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ბაიტი"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "კბაიტი"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "მბაიტი"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "გბაიტი"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "სტრიქონი: %1, სვეტი: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr "ტიპი %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "საქაღალდე"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ფაილი"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ცარიელი ველი"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ასო-რიცხობრივი"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "ნორმალურად"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "კოდირება"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "ლექსიკონი"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "მახვილი"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "რადიკალური"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "უნიკოდი"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ტელეფონების წიგნი"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ფონეტიკური (ანბანურ-ციფრული პირველად)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ფონეტიკური (ანბანურ-ციფრული ბოლოს)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ასო-რიცხობრივი"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "ლექსიკონი"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "რადიკალური"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "მახვილი"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ფონეტიკური (ანბანურ-ციფრული პირველი, მარცვლების მიხედვით დაჯგუფებული )"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ფონეტიკური (ანბანურ-ციფრული პირველი, მუდმივების მიხედვით დაჯგუფებული )"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ფონეტიკური (ანბანურ-ციფრული ბოლო, მარცვლების მიხედვით დაჯგუფებული )"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ფონეტიკური (ანბანურ-ციფრული ბოლო, მუდმივების მიხედვით დაჯგუფებული )"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "დღეს"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "არაფერი"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ნათელი"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ნათელი კურსივი"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "ჩვეულებრივი"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "კურსივი"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "მუქი"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "მუქი კურსივი"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "შავი"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "შავი კურსივი"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "წიგნი"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "შეკუმშული"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "თქვენს პრინტერზეც და თქვენს ეკრანზეც გამოყენებული იქნება ერთიდაიგივე შრიფტი."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "ეს არის პრინტერის შრიფტი. ეკრანის გამოსახულება შეიძლება იყოს განსხვავებული."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "შრიფტის ეს ზომა იქნება სიმულირებული ან უახლოესი შესაბამისი სტილი იქნება გამოყენებული."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ეს შრიფტი არ არის დაინსტალირებული. უახლოესი ხელმისაწვდომი შრიფტი იქნება გამოყენებული."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "არჩევა..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ჩარჩოს გადატანა"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "გადაადგილება მარცხნივ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "გადაადგილება მარჯვნივ"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "დაწევა"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "დამატება"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "ჰორი_ზონტალური სახაზავი"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ვეერტიკალური სახაზავი"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 ბიტიანი ზღვარი"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 ბიტიანი შერევა"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 ბიტიანი ნახევარტონები"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 ბიტიანი ნახევარტონები"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 ბიტიანი რეალისტური ფერი"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ღირებულება"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "სორტირება"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "მჭადყოფნა"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "შეჩერებული"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "მიმდინარეობს წაშლა"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "დაკავებული"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ინიციალიზირება"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "ცდა"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "მიმდინარეობს გახურება"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "დამუშავება"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "ბეჭდვა"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "კავშირგარეშე"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "შეცდომა"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "უცნობი სერვერი"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "ფურცელის გაჭედვა"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "ქაღალდი არასაკმარისია"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "ხელით მიწოდება"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "ფურცლის პრობლემა"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O აქტიურია"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "ფურცლების გამოსასვლელი სავსეა"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "დაბალი ტონერის დონე"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "ტონერი გათავდა"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ფურცლის წაშლა"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "სასარგებლოა მომხმარებლის ჩარევა"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "მეხსიერება არასაკმარისია"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "თავსახური გახსინილა"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "ენერგიის ეკონომიის რეჟიმი"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ნაგულისხმევი პრინტერი"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d დოკუმენტები"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~დასრულება"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~წინ >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<<უ~კან"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "საფხურები"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<არაფერი>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "კომპანია"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "დეპარტამენტი"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "სახელი"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "გვარი"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ქუჩა"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "ქვეყანა"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ფოსტის კოდი"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "ქალაქი"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "თანამდებობა"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "პოზიცია"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "მისამართის ფორმა"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "ინიციალები"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "დასამშვიდობებელი ფრაზა"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "ტელ: სახლი"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "ტელ: სამსახური"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "შენიშვნა"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "მომხმარებელი 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "მომხმარებელი 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "მომხმარებელი 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "მომხმარებელი 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "შტატი"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "ტელეფონი: ოფისი"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "პეიჯერი"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "მობილური"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ტელ: სხვა"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "კალენდარი"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "დაპატიჟება"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME-ს ამ დავალების შესასრულებლად ჭირდება ჯავას გაშვების გარემო(JRE). გთხოვთ დააინსტალიროთ JRE და ხელახლა ჩატვითოთ %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "საჭიროა JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "აირჩიეთ JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE დეფექტურია"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "წყაროს კოდი"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "სანიშნეს ფაილი"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "გრაფიკა"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "კონფიგურაციის ფაილი"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "პროგრამა"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "მონაცემთა ბაზის ცხრილი"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "სისტემური ფაილი"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-ის დოკუმენტი"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "დახმარების ფაილი"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML დოკუმენტი"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "არქვისი ფაილი"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ჩანაწერების ფაილი"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 შაბლონი"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0-ის მთავარი დოკუმენტი"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 შაბლონი"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ტექსტური ფაილი"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "ბმული"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 შაბლონი"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-ის დოკუმენტი"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-ის შაბლონი"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "გამშვები ფაილი"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ფაილი"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "დირექტორია"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ტექსტური დოკუმენტი"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ელ. ცხრილი"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "პრეზენტაცია"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ნახატი"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML დოკუმენტი"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "მთავარი დოკუმენტი"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "ფორმულა"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "მონაცემთა ბაზა"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ლოკალური დისკი"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "დისკწამყვანი"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM დისკწამყვანი"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "ქსელური კავშირი"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-ის დოკუმენტი"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-ის შაბლონი"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-ის შოუ"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-ის დოკუმენტი"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-ის მონაცემთა ბაზა"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-ის ნახატი"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-ის ფორმულა"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-ის მთავარი დოკუმენტი"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-ის პრეზენტაცია"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-ის ელექტრონული ცხრილი"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-ის ტექსტი"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-ის ელ. ცხრილის შაბლონი"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-ის ნახატის შაბლონი"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-ის პრეზენტაციის შაბლონი"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-ის ტექსტის შაბლონი"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ka/svx/messages.po b/source/ka/svx/messages.po
index 24242e0f273..d22fced463b 100644
--- a/source/ka/svx/messages.po
+++ b/source/ka/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8017,6 +8017,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12532,88 +12537,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "კონტურის რედაქტორი"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "გამოყენება"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "სამუშაო არე"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "მონიშვნა"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "მართკუთხედი"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ელიპსი"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "პოლიგონი"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "რედაქტირების წერტილები"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "გადაადგილების წერტილები"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ჩასმის წერტილები"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "წაშლის წერტილები"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "ავტოკონტური"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "უკუსვლა"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "წითელი"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "პალიტრები"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12946,123 +12956,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "ქვედა კოლონტიტული"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ნახატის რუქის რედაქტორი"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "გამოყენება"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "გახსნა..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "დამახსოვრება..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "დახურვა"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "მონიშვნა"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "მართკუთხედი"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ელიპსი"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "პოლიგონი"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "თავისუფალი პოლიგონი"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "რედაქტირების წერტილები"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "გადაადგილების წერტილები"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ჩასმის წერტილები"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "წაშლის წერტილები"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "უკუსვლა"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "წითელი"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "აქტიური"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "მაკრო..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "თვისებები:"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "მისამართი:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ჩარჩო"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/ka/sw/messages.po b/source/ka/sw/messages.po
index ceeba5a5f23..5a2abb867f1 100644
--- a/source/ka/sw/messages.po
+++ b/source/ka/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3175,9 +3175,9 @@ msgid "Change object title of $1"
msgstr "$1-ის ობიექტის სათაურის შეცვლა"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1-ის ობიექტის აღწერილობის შეცვლა"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12579,147 +12579,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12729,152 +12729,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13982,7 +13982,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17457,49 +17457,49 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "გადახედვა"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "გადახედვა"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "ტიპი"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "შენატანები"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "სტილი"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "სვეტები"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "ფონი"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "გადახედვა"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "დონე"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17742,325 +17742,325 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "რედაქტირება..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_სათაური"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "ტიპი"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "ცხრილი შინაარსი"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "მომხმარებლის მიერ განსაზღვრული1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ბიბლიოგრაფია 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ფორმა"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~სრული დოკუმენტი"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "თავი"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "კონტური"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
#, fuzzy
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "_ცხრილები"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "ტექსტის ჩარჩო"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "გრაფიკა"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE ობიექტები"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "პირობითი სტილები"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "სტილი"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "წარწერა"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "ობიექტის სახელი"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "კატეგორია"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "ეკრანი"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "მითითებები"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "კატეგორია და ნომერი"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "ტექსტის წარწერა"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "ფრჩხილები"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[არცერთი]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ფაილი"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "პარამეტრები"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ენა"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "გასაღების ტიპი"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "სორტირება"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "დონე"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(აბზაცის სტილი: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "საწყისი"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_რედაქტირება"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/kab/cui/messages.po b/source/kab/cui/messages.po
index e91249721de..a8c031f48a2 100644
--- a/source/kab/cui/messages.po
+++ b/source/kab/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-12-14 16:56+0000\n"
"Last-Translator: Muḥend Velqasem <belkacem77@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1637,107 +1637,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "tttxil-k sekcem tansa n usentel ameɣtu neɣ awal n unadi."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Ur sbadu ara iran"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Sbadu ḥaca iri n berra"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Sbadu iri n berra aked ijerriḍen iglawanen"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Sbadu iri n daxel aked ijerriḍen merra n daxel"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Sbadu iri n berra war ma tbeddeleḍ ijerriḍen n daxel"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Sbadu ḥaca ijerriḍen ubdisen"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Sbadu kuẓ n yiran"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Sbadu ḥaca iri azelmaḍ akked yiri ayefus"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Sbadu kan iri n ufella akked yiri n wadda"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Sbadu ḥaca iri azelmaḍ"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Sbadu iran n ufella aked yiran n wadda, akked izirigen igensanen"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Sbadu iri azelmaḍ aked yiri ayefus, akked ijerriḍen n daxel merra"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Ulac tili"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Senẓer tili uksar ɣer yefus"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Senẓer uksawen ɣer yefus"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Senẓer tili ukessar ɣer zelmaḍ"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Senẓer tili uksawen ɣer zelmaḍ"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Ittuzmel sɣur: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1780,7 +1775,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1900,7 +1895,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2140,7 +2135,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2395,12 +2390,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2470,7 +2465,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2550,7 +2545,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2791,7 +2786,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3375,66 +3370,71 @@ msgid "About %PRODUCTNAME"
msgstr "Ɣef %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Is_maden"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Asmel Web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Asideg: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Tutlayt Agrudem: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Ẓer aɣmis : $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME d tagrumma tanarant n uɣbalu yeldin, d atrar u fessus i weseqdec, i wesfer n uḍris, imbellezen, isenkad d wayen nniḍen."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice yebna ɣef OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME yeffeɣ-d si LibreOffice i yebnan ɣef OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Lqem agi imudd-it-id %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3549,17 +3549,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Semselsi"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Se_mselsi"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_S:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Aḍ_ris kan"
@@ -4379,6 +4379,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Taɣzi n wawal taddayt"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5489,27 +5649,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Iraten"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "A_katar:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_ISEM:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Aḍris amlellay:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "A_snummel:"
@@ -9018,80 +9178,80 @@ msgstr "Sken asfaylu popuap \"Ulac tallalt war tuqqna i yettwasbedden\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Tallalt"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Seqdec Tinkulin n udiwenni %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Tankult n udiwenni Lddi/Sekles"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Seqdec Tinkulin n _udiwenni %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Tankult n udiwenni Siggez"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "A_siggez yesbadu aẓayer n \"uttaftar yettwabeddelen\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Addad n isemli"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Suqel am iseggasen gar "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "akked "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Aseggas (sin izwilen)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Lqeḍ isefka n useqdec yerna azen-iten ɣer The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Fkk-d tallalt i wesnerni n %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Aɛebbi n %PRODUCTNAME mi ara yekker unagraw"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Sermed asekker arurad n teɣzut n tilɣa"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Asekker arurad n %PRODUCTNAME"
@@ -10964,25 +11124,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Asentel ibedden yakan"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Asentel udmawan"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Neɣ, fren gar isental yettwasbedden s ttawil n isiɣzifen:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Isental Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11609,102 +11754,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Tinefrunin n teɣlist"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Fren asentel Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Amadwan"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Tiɣzinin"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Askar"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Asaru d TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Imuṛas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Aẓawan"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Agama"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Wayeḍ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Timeẓriyin n ugama"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Asemhuyan"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Aččuran"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Addal"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Ismal Web"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "S yitran"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12711,27 +12760,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/kab/extensions/messages.po b/source/kab/extensions/messages.po
index ba3315b2c4d..7f21c5071e4 100644
--- a/source/kab/extensions/messages.po
+++ b/source/kab/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3092,162 +3092,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Aseggem n tgejda i tdabut %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Isem awe_zlan"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "A_mskar(i-en)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "A_maẓrag"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "I_xef"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Amaẓrazg"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Ta_wsit"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Ase_ggass"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Azwe_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Ta_nsa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Ase_btar(i-ar)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Taẓri_gt"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Azwel n u_dlis"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Asunneḍ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Tawsit n teẓrigt"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Tu_ddsa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "_Tasudut"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Tasda_wit"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tawsit n une_qqis"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "A_ggur"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Aɣ_mis"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Amḍa_n"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Az_rir"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Tazmi_lt"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Tama_wt"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Urti yesbadu useqdac _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Urti yesbadu useqdac _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Urti yesbadu useqdac _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Urti yesbadu useqdac _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Urti yesbadu useqdac _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Ismawen n tgejda"
@@ -3422,27 +3422,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Sekcem isem n wanaw amaynut n isefka:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Sdukel urtiyen"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Sumer"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Tiferkiwin tinaddawin zemrent ad ttwasqedcent iwakken ad tbeqqeḍeḍ isefka s telqey ɣef ukalas amiran di tferkit tagejdant. Iwakken ad tgeḍ ayagi, mel tigejda yemtawan akked tgejda-nniḍen n tferkit tagejdant."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "tabzimt"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "tabzimt"
diff --git a/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po
index 45b50251ef8..6ea2ecebc0a 100644
--- a/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23399,6 +23399,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25688,6 +25697,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25706,6 +25724,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/kab/sc/messages.po b/source/kab/sc/messages.po
index e880969e795..6bca5a01792 100644
--- a/source/kab/sc/messages.po
+++ b/source/kab/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-12-14 20:43+0000\n"
"Last-Translator: Muḥend Velqasem <belkacem77@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15210,6 +15210,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(anekcum imsuffeɣ)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15760,12 +15765,12 @@ msgstr "Amsal awtilan"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16988,81 +16993,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Tafelwit n isefka"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Mdel"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Asekles amaynut"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Amaynut"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Kkes"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Err-d"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Asekles yezrin"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Asekles d ite_ddun"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Mdel"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "Tansa URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "S_nirem..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Azilal n taffa n isefka:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Asaǧǧaw n yisefka:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Nadi azrir:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18787,32 +18752,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Agmuḍ ɣer:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Isefka"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Tigejda"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Izirigen"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Yeddukel s"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Azillal:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Isefran"
@@ -18955,167 +18925,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21605,17 +21577,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Igmaḍ n unadi"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23492,107 +23474,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "I_zamulen n uɣawas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Asfaylu"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Iziri_gen n izḍi:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Ini:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Sken"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Ffer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Ingazen n _usebter"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Izirigen n tallalt deg unkaz"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Tallalt tamwalant"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Tiɣawsiwin/Tugniwin"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "I&dlifen:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Asuneɣ n tɣawsiwin:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Sken"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Ffer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Sken"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Ffer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Sken"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Ffer"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Tiɣawsiwin"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "_Mtawi tiferkiyin"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Simɣur"
diff --git a/source/kab/scp2/source/ooo.po b/source/kab/scp2/source/ooo.po
index 6e009458368..8af7ddddf96 100644
--- a/source/kab/scp2/source/ooo.po
+++ b/source/kab/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "Ldi isemli"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/kab/scp2/source/winexplorerext.po b/source/kab/scp2/source/winexplorerext.po
index c6b4b05e5bf..edb69971e2f 100644
--- a/source/kab/scp2/source/winexplorerext.po
+++ b/source/kab/scp2/source/winexplorerext.po
@@ -3,9 +3,9 @@ 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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2015-05-10 14:01+0000\n"
-"Last-Translator: Yacine_Bouklif <yacine_tizi2003@yahoo.fr>\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kab\n"
"MIME-Version: 1.0\n"
@@ -28,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
msgstr ""
diff --git a/source/kab/sd/messages.po b/source/kab/sd/messages.po
index 011a3eee10b..e68339a830b 100644
--- a/source/kab/sd/messages.po
+++ b/source/kab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2582,6 +2582,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Sit akken ad teldiḍ aseɣwen:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3037,164 +3042,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Isem i wesali HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "A_faylu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Ta_llalt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "A_snubeg"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Urt_i"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ger"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "A_cegger"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Sk_en"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Selket"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "I_fecka"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4582,160 +4772,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Sken talɣiwin"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/kab/sfx2/messages.po b/source/kab/sfx2/messages.po
index d706561294a..9cc1d498719 100644
--- a/source/kab/sfx2/messages.po
+++ b/source/kab/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -918,11 +918,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " A : %1 M : %2 J : %3 H : %4 M : %5 S : %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Kkes ayla"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -931,27 +926,27 @@ msgstr ""
"Azal ittuskecmen ur inmeɣra ara akked tewsit i d-ittunefken.\n"
"Azal ilaq ad ittusekles d aḍris."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Aɣanib yella yakan. Ad t-tesfesxeḍ ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "A~lles awennez"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Awal-agi yettwaseqdec yakan."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Aɣanib-agi ulac-it."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -960,7 +955,7 @@ msgstr ""
"Aɣanib-agi ulamek ara yettwaseqdec d aɣanib azadur\n"
"acku ad d-iglu s temselɣut tasnalast."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -969,7 +964,7 @@ msgstr ""
"Isem-agi yettunefk yakan i uɣanib n lexṣas.\n"
"Ttxil-k fren wayeḍ."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -980,92 +975,92 @@ msgstr ""
"Ma tekkseḍ aɣanib, aḍris ad yuɣal ɣer uɣanib ababat.\n"
"Mazal tebɣiḍ ad tekkseḍ iɣunab-agi?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Iɣunab yettwasqedcen: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Iminig"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Aserggeg armeɣtu n wawal n uɛeddi"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Azen"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Tasefsit"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Sken awennit n tuttuyt"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(ulac asbadu n yisem)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Tabdart n uɣanib"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Amyellel"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Askar n umasal n tačart"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Aɣanib amaynut si tefrayt"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Mucceḍ aɣanib"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "D tidett tebɣiḍ ad tsefsxeḍ asekles ? Isalen akk i teskelseḍ ar tura ad ruḥen."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Sefsex asekles"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Awennez n tneɣrufin i weseqdec amaynut."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1074,7 +1069,7 @@ msgstr ""
"Ur d-nufi ara ula yiwet n tsaggazt n lexṣas.\n"
"Ttxil-k eɛreḍ tikkelt-nniḍen."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1083,17 +1078,17 @@ msgstr ""
"Ulamek asekker n tsaggazt\n"
"Ttxil-k selken tawila."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Tasaggazt ur testufa ara"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (taɣuri kan)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"Tebɣiḍ ad teskelseḍ iɣewwaren imaynuten deg\n"
"isemli amiran ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"Tebɣiḍ ad teskelseḍ iɣewwaren ittwabeddelen\n"
"deg uttafttar ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1126,7 +1121,7 @@ msgstr ""
"Tebɣiḍ ad teskelseḍ iɣewwaren imaynuten deg\n"
"isemli amiran ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1135,7 +1130,7 @@ msgstr ""
"Ulamek amdal n uttafttar,\n"
" tamhelt n usiggez mazal tetteddu."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1143,7 +1138,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1154,17 +1149,17 @@ msgstr ""
"\n"
"Tangalt n tuccḍa d tagi $1."
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Tuccḍa di tuzzna n yizen."
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Isemli-agi ulamek ara yettwaẓreg (xuṣen izerfan n wadduf). VTebɣiḍ ad tkemeleḍ amahil-ik s tsukkint n isemli ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1175,349 +1170,359 @@ msgstr ""
"\n"
"Tzemreḍ daɣen ad tettuḍ asekkeṛ u ad teldiḍ afaylu i wesiẓreg."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Ldi ta~sukkint"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Ldi"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (attafttar yettuseggem)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Isemli ur d-yettwakkes ara seg uqeddac."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Awes-aɣ ad nesselhu ugar %PRODUCTNAME!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Ttekki"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Taftart teldi i tɣuri kan."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "PDF agi yeldi s uskar n tɣuri kan iwakken ad yureg uzmel n ufaylu yellan."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Tabzimt n usismel n isemli-agi d %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Isemli-ai ilaq ad ittusismel send ad tizmireḍ ad tsentḍeḍ agbur n tecfawit."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Isemli-agi yesɛa aswir n usismel meẓẓi ɣef win n tecfawit."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Aswir"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Taɣellist taɣelnawt:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Asenqad ara yettusifḍen:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Tuffɣa"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Ẓreg isemli"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Zmel isemli..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Azmal n uttaftar d armeɣtu."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Azmel d ameɣtu, maca isemli yettwabeddel"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Azmel n isemli d ameɣtu, maca aselkin ulamek ara yettuseɣbel."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Azmel n isemli d ameɣtu, maca isemli yettuzmel kan s uḥric."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Isemli yettuzmel s wudem umḍin yerna azmel d ameɣtu."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Sken izmulen"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Mdel tidlit"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Semdey"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Senṣel"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Ugar n tnefrunin"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Mdel tafeggagt n yidis"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Iɣewwaren n tfeggagt n yidis"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Asagen"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Err-d amezwer"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Mdel tafeggagt n yidis"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Taɣrast"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Tamaknayt tanilit"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Iɣawasen iniliyen"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Anili afaw"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Azeggaɣ"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Asaḍas"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Agḍiḍ n teẓgi"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Aswar"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Tahregt"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Tafat"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Izegzew"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Anili n yiḍ"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Unuɣ agaman"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Akeryun"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Apyanu"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Akaram n imahilen"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Akala"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Tafrara"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Azwil n wagim"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Iǧhedd"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Agzul"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Lxṣas"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Atrar"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Tabrat n uzenzu tatrart sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Tabrat n uzenzu tatrart serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Takarḍa n tirzi s ulugut"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Kkes"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Sfeḍ kulec"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Teɣzi n wawal n uɛeddi"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Awal uffir i teskecmeḍ igla-d s wugur n tegramahalant. ttxil-k sekcem awal uffir ur nettɛeddi ddaw n 52 n yiṭamḍanen neɣ ugarn 55 n yiṭamḍanen."
@@ -1862,32 +1867,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Awennit n tuttuyt:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Isem"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Askar"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Azal"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Askar"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ih"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ala"
@@ -1897,17 +1887,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Rnu a_yla"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Isem"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Askar"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Azal"
@@ -2037,17 +2027,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "A_dig:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Ta_wsit:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_Snifel awal uffir"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Taneɣruft:"
@@ -2057,27 +2047,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Timeẓliyin n “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Amatu "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Asnummel"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Iraten yugnen"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Irraten n CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Taɣellist"
@@ -2291,6 +2281,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/kab/shell/messages.po b/source/kab/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/kab/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/kab/starmath/messages.po b/source/kab/starmath/messages.po
index d5b415bde9b..5450886adf0 100644
--- a/source/kab/starmath/messages.po
+++ b/source/kab/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1639,261 +1639,286 @@ msgid "Examples"
msgstr "Imedyaten"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Tizeɣt"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Yekna"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Zur"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "aberkan"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "anili"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "azegzaw"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "azeggaɣ"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "Cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "Magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "amelliɣdi"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "Akud"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "aqahwi"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "navy"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "azemmur"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "agadaw"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "aẓref"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "anili afaw"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "awraɣ"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Ffer"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "tiddi"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "taseftit"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "zelmaḍ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "alemmas"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "yeffus"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Inezḍayen"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Tanfalit"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Asekles n uttaftar..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Tanfalit %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "TUCCḌA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Asekkil ur nettwarǧi ara"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' yettwarǧa"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' yesttwarǧa"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' yettwarǧa"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' yettwarǧa"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' yettwarǧa"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Ini yettwasra"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' yettwarǧa"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Igburen"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "A~zwel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Aḍris n tenfalit"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "I~ran"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tiddi"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tiddi ta~sentant"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Sezg ɣer u~sebtar"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Ta~skala"
@@ -1958,6 +1983,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Iferdisen"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/kab/svtools/messages.po b/source/kab/svtools/messages.po
index d2ca03c2353..51f06635b65 100644
--- a/source/kab/svtools/messages.po
+++ b/source/kab/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1519 +15,1521 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195603.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Kkes: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "E~rr-d: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "A~les: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Aḍris ur yemsil ara"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Isalen n waddad n Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Isɣalen Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Amasal n uqeddac Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Amasal n tɣawsa Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Taɣawsa applet"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Taɣawsa plug-in"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Taɣawsa StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Taɣawsa StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Taɣawsa StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Taɣawsa StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Taɣawsa StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Taɣawsa StarWriter/Maître 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Taɣawsa StarWriter/Maître 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Taɣawsa StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Taɣawsa StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Taɣawsa StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Taɣawsa StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Taɣawsa StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Taɣawsa StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Taɣawsa StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Taɣawsa StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Taɣawsa StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Taɣawsa StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Taɣawsa StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Taɣawsa StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Taɣawsa StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Taɣawsa StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Taɣawsa StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Taɣawsa StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Taɣawsa StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Taɣawsa Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Taɣawsa StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Taɣawsa taftart Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Info document Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Taftart sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Taɣawsa StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Taɣawsa tudlift"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Taɣwsa OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Taɣwsa OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Isemli agejdan OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Taɣwsa Draw OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Taɣwsa Impress OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Taɣwsa Calc OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Taɣwsa tudlift OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Taɣawsa Math OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Adferfaylu Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Taɣawsa n uɣbalu n yisefka"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tadabut n uɣbalu n yisefka"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Tuttra SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Asdiwenni OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Aseɣwen"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Amasal HTML war iwenniten"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "D awezɣi asnulfu n tɣawsa %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "D awezɣi tugra n tɣawsa seg wefaylu %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Tiɣawsiwin-nniḍen"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Aɣbalu ur nettwassen ara"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Isem"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Tiddi"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Azemz n ubeddel"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Anaw n ugbur"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Iṭamḍanen"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KAṬ"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MAṬ"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GAṬ"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Adur: %1, tigejdit: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tawsit: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Akaram"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Afaylu"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Urti ilem"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Agmumḍin"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "amagnu"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Tagrumma n isekkilen"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Amawal"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Afeggag"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Adlis n usawal"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Timsislit (agmumḍin di tazwara)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Timsislit (agmumḍin di tagarra)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Agmumḍin"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Amawal"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Afeggag"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trait (stroke)"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Timsislit (agmumḍin di tazwara, asegrew s tunṭiqin)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Ass-agi"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Ulac"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Arqaq"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Arqaq yekna"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Amagnu"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Yekna"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Zur"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Azuran yekna"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Aberkan"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Azuran yekna"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Adlis"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Amezlagu"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Yessed"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Yessed d azuran"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Azuran yessed yekna"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Yessed"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Yessed yekna"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Yessed amezlagu"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "D arqaq maḍi"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "D arqaq maḍi yekna"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Yekna"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Azgen azuran"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Azgen azuran yekna"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Yiwet n tsefsit i wesiggez d ubeqqeḍ ɣef ugdil."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Tasefsit n tsaggazt. Abeqqeḍ aked usiggez ad mgaraden."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Tasefsit-agi ur tettusbedd ara. Tasefsit iqerben ad tt-ttuseqdec.."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Snirem..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mutti s axxam"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Smutti ɣer zelmaḍ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Smutti ɣer yefus"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mutti ɣer tagarra"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Rnu"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Taɣda taglawant"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Taɣda taratakt"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Azal n umnar 1 bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Tanezwit 1 bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Aswir n imelliɣdi 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Ini 4 bits"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Aswir n imelliɣdi 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Ini 8 bits"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Initen n 24 bit (True color)"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Tugna tuḥwaǧ %1 Ko n tkatut."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Tugna tuḥwaǧ %1 Ko n tkatut, Tiddi n ufaylu %2 Ko."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Tiddi n ufaylu %1 Ko."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Asneftaɣ"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Tawwurt"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "CMIS nniḍen"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Yewjed"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Yeḥbes"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Tukksa taɣuḍart"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Anagraw ur yestufa ara"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Awennez"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Araǧu"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Préchauffage"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Asekker"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Asiggez"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Yenser"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Anezri"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Aqeddac ur nettwassen ara"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Adeffes n lkaɣeḍ"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ixuṣ lkaɣeḍ"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Asečči s ufus"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Ugur n usečči n lkaɣeḍ"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S yermed"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Amsersi n tuffɣa yeččur"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Ulac aṭunir"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Tukksa n usebtar"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Aseqdac ilaq ad iger iman-is"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Txuṣ tkatut"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Askar tadamsa n tfasa"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Tasaggazt n lexṣas"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d n isemliyen"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Fakk"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Ɣeṛ ~zdat >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Ɣer de~ffir"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Imecwaṛen"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "(ulac)"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Taṛmist"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Agezdu"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Isem amezwaru"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Isem n tmagit"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Azniq"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Tamurt"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Tangalt n lbusṭa"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Aɣrem"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Azwel"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Adig"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Isekkilen imezwura"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tanfalit n tagarra"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Asawal n uxxam"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Asawal n umahil"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Tamawt"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Aseqdac 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Aseqdac 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Aseqdac 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Aseqdac 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Addad"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Asawal n tnarit"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Lkaɣeḍ"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Asawal n ufus"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Asawal nniḍen"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Tafada"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Snubget"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME yesra tawennaṭ n uselkem Java (JRE) akken ad iselkem tawuri agi. Ma ulac aɣilid sebded JRE sakin sekker tikkelt-nniḍen %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME yesra tawennaṭ n uselkem Java (JRE) akken ad iselkem tawuri agi. JRE yettwafernen ur iteddu ara. Ma ulac aɣilif, fren lqem nniḍen neɣ sebded JRE amaynut sakin fren-it deg Ifecka - %PRODUCTNAME - Talqayt."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE yettwasra"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Fren JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ur i teddu ara"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Tangalt taɣbalut"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Afaylu n isɣalen"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Tugniwin"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Afaylu n twila"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Asnas"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tadabut n uzadur n yisefka"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Afaylu anagraw"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Taftart MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Afaylu n tallalt"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Isemli HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Afaylu arcib"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Afaylu aɣmis"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Azadur n yisefka StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Isemli akerwa StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Tugna StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Afaylu aḍris"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Arez"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Taneɣruft StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Isemli MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Taneɣruft MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Afaylu n tludna"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Afaylu"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Akaram"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Isemli aḍris"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Ambellez"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Asenked"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Unuɣ"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Isemli HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Isemli akerwa"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Tanfalit"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Azadur n yisefka"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Taneɣruft n umbellz OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Taneɣruft n usuneɣ OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Taneɣruft n usenked OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Taneɣruft n isemli aḍris OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Ameɣri adigan"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Ameɣri n udebṣi"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Ameɣri CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Tuqqna ɣer uẓeṭṭa"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Isemli MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Tamudimt MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Askan n tmeccegin MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Tanfalit OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Udlif OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Asuneɣ OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Ambellez OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Asenked OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Isemli aḍris OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Isemli agejdan OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Isemli MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Azadur n isefka OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Unuɣ OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Tanfalit OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Isemli Agejdan OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Asenked OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Ambellez OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Aḍris OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Taneɣruft n umbellez OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Taneɣruft n wunuɣ OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Taneɣruft n usenked OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Taneɣruft n uḍris OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Asiɣzef %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/kab/svx/messages.po b/source/kab/svx/messages.po
index 7df88c957db..6f47c4c9e9a 100644
--- a/source/kab/svx/messages.po
+++ b/source/kab/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7948,6 +7948,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Seg uzelmaḍ s ayeffus (ubdid)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12214,82 +12219,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Sbadu afmiḍi n usewxer ubdid n wamas i usemdu n tili n tfesna n yini. 50% d amas ubdid."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Amaẓrag n yiri"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Snes"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Tamnaṭ n umahil"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Fren"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Asrem"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Taglayt"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Ageddis"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Ẓreg tinqiḍin"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Smutti tineqiḍin"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Ger tinqiḍin"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Kkes tinqiḍin"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoContour"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Semmet "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Err-d"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Timelqeḍt"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tasurfa n yiniten"
@@ -12600,112 +12610,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Aḍar n usebtar"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Amaẓrag n tugna Map"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Snes"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Ldi..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Sekles..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Mdel"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Fren"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Asrem"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Taglayt"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Ageddis"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Igeddisen s ufus"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Ẓreg tinqiḍin"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Smutti tineqiḍin"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Ger tinqiḍin"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Kkes tinqiḍin"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Semmet "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Err-d"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Urmid"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Amakṛu..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Tiylatin..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Tansa:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Akatar:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Aḍris:"
diff --git a/source/kab/sw/messages.po b/source/kab/sw/messages.po
index ead79f4e494..6e321635355 100644
--- a/source/kab/sw/messages.po
+++ b/source/kab/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kab\n"
@@ -3096,9 +3096,9 @@ msgid "Change object title of $1"
msgstr "Beddel azwel n tɣawsa n $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Beddel asnummel n tɣawsa n $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -11985,147 +11985,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12135,152 +12135,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Afaylu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Ger"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Uɣal ar ujeṛṛid"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Aseggem n usebter"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Ti_mselɣa"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "A_cegger"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Sken"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_afelwit"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Tugna"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Su_neɣ"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Taɣawsa"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "A_midya"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Siggez"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ifecka"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13347,8 +13347,8 @@ msgstr "Simɣur tallunt gar wawalen deg izirigen yesɛan angazen s ufus di tsedd
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Mesten tiferkit"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16628,47 +16628,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Tadabut n igburen, amatar neɣ tameddurt"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Sken"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Sken"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Ṣṣenf"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Inekcumen"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Iɣunab"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Tigejda"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Agilal"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Sken"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "A_swir"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "Ta_wsit"
@@ -16898,302 +16898,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Ẓreg..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Azwel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Anaw:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Agbur"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Amatar s ugemmay"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Amatar n wudmawen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Amatar n tfelwin"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Amatar yugnen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Amatar n tɣawsiwin"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Adriraw"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Immesten mgal abeddel s ufus"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Anaw n uzwel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "_I:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Akk isemli"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Iɣef"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Skazal alama d aswir:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Snulfu-d amatar neɣ tadabut n igburen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Aɣawas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Ticraḍ n u_matar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tifelwiyin"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Ikutar n u_ḍris"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Tugniwin"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Tiɣawsiwin OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Seqdec aswir seg ixef aɣbalu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Iɣunab i_mernanen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "I_ɣunab"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Sdukkel iɣunab..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Ti_waṭṭfiwin"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Ismawen n tɣawsa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Taggayt:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Sken:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Isemyifiyen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Taggayt akked wuṭṭun"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Aḍris n twaṭṭfa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Snulfu-d seg"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Snulfu-d si tɣawsiwin-agi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Ta_cciwin:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Inekcumen s wuṭṭunen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Ulaḥedd]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Amsal n inekcumen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Segrew inekcumen yugdan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Combine identical entries with p or _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Akked -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Qader tajṛut n usekkil"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Inekcumen s isekkilen imeqranen (awurman)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Tisura d inekcumen iberzen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Afuylu n u_mtawi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "A_faylu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Iγewwaṛen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Tutlayt:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Anaw n tsarut:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Smizzwer"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Is_wiren"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Iɣunab n tseddart"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Ame_zwer"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Ẓreg"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Asdukel"
diff --git a/source/kk/cui/messages.po b/source/kk/cui/messages.po
index 8753685b21d..00e2d29ac86 100644
--- a/source/kk/cui/messages.po
+++ b/source/kk/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-01-09 16:37+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Жарамды тема адресін немесе іздеу ұғымын енгізіңіз."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Шекарасыз етіп орнату"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Тек сыртқы шекараны орнату"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Тек сыртқы жақтау және горизонталды сызықтарды орнату"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Тек сыртқы шекара мен ішкі сызықтарды орнату"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Сыртқы шекараны ішкі сызықтарды өзгертпей орнату"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Тек диагональдық сызықтарды орнату"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Барлық шекараларды орнату"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Тек сол мен оң жақ шекараларын орнату"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Тек үстіңгі мен астыңғы шекараларын орнату"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Тек сол жақ шекарасын орнату"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Үстіңгі және астыңғы шекаралар, және барлық ішкі сызықтарды орнату"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Сол және оң жақ шекаралары, және барлық ішкі сызықтарды орнату"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Көлеңкесіз"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Көлеңке астыңғы оң жаққа түседі"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Көлеңке үстіңгі оң жаққа түседі"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Көлеңке астыңғы сол жаққа түседі"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Көлеңке үстіңгі сол жаққа түседі"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Қолтаңбаны қойған: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME туралы"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Жа_сағандар"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Вебсайт"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Жинақ ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Локаль: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "ПИ тілі: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Логты қарау: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME - бұл заманауи, кодтары ашық, қолдануға жеңіл құрал, мәтіндер, электронды кестелер, презентациялар, т.б. өңдеуге арналған."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 LibreOffice үлесін қосушылары."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice өнімі OpenOffice.org негізінде жасалған."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME өнімі LibreOffice-тен тарады, ол болса, OpenOffice.org өніміне негізделген болатын."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Бұл шығарылымды ұсынған %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Ал_мастыру"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "А_лмастыру"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Немен:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Тек мәтін"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Сөздің минималды ұзындығы"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Қасиеттері"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_Сілтеме:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Ф_рейм:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Аты:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Балама мә_тін:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Сипаттамасы:"
@@ -9019,80 +9179,80 @@ msgstr "\"Желіден тыс көмек орнатылмаған\" қалқы
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Көмек"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME сұхбаттарын қол_дану"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Ашу/сақтау сұхбат терезелері"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME сұ_хбаттарын қолдану"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Баспаға шығару сұхбат терезелері"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Бас_паға шығару «құжат түрлендірілген» қалып-күйін орнатады"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Құжат қалып-күйі"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Келесі аралықтағы жылдар ретінде _тану: "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "және "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Жыл (екі сан)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Қолдану ақпаратын жинау және TDF ұйымына жіберу"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "%PRODUCTNAME жақсартуға көмектесу"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Жүйе іске қосылған кезде %PRODUCTNAME өнімін жүктеу"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Жылдам іске қосуды қолдану"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME жылдам қосылу"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Алдын-ала орнатылған тема"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Пайдаланушы темасы"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Немесе, орнатылған кеңейтулерден теманы таңдаңыз:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox темалары"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Қауіпсіздік баптаулары"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Firefox темасын таңдау"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Ізделетін ұғым немесе адрес"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Сана_ты:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Абстрактты"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Себептер"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Сән"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Кино және ТВ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Фокскэ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Демалыс"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Музыка"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Табиғат"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Басқа"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Декорациялар"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Маусымдық"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Бүтін"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Спорт"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Веб-сайттар"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Ұсынылатын"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/kk/dbaccess/messages.po b/source/kk/dbaccess/messages.po
index cff561788a9..26da7062bd7 100644
--- a/source/kk/dbaccess/messages.po
+++ b/source/kk/dbaccess/messages.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: 2019-04-24 18:25+0200\n"
-"PO-Revision-Date: 2019-04-11 16:02+0000\n"
+"PO-Revision-Date: 2019-05-16 17:09+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554998576.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558026579.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1597,7 +1597,7 @@ msgstr "Жасау қатесі"
#: dbaccess/inc/strings.hrc:341
msgctxt "STR_UNEXPECTED_ERROR"
msgid "An error occurred. The operation could not be performed."
-msgstr ""
+msgstr "Қате орын алды. Бұл операцияны орындау мүмкін емес."
#: dbaccess/inc/strings.hrc:342
msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
diff --git a/source/kk/extensions/messages.po b/source/kk/extensions/messages.po
index 30740ad082d..d0a7a24edf6 100644
--- a/source/kk/extensions/messages.po
+++ b/source/kk/extensions/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-02-25 16:22+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-19 05:15+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1551111732.000000\n"
+"X-POOTLE-MTIME: 1558242907.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -1718,62 +1718,62 @@ msgstr "(Үнсіз келісім бойынша)"
#: extensions/inc/strings.hrc:244
msgctxt "RID_STR_URL"
msgid "URL"
-msgstr ""
+msgstr "URL"
#: extensions/inc/strings.hrc:245
msgctxt "RID_STR_SELECTIONMODEL"
msgid "Selection Type"
-msgstr ""
+msgstr "Таңдау түрі"
#: extensions/inc/strings.hrc:246
msgctxt "RID_STR_USEGRIDLINE"
msgid "Use grid line"
-msgstr ""
+msgstr "Тор сызықтары"
#: extensions/inc/strings.hrc:247
msgctxt "RID_STR_GRIDLINECOLOR"
msgid "Grid line color"
-msgstr ""
+msgstr "Тор сызықтарының түсі"
#: extensions/inc/strings.hrc:248
msgctxt "RID_STR_SHOWCOLUMNHEADER"
msgid "Show column header"
-msgstr ""
+msgstr "Баған тақырыптамасын көрсету"
#: extensions/inc/strings.hrc:249
msgctxt "RID_STR_SHOWROWHEADER"
msgid "Show row header"
-msgstr ""
+msgstr "Жол тақырыптамасын көрсету"
#: extensions/inc/strings.hrc:250
msgctxt "RID_STR_HEADERBACKGROUNDCOLOR"
msgid "Header background color"
-msgstr ""
+msgstr "Тақырыптама фонының түсі"
#: extensions/inc/strings.hrc:251
msgctxt "RID_STR_HEADERTEXTCOLOR"
msgid "Header text color"
-msgstr ""
+msgstr "Тақырыптама мәтінінің түсі"
#: extensions/inc/strings.hrc:252
msgctxt "RID_STR_ACTIVESELECTIONBACKGROUNDCOLOR"
msgid "Active selection background color"
-msgstr ""
+msgstr "Белсенді таңдаудың фон түсі"
#: extensions/inc/strings.hrc:253
msgctxt "ID_STR_ACTIVESELECTIONTEXTCOLOR"
msgid "Active selection text color"
-msgstr ""
+msgstr "Белсенді таңдаудың мәтін түсі"
#: extensions/inc/strings.hrc:254
msgctxt "RID_STR_INACTIVESELECTIONBACKGROUNDCOLOR"
msgid "Inactive selection background color"
-msgstr ""
+msgstr "Белсенді емес таңдаудың фон түсі"
#: extensions/inc/strings.hrc:255
msgctxt "RID_STR_INACTIVESELECTIONTEXTCOLOR"
msgid "Inactive selection text color"
-msgstr ""
+msgstr "Белсенді емес таңдаудың мәтін түсі"
#: extensions/inc/strings.hrc:256
msgctxt "RID_STR_STANDARD"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "\"%1\" кестесі бағандарының орналасуы"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Қы_сқартылған аты"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Автор(лар)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Жариялаушы"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Тарау"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Редактор"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Түрі"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Ж_ыл"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "А_тауы"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "А_дресі"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_Бет(тер)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ба_сылымы"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Кiтаптың атауы"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Бөлім"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Басылым _түрi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Ұ_йым"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Инст_итут"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Уни_верситет"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Есе_птеме түрі"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "А_й"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Журнал"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "_Нөмір"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Қ_атар"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Аңд_атпа"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Түсіндірме"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Пайдаланушы өрісі _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Пайдаланушы өрісі _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Пайдаланушы өрісі _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Пайдаланушы өрісі _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Пайдаланушы өрісі _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Бағандар атаулары"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Деректердің жаңа түріне ат енгізіңіз:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Өрістер байланысы"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Ұсыну"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Бағыныңқы формаларды негізгі форманың ағымдағы жазбасы туралы толық ақпаратты алу үшін қолдануға болады. Ол үшін бағыныңқы форманың қай бағандары негізгі форманың қай бағандарына сәйкес келетінін көрсету керек."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "белгі"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "белгі"
diff --git a/source/kk/filter/messages.po b/source/kk/filter/messages.po
index d8eec85c5f6..97255edec4d 100644
--- a/source/kk/filter/messages.po
+++ b/source/kk/filter/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2017-11-22 16:34+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-16 17:10+0000\n"
+"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511368446.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558026644.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_UNKNOWN_APPLICATION"
@@ -423,12 +423,12 @@ msgstr "%PRODUCTNAME ішінде оңай түзетілетін PDF файлы
#: filter/uiconfig/ui/pdfgeneralpage.ui:466
msgctxt "pdfgeneralpage|pdfa"
msgid "Archive P_DF/A-2b (ISO 19005-2)"
-msgstr ""
+msgstr "Ар_хивті PDF/A-2b (ISO 19005-2)"
#: filter/uiconfig/ui/pdfgeneralpage.ui:470
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
msgid "Creates an ISO 19005-2 compliant PDF file, ideal for long-term document preservation"
-msgstr ""
+msgstr "ISO 19005-2 сәйкес PDF файлын жасайды, ол құжатты ұзақ сақтау үшін мінсіз жарайды"
#: filter/uiconfig/ui/pdfgeneralpage.ui:482
msgctxt "pdfgeneralpage|tagged"
@@ -493,7 +493,7 @@ msgstr "Толтырғыштарды экс_порттау"
#: filter/uiconfig/ui/pdfgeneralpage.ui:609
msgctxt "pdfgeneralpage|comments"
msgid "_Comments as PDF annotations"
-msgstr ""
+msgstr "_Пікірлер PDF аңдатпалары ретінде"
#: filter/uiconfig/ui/pdfgeneralpage.ui:624
msgctxt "pdfgeneralpage|emptypages"
@@ -1023,12 +1023,12 @@ msgstr "XML сүзгі баптаулары"
#: filter/uiconfig/ui/xmlfiltersettings.ui:103
msgctxt "xmlfiltersettings|header_name"
msgid "Name"
-msgstr ""
+msgstr "Аты"
#: filter/uiconfig/ui/xmlfiltersettings.ui:116
msgctxt "xmlfiltersettings|header_type"
msgid "Type"
-msgstr ""
+msgstr "Түрі"
#: filter/uiconfig/ui/xmlfiltersettings.ui:144
msgctxt "xmlfiltersettings|new"
diff --git a/source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 5bae7b3260e..def69d713b1 100644
--- a/source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/kk/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-11-18 15:54+0000\n"
+"PO-Revision-Date: 2019-05-19 05:09+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542556484.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558242575.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"OOO_ERROR_131\n"
"LngText.text"
msgid "Installing a pre-requisite [2] failed. You might need to manually install it from Microsoft site to be able to run the product.[3]"
-msgstr ""
+msgstr "Міндетті [2] құрауышын орнату қатесі. Оны Microsoft сайтынан қолдан орнату керек болуы мүмкін.[3]"
#: LaunchCo.ulf
msgctxt ""
diff --git a/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
index 5aaeaf741c2..e3b845f46e6 100644
--- a/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-12 07:13+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Тағы өрістер"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Қойындылы"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Топталған панель"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/kk/sc/messages.po b/source/kk/sc/messages.po
index f285f8f6457..da661714072 100644
--- a/source/kk/sc/messages.po
+++ b/source/kk/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-25 16:27+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15214,6 +15214,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(жеке қатынау)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15767,12 +15772,12 @@ msgstr "Шартты пішімдеуді басқару"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16990,81 +16995,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Деректер формасы"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Жабу"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Жазбаны қосу"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "Ж_аңа"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Ө_шіру"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Қал_пына келтіру"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "А_лдыңғы жазба"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Ке_лесі жазба"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Жабу"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Тірі деректер ағымдары"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Жергілікті файлдық жүйеде немесе Интернетте орналасқан бастапқы құжаттың URL-ын көрсетіңіз."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Шолу..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Дерекқор ауықымы:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Деректер көзі:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Іздеу жолы:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Қайнар көз ағымы"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18780,32 +18745,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Нәтижені шығару жері:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Деректер"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Бағандар"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Жолдар"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Бойынша топталған"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Аралық:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Параметрлер"
@@ -18945,167 +18915,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Көмек"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Файл"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Ерекшеленген ұяшықтар үшін шекараны таңдаңыз."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Шегіністі үлкейту"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Шегіністі азайту"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Ү_йге"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "Ү~йге"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ө_ріс"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Кірі_стіру"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Кірістіру"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Жайма"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Жайма"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Статистика"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Деректер"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Деректер"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Те_ксеру"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Тек~серу"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Түрі"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Түрі"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Сур_ет"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Сур~ет"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Су_рет салу"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Су~рет салу"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Объект"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Объект"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Мультимедиа"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Мультимедиа"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Бас_паға шығару"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Бас~паға шығару"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Фо_рма"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Фо~рма"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Са_ймандар"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Са~ймандар"
@@ -21586,17 +21558,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Іздеу нәтижелері"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23466,107 +23448,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Құр_ылым белгілері"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Терезе"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Тор сызықтары:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "Тү_с:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Көрсету"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Түсті ұяшықтарда көрсету"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Жасыру"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Парақ ажыраулары"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "_Жылжытқанда көмекші сызықтар"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Визуалды көмек"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Объ_екттер/суреттер:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Диаг_раммалар:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Графикалық объекттер:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Көрсету"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Жасыру"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Көрсету"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Жасыру"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Көрсету"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Жасыру"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Объекттер"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Парақтарды с_инхрондау"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Масштаб"
diff --git a/source/kk/scp2/source/ooo.po b/source/kk/scp2/source/ooo.po
index cbdf4c1462e..2efedba9c97 100644
--- a/source/kk/scp2/source/ooo.po
+++ b/source/kk/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-11 16:02+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554998525.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Құжаты ашу"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/kk/scp2/source/winexplorerext.po b/source/kk/scp2/source/winexplorerext.po
index 0320e58616c..549500255cf 100644
--- a/source/kk/scp2/source/winexplorerext.po
+++ b/source/kk/scp2/source/winexplorerext.po
@@ -3,18 +3,18 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-11-20 13:01+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2013-11-23 17:54+0000\n"
-"Last-Translator: Baurzhan <baurthefirst@gmail.com>\n"
+"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\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: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-"X-POOTLE-MTIME: 1385229261.0\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1385229261.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows Explorer үшін %PRODUCTNAME құжаттары ақпаратын кіші көрініс ретінде көрсетуге мүмкін қылады."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/kk/sd/messages.po b/source/kk/sd/messages.po
index e995be88093..7cd82e3a955 100644
--- a/source/kk/sd/messages.po
+++ b/source/kk/sd/messages.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-01-12 07:11+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-19 05:17+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1547277065.000000\n"
+"X-POOTLE-MTIME: 1558243061.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -154,52 +154,52 @@ msgstr "Артқы беттер / сол жақ парақтар"
#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "All ~Slides"
-msgstr ""
+msgstr "Барлық ~слайдтар"
#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "S~lides:"
-msgstr ""
+msgstr "С~лайдтар:"
#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Even slides"
-msgstr ""
+msgstr "~Жұп слайдтар"
#: sd/inc/DocumentRenderer.hrc:85
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Odd slides"
-msgstr ""
+msgstr "Т~ақ слайдтар"
#: sd/inc/DocumentRenderer.hrc:86
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Selection"
-msgstr ""
+msgstr "~Таңдау"
#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "All ~Pages"
-msgstr ""
+msgstr "Барлық ~беттер"
#: sd/inc/DocumentRenderer.hrc:92
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Pages:"
-msgstr ""
+msgstr "~Беттер:"
#: sd/inc/DocumentRenderer.hrc:93
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Even pages"
-msgstr ""
+msgstr "~Жұп беттер"
#: sd/inc/DocumentRenderer.hrc:94
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Odd pages"
-msgstr ""
+msgstr "Т~ақ беттер"
#: sd/inc/DocumentRenderer.hrc:95
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Selection"
-msgstr ""
+msgstr "~Таңдау"
#: sd/inc/errhdl.hrc:29
msgctxt "RID_SD_ERRHDL"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Сілтемені ашу үшін шертіңіз:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML дизайнын атау"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Файл"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Көмек"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Файл"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Ү_йге"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Ү~йге"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ө_ріс"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Кірі_стіру"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Кірістіру"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Бет"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Бет"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Те_ксеру"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Тексе~ру"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Түрі"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Түрі"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "_Мәтін"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "~Мәтін"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Кес_те"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "Кес~те"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Түрлендіру"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Сур_ет"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Сур~ет"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Су_рет салу"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Су~рет салу"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Объект"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Объект"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Мультимедиа"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Мультимедиа"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Фо_рма"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Фо~рма"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Са_ймандар"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Са~ймандар"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Пішіндерді көрсету"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Файл"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Көмек"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Файл"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Ү_йге"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Ү~йге"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ө_ріс"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Кірі_стіру"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Кірістіру"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "С_лайд"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "С~лайд"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Слайдшоу"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Слайдшоу"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Те_ксеру"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Тек~серу"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Түрі"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Түрі"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Кес_те"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Кес~те"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Түрлендіру"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Сур_ет"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Сур~ет"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Су_рет салу"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Су~рет салу"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Объект"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Объект"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Мультимедиа"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Мультимедиа"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Фо_рма"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Фо~рма"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Са_ймандар"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Са~ймандар"
diff --git a/source/kk/sfx2/messages.po b/source/kk/sfx2/messages.po
index d8d494a4954..b8bde2b2a66 100644
--- a/source/kk/sfx2/messages.po
+++ b/source/kk/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-09 15:31+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Ж: %1 А: %2 К: %3 С: %4 М: %5 С: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Қасиетті өшіру"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Енгізілген мәні керек түрге сәйкес келмейді, және\n"
"мәтін ретінде сақталатын болады. "
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Бұл файл бұрыннан бар. Жаңадан жазу керек пе?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Қалпына келті~ру"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Бұл атау қолдануда болып тұр."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Стиль жоқ болып тұр."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Бұл стильді негізгі стиль ретінде орнату мүмкін емес,\n"
"өйткені ол рекурсияға әкеп соғады."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Бұл атау басқа құрамындағы стильге берілген.\n"
"Басқа атын таңдаңыз."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"болып тұр. Бұл стильдерді өшірсеңіз, мәтін аталық стильге ауысады.\n"
"Сонда да бұл стильдерді өшіруді қалайсыз ба?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Қолданудағы стильдер: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Навигатор"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Парольді растау қатесі"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Жіберу"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Қаріп"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Кіші көріністерді көрсету"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Нұсқа түсіндірмесін қарау"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(аты орнатылмаған)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Стильдер тізімі"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Иерархия бойынша"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Стильдік бояу"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Таңдалғаннан жаңа стильді жасау"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Стильді жаңарту"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Жазып отыруды үзуді шынымен қалайсыз ба? Осыған дейін жазылған қадамдардың барлығы жоғалады."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Жазбадан бас тарту"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Алғашқы қолдану алдында үлгілерді инициализациялау орындалады."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Үнсіз келісім бойынша принтері табылмады.\n"
"Принтерді таңдап, қайталап көріңіз. "
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Принтерді іске қосу мүмкін емес.\n"
"Принтер баптауларын тексеріңіз."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Принтер бос емес"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (тек оқу үшін ғана)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Бұл өзгерістерді белсенді құжатта\n"
"сақтауды қалайсыз ба?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Бұл өзгерістерді белсенді құжатта\n"
"сақтау керек пе?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Бұл өзгерістерді белсенді құжатта\n"
"сақтауды қалайсыз ба?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Қазір бұл құжатты жабу мүмкін емес, өйткені\n"
"баспаға шығару тапсырмасы орындалып жатыр."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,7 +1139,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1155,17 +1150,17 @@ msgstr ""
"\n"
"Қате коды $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Хатты жіберу қатесі."
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Құжатты түзету үшін ашу мүмкін емес, бұл жеткіліксіз құқықтардан болуы мүмкін. Құжат көшірмесін түзетуді қалайсыз ба?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1176,349 +1171,359 @@ msgstr ""
"\n"
"Сонымен қатар, бұғаттауды елемей, файлды өңдеу үшін ашуыңызға болады."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "~Көшірмесін ашу"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Ашу"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (қалпына келтірілген құжат)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Құжат серверде блокталмаған."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "%PRODUCTNAME жақсырақ қылуға көмектесіңіз!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Үлесіңізді қосыңыз"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Ақшалай көмегіңіз біздің дүниежүзілік қоғамдастығымызды қолдайды."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Ақшалай көмектесу"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Бұл құжат тек оқу үшін ашылған."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Бұл PDF файлы оған қолтаңбаны қою мүмкіндігін алу үшін тек оқу үшін режимде ашылған."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Бұл құжаттын классификация белгісі %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Алмасу буферінен кірістіруге дейін құжатты классификациялау керек."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Құжаттың классификация деңгейі алмасу буферінің деңгейінен кіші."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Деңгей"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Ұлттық қауіпсіздік:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Экспортты шектеу:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Блоктау"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Құжатты түзету"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Құжатқа қолтаңбаны қою"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Бұл құжаттың қолтаңбасы жарамсыз."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Қолтаңба дұрыс болған, бірақ, құжат өзгертілген"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Қолтаңба жақсы, бірақ, сертификатты растау мүмкін емес."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Қолтаңба жақсы, бірақ, құжаттың тек бір бөлігінде ғана қолтаңба бар."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Сертификатты растау мүмкін емес, және де құжаттың тек бір бөлігіне қолтаңба қойылған."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Бұл құжаттың цифрлық қолтаңбасы бар және ол қолтаңба жарамды."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Қолтаңбаларды көрсету"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Панельді жабу"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Бекіту"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Бекітуден босату"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Көбірек опциялар"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Бүйір панелін жабу"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Бүйір панель баптаулары"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Баптау"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Бастапқы мәндерін қайтару"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Бүйір панелін жабу"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Ализарин"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Ара ұясы"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Көк қисық сызық"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Сызба"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Ашық көк"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Тамаша қызыл"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНҚ"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Фокус"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Орман құсы"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Бедерлеме"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Шабыт"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Шамдар"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Ашық жасыл"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Урбанистік"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Қараңғы көк"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Табиғат"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Қарындаш"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Рояль"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Портфолио"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Прогресс"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Күн батуы"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Баяғы замаңғы"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Жай графика"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Резюме"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Қорытынды"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Бастапқы"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Заманауи"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Заманауи іскерлік хат, кертусіз қаріп"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Заманауи іскерлік хат, кертулермен қаріп"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Логотипі бар визит карточкасы"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Өшіру"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Барлығын тазарту"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Пароль ұзындығы"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Көрсетілген пароль үйлесімділік мәселелерін туғызады. 52 байттан кіші, немесе 55 байттан артық болатын парольді енгізіңіз."
@@ -1863,32 +1868,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Нұсқа түсіндірмесі:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Объект аты"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Түрі"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Мәні"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Түрі"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Иә"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Жоқ"
@@ -1898,17 +1888,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Қас_иетті қосу"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Атауы"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Түрі"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Мәні"
@@ -2038,17 +2028,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Орна_ласуы:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Түрі:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_Парольді өзгерту"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Үлгі:"
@@ -2058,27 +2048,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "\"%1\" қасиеттері"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Жалпы "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Сипаттамасы"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Таңдауыңызша қасиеттері"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS қасиеттері"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Қауіпсіздік"
@@ -2301,6 +2291,26 @@ msgstr ""
"\n"
"Бұл өнімді %OOOVENDOR жасады, ол OpenOffice.org өніміне негізделген, ол болса, Copyright 2000, 2011 Oracle және/немесе оның аффиляцияланған өкілдерінің жеке меншігі болып табылады. %OOOVENDOR қоғамдастықтың барлық мүшелерін мойындайды, көбірек білу үшін, http://www.libreoffice.org/ қараңыз."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/kk/shell/messages.po b/source/kk/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/kk/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/kk/starmath/messages.po b/source/kk/starmath/messages.po
index 2e7199f307a..364bac47505 100644
--- a/source/kk/starmath/messages.po
+++ b/source/kk/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Мысалдар"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Қалыпты"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Курсив"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Жуан"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "қара"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "көк"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "жасыл"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "қызыл"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "көгілдір"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "қарақошқыл"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "сұр"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "ашық жасыл"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "қызыл-қоңыр"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "қою_көк"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "зәйтүн"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "күлгін"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "күміс"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "жасыл_көк"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "сары"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "жасыру"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "өлшемі"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "қаріп"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "сол жақ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ортасы"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "оң жақ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Командалар"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Формула"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Құжатты сақтау..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION формуласы"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ҚАТЕ : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Күтпеген таңба"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Күтілмеген токен"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "«{» күтілген"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "«}» күтілген"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "«(» күтілген"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "«)» күтілген"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Сол жақ және оң жақ таңбалары сәйкес емес"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', немесе 'serif' күтілген"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' соңында күтілмеген токен"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Қос туралауға рұқсат жоқ"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Қос төменгі/жоғарғы индекстер рұқсат етілмеген"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "«#» күтілген"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Түс қажет"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "«Оңға» күтілген"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Құрамасы"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "А~тауы"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Формула мәтіні"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Шектер"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Өлшемі"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Бастапқы өлшемі"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Параққа сыйдыру"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Ма~сштабтау"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Элементтер"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/kk/svtools/messages.po b/source/kk/svtools/messages.po
index 0bbef399532..d3079b24b7a 100644
--- a/source/kk/svtools/messages.po
+++ b/source/kk/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-12-04 14:58+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1543935512.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Болдырмау: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Қай~та жасау: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Қа~йталау: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Пішімдеусіз мәтін"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Пішімделмеген мәтін (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Биттік сурет (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Графикалық құрылғы интерфейсі метафайлы (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Мәтіннің бай пішімдеуі (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Мәтіннің бай пішімдеуі (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME сурет салу пішімі"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView биттік суреті/анимациясы (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx ішкі байланыс күйі туралы ақпараты"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME сілтемесі (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape бетбелгісі"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star серверінің пішімі"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star объектінің пішімі"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Апплет объекті"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Іске қосылатын модуль объекті"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 объекті"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 объекті"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 объекті"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 объекті"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 объекті"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 объекті"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 объекті"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw объекті"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 объекті"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 объекті"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 объекті"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc объекті"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 объекті"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 объекті"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart объекті"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 объекті"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 4.0 объекті"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage объекті"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 объекті"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 объекті"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath объекті"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 объекті"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 объекті"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint объекті"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Гипермәтіндік белгілеу тілі (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Шектелген гипермәтіндік белгілеу тілі (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel екілік түрде алмасу пішімі 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel екілік түрде алмасу пішімі 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Деректермен динамикалық түрде алмасу (DDE байланысы)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Деректермен алмасу пішімі (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word объекті"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet объекті"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office құжат объекті"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Ескерту ақпараты"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx құжаты"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 4.0 объекті"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Графикалық объекті"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer объекті"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web объекті"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master объекті"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw объекті"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress объекті"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc объекті"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart объекті"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math объекті"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows метафайлы"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Бастапқы деректер объекті"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Бастапқы деректер кестесі"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL сұранымы"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 сұхбаты"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Сілтеме"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML пішіні, түсіндірмесіз"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% объектін кірістіру мүмкін емес."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% файлдан объектті кірістіру мүмкін емес."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Қосымша объекттер"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Белгісіз көз"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Аты"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Өлшемі"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Өзгерту күні"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Түрі"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "байт"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "Кб"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "Мб"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "Гб"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Жол: %1 Баған: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Түрі: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Бума"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Файл"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Бос өріс"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Әріпті-цифрлық"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Қалыпты"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Кодтауы"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Сөздік"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Пиньинь"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Штрихтер"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Радикал"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Юникод"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Чжуинь"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Телефондық кітапша"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Фонетикалық (әріптер және сандар алдында)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Фонетикалық (әріптер және сандар соңында)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Әріпті-цифрлық"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Сөздік"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Пиньинь"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Радикал"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Штрихтер"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Чжуинь"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Фонетикалық (әріптер және сандар алдында, буындар бойынша топтау)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Фонетикалық (әріптер және сандар алдында, дауысты дыбыстар бойынша топтау)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Фонетикалық (әріптер және сандар соңында, буындар бойынша топтау)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Фонетикалық (әріптер және сандар соңында, буындар бойынша топтау)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Бүгін"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Бос"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Ашық"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Ашық курсив"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Қалыпты"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Курсив"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Жуан"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Жуан курсив"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Қара"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Қара курсив"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Кітаптық"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Кітаптық көлбеу"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Тығыздалған"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Тығыздалған жуан"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Тығыздалған жуан курсив"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Тығыздалған кітаптық көлбеу"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Тығыздалған курсив"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Тығыздалған көлбеу"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Өте ашық"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Өте ашық курсив"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Көлбеу"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Жартылай жуан"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Жартылай жуан курсив"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Баспаға және экранға шығару үшін бір қаріп қолданылатын болады."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Принтер қарібі. Экрандағы сурет басқаша болуы мүмкін."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Қаріптің бұл стилі жасалады немесе ең ұқсас стиль қолданылатын болады."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Бұл қаріп орнатылмаған. Ең ұқсас қаріп қолданылатын болады."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Шолу..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Басына жылжыту"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Солға жылжыту"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Оңға жылжыту"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Соңына жылжыту"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Қосу"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Горизонталды сызғыш"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Вертикалды сызғыш"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 бит, шекара"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 бит, тегістеу"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 бит, сұр түстес"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 биттік түс"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 бит, сұр түстес"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 биттік түс"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 бит, түс"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Сурет шамамен %1 КБ жадыны талап етеді."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Сурет %1 КБ жадыны талап етеді, файл өлшемі %2 КБ болады."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Файл өлшемі %1 КБ."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "хост"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "порт"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Басқа CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Дайын"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Аялдатылған"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Өшіру кейінге қалдырылды"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Бос емес"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Инициализация"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Күту"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Бастауға дайындалу"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Өңдеу"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Баспаға шығару"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Оффлайн"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Қате"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Белгісіз сервер"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Қағазды шайнау"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Қағаз жетіспейді"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Қағазды қолдан беру"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Қағаз мәселесі"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Белсенді енгізу/шығару"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Шығыс сөресі толып қалды"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Тонер аяқталуда"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Тонер жоқ"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Парақты өшіру"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Пайдаланушы әрекеті керек"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Жады жеткіліксіз"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Сөре қақпағы ашық"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Қуатты үнемдеу режимі"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Үнсіз келісім принтері"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d құжат"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Дайын"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Келесі>"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Ар~тқа"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Қадамдар"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<жоқ>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Мекеме"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Бөлім"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Аты"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Тегі"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Көше"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Ел"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Пошталық индексі"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Қала"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Лауазымы"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Қызметі"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Қаратпа сөз"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Инициалдары"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Сәлемдесу"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Үй телефоны"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Жұмыс телефоны"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Ескертпе"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Пайдаланушы 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Пайдаланушы 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Пайдаланушы 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Пайдаланушы 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Код"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Облыс"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Телефон (жұм.)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Пейджер"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Мобильді"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Телефон (басқа)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Күнтізбе"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Шақыру"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME бұл тапсырманы орындау үшін Java орындалу ортасын (JRE) талап етеді. JRE орнатып, %PRODUCTNAME қайта іске қосыңыз."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME бұл тапсырманы орындау үшін %BITNESS-биттік Java қоршамын (JRE) талап етеді. JRE орнатып, %PRODUCTNAME қайта іске қосыңыз."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME баптаулары өзгертілген. %PRODUCTNAME - Баптаулар - %PRODUCTNAME - Кеңейтілген мәзірінде %PRODUCTNAME ішінде қолданылатын Java виртуалды машинасын таңдаңыз."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME баптаулары өзгертілген. Саймандар - Баптаулар - %PRODUCTNAME - Кеңейтілген мәзірінде %PRODUCTNAME ішінде қолданылатын Java виртуалды машинасын таңдаңыз."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME бұл тапсырманы орындау үшін Java орындалу ортасын (JRE) талап етеді. Бірақ, таңдалған JRE қате. Басқа нұсқасын таңдаңыз, немесе жаңасын орнатып, оны %PRODUCTNAME - Баптаулар - %PRODUCTNAME - Кеңейтілген мәзірінде таңдаңыз."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME бұл тапсырманы орындау үшін Java орындалу ортасын (JRE) талап етеді. Бірақ, таңдалған JRE қате. Басқа нұсқасын таңдаңыз, немесе жаңасын орнатып, оны Саймандар - Баптаулар - %PRODUCTNAME - Кеңейтілген мәзірінде таңдаңыз."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE керек"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE таңдау"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE зақымдалған"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Бастапқы коды"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Бетбелгілер файлы"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Сурет"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Баптаулар файлы"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Қолданба"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Дерекқор кестесі"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Жүйелік файл"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word құжаты"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Көмек файлы"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML құжаты"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Архив файлы"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Журнал файлы"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice дерекқоры"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 құрамдас құжаты"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice суреті"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Мәтіндік файл"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Сілтеме"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 үлгісі"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel құжаты"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel үлгісі"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Дестелік файл"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Файл"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Бума"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Мәтіндік құжат"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Электрондық кесте"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Презентация"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Сурет"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML құжаты"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Құрамдас құжат"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Формула"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Дерекқор"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 электрондық кесте үлгісі"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 сурет үлгісі"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 презентация үлгісі"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 мәтіндік құжат үлгісі"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Жергілікті жетек"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Диск жетегі"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM жетегі"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Желілік байланыс"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint құжаты"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint үлгісі"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint көрсетілімі"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 формуласы"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 диаграммасы"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 суреті"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 электрондық кестесі"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 презентациясы"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 мәтіндік құжаты"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 құрамдас құжаты"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML құжаты"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument дерекқоры"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument суреті"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument формуласы"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument құрамдас құжаты"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument презентациясы"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument электрондық кестесі"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument мәтіндік құжаты"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument электрондық кесте үлгісі"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument сурет үлгісі"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument презентация үлгісі"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument мәтіндік құжат үлгісі"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME кеңейтуі"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell емлені тексерушісі"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen тасымалдағышы"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes тезаурусы"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Елемейтін сөздер тізімі"
diff --git a/source/kk/svx/messages.po b/source/kk/svx/messages.po
index a5a9b3b2758..ea124bae3c7 100644
--- a/source/kk/svx/messages.po
+++ b/source/kk/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-11 16:02+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Солдан оңға (вертикалды)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Вертикаль бойынша пайыздар есебінде центрінен ығысуды көрсетіңіз. 50% - бұл вертикальдің ортасы."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Контур түзетушісі"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Іске асыру"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Жұмыс аймағы"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Таңдау"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Тіктөртбұрыш"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Эллипс"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Көпбұрыш"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Геометрияны өзгерту"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Тораптарды жылжыту"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Тораптарды кірістіру"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Тораптарды өшіру"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Автоконтур"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Болдырмау"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Қайтару"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Тамызғыш"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Түстер ауытқу шегі"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Төменгі колонтитул"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Сенсорлық сурет редакторы"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Іске асыру"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Ашу..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Сақтау..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Жабу"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Таңдау"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Тіктөртбұрыш"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Эллипс"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Көпбұрыш"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Еркін пішінді көпбұрыш"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Геометрияны өзгерту"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Тораптарды жылжыту"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Тораптарды кірістіру"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Тораптарды өшіру"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Болдырмау"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Қайтару"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Белсендіру"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Макрос..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Қасиеттері..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Адрес:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Фрейм:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Мәтін:"
diff --git a/source/kk/sw/messages.po b/source/kk/sw/messages.po
index 0523e37605e..907e1e649cd 100644
--- a/source/kk/sw/messages.po
+++ b/source/kk/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -3107,9 +3107,9 @@ msgid "Change object title of $1"
msgstr "$1 объектінің атауын өзгерту"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 объектінің сипаттамасын өзгерту"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -11996,147 +11996,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Көмек"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Файл"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Ү_йге"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Ү~йге"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Кірі_стіру"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Кірістіру"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Жа_йма"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Жайма"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Сілтемелер"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "~Сілтемелер"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Те_ксеру"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Тек~серу"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Түрі"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Түрі"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Кес_те"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Кес~те"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Сур_ет"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Сур~ет"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Су_рет салу"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Су~рет салу"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Объект"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Объект"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Мультимедиа"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Медиа"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Бас_паға шығару"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Бас~паға шығару"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Фо_рма"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Фо~рма"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Са_ймандар"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Са~ймандар"
@@ -12146,152 +12146,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Файл"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Кірі_стіру"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Аймалау"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Жайма"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Сілтемелер"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Те_ксеру"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Түрі"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "К_есте"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Сурет"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Су_рет салу"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Объект"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Мультимедиа"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Баспаға шығару"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Са_ймандар"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13358,8 +13358,8 @@ msgstr "Жолды қолмен тасымалдаған кезде, еніме
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Неден қорғау"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16639,47 +16639,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Құрамасының кестесі, мазмұны немесе библиография"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Алдын-ала қарау"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Алдын-ала қарау"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Түрі"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Элементтер"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Стильдер"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Бағандар"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Фон"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Алдын-ала қарау"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Деңгей"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Түрі"
@@ -16909,302 +16909,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Түз_ету..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "А_тауы:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Түрі:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Мазмұны"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Әліпбилік нұсқағыш"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Суреттер кестесі"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Кестелер нұсқағышы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Пайдаланушылық"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Объекттер кестесі"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Библиография"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Қолдан өзгерістерден қорғау"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Түрі және атауы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Үшін:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Бүкіл құжат"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Тарау"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Келесі деңгейге дейін қосу:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Мазмұнын/нұсқағышты жасау"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Құрылымы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Нұсқағыш"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Кестелер"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Мә_тіндік ойымдар"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Графикалық объекттер"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE объекттері"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Деңгей қайнар көз тараудан"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Қосымш_а стильдер"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Стильд_ер"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Стильдерді тағайындау..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Жазулар"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Объекттер атаулары"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Санат: "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Дисплей:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Сілтемелер"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Санаты және нөмірі"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Жазу мәтіні"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Неден жасау:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Келесі объекттерден жасау"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Жақ_шалар:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Элементтер са_ны"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[жоқ]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Элементтер пішімі"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Бірдей элементтерді біріктіру"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "p не pp ба_р бірдей элементтерді біріктіру"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "«-» қолданып біріктіру"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Регистрді ескеру"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Бас әріптермен (авто)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Кілт бөлек элемент ретінде"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Сәйкестік файлы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Файл"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Опциялар"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Тілі:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Кілт түрі:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Сұрыптау"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Деңгей_лер"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Абзац _стильдері"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Ү_нсіз келісім бойынша"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Тү_зету"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Тағайындалуы"
diff --git a/source/kk/uui/messages.po b/source/kk/uui/messages.po
index 9b6a0d108ec..12cd99a0d73 100644
--- a/source/kk/uui/messages.po
+++ b/source/kk/uui/messages.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2018-04-29 04:33+0000\n"
+"PO-Revision-Date: 2019-05-19 05:16+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524976382.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558242970.000000\n"
#: uui/inc/ids.hrc:27
msgctxt "RID_UUI_ERRHDL"
@@ -590,6 +590,11 @@ msgid ""
"\n"
"Open document read-only or open a copy of the document for editing.$(ARG3)"
msgstr ""
+"\"$(ARG1)\" құжат файлын өзгертулерді енгізу үшін блоктаған:\n"
+"\n"
+"$(ARG2)\n"
+"\n"
+"Құжатты тек оқу үшін ашыңыз, немесе түзету үшін құжат көшірмесін ашыңыз.$(ARG3)"
#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
@@ -597,6 +602,8 @@ msgid ""
"\n"
"You may also ignore the file locking and open the document for editing."
msgstr ""
+"\n"
+"Сонымен қатар, сіз файл блоктауын елемей, құжатты түзету үшін аша аласыз."
#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
diff --git a/source/kl/cui/messages.po b/source/kl/cui/messages.po
index 0394c495cce..49d39429318 100644
--- a/source/kl/cui/messages.po
+++ b/source/kl/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr ""
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3401,67 +3396,72 @@ msgid "About %PRODUCTNAME"
msgstr ""
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3582,18 +3582,18 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Taarseruk"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Taarseruk"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4442,6 +4442,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5583,27 +5743,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Pissutsit"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Ateq:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9193,83 +9353,83 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
#, fuzzy
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ikiuut"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME makro"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME makro"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11171,24 +11331,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -11837,102 +11982,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12961,27 +13010,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/kl/extensions/messages.po b/source/kl/extensions/messages.po
index 4273010bad2..8f03f87ac11 100644
--- a/source/kl/extensions/messages.po
+++ b/source/kl/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3110,165 +3110,165 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Suussuseq"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "najugaqarfik"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
#, fuzzy
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr ""
@@ -3449,27 +3449,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr ""
diff --git a/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
index 619796276b6..7f3b985e98d 100644
--- a/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23562,6 +23562,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25878,6 +25887,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25896,6 +25914,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/kl/sc/messages.po b/source/kl/sc/messages.po
index 7883af2e8ae..8df3e65ffb5 100644
--- a/source/kl/sc/messages.po
+++ b/source/kl/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15305,6 +15305,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15867,12 +15872,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17121,84 +17126,43 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Matuuk"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "Alla"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Nunguteruk"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Matuuk"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18947,33 +18911,38 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "paasissutissat"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr ""
@@ -19115,167 +19084,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21825,17 +21796,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23732,108 +23713,113 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "igalaasaq"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Toqqoruk"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Toqqoruk"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Toqqoruk"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Toqqoruk"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr ""
diff --git a/source/kl/scp2/source/ooo.po b/source/kl/scp2/source/ooo.po
index b29e0bc6592..70ff9cad3c9 100644
--- a/source/kl/scp2/source/ooo.po
+++ b/source/kl/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr ""
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/kl/scp2/source/winexplorerext.po b/source/kl/scp2/source/winexplorerext.po
index fecab732533..530a255697f 100644
--- a/source/kl/scp2/source/winexplorerext.po
+++ b/source/kl/scp2/source/winexplorerext.po
@@ -2,17 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 07:54+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kl\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=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369382060.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
msgstr ""
diff --git a/source/kl/sd/messages.po b/source/kl/sd/messages.po
index d3f4f58ee65..b7bbe841ba5 100644
--- a/source/kl/sd/messages.po
+++ b/source/kl/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2609,6 +2609,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3084,164 +3089,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4647,160 +4837,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/kl/sfx2/messages.po b/source/kl/sfx2/messages.po
index f511bfd215c..a038775b5f9 100644
--- a/source/kl/sfx2/messages.po
+++ b/source/kl/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -898,53 +898,48 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr ""
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
#, fuzzy
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Aallaqqaataanit"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -952,118 +947,118 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr ""
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "nassiuguk"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
#, fuzzy
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "skrifttype"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr ""
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr ""
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr ""
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr ""
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1071,7 +1066,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1079,7 +1074,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1087,14 +1082,14 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1102,7 +1097,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1110,17 +1105,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1128,350 +1123,360 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr ""
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr ""
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "peeruk"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1826,32 +1831,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr ""
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Ateq"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Suussuseq"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Nalinga"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Suussuseq"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr ""
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr ""
@@ -1861,17 +1851,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Ateq"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Suussuseq"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Nalinga"
@@ -2002,17 +1992,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2023,28 +2013,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
#, fuzzy
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "nassuiaat"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr ""
@@ -2264,6 +2254,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/kl/shell/messages.po b/source/kl/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/kl/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/kl/starmath/messages.po b/source/kl/starmath/messages.po
index 856258ff123..63a793a56a7 100644
--- a/source/kl/starmath/messages.po
+++ b/source/kl/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1655,276 +1655,301 @@ msgid "Examples"
msgstr ""
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Tamanut atugassiaq"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
#, fuzzy
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "uingasoq"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr ""
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "qernertoq"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "tungujortoq"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "qorsuk"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
#, fuzzy
msgctxt "STR_RED"
msgid "red"
msgstr "aappaluttoq"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr ""
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "titarneq"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "toqqoruk"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "angissuseq"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "skrifttype"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "saamerliusoq"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "immersoruk"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr ""
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr ""
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "najoqqutassiaq"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr ""
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr ""
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
#, fuzzy
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "imaqarnera"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr ""
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr ""
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "angissuseq"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr ""
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
@@ -1993,6 +2018,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr ""
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/kl/svtools/messages.po b/source/kl/svtools/messages.po
index dcb6f5ba743..20deeecbe59 100644
--- a/source/kl/svtools/messages.po
+++ b/source/kl/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1544 +16,1546 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195617.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr ""
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
+msgid "Redo: "
msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr ""
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr ""
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr ""
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
#, fuzzy
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "innersuussissut"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Ateq"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "angissuseq"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr ""
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Suussuseq"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ""
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
#, fuzzy
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "mappi"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
#, fuzzy
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "fili"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr ""
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
#, fuzzy
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "ordbogi"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "ordbogi"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr ""
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr ""
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
#, fuzzy
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "uingasoq"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr ""
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
#, fuzzy
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "qernertoq"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr ""
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr ""
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Ilannguguk"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Unitsitsiaruk"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
#, fuzzy
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ajutoornermut"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr ""
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr ""
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr ""
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr ""
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr ""
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr ""
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr ""
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr ""
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr ""
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
#, fuzzy
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "qulequtaq"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
#, fuzzy
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "sumiiffik"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
#, fuzzy
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
#, fuzzy
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "nalunaarsugaq"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
#, fuzzy
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Qupperneq"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
#, fuzzy
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "titartagartat"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr ""
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
#, fuzzy
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "programmi"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
#, fuzzy
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML allagaat"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
#, fuzzy
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "innersuussissut"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
#, fuzzy
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "fili"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
#, fuzzy
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "mappi"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr ""
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Regnearki"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "saqqummiusineq"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "titartagaq"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML allagaat"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr ""
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "najoqqutassiaq"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "database"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr ""
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr ""
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr ""
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr ""
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr ""
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr ""
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/kl/svx/messages.po b/source/kl/svx/messages.po
index e2e47521e5b..2cfaf154aa3 100644
--- a/source/kl/svx/messages.po
+++ b/source/kl/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7985,6 +7985,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12301,83 +12306,88 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Atulertiguk"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
#, fuzzy
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "toqqaruk"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr ""
@@ -12701,114 +12711,109 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Atulertiguk"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Matuuk"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
#, fuzzy
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "toqqaruk"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Pissutsit..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "najugaqarfik"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/kl/sw/messages.po b/source/kl/sw/messages.po
index 61ee66acfbf..f116eca9b33 100644
--- a/source/kl/sw/messages.po
+++ b/source/kl/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3162,7 +3162,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12319,147 +12319,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12469,152 +12469,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13699,7 +13699,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17064,51 +17064,51 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
#, fuzzy
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "takuuk"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-#, fuzzy
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "takuuk"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Suussuseq"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "tangertat"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
#, fuzzy
msgctxt "tocdialog|background"
msgid "Background"
msgstr "tunuliaqut"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+#, fuzzy
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "takuuk"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17344,311 +17344,311 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Aaqqissuuguk..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Suussuseq"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "titarneq"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
#, fuzzy
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "titartagartat"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Qinigassat"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "suussuseq"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "takuuk"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
#, fuzzy
msgctxt "tocindexpage|display"
msgid "References"
msgstr "innersuussineq "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Qinigassat"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "oqaatsit"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "tamanut atugassiaq"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Allanngortiguk"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr ""
diff --git a/source/km/cui/messages.po b/source/km/cui/messages.po
index 067c92b2d47..66dcefd7377 100644
--- a/source/km/cui/messages.po
+++ b/source/km/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1653,107 +1653,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "កំណត់​គ្មានស៊ុម"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "កំណត់​តែ​ស៊ុម​ខាងក្រៅ"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "កំណត់​​ស៊ុម​ខាងក្រៅ និង​បន្ទាត់​ផ្ដេក"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "កំណត់​ស៊ុម​ខាងក្រៅ និង​បន្ទាត់​ខាង​ក្នុង​ទាំងអស់"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "កំណត់​ស៊ុម​ខាង​ក្រៅ​ដោយ​មិន​ផ្លាស់ប្ដូរ​បន្ទាត់​ខាង​ក្នុង"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "កំណត់​តែ​បន្ទាត់​អង្កត់​ទ្រូង"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "កំណត់​ស៊ុម​ទាំង​បួន"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "កំណត់​តែ​ស៊ុម​ខាងឆ្វេង និងខាង​​ស្ដាំ"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "កំណត់​តែ​ស៊ុម​ខាង​លើ និង​ក្រោម"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "កំណត់​តែ​ស៊ុម​ខាង​ឆ្វេង"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "កំណត់​ស៊ុម​ខាង​លើ និង​ក្រោម និង​បន្ទាត់​ខាង​ក្នុង​ទាំងអស់"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "កំណត់​ស៊ុម​ខាង​ឆ្វេង និង​ស្ដាំ និង​បន្ទាត់​ខាងក្នុង​ទាំងអស់"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "គ្មាន​ស្រមោល"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ទម្លាក់​ស្រមោល​ទៅ​បាត​ខាង​ស្ដាំ"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ទម្លាក់​ស្រមោល​ទៅ​កំពូល​ខាង​ស្ដាំ"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ទម្លាក់​ស្រមោល​ទៅ​បាត​ខាង​ឆ្វេង"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ទម្លាក់​ស្រមោល​ទៅ​កំពូល​ខាង​ឆ្វេង"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1796,7 +1791,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1916,7 +1911,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2156,7 +2151,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2411,12 +2406,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2486,7 +2481,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2566,7 +2561,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2807,7 +2802,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3429,66 +3424,71 @@ msgid "About %PRODUCTNAME"
msgstr "អំពី %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "អ្នកចូលរួម"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "តំបន់បណ្ដាញ"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "លេខ​ស្ថាបនា៖ $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME ទំនើប ងាយស្រួល​ប្រើ ឈុត​កម្មវិធី​ការិយាល័យ​ឥត​គិត​ថ្លៃ​សម្រាប់​ កម្មវិធី​វាយ​អត្ថបទ សៀវភៅ​បញ្ជី បទ​បង្ហាញ និង​ផ្សេងៗ​ទៀត។"
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice គឺ​មាន​មូលដ្ឋាន​លើ OpenOffice.org ។"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME ត្រូវ​បាន​យក​មកពី LibreOffice ដែល​មាន​មូលដ្ឋាន​លើ OpenOffice.org ។"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "ការ​ចេញផ្សាយ​នេះ​ត្រូវ​បាន​ផ្ដល់​ដោយ %OOOVENDOR ។"
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3607,17 +3607,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "ជំនួស "
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "ជំនួស "
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "ដោយ ៖ "
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "តែ​អត្ថបទ "
@@ -4483,6 +4483,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "ប្រវែង​ពាក្យ​អប្បបរមា"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5640,30 +5800,30 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "លក្ខណសម្បត្តិ"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
#, fuzzy
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ស៊ុម"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "ឈ្មោះ៖"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
#, fuzzy
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "អត្ថបទ​ប្ដូរ"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9365,84 +9525,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ជំនួយ"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "ប្រើ​ប្រអប់​របស់​ %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "បើក​/រក្សា​ទុក​ប្រអប់"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "ប្រើ​ប្រអប់​របស់​ %PRODUCTNAME "
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ប្រអប់​បោះ​ពុម្ព​"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "បោះ​ពុម្ពសំណុំ​ស្ថាន​ភាព​ \"ឯកសារដែល​បាន​កែប្រែ​\" "
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ស្ថានភាព​ឯកសារ"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "បង្ហាញ​ជា​ឆ្នាំ​ចាប់ពី"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "និង"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "ឆ្នាំ​ (ពីរ​តួលេខ​)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "ផ្ទុក​ %PRODUCTNAME ក្នុង​អំឡុង​ពេល​ចាប់​ផ្តើម​ប្រព័ន្ធ​"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "បើក​កម្មវិធី​ចាប់​ផ្តើម​រហ័ស​របស់​ថាស​ប្រព័ន្ធ"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "កម្មវិធី​ចាប់​ផ្តើម​រហ័ស​របស់ %PRODUCTNAME"
@@ -11401,25 +11561,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "រូបរាង​ផ្ទាល់ខ្លួន"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "រូបរាង​របស់ Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -12067,102 +12212,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "ជម្រើស​ផ្នែក​សុវត្ថិភាព"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -13209,27 +13258,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/km/extensions/messages.po b/source/km/extensions/messages.po
index 48edf80e048..db656fd481d 100644
--- a/source/km/extensions/messages.po
+++ b/source/km/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3241,189 +3241,189 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "ប្លង់​​​ជួ​រ​​ឈរ ​​​សម្រាប់​​​តារាង​​ %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "ឈ្មោះ​​ខ្លី"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "អ្នក​​និពន្ធ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Publisher"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "ជំពូក"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "អ្នក​​​កែ​​សម្រួល​​"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "ប្រភេទ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "ឆ្នាំ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "ចំណង​ជើង"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Address"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "ទំព័រ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "ស្នា​ដៃ ​"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "ចំណង​​ជើង​របស់​សៀវភៅ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "ភាគ​"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "ប្រ​ភេទ​​ការ​​បោះ​​ពុម្ព​​ផ្សាយ​​ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "អង្គការ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "ស្ថាប័ន ​"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "សកល​វិទ្យា​ល័យ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "ប្រភេទ​​​របាយ​​ការណ៍ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "ខែ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "ទិនា​នុ​ប្បវត្តិ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "ចំនួន"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "ស៊េរី "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "ចំណារ​​​ពន្យល់​​ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "ចំណាំ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "វាល​​​​ដែល​​កំណត់​​ដោយ​អ្នក​​ប្រើ ១ ​"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "វាល​​​ដែល​​កំណត់​​ដោយ​​អ្នក​​ប្រើ ២ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "វាល​​​ដែល​​កំណត់​​ដោយ​​អ្នក​ប្រើ​ ៣ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "វាល​​​ដែល​​កំណត់​​ដោយ​​អ្នក​​ប្រើ​ ៤ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "វាល​​​ដែល​​កំណត់​​ដោយ​​អ្នក​​ប្រើ ​៥ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3608,31 +3608,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "បញ្ចូល​ឈ្មោះ​សម្រាប់​ប្រភេទ​ទិន្នន័យ​ថ្មី៖"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "ភ្ជាប់​​​វាល​"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "ផ្តល់​​យោ​បល់​"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "សំណុំ​បែបបទ​រង​អាច​ត្រូវ​បាន​ប្រើ ​ដើម្បី​បង្ហាញ​ទិន្នន័យ​លម្អិត​ អំពី​កំណត់​ត្រា​បច្ចុប្បន្ន​របស់​សំណុំ​បែបបទ​មេ​ ។ ដើម្បី​ធ្វើ​ដូច​នេះ​ អ្នក​អាច​​បញ្ជាក់​ថា​ ជួរឈរ​​ណាមួយ​ ក្នុង​​សំណុំ​​​បែបបទ​​រង​​ ​ត្រូវ​គ្នា​នឹង​ជួរ​ឈរ​ណា​មួយ ក្នុង​សំណុំ​បែប​បទ​មេ ។"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ស្លាក​"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/km/helpcontent2/source/auxiliary.po b/source/km/helpcontent2/source/auxiliary.po
index 6a7e93d6223..377f42d071f 100644
--- a/source/km/helpcontent2/source/auxiliary.po
+++ b/source/km/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "ព័ត៌មាន​ទូទៅ"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "របារ​ឧបករណ៍"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "គំនូរ (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "ម៉ឺនុយ"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "របារ​ឧបករណ៍"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "វត្ថុ ក្រាហ្វិក និង​រូបភា
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "ក្រុម និង​ស្រទាប់"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "អត្ថបទ​នៅ​ក្នុង​បទ​បង្ហាញ និង​គំនូរ"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/sbasic/guide.po b/source/km/helpcontent2/source/text/sbasic/guide.po
index 787bd3fc9bc..e7cc4b55d83 100644
--- a/source/km/helpcontent2/source/text/sbasic/guide.po
+++ b/source/km/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "បើក​ប្រអប់​ជាមួយ​កូដ​កម្មវិធី"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>កន្លាស់​ម៉ូឌុល/​ប្រអប់</bookmark_value><bookmark_value>ប្រអប់;ដោយប្រើ​កូដ​កម្មវិធីដើម្បី​បង្ហាញ (ឧទាហរណ៍)</bookmark_value><bookmark_value>ឧទាហរណ៍; បង្ហាញ​ប្រអប់​ដោយប្រើ​កូដ​កម្មវិធី</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/sbasic/python.po b/source/km/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/km/helpcontent2/source/text/sbasic/python.po
+++ b/source/km/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/km/helpcontent2/source/text/sbasic/shared.po b/source/km/helpcontent2/source/text/sbasic/shared.po
index c5b369297b6..28855bd9f9b 100644
--- a/source/km/helpcontent2/source/text/sbasic/shared.po
+++ b/source/km/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shared\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -36198,8 +36198,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">ជំនួយ %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/sbasic/shared/03.po b/source/km/helpcontent2/source/text/sbasic/shared/03.po
index e55b0e30683..c7da1797704 100644
--- a/source/km/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/km/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/km/helpcontent2/source/text/scalc/01.po b/source/km/helpcontent2/source/text/scalc/01.po
index 146f3e64ab7..c87fd00e3a1 100644
--- a/source/km/helpcontent2/source/text/scalc/01.po
+++ b/source/km/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -40950,8 +40950,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">ស្វែងរក​ទីតាំង​ឯកសារ ដែល​មាន​ទិន្នន័យ​ដែល​អ្នក​ចង់​បញ្ចូល ។</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40982,7 +40982,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41006,8 +41006,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">ជ្រើស​តារាង ឬ​ជួរ​ទិន្នន័យ​ដែល​អ្នក​ចង់​បញ្ចូល ។</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46294,8 +46294,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">បញ្ជាក់​លម្អិត​ជួរ​​ក្រឡា​ដែល​អ្នក​ចង់​បង្រួប​បង្រួម​ជាមួយ​នឹង​ជួរ​ក្រឡា​ដែល​រាយ​ក្នុង​ប្រអប់ <emph>ជួរ​បង្រួប​បង្រួម</emph> ។ ជ្រើស​ជួរ​ក្រឡា​មួយ​ក្នុង​សន្លឹក​មួយ ហើយ​បន្ទាប់​មក​ចុច <emph>បន្ថែម</emph> ។ អ្នក​ក៏​អាច​ជ្រើស​ឈ្មោះ​នៃ​ក្រឡា​ដែល​បាន​កំណត់​ជា​មុន​ពី​បញ្ជី <emph>ជួរ​ទិន្នន័យ​ប្រភព</emph> ។</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/schart/00.po b/source/km/helpcontent2/source/text/schart/00.po
index effdfddffca..6dbc8d9af38 100644
--- a/source/km/helpcontent2/source/text/schart/00.po
+++ b/source/km/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -486,13 +486,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">នៅ​ក្នុង​ប្រអប់​​ប្រភេទ​គំនូសតាង​នៃ​គំនូសតាង​បន្ទាត់ ឬ​គំនូស​តាង XY ដែល​បង្ហាញ​បន្ទាត់ ជ្រើស កោង នៅ​ក្នុង​បញ្ជី​ទម្លាក់​ចុះ​ប្រភេទ​បន្ទាត់ បន្ទាប់មក​ចុច​ប៊ូតុង​លក្ខណសម្បត្តិ។</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">នៅ​ក្នុង​ប្រអប់​​ប្រភេទ​គំនូសតាង​នៃ​គំនូសតាង​បន្ទាត់ ឬ​គំនូស​តាង XY ដែល​បង្ហាញ​បន្ទាត់ ជ្រើស កាំ នៅ​ក្នុង​បញ្ជី​ទម្លាក់​ចុះ​ប្រភេទ​បន្ទាត់ បន្ទាប់មក​ចុច​ប៊ូតុង​លក្ខណសម្បត្តិ។</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/km/helpcontent2/source/text/shared/00.po b/source/km/helpcontent2/source/text/shared/00.po
index 7a3b96bb0f9..def7f8f65db 100644
--- a/source/km/helpcontent2/source/text/shared/00.po
+++ b/source/km/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 00\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -7564,14 +7564,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/km/helpcontent2/source/text/shared/01.po b/source/km/helpcontent2/source/text/shared/01.po
index 0371866fa31..5d15f66502d 100644
--- a/source/km/helpcontent2/source/text/shared/01.po
+++ b/source/km/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -6252,6 +6252,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/km/helpcontent2/source/text/shared/02.po b/source/km/helpcontent2/source/text/shared/02.po
index fc0e549f19d..0c763f397db 100644
--- a/source/km/helpcontent2/source/text/shared/02.po
+++ b/source/km/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 02\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -3838,7 +3838,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/km/helpcontent2/source/text/shared/guide.po b/source/km/helpcontent2/source/text/shared/guide.po
index 1751c3be000..8200542ec94 100644
--- a/source/km/helpcontent2/source/text/shared/guide.po
+++ b/source/km/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -3100,14 +3100,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3116,14 +3108,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3132,14 +3116,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3148,14 +3124,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3164,14 +3132,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3180,14 +3140,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3196,14 +3148,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3212,14 +3156,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3228,14 +3164,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3292,14 +3220,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3308,14 +3228,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3324,14 +3236,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3348,14 +3252,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3364,14 +3260,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3380,14 +3268,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3396,14 +3276,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3412,14 +3284,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3428,14 +3292,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3460,14 +3316,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3476,14 +3324,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3492,14 +3332,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3508,14 +3340,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3524,14 +3348,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3540,14 +3356,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3556,14 +3364,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3572,14 +3372,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3588,14 +3380,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3604,14 +3388,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3620,14 +3396,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3636,14 +3404,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3652,14 +3412,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3668,14 +3420,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3684,14 +3428,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3700,14 +3436,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3716,14 +3444,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3732,14 +3452,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3796,14 +3508,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3812,14 +3516,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3828,14 +3524,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3844,14 +3532,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3860,14 +3540,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3876,14 +3548,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3900,14 +3564,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3916,14 +3572,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3932,14 +3580,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3948,14 +3588,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3964,14 +3596,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3980,14 +3604,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4012,14 +3628,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4028,14 +3636,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4060,14 +3660,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4076,14 +3668,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4092,14 +3676,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4108,14 +3684,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4124,14 +3692,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4140,14 +3700,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4156,14 +3708,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4188,14 +3732,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4204,14 +3740,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4220,14 +3748,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4236,14 +3756,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4252,14 +3764,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4348,14 +3852,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4380,14 +3876,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4396,14 +3884,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4412,14 +3892,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4444,14 +3916,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4460,14 +3924,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4476,14 +3932,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4492,14 +3940,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4540,14 +3980,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4556,14 +3988,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4572,14 +3996,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4588,14 +4004,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4604,14 +4012,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4652,14 +4052,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4732,14 +4124,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4748,14 +4132,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4764,14 +4140,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4780,14 +4148,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4796,14 +4156,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4812,14 +4164,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4876,14 +4220,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4892,14 +4228,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4908,14 +4236,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4924,14 +4244,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4940,14 +4252,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4956,14 +4260,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4972,14 +4268,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4988,14 +4276,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5004,14 +4284,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5020,14 +4292,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5036,14 +4300,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5052,14 +4308,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5068,14 +4316,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5084,14 +4324,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5116,14 +4348,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5132,14 +4356,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5148,14 +4364,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5164,14 +4372,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5180,14 +4380,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5196,14 +4388,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5212,14 +4396,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5228,14 +4404,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5292,14 +4460,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5308,14 +4468,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5324,14 +4476,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5340,14 +4484,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5356,14 +4492,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5388,14 +4516,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5436,14 +4556,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5452,14 +4564,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5484,14 +4588,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5500,14 +4596,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5532,14 +4620,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5564,14 +4644,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5580,14 +4652,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5596,14 +4660,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5612,14 +4668,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5628,14 +4676,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5644,14 +4684,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5660,14 +4692,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5676,14 +4700,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5692,14 +4708,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5708,14 +4716,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5756,14 +4756,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5772,14 +4764,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5788,14 +4772,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5804,14 +4780,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5820,14 +4788,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5836,14 +4796,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5884,14 +4836,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5900,14 +4844,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5916,14 +4852,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5932,14 +4860,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5948,14 +4868,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5964,14 +4876,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5980,14 +4884,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5996,14 +4892,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6012,14 +4900,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6028,14 +4908,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6044,14 +4916,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6060,14 +4924,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6076,14 +4932,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6092,14 +4940,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6108,14 +4948,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6124,14 +4956,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6140,14 +4964,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6156,14 +4972,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6172,14 +4980,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6188,14 +4988,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6204,14 +4996,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6220,14 +5004,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6236,14 +5012,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6252,14 +5020,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6268,14 +5028,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6284,14 +5036,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6300,14 +5044,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6316,14 +5052,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6332,14 +5060,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6348,14 +5068,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6364,14 +5076,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6380,14 +5084,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6396,14 +5092,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6412,27 +5100,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/km/helpcontent2/source/text/shared/optionen.po b/source/km/helpcontent2/source/text/shared/optionen.po
index 4cb1e8eba98..fec95cc3590 100644
--- a/source/km/helpcontent2/source/text/shared/optionen.po
+++ b/source/km/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: optionen\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -14785,182 +14785,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/km/helpcontent2/source/text/simpress/01.po b/source/km/helpcontent2/source/text/simpress/01.po
index 7e66b88e48b..3962ecef82d 100644
--- a/source/km/helpcontent2/source/text/simpress/01.po
+++ b/source/km/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -8182,7 +8182,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/km/helpcontent2/source/text/swriter/guide.po b/source/km/helpcontent2/source/text/swriter/guide.po
index daffecd2fd4..0800db6c16b 100644
--- a/source/km/helpcontent2/source/text/swriter/guide.po
+++ b/source/km/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -230,15 +230,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "នៅ​លើ <emph>របារ​ស្តង់ដារ</emph> ចុច​រូបតំណាង<emph> កម្មវិធី​រុករក</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\">រូបតំណាង</alt></image> ដើម្បីបើក <emph>កម្មវិធី​រុករក</emph> ។"
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -262,7 +262,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -294,7 +294,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -310,7 +310,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/km/officecfg/registry/data/org/openoffice/Office/UI.po b/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
index c06f2f1503a..6d6370d98c5 100644
--- a/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ 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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -23713,6 +23713,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26052,6 +26061,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26070,6 +26088,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/km/sc/messages.po b/source/km/sc/messages.po
index 1e6be90e806..1a98a49abf2 100644
--- a/source/km/sc/messages.po
+++ b/source/km/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15601,6 +15601,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(សិទ្ធិ​មិនរួម​បញ្ចូល)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16172,12 +16177,12 @@ msgstr "ការ​ធ្វើ​ទ្រង់ទ្រាយ​តាម​
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17452,84 +17457,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "សំណុំ​ទិន្នន័យ"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "បិទ "
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "កំណត់​ត្រា​ថ្មី"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "ថ្មី​ "
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "លុប"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "ស្ដារ"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "កំណត់ត្រា​មុន"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "កំណត់ត្រា​បន្ទាប់"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "បិទ "
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "ស្ទ្រីម​ទិន្នន័យ​បន្ត​ផ្ទាល់"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-#, fuzzy
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "បញ្ចូល URL ឯកសារ​ប្រភព​ក្នុង​ប្រព័ន្ធ​ឯកសារ​មូលដ្ឋាន ឬ​អ៊ីនធឺណិត​នៅ​ទីនេះ។"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "រកមើល... "
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ជួរ​មូលដ្ឋាន​ទិន្នន័យ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-#, fuzzy
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "ស្ទ្រីម​ប្រភព"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19293,34 +19255,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "លទ្ធផល​ចំពោះ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "កាល​​បរិច្ឆេទ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "ជួរឈរ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "ជួរដេក"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "ដាក់​ជា​ក្រុម​តាម"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "ចន្លោះ​ពេល"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "ប៉ារ៉ាម៉ែត្រ"
@@ -19473,167 +19440,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22244,17 +22213,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "លទ្ធផល​ស្វែងរក"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24187,109 +24166,114 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "និមិត្តសញ្ញា​គ្រោង"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "បង្អួច"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "ក្រឡា​ចត្រង្គ៖"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "ពណ៌៖"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "បង្ហាញ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "បង្ហាញ​នៅ​លើ​ក្រឡា​ដែល​បាន​ដាក់​ពណ៌"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "លាក់"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "ការ​បំបែក​ទំព័រ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "បន្ទាត់​ជំនួយ​ពេល​ផ្លាស់ទី"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
#, fuzzy
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "ជំនួយ​រូបភាព"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
#, fuzzy
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "វត្ថុ/រូបភាព៖"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "គំនូសតាង៖"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "វត្ថុ​​គំនូរ៖"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "បង្ហាញ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "លាក់"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "បង្ហាញ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "លាក់"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "បង្ហាញ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "លាក់"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "វត្ថុ "
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "ធ្វើ​សមកាលកម្ម​សន្លឹក"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "ពង្រីក"
diff --git a/source/km/scp2/source/ooo.po b/source/km/scp2/source/ooo.po
index 76abaed9e0d..259b9699bc4 100644
--- a/source/km/scp2/source/ooo.po
+++ b/source/km/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -36,6 +36,14 @@ msgstr "បើក​ឯកសារ"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/km/scp2/source/winexplorerext.po b/source/km/scp2/source/winexplorerext.po
index 3f5747f4c69..6797af4da46 100644
--- a/source/km/scp2/source/winexplorerext.po
+++ b/source/km/scp2/source/winexplorerext.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 23:29+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: km\n"
@@ -12,8 +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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369353077.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "អនុញ្ញាត​ឲ្យ​ម៉ៃក្រូសូហ្វវីនដូ Explorer ​បង្ហាញ​ព័ត៌មាន​អំពី​ឯកសារ​របស់ %PRODUCTNAME ដូចជា​ការ​មើល​រូបភាព​តូច​ជា​មុន ។"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/km/sd/messages.po b/source/km/sd/messages.po
index 71346c0b47a..95fd0b764d4 100644
--- a/source/km/sd/messages.po
+++ b/source/km/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2624,6 +2624,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3090,164 +3095,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "ដាក់ឈ្មោះ​ការ​រចនា HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4714,160 +4904,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "បង្ហាញ​ការ​ផ្លាស់ប្ដូរ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/km/sfx2/messages.po b/source/km/sfx2/messages.po
index c4f85a44b38..15bb9905d83 100644
--- a/source/km/sfx2/messages.po
+++ b/source/km/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -925,11 +925,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "យក​លក្ខណសម្បត្តិ​ចេញ"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -939,27 +934,27 @@ msgstr ""
"តម្លៃ​ដែល​បាន​បញ្ចូល មិន​ត្រូវ​គ្នា​នឹង​ប្រភេទ​ដែល​បាន​បញ្ជាក់​ទេ ។\n"
"តម្លៃ​នឹង​ត្រូវបាន​រក្សាទុក​ជា​អត្ថបទ ។"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "មាន​រចនាប័ទ្ម​រួច​ហើយ។ សរសេរ​ជាន់​លើ​ឬ​ទេ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "កំណត់​ឡើង​វិញ "
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ឈ្មោះ​នេះ​បាន​ប្រើ​រួច​ហើយ ។"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "គ្មាន​​រចនាប័ទ្ម​នេះ ។"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -969,7 +964,7 @@ msgstr ""
"រចនាប័ទ្ម​នេះ​មិន​អាច​ប្រើ​ជា​រចនាប័ទ្ម​គោល​​បាន​ទេ \n"
"ពីព្រោះ​វា​នឹង​ផ្តល់​លទ្ធផល​ជា​សេចក្តីយោង​ដដែលៗ ។"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -978,7 +973,7 @@ msgstr ""
"ឈ្មោះ​មាន​រួចហើយ ជា​រចនាប័ទ្ម​លំនាំដើម ។\n"
"សូម​ជ្រើស​ឈ្មោះ​ផ្សេង​ ។"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -989,95 +984,95 @@ msgstr ""
"ប្រសិនបើ​លុប​រចនាប័ទ្ម​ទាំងនេះ, អត្ថបទ​នឹង​ត្រឡប់​ទៅ​រចនាប័ទ្ម​មេ​។\n"
"តើ​អ្នក​នៅ​តែ​ចង់​លុប​រចនាប័ទ្ម​ទាំងនេះ​ឬ?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "រចនាប័ទ្ម​កំពុង​ប្រើ៖"
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "កម្មវិធី​រុករក​"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "អះអាង​ពាក្យ​សម្ងាត់​ខុស"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "ផ្ញើ"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ពុម្ពអក្សរ"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "បញ្ចូលមតិយោបល់​​កំណែ"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "បញ្ជី​រចនាប័ទ្ម"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "​ឋានានុក្រម"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "បំពេញ​របៀប​ទ្រង់ទ្រាយ"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "រចនាប័ទ្ម​ថ្មី​ពី​ជម្រើស"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "ធ្វើ​បច្ចុប្បន្នភាព​រចនាប័ទ្ម"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "តើ​អ្នក​ពិត​ជា​ចង់​បោះបង់​ការ​កត់​ត្រា​​ឬ ? ជំហាន​ទាំងឡាយ​ដែល​បាន​​កត់ត្រា​​មក​ដល់​ចំនុច​នេះ នឹង​ត្រូវ​បាត់បង់ ។"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "បោះបង់​​ការ​កត់​ត្រា"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ពុម្ព​កំពុង​ត្រូវ​បាន​ចាប់ផ្តើម សម្រាប់​ការ​ប្រើ​លើក​ដំបូង ។"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1086,7 +1081,7 @@ msgstr ""
"រក​មិន​ឃើញ​ម៉ាស៊ីន​បោះពុម្ព​លំនាំដើម ។​\n"
"សូម​ជ្រើស​ម៉ាស៊ីន​បោះពុម្ព​មួយ រួចព្យាយាម​ម្តង​ទៀត ។"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1095,17 +1090,17 @@ msgstr ""
"មិន​អាច​ចាប់ផ្តើម​ម៉ាស៊ីន​បោះពុម្ព ។\n"
"សូម​ពិនិត្យ​មើល​ការ​កំណត់​រចនា​សម្ព័ន្ធ​ម៉ាស៊ីន​បោះពុម្ព​របស់​អ្នក ។"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "ម៉ាស៊ីន​បោះពុម្ព ជាប់​រវល់"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (​បាន​​តែ​​អាន​)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"តើ​អ្នក​ចង់​រក្សាទុក​ការ​កំណត់​ថ្មី​នៅ​ក្នុង\n"
"ឯកសារ​សកម្ម​ដែរឬទេ ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"តើ​គួរ​រក្សាទុក​ការ​កំណត់​ថ្មី​\n"
"ក្នុង​ឯកសារ​សកម្ម​ឬ​ទេ ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1138,7 +1133,7 @@ msgstr ""
"តើ​អ្នក​ចង់​រក្សាទុក​ការ​កំណត់​ថ្មី​នៅ​ក្នុង\n"
"ឯកសារ​សកម្ម​ដែរឬទេ ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1148,7 +1143,7 @@ msgstr ""
"មិន​អាច​បិទ​ឯកសារ ពីព្រោះ​\n"
"ការងារ​បោះពុម្ព​មួយ​កំពុង​ត្រូវ​បាន​អនុវត្ត ។"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1156,7 +1151,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1164,18 +1159,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "មិន​អាច​កែសម្រួល​ឯកសារ​នេះ អាច​ប្រហែល​ជា​ដោយ​សារ បាត់​សិទ្ធិ​ដំណើរការ ។ តើ​អ្នក​ចង់​កែសម្រួល​ច្បាប់​ចម្លង​នៃ​ឯកសារ​ឬ​ទេ ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1183,357 +1178,367 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "(ឯកសារ​ដែល​បាន​ជួសជុល)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "ឯកសារ​មិន​បាន​ពិនិត្យ​ចេញពី​ម៉ាស៊ីន​មេ"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "វត្ថុ​បញ្ជា​របាយការណ៍"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "ចេញ"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "កែសម្រួល​ឯកសារ"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ចុះហត្ថលេខា​ឯកសារ..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ចូលផែ"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "មិន​ចូលផែ"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "ជម្រើស​បន្ថែម"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "បិទ​របារ​ចំហៀង"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "ការ​ប្ដូរ​តាម​តម្រូវ​ការ"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "ស្ដារ​លំនាំដើម"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "យកចេញ"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1910,32 +1915,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "មតិយោបល់​​កំណែ"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "ឈ្មោះ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "ប្រភេទ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "តម្លៃ"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "ប្រភេទ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "បាទ/ចាស"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "ទេ"
@@ -1945,17 +1935,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "ឈ្មោះ"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "ប្រភេទ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "តម្លៃ"
@@ -2090,17 +2080,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ទីតាំង៖"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ប្រភេទ៖"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "ប្ដូរ​ពាក្យសម្ងាត់​"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ពុម្ព ៖"
@@ -2111,27 +2101,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "លក្ខណសម្បត្តិរបស់​ "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "ទូទៅ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "សេចក្ដី​ពណ៌នា"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "លក្ខណសម្បត្តិ​ផ្ទាល់ខ្លួន"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "លក្ខណសម្បត្តិ CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "សុវត្ថិភាព"
@@ -2356,6 +2346,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/km/shell/messages.po b/source/km/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/km/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/km/starmath/messages.po b/source/km/starmath/messages.po
index 70fde4f29ec..3c955b2d495 100644
--- a/source/km/starmath/messages.po
+++ b/source/km/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1654,268 +1654,293 @@ msgid "Examples"
msgstr "ឧទាហរណ៍"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "ស្តងដារ"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ទ្រេត"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ដិត​"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "ខ្មៅ"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ខៀវ"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "បៃតង"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "ក្រហម"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ផ្តៃមេឃ"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "ស្វាយ"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ប្រផេះ"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "បៃតង"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "ត្នោត​ចាស់"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ខៀវ​ចាស់"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "អូលីវ"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ស្វាយ"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ប្រាក់"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "ខៀវ​បៃតង​ក្រមៅ"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "លឿង"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "លាក់"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "ទំហំ"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "ពុម្ពអក្សរ"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ឆ្វេង"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "កណ្ដាល"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ស្ដាំ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "ពាក្យ​បញ្ជា"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "រូបមន្ត"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "កំពុង​រក្សា​ទុក​ឯកសារ..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "រូបមន្ត %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "កំហុស ​៖ "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "តួ​អក្សរ​ដែល​មិន​រំពឹង"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "​រំពឹង '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "​រំពឹង '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "​​រំពឹង '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "​រំពឹង ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "​​រំពឹង '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "ត្រូវ​ការ​ពណ៌​​​"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "​រំពឹង 'RIGHT"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "មាតិកា"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ចំណង​ជើង"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "អត្ថបទ​រូបមន្ត "
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "ស៊ុម​"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "ទំហំ"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "ទំហំ​ដើម"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "​សម​ទៅ​នឹង​ទំព័រ "
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1983,6 +2008,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "element"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/km/svtools/messages.po b/source/km/svtools/messages.po
index 3fc8064c88f..c2f9d4a152f 100644
--- a/source/km/svtools/messages.po
+++ b/source/km/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,801 +16,803 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195624.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "មិន​ធ្វើ​វិ​ញ ៖"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "ធ្វើ​វិញ ៖ "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "ធ្វើ​ម្ដងទៀត ៖"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "អត្ថបទ​គ្មាន​ទ្រង់ទ្រាយ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "ស្ថានភាព​ព័ត៌មាន​ពី​​តំណ​ខាង​ក្នុង Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "កន្លែង​​ចំណាំ Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "ទ្រង់ទ្រាយ​ម៉ាស៊ីន​បម្រើ​ Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "ទ្រង់ទ្រាយ​វត្ថុ Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "វត្ថុ​អាប់ភ្លេត"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "វត្ថុ​ជំនួយ"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "វត្ថុ StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "វត្ថុ StarWriter​ 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "វត្ថុ StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "វត្ថុ StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "វត្ថុ StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "វត្ថុ StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "វត្ថុ StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "វត្ថុ StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "វត្ថុ StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "វត្ថុ StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "វត្ថុ StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "វត្ថុ StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "វត្ថុ StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "វត្ថុ StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "វត្ថុ StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "វត្ថុ StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "វត្ថុ StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "វត្ថុ StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "វត្ថុ StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "វត្ថុ StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "វត្ថុ StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "វត្ថុ StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "វត្ថុ StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "វត្ថុ​សម្រាប់​គូរ StarObject"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "វត្ថុ Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "វត្ថុ StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "វត្ថុ​ឯកសារ​ការិយាល័យ"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "ចំណាំ​​ព័ត៌មាន​ឯកសារ"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "ឯកសារ Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "វត្ថុ StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "វត្ថុ​ក្រាហ្វិក"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "វត្ថុ OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "វត្ថុ OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "វត្ថុ OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "វត្ថុ OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "វត្ថុ OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "វត្ថុ OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "វត្ថុ OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "វត្ថុ OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "ឯកសារ​មេតា​របស់​វីនដូ"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "វត្ថុ​ប្រភព​ទិន្នន័យ"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "តារាង​ប្រភព​ទិន្នន័យ"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "សំណួរ SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "ប្រអប់ OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "តំណ"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "ទ្រង់ទ្រាយ HTML ដែល​គ្មានមតិយោបល់"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "មិន​អាច​បញ្ចូល​វត្ថុ % ។"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "មិន​អាច​បញ្ចូល​វត្ថុ​ពី​ឯកសារ % ។"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "វត្ថុ​បន្ថែម"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "មិន​ស្គាល់​ប្រភព"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "ឈ្មោះ"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "ទំហំ"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "កាលបរិច្ឆេទ​កែប្រែ​"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "ប្រភេទ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "បៃ"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "គីឡូបៃ"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "មេកាបៃ"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ជីកាបៃ"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "ជួរដេក ៖ %1 ជួរឈរ ៖ %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr " ប្រភេទ ៖ %1 URL ៖ %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ថត"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ឯកសារ"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "វាល​ទំនេរ"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "អក្សរក្រម​លេខ"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "ធម្មតា"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "សំណុំ​​តួអក្សរ"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "វចនានុក្រម"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "ភីនអ៊ីន"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "ខ្វាច់"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "រ៉ាឌីកាល់"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "យូនីកូដ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "ជូអ៊ីន"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "សៀវភៅ​ទូរសព្ទ"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "នៃ​សូរសព្ទ (អក្សរក្រម​លេខ ដំបូង)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "នៃ​សូរសព្ទ (អក្សរក្រម​លេខ ចុង​ក្រោយ)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "អក្សរក្រម​លេខ"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "វចនានុក្រម"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "ភីនអ៊ីន"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "រ៉ាឌីកាល់"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "ខ្វាច់"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "ជូអ៊ីន"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "នៃ​សូរសព្ទ (អក្សរក្រម​លេខ ​ដំបូង​​ រៀប​ជា​ក្រុម​ដោយ​ព្យាង្គ)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "នៃ​សូរសព្ទ (អក្សរក្រម​លេខ​ ដំបូង​ ​រៀប​ជា​ក្រុម​ដោយ​ព្យញ្ជនៈ)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "នៃ​សូរសព្ទ (​អក្សរក្រម​លេខ ​ចុង​ក្រោយ​ ​រៀប​ជា​ក្រុម​ដោយ​ព្យាង្គ​)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "នៃ​សូរសព្ទ (អក្សរក្រម​លេខ​ ចុង​ក្រោយ​​ រៀប​ជា​ក្រុម​ដោយ​ព្យញ្ជនៈ)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ថ្ងៃ​នេះ"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "គ្មាន"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ស្ដើង"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ទ្រេត​ស្ដើង"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "ធម្មតា"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ទ្រេត"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ដិត"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ទ្រេត ដិត"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ខ្មៅ"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "ទ្រេត​ ខ្មៅ"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "សៀវភៅ​"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "ញឹក​"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "ពាក់កណ្តាលដិត​"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "ពុម្ពអក្សរ​ដូច​គ្នា នឹង​ត្រូវ​បាន​ប្រើ​ទាំង​ លើ​ម៉ាស៊ីន​បោះពុម្ព​ និង​​​លើ​អេក្រង់​របស់​អ្នក ។"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "នេះ​ជា​ពុម្ពអក្សរ​​​ម៉ាស៊ីន​បោះពុម្ព ​។ រូបភាព​លើ​អេក្រង់​អាច​ខុស​គ្នា ។"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "រចនាប័ទ្ម​​​ពុម្ពអក្សរ​នេះ​​នឹង​ត្រូវ​បាន​​យក​គំរូ​តាម ឬ រចនាប័ទ្ម​ដែល​ដូច​គ្នា​បំផុត​​ ​នឹង​​​ត្រូវ​​បាន​​​ប្រើ ។"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ទំហំ​ពុម្ពអក្សរ​នេះ​មិន​ត្រូវ​បាន​ដំឡើង ។ ពុម្ពអក្សរ​​​​ដូច​គ្នា​​ដែល​មាន​ នឹង​ត្រូវ​បាន​ប្រើ ។"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "រក​មើល..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ផ្លាស់ទី​ទៅ​ដើម"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ផ្លាស់ទី​ទៅ​ឆ្វេង"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ផ្លាស់ទី​​ទៅ​ស្ដាំ"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "ផ្លាស់ទី​ទៅ​ចុង"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "បន្ថែម"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "បន្ទាត់​ផ្ដេក"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "បន្ទាត់បញ្ឈរ"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "កម្រិត​ពន្លឺ ១ ប៊ីត"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "ច្របល់ ១ ប៊ីត"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "មាត្រដ្ឋាន​ប្រផេះ ៤ ប៊ីត"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "ពណ៌ ៤ ប៊ីត"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "មាត្រដ្ឋាន​ប្រផេះ ៨ ប៊ីត"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "ពណ៌ ៨ ប៊ីត"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "ពណ៌​ធម្មជាតិ ២៤ ប៊ីត"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "រូបភាព​ត្រូវការ​អង្គ​ចងចាំ​ប្រហែល %1 គីឡូបៃ ។"
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
@@ -818,731 +820,731 @@ msgstr ""
"រូបភាព​ត្រូវការ​អង្គ​ចងចាំ​ប្រហែល %1 គីឡូបៃ\n"
" ទំហំ​ឯកសារ​គឺ %2 គីឡូបៃ ។"
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ទំហំ​ឯកសារ​គឺ %1 គីឡូបៃ ។"
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ប្រកាស"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "តម្រៀប"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "រួចរាល់"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "បាន​ផ្អាក"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "ការ​លុប​មិន​ទាន់​សម្រេច"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "រវល់"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "កំពុង​ចាប់ផ្តើម"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "រង់​ចាំ"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "កំពុង​កំដៅ"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "កំពុង​ដំណើរការ"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "ការបោះពុម្ព​"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ក្រៅ​បណ្តាញ"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "កំហុស"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "​​មិន​ស្គាល់​ម៉ាស៊ីន​បម្រើ"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "ស្ទះ​ក្រដាស"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "ក្រដាស​មិន​គ្រប់គ្រាន់"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "បន្ថែម​ដោយ​ដៃ"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "បញ្ហា​ក្រដាស"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O មាន​សកម្មភាព"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "កន្លែង​ផ្ទុក​​ទិន្នផល​​ ពេញ"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "ទឹកថ្នាំ​តិច"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "គ្មាន​​ទឹកថ្នាំ"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "លុប​ទំព័រ"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ភាព​អន្តរាគមន៍​ចាំបាច់​របស់​អ្នក​ប្រើ"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "អង្គ​ចងចាំ​​មិន​​គ្រប់គ្រាន់"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "គម្រប​ បើក"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "របៀប​សន្សំ​អគ្គិសនី"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ម៉ាស៊ីន​​​បោះពុម្ព​​​លំនាំ​ដើម"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d ​ឯកសារ"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "បញ្ចប់ "
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "បន្ទាប់ >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< ថយក្រោយ "
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ជំហាន"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<គ្មាន>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ក្រុមហ៊ុន"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "នាយកដ្ឋាន"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "នាមខ្លួន"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "នាមត្រកូល"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "វិថី"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "ប្រទេស"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "លេខ​តំបន់"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "ទីក្រុង​"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "ចំណង​ជើង"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "ទីតាំង​"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "សំណុំ​បែបបទ​អាសយដ្ឋាន"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "អាទិ​សង្កេត"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "បញ្ចប់​ដោយ​ការ​គួរសម​"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "ទូរស័ព្ទ​ ៖ ផ្ទះ"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "ទូរស័ព្ទ ៖ កន្លែង​ធ្វើការ"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ចំណាំ"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "អ្នក​ប្រើ 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "អ្នក​ប្រើ 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "អ្នក​ប្រើ 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "អ្នក​ប្រើ 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "លេខ​សម្គាល់"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ស្ថាន​​ភាព"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "ទូរស័ព្ទ ៖ ការិយាល័យ"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "ចល័ត"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "​ទូរស័ព្ទ ៖ ផ្សេង​ទៀត"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ប្រតិទិន"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "អញ្ជើញ"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ត្រូវការ Java runtime environment (JRE) ដើម្បី​ធ្វើ​ភារកិច្ច​នេះ ។ សូម​ដំឡើង JRE ហើយ​​ចាប់ផ្ដើម %PRODUCTNAME ឡើងវិញ ។"
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ការ​កំណត់​រចនាសម្ព័ន្ធ %PRODUCTNAME ត្រូវ​បាន​ផ្លាស់ប្ដូរ។ នៅ​ក្រោម %PRODUCTNAME - ចំណូលចិត្ត - %PRODUCTNAME - កម្រិត​ខ្ពស់, ជ្រើស​បរិស្ថាន​ដំណើរការ Java ដែល​អ្នក​ចង់​​ឲ្យ​ប្រើ​​ដោយ %PRODUCTNAME ។"
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ការ​កំណត់​រចនាសម្ព័ន្ធ %PRODUCTNAME ត្រូវ​បាន​ផ្លាស់ប្ដូរ។ នៅ​ក្រោម​ឧបករណ៍ - ជម្រើស - %PRODUCTNAME - កម្រិត​ខ្ពស់, ជ្រើស​បរិស្ថាន​ដំណើរការ Java ដែល​អ្នក​ចង់​​ឲ្យ​ប្រើ​​ដោយ %PRODUCTNAME ។"
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ត្រូវការ Java runtime environment (JRE) ដើម្បី​ធ្វើ​ភារកិច្ច​នេះ។ JRE ដែល​បាន​ជ្រើស​គឺ​មិន​ពេញលេញ​ឡើយ។ សូម​ជ្រើស​កំណែ​ផ្សេង ឬ​ដំឡើង JRE ថ្មី​មួយ ហើយ​ជ្រើស​វា​ក្រោម - %PRODUCTNAME - ចំណូលចិត្ត - %PRODUCTNAME - កម្រិត​ខ្ពស់។"
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ត្រូវការ Java runtime environment (JRE) ដើម្បី​ធ្វើ​កិច្ចការ​នេះ ។ JRE ដែល​បាន​ជ្រើស​គឺ​មិន​ពេញលេញ​ឡើយ។ សូម​ជ្រើស​កំណែ​ផ្សេង ឬ​ដំឡើង JRE ថ្មី​មួយ ហើយ​ជ្រើស​វា​ក្រោម ឧបករណ៍ - ជម្រើស - %PRODUCTNAME - កម្រិត​ខ្ពស់។"
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "ត្រូវការ JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "ជ្រើស JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE មិន​ពេញលេញ"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "ប្រភព​កូដ"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ឯកសារ​ចំណាំ"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ក្រាហ្វិក"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ឯកសារ​សម្រាប់​កំណត់​រចនាសម្ព័ន្ធ"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "កម្មវិធី"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "តារាង​មូលដ្ឋាន​ទិន្នន័យ"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "ឯកសារ​ប្រព័ន្ធ"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "ឯកសារ ​MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "ឯកសារ​ជំនួយ"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "ឯកសារ ​HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ឯកសារ​​​ប័ណ្ណសារ"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ឯកសារ​កំណត់ហេតុ"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "មូលដ្ឋាន​ទិន្នន័យ StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "ឯកសារ​មេ StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "រូបភាព StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ឯកសារ​អត្ថបទ"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "តំណ"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "ពុម្ព StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "ឯកសារ MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "ពុម្ព MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ឯកសារ​បាច់"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ឯកសារ"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ថត"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ឯកសារ​​អត្ថបទ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "សៀវភៅ​បញ្ជី"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "ការ​បង្ហាញ"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "គំនូរ"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "ឯកសារ ​HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ឯកសារ​មេ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "រូបមន្ត"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "មូលដ្ឋាន​ទិន្នន័យ"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "ពុម្ព OpenOffice.org 1.0 Spreadsheet"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "ពុម្ព OpenOffice.org 1.0 Drawing"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "ពុម្ព OpenOffice.org 1.0 Presentation"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "ពុម្ព​ឯកសារ​អត្ថបទ OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ដ្រាយ​​មូលដ្ឋាន"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ដ្រាយ​ថាស"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "ដ្រាយ CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "ការ​តភ្ជាប់​​បណ្តាញ"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "ឯកសា​រ​ MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "ពុម្ព ​MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "ការបង្ហាញ​​ MS PowerPoint "
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "រូបមន្ត OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "គំនូស​តាង OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "គំនូរ OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "សៀវភៅ​បញ្ជី OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "បទ​បង្ហាញ OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "ឯកសារ​អត្ថបទ OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "ឯកសារ​មេ OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "ឯកសារ MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "មូលដ្ឋាន​ទិន្នន័យ OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "គំនូរ OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "រូបមន្ត OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ឯកសារ​មេ OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ការ​បង្ហាញ OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "សៀវភៅ​បញ្ជី OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "អត្ថបទ OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ពុម្ព​សៀវភៅ​បញ្ជី OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ពុម្ព​គំនូរ OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ពុម្ព​ការ​បង្ហាញ​ OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ពុម្ព​អត្ថបទ OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "ផ្នែក​បន្ថែម %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/km/svx/messages.po b/source/km/svx/messages.po
index 838ae91c656..51293e88ef2 100644
--- a/source/km/svx/messages.po
+++ b/source/km/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8008,6 +8008,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12546,88 +12551,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "កម្មវិធី​និពន្ធ​វណ្ឌវង្ក"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "អនុវត្ត"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "តំបន់​ធ្វើការ"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "ជ្រើស"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "ចតុកោណ"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "រាង​ពងក្រពើ"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "ពហុកោណ"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "កែ​សម្រួល​ចំណុច"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ផ្លាស់ទី​ចំណុច"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "បញ្ចូល​ចំណុច"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "លុប​ចំណុច"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "វណ្ឌវង្ក​ស្វ័យប្រវត្តិ"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "មិន​ធ្វើ​វិញ"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "ក្រហម"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "បំពង់​កែវ"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12957,123 +12967,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "បាតកថា​"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "កម្មវិធី​​និពន្ធ​ផែនទី​រូបភាព"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "អនុវត្ត"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "បើក​..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "រក្សាទុក..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "បិទ​"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "ជ្រើស"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "ចតុកោណ"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "រាង​ពងក្រពើ"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "ពហុកោណ"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "ពហុកោណ​ទម្រង់​សេរី"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "កែ​សម្រួល​ចំណុច"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ផ្លាស់ទី​ចំណុច"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "បញ្ចូល​ចំណុច"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "លុប​ចំណុច"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "មិន​ធ្វើ​វិញ"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "ក្រហម"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "សកម្ម"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "ម៉ាក្រូ..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "លក្ខណសម្បត្តិ ៖"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "អាសយដ្ឋាន ៖"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ស៊ុម"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/km/sw/messages.po b/source/km/sw/messages.po
index 5a133bea62e..e478c43a29a 100644
--- a/source/km/sw/messages.po
+++ b/source/km/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-20 17:21+0000\n"
"Last-Translator: Andras Timar <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3171,9 +3171,9 @@ msgid "Change object title of $1"
msgstr "ផ្លាស់ប្ដូរ​ចំណង​ជើង​វត្ថុ​នៃ $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "ផ្លាស់ប្ដូរ​ការ​ពិពណ៌នា​វត្ថុ​នៃ $1"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12465,147 +12465,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12615,152 +12615,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13854,7 +13854,7 @@ msgstr "ពង្រីក​គម្លាត​ពាក្យ​នៅ​ល
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17259,48 +17259,48 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "មើល​ជា​មុន"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-#, fuzzy
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "មើល​ជា​​​មុន"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "ប្រភេទ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "ធាតុ​បញ្ចូល"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "រចនាប័ទ្ម"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "ជួរឈរ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+#, fuzzy
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "មើល​ជា​​​មុន"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "កម្រិត "
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "ប្រភេទ"
@@ -17545,316 +17545,316 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "កែសម្រួល..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "ចំណងជើង"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "ប្រភេទ៖"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "តារាង​មាតិកា"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "លិបិក្រម​តាម​លំដាប់​អក្សរក្រម"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "លិបិក្រម​តារាង"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "កំណត់​ដោយ​អ្នកប្រើ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "តារាង​វត្ថុ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "គន្ថនិទ្ទេស"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "បាន​ការពារ​ពី​ការ​ផ្លាស់ប្ដូរ​ដោយ​ដៃ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
#, fuzzy
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "ប្រភេទ និង​ចំណងជើង"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "សំណុំ​បែបបទ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "ឯកសារ​ទាំងមូល"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "ជំពូក"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
#, fuzzy
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "វាយ​តម្លៃ​តាម​កម្រិត"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "គ្រោង"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "សញ្ញា​សម្គាល់​លិបិក្រម"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "តារាង "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "ស៊ុម​អត្ថបទ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ក្រាហ្វិក"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "វត្ថុ OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "ប្រើ​កម្រិត​ពី​ជំពូក​ប្រភព"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "រចនាប័ទ្ម​បន្ថែម"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "រចនាប័ទ្ម"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "រចនាប័ទ្ម​ផ្ដល់​តម្លៃ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "ចំណងជើង"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "ឈ្មោះ​វត្ថុ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "ប្រភេទ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "បង្ហាញ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "សេចក្ដី​យោង"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "ប្រភេទ និង​ចំនួន"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "អត្ថបទ​ចំណងជើង"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
#, fuzzy
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "បង្កើត​ចេញពី"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
#, fuzzy
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "បង្កើត​ចេញពី​វត្ថុ​ដូច​ខាងក្រោម"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "តង្កៀប ([ ])"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "ចំនួន​ធាតុ​បញ្ចូល"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[គ្មាន]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
#, fuzzy
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "ទ្រង់ទ្រាយ​ធាតុ​បញ្ចូល"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "ផ្សំ​ធាតុ​បញ្ចូល​ដែល​ដូចគ្នា"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "ផ្សំ​ធាតុ​បញ្ចូល​ដែល​ដូចគ្នា​ដោយ​ប្រើ p ឬ pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "ផ្សំ​ដោយ​ប្រើ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "ប្រកាន់​តួ​អក្សរ​តូច​ធំ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "ធាតុ​បញ្ចូល​សរសេរ​ជា​អក្សរពុម្ព​ស្វ័យប្រវត្តិ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "គ្រាប់ចុច​ពេល​បំបែក​ធាតុ​បញ្ចូល"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "ឯកសារ​ត្រូវគ្នា"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ឯកសារ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "ជម្រើស​"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ភាសា"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "ប្រភេទ​ពាក្យ​គន្លឹះ "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "ត​ម្រៀប​"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "កម្រិត "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "រចនាប័ទ្ម​កថាខណ្ឌ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "លំនាំដើម"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "កែ​សម្រួល​ "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "ការ​ផ្ដល់​តម្លៃ"
diff --git a/source/kmr-Latn/cui/messages.po b/source/kmr-Latn/cui/messages.po
index 90ed536654a..86e09a4eae7 100644
--- a/source/kmr-Latn/cui/messages.po
+++ b/source/kmr-Latn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1668,107 +1668,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Qeraxdank tuneye"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Tenê qeraxdanka derve hilbijêre"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Qeraxdanka Derve û Xêzikên Serpahnayê"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Qeraxdanka Derve û Xêzikên Serpahnayê"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Sînorê Derve Bêyî Rêzikên hundirîn Mîheng Bike"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Tenê Xêzên Çeprast Mîheng Bike"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Her çar kêlekan hilbijêre"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Tenê kêlekên rast û çep mîheng bikin"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Tenê kêlekên serî û binî mîheng bikin"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Tenê kêlekaçep mîheng bikin"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Bêsî"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1811,7 +1806,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1931,7 +1926,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2171,7 +2166,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2426,12 +2421,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2501,7 +2496,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2581,7 +2576,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2822,7 +2817,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3458,68 +3453,73 @@ msgid "About %PRODUCTNAME"
msgstr "Der barê %PRODUCTNAME de"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Malpera min"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3644,19 +3644,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "~Biguherîne"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "~Biguherîne"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Firehî"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4530,6 +4530,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5715,29 +5875,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Taybetmendî"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Çarçeve:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Nav"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9527,86 +9687,86 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Alîkarî"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Diyalogên %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Diyalogên %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Navê\tRewşa Belgeyê"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "û"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Gava pergal hate vekirin %PRODUCTNAME'yê bar bike"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Zû-Destpêkera di berkêşka pergalê de Neçalak bike"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11579,24 +11739,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12263,102 +12408,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13430,27 +13479,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/kmr-Latn/extensions/messages.po b/source/kmr-Latn/extensions/messages.po
index f5e6f983bca..773216bed38 100644
--- a/source/kmr-Latn/extensions/messages.po
+++ b/source/kmr-Latn/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3242,191 +3242,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Ji bo tabloya %1 duzena stûnê"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Navê kin"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Nivîskar"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Weşanger"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Beş"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Weşanger"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Cure"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Sal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Sernav"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Navnîşan"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "~Rûpel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "~Weşan"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~Sernavê pirtûkê"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Cîld"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "~Cureyê weşanê"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organî~zasyon"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "~Sazî"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Zanîngeh"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Cureyê ~raporê"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Meh"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Kovar"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Numre"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "~Rêze"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "~Rave"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Nîşe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Qada ku bi bikarhêner hatiye ravekirin ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Qada ku bi bikarhêner hatiye ravekirin ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Qada ku bi bikarhêner hatiye ravekirin ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Qada ku bi bikarhêner hatiye ravekirin ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Qada ku bi bikarhêner hatiye ravekirin ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3608,31 +3608,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Qadên girêdanan"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Pêşniyar bike"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Formên jêr, ji bo nîşandan agahiyên kîtekît yên der barê tomarên derbasdar yên formên bingeh de tê bikaranîn. Ji bo ku tu karibe vê bike ji sitûnên formên jêr û stûnên formên bingeh yên ku li hev tên diyar bikî."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Etîket"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
index 1a730d1288e..c2c221f404d 100644
--- a/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23762,6 +23762,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26121,6 +26130,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26139,6 +26157,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/kmr-Latn/sc/messages.po b/source/kmr-Latn/sc/messages.po
index 143e356e4d7..bc828d46116 100644
--- a/source/kmr-Latn/sc/messages.po
+++ b/source/kmr-Latn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15519,6 +15519,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16086,12 +16091,12 @@ msgstr "Teşekirina Bimerc"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17392,90 +17397,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "~Bigire"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Tomariya Nû"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "Nû"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Jê bibe"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Vesazkirin"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Tomara Berê"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Tomara Pêşîn"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "~Bigire"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Bigere..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Navberên danegirê"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19277,34 +19239,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Dane"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Sitûn"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rêzik"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Yê dabeşî koman kiriye: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Navber"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19451,167 +19418,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22253,17 +22222,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24247,111 +24226,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Pa~ce"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Nîşan Bide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Veşêre"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Dawiya rûpel"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Xanxank"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Bireserên xêzkirinê"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Nîşan Bide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Veşêre"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Nîşan Bide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Veşêre"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Nîşan Bide"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Veşêre"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Obje"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Mezinkirin"
diff --git a/source/kmr-Latn/scp2/source/ooo.po b/source/kmr-Latn/scp2/source/ooo.po
index b973586444a..564b41456e3 100644
--- a/source/kmr-Latn/scp2/source/ooo.po
+++ b/source/kmr-Latn/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Belgeyê Veke"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/kmr-Latn/scp2/source/winexplorerext.po b/source/kmr-Latn/scp2/source/winexplorerext.po
index 8cd46b54a14..5dc4cd0480a 100644
--- a/source/kmr-Latn/scp2/source/winexplorerext.po
+++ b/source/kmr-Latn/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 23:51+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-11-20 16:04+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: ku\n"
+"Language: kmr-Latn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1384963499.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows Explorer çalak dike ku derbarê belgeyên %PRODUCTNAME de agahî nîşan bide, mînak, pêşdîtina wêneyên biçûk."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/kmr-Latn/sd/messages.po b/source/kmr-Latn/sd/messages.po
index 379ae995ab1..a5912f5045c 100644
--- a/source/kmr-Latn/sd/messages.po
+++ b/source/kmr-Latn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2644,6 +2644,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3125,164 +3130,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4767,160 +4957,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/kmr-Latn/sfx2/messages.po b/source/kmr-Latn/sfx2/messages.po
index 59c43b9960a..2494a073058 100644
--- a/source/kmr-Latn/sfx2/messages.po
+++ b/source/kmr-Latn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -913,11 +913,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "S: %1 M: %2 R: %3 S: %4 X: %5 Ç: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Taybetmeniyê Rake"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -927,28 +922,28 @@ msgstr ""
"Nirxa têketî bi cureyê dîyarkirî re hev nagirin.\n"
"Nirx wê wekî nivîs were tomarkirin."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Pel jixwe heye. Bila li ser were nivîsîn?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Tune Bike"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Ev nav wek navê şablonekî tê bikaranîn"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Ev şêwaz ne mevcûd e."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -958,7 +953,7 @@ msgstr ""
"Ev şêwaz weke şêwaza bingeh nayê bikaranîn,\n"
"ji ber ku di têkildariyeke dubare de encam dayî."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -967,7 +962,7 @@ msgstr ""
"Ev nav weke şêwaza ku tê fikirîn heye.\n"
"Ji kerema xwe navekî din hilbijêre."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -975,97 +970,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navîgator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Erêkirina nasnavê xelete"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Bişîne"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
#, fuzzy
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Cûrenivîs"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Ravekirina Guhertoyê Lê Zêde Bike"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hiyerarşîk"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Moda Tije Bike"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Ji nav Hilbijartinan Şêwaza Nû"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Şêwazên ~Rojanekirinê"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Bi rastî jî tu dixwazî tomaran betal bike? Çi tomarên ku heta niha hatiye kirin wê jê biçe."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Tomarê Betal Bike"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Ji bo xebitandina pêşîn şablon tê amadekirin."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1074,7 +1069,7 @@ msgstr ""
"Çapereke standard nehate dîtin.\n"
"Çaperekê hilbijêrin û dîsa biceribînin."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1083,17 +1078,17 @@ msgstr ""
"Çaper nexebitî.\n"
"Veavakirina çaperê kontrol bikin."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Çaper çalak e"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (tenê-xwendin)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"Di belgeya derbasdar de bila mîhengên nû\n"
"tomar bibe?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"Mîhenkên ku guherî\n"
"bila di belgeyê de were bikaranîn?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1126,7 +1121,7 @@ msgstr ""
"Di belgeya derbasdar de bila mîhenkên nû\n"
"tomar bibe?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1136,7 +1131,7 @@ msgstr ""
"Belge nayê girtin ji ber ku\n"
"karekî nivîsandinê tê kirin."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,7 +1139,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1152,18 +1147,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Ev belge nayê nivîsîn, di be ku ji ber sedemên mafên gihîştinê be. Tu dixwazî di jibergirtî yekê vê belgeyê de binivîsî?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1171,353 +1166,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (belgeya temîrkirî)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Belgeyê sererast bike"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Belgeya Pelî"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Nêzî Bike"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Dûr Bike"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Zêdetir ~Vebijêrk"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Zindîkirinê Bitaybetîne"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Rake"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1891,32 +1896,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Ravekirina Guhertoyê"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nav"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Cure"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Nirx"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Cure"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Erê"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Na"
@@ -1926,17 +1916,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nav"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Cure"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Nirx"
@@ -2077,19 +2067,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Cih:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Cure:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Şî~frê biguherîne..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2100,28 +2090,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Giştî"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Rave"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2346,6 +2336,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/kmr-Latn/shell/messages.po b/source/kmr-Latn/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/kmr-Latn/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/kmr-Latn/starmath/messages.po b/source/kmr-Latn/starmath/messages.po
index 199a639d35a..cfcb96687ad 100644
--- a/source/kmr-Latn/starmath/messages.po
+++ b/source/kmr-Latn/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1655,278 +1655,303 @@ msgid "Examples"
msgstr "Mînak"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Paldayî"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Qalind"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "reş"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Şîn"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Kesk"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "Sıyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "Sor bi mor ve"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Cûn"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Dem"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "Zer"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Veşêre"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "Mezinahî"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Cûrenivîs"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "çep"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Navîn"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "rast"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Ferman"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formul"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Belge tê tomar kirin..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Formula %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "XELETÎ : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Karaktera li bendê nebû"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' pêwîste"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' pêwîste"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' pêwîste"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' pêwîste"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' pêwîste"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Reng pêwîste"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' pêwîste"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Naverok"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Sernav"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Nivîsa ~formulê"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Sînor"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Mezinahî"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Mezinahiya O~rjînal"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Di rûpelê da bicîh bike"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1999,6 +2024,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "element"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/kmr-Latn/svtools/messages.po b/source/kmr-Latn/svtools/messages.po
index 9ff4694e2e2..2ca05759e3b 100644
--- a/source/kmr-Latn/svtools/messages.po
+++ b/source/kmr-Latn/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1535 +16,1537 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195632.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Şûnva bigre "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Dî~sa bike: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Dubareke: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Teksta ku nehatiye dîrûvkirin"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Agahiyên Rewşê ji Girêdana Hundurîn ya Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Bijareyên Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Teşeya pêşkêşkera Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Teşeya biresera Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Biresera Appletê"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Biresera Lehêqê"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Biresera StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Biresera StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Biresera StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Biresera StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Biresera StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Biresera StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Biresera StarWriter/Global 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Biresera StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Biresera StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Biresera StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Biresera StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Biresera StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Biresera StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Biresera StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Biresera StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Biresera StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Biresera StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Biresera StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Biresera StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Biresera StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Biresera StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Biresera StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Biresera StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Biresera Boyaxkirinê ya StarObject"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Biresera Micosoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Biresera StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Biresera belgeya ofîsê"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Agahiya belgeya Notesê"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Belgeya Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Biresera StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Biresera Grafîkê"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Pela agahiyan ya Wîndowsê"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Biresera çavkaniya doneyan"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabloya çavkaniya doneyan"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Jêpirsîna SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Lînk"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Teşeyê HTML ya bêşîrove"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Biresera % lê nayê zêdekirin."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Biresera ji pela % lê nayê zêdekirin."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Zêdetir bireser"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Çavkaniya nenas"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nav"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Mezinahî"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Dîroka sererastkirinê"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Cure"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bayt"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Rêz: %1, Stûn: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Cure: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Peldank"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Pel"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Qada Vala"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfahejmarîk"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Asayî"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Komika karakteran"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Ferheng"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Darbe"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radîkal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Lênûska telefonan"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetîk (berê alfahejmarîk)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetîk (alfahejmarîk dû re)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfahejmarîk"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Ferheng"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radîkal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Darbe"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetîk (alfahejmarîka pêşîn, bi kîteyan hatiye kategorîkirin)("
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetîk (alfahejmarîk berê, bi dengdaran hatiye kategorîkirin)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetîk (abecehejmariya dawî, bi kîteyan hatiye beşandin)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetîk (abecehejmariya dawî, bi dengdar hatiye beşandin)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Îro"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Tu yek"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Ronahî"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "îtalîka zirav"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Asayî"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Paldayî"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Qalind"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Stûr Paldayî"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Reş"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "îtalîka reş"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Pirtûk"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Guvaştî"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "nîv stûr"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Ji bo nivîsandin û nîşandana dîmenderê de wê heman cureyê nivîsê were bikaranîn."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Cureyê nivîsa nivîsokê. Dibe ku dîmenê di dîmenderê de cuda be."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Vî cureyê nivisê wê were teqlîdkirin an jî wê dirûvê herî guncav were bikaranîn."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Vî cureyê nivîsê nehate barkirin. Ji nav cureyên nivîsê yên mevcûd ya herî guncav wê were bikaranîn."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Bigere..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Rêzik Bi Jêr Ve Bibe"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Ber bi çep"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Ber bi rast"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Lêzêdekirin"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Xêza Berwar"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Rasteka Tîk"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Nirxa Şêmûg ya 1 Bît"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Lerzîna 1Bît"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Tonên grî yên 4 Bît"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Tonên grî yên 4 Bît"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Rengên rasteqîn yên 24 Bit"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Lêçûn"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Rêz bike"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Behndan"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Destpê dike..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Li bendê ye"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Çewtî"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Rûpelê ~jê bibe"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Bîr têrê nake."
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Çapera standard"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Belgeyên wordê"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Biqedîne"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Pêş >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Paş~de"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Gav"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Şîrket"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Beş"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nav"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Paşnav"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Kuçe"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Welat"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Koda Postê"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Bajar"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Sernav"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Cih"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Forma Navnîşaniyê"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Tîpên serî"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Xilasbûna temamker"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefoan Malê"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefona Kar"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nîşe"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Bikarhêner 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Bikarhêner 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Bikarhêner 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Bikarhêner 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Eyalet"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefona Kargehê"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Amûra Bangker"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Telefona Destan"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefonên Din"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Salname"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Vexwîne"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE Pêwist e"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE Hilbijêre"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE xerabe ye"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Koda çavkanî"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Pelê bijareyan"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafîk"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Pelê mîhengan"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Sepan"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabloya danegirê"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Pelê pergalê"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Belgeya MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Pelê alîkariyê"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Belgeya HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Pelê arşîvê"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Pelê tomaran"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Makebelgeya tekstê ya StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Pelê tekstê"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Lînk"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Belgeya MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Şablona MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Pelgê komikî"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Pel"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Peldank"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Belgeya Nivîsê"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Tabloya Hesêb"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Pêşkêşî"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Xêzkêşan"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Belgeya HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Tabloya Hesêb"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formul"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Danegeh"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Ajokara herêmî"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Ajokara Dîsketê"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Ajokar CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Girêdana torê"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Belgeya MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Şablona MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Dîmenê MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Belgeya MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Danegeha OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Xêzkirina OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Formula OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Makebelgeya OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Pêşkêşiya OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Tabloya Hisaban ya OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Nivîsa OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Şablona Taboya Hisaban ya OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Şablona Xêzkirinê ya OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Şablona Pêşkêşiyê ya OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Şablona Nivîsan ya OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Pêvekên %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/kmr-Latn/svx/messages.po b/source/kmr-Latn/svx/messages.po
index 19e08807fa9..5e271ae00ba 100644
--- a/source/kmr-Latn/svx/messages.po
+++ b/source/kmr-Latn/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8097,6 +8097,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12622,87 +12627,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Edîtorê Konturê"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Bikaranîn"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Qada kar"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Hilbijartin"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Çarqorzî"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elîps"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Pirqorzî"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Xalan sererast bike"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Veguheztina Xalan"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Lêzedekirina Xalan"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Xalê Jê Bibe"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "KonturaOtomatîk"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Şûnva bigire "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Sor"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13041,122 +13051,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Agahiya jêr"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Bikaranîn"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Veke..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Tomarkirin..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Bigire"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Hilbijartin"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Çarqorzî"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elîps"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Pirqorzî"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Xalan sererast bike"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Veguheztina Xalan"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Lêzedekirina Xalan"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Xalê Jê Bibe"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Şûnva bigire "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Sor"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Çalak"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Taybetmendî:"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Navnîşan:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Çarçoveyek"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/kmr-Latn/sw/messages.po b/source/kmr-Latn/sw/messages.po
index f78e23548d1..4019b15d189 100644
--- a/source/kmr-Latn/sw/messages.po
+++ b/source/kmr-Latn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3226,9 +3226,9 @@ msgid "Change object title of $1"
msgstr "Sernavê hêman $1 biguherîne"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Raveya hêman $1 biguherîne"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12732,147 +12732,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12882,152 +12882,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14142,7 +14142,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17684,50 +17684,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Pêşdîtin"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Pêşdîtin"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Cure"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "~Têketan"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Teşe"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Sitûn"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Zemîn"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Pêşdîtin"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Ast"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17979,324 +17979,324 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Sererastkirin..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Sernivîs:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Cure"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Naveroka tablo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Bikarhêner Hatiye Nasîn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Çavkanî 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Form"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~Hemû belge"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Beş"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Xêza bingehîn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tablo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Çarçoveyên nivîsê"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafîk"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Bireserên OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Şêwazên Bimerc"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Teşe"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Vebijêrk"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Celeb"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Dîmender"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referans"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorî û numre"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Binnivîs"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "~Kevanan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Ne yek]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Pel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Vebijêrk"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Ziman"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Cureyê miftê"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Rêz bike"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Ast"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(Şêwaza Paragrafê: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Standard"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Sererastkirin"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/kn/cui/messages.po b/source/kn/cui/messages.po
index 4e3735badc9..6b974598c93 100644
--- a/source/kn/cui/messages.po
+++ b/source/kn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1654,107 +1654,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "ಯಾವುದೆ ಅಂಚುಗಳನ್ನು ಹೊಂದಿಸಬೇಡಿ"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "ಕೇವಲ ಹೊರಗಿನ ಅಂಚನ್ನು ಮಾತ್ರ ಹೊಂದಿಸು"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "ಹೊರಗಿನ ಅಂಚನ್ನು ಮತ್ತು ಅಡ್ಡ ರೇಖೆಗಳನ್ನು ಹೊಂದಿಸು"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "ಹೊರಗಿನ ಅಂಚನ್ನು ಮತ್ತು ಎಲ್ಲಾ ಒಳಗಿನ ರೇಖೆಗಳನ್ನು ಹೊಂದಿಸು"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "ಒಳಗಿನ ರೇಖೆಗಳನ್ನು ಬದಲಾಯಿಸದೆ ಹೊರಗಿನ ಅಂಚನ್ನು ಹೊಂದಿಸು"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "ಕರ್ಣ ರೇಖೆಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿಸು"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "ಎಲ್ಲಾ ನಾಲ್ಕು ಅಂಚುಗಳನ್ನು ಹೊಂದಿಸಿ"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "ಕೇವಲ ಎಡ ಮತ್ತು ಬಲ ಅಂಚುಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿಸು"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "ಕೇವಲ ಮೇಲಿನ ಮತ್ತು ಕೆಳಗಿನ ಅಂಚುಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿಸು"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "ಕೇವಲ ಎಡ ಅಂಚನ್ನು ಮಾತ್ರ ಹೊಂದಿಸು"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "ಮೇಲಿನ ಮತ್ತು ಕೆಳಗಿನ ಅಂಚುಗಳನ್ನು, ಹಾಗು ಎಲ್ಲಾ ಒಳಗಿನ ರೇಖೆಗಳನ್ನು ಹೊಂದಿಸು"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "ಎಡ ಮತ್ತು ಮೇಲಿನ ಅಂಚುಗಳನ್ನು, ಹಾಗು ಎಲ್ಲಾ ಒಳಗಿನ ರೇಖೆಗಳನ್ನು ಹೊಂದಿಸು"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "ಯಾವುದೆ ನೆರಳು ಇಲ್ಲ"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ನೆರಳನ್ನು ಕೆಳ ಬಲಭಾಗಕ್ಕೆ ಬೀಳಿಸು"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ನೆರಳನ್ನು ಮೇಲಿನ ಬಲಭಾಗಕ್ಕೆ ಬೀಳಿಸು"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ನೆರಳನ್ನು ಕೆಳ ಎಡಭಾಗಕ್ಕೆ ಬೀಳಿಸು"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ನೆರಳನ್ನು ಮೇಲಿನ ಎಡಭಾಗಕ್ಕೆ ಬೀಳಿಸು"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1797,7 +1792,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1917,7 +1912,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2157,7 +2152,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2412,12 +2407,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2487,7 +2482,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2567,7 +2562,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2808,7 +2803,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3435,66 +3430,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME ಬಗ್ಗೆ"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "ಮನ್ನಣೆಗಳು (_d)"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ಜಾಲತಾಣ (_W)"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ನಿರ್ಮಾಣದ ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME ಎನ್ನುವುದು ಪದ ಸಂಸ್ಕರಣೆ, ಸ್ಪ್ರೆಡ್‌ಶೀಟ್‌ಗಳು, ಪ್ರಸ್ತುತಿಗಳು ಮತ್ತು ಇನ್ನೂ ಹೆಚ್ಚಿನದಕ್ಕಾಗಿನ ಆಧುನಿಕ, ಸುಲಭವಾಗಿ ಬಳಸಬಹುದಾದ, ಮುಕ್ತ ತಂತ್ರಾಂಶ ಉತ್ಪನ್ನ ಸೂಟ್ ಆಗಿದೆ."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "OpenOffice.org ನ ಮೇಲೆ LibreOffice ಆಧರಿಸಿದೆ."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME ಎನ್ನುವುದು OpenOffice.org ನ ಮೇಲೆ ಆಧರಿಸಿದ LibreOffice ಇಂದ ಉತ್ಪತ್ತಿಯಾಗಿದೆ."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "ಈ ಬಿಡುಗಡೆಯನ್ನು %OOOVENDOR ಇಂದ ಒದಗಿಸಲಾಗಿದೆ."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
@@ -3611,17 +3611,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "ಬದಲಿಸು (_R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "ಬದಲಾಯಿಸು (_c)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "ಇದರೊಂದಿಗೆ (_W):"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "ಪಠ್ಯ ಮಾತ್ರ(_T)"
@@ -4478,6 +4478,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "ಕನಿಷ್ಠ ಉದ್ದದ ಪದ"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5629,30 +5789,30 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "ಗುಣಲಕ್ಷಣಗಳು"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
#, fuzzy
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ಚೌಕಟ್ಟು (_r)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "ಹೆಸರು (_N):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
#, fuzzy
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "ಪರ್ಯಾಯ ಪಠ್ಯ (_t)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9317,80 +9477,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ಸಹಾಯ"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ಸಂವಾದಗಳನ್ನು ಬಳಸು (_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ಸಂವಾದ ಚೌಕಗಳನ್ನು ತೆರೆ/ಉಳಿಸು"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ನ ಸಂವಾದಗಳನ್ನು ಬಳಸು (_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ಮುದ್ರಣ ಸಂವಾದಗಳು"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "ಮುದ್ರಣವು \"ದಸ್ತಾವೇಜನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿದೆ\" ಎಂದು ಗುರುತು ಹಾಕುತ್ತದೆ (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ದಸ್ತಾವೇಜಿನ ಸ್ಥಿತಿ"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "ನಡುವೆ ವರ್ಷಗಳು ಇರುವಂತೆ ಅರ್ಥೈಸು (_I)"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ಮತ್ತು "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "ವರ್ಷ (ಎರಡು ಅಂಕಿಗಳು)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "ಆರಂಭಿಸುವ ಸಮಯದಲ್ಲಿ %PRODUCTNAME ಅನ್ನು ಲೋಡ್‌ ಮಾಡು"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "ಸಿಸ್‌ಟ್ರೇ ಕ್ವಿಕ್‌ಸ್ಟಾರ್ಟರ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸು"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME ಕ್ವಿಕ್‌ಸ್ಟಾರ್ಟರ್"
@@ -11346,25 +11506,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "ನನ್ನ ಸಿದ್ಧವಿನ್ಯಾಸ"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "ಫೈರ್ಫಾಕ್ಸ್‍ ಸಿದ್ಧವಿನ್ಯಾಸಗಳು"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -12015,102 +12160,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "ಸುರಕ್ಷತಾ ಆಯ್ಕೆಗಳು"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -13161,27 +13210,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/kn/extensions/messages.po b/source/kn/extensions/messages.po
index d8aa36d317c..f1fe3b9f9ad 100644
--- a/source/kn/extensions/messages.po
+++ b/source/kn/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3247,190 +3247,190 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "ಕೋಷ್ಟಕ %1 ಕ್ಕೆ ಲಂಬಸಾಲು ರೂಪರೇಷೆ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "ಸಂಕ್ಷಿಪ್ತ ಹೆಸರು"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "ಕರ್ತೃ(ಗಳು)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "ಪ್ರಕಾಶಕ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "ಅಧ್ಯಾಯ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "ಸಂಪಾದಕ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "ವಿಧ (_T)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "ವರ್ಷ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "ಶೀರ್ಷಿಕೆ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "ವಿಳಾಸ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "ಪುಟ(ಗಳು)(~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "ಆವೃತ್ತಿ(~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "ಪುಸ್ತಕ ಶೀರ್ಷಿಕೆ(~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "ಧ್ವನಿಯ ಪ್ರಮಾಣ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "ಪ್ರಕಟಣೆಯ ಬಗೆ(~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "ಸಂಘಟನೆ(~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "ಸಂಸ್ಥೆ(~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "ವಿಶ್ವವಿದ್ಯಾಲಯ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "ವರದಿ ಬಗೆ(~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "ತಿಂಗಳು (_M)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "ವರ್ತಮಾನ ಪತ್ರಿಕೆ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "ಸಂಖ್ಯೆ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "ಸರಣಿ(~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "ಟಿಪ್ಪಣಿ (~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "ಟಿಪ್ಪಣಿ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "ಬಳಕೆದಾರ-ವ್ಯಾಖ್ಯಾನಿತ ವರ್ಗ ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "ಬಳಕೆದಾರ-ವ್ಯಾಖ್ಯಾನಿತ ವರ್ಗ ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "ಬಳಕೆದಾರ-ವ್ಯಾಖ್ಯಾನಿತ ವರ್ಗ ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "ಬಳಕೆದಾರ-ವ್ಯಾಖ್ಯಾನಿತ ವರ್ಗ ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "ಬಳಕೆದಾರ-ವ್ಯಾಖ್ಯಾನಿತ ವರ್ಗ ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3608,30 +3608,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "ಹೊಸ ದತ್ತಾಂಶದ ಬಗೆಗಾಗಿ ಒಂದು ಹೆಸರನ್ನು ನಮೂದಿಸಿ:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "ಜೋಡಣಾ ವರ್ಗಗಳು"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "ಸಲಹೆ ಮಾಡು"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "ಪ್ರಮುಖ ಫಾರ್ಮಿನ ಪ್ರಸಕ್ತ ದಾಖಲೆಯ ಬಗೆಗಿನ ವಿವರವಾದ ಮಾಹಿತಿಯನ್ನು ತೋರಿಸಲು ಉಪ ಫಾರ್ಮುಗಳನ್ನು ಬಳಸಲಾಗುತ್ತದೆ. ಹೀಗೆ ಮಾಡಲು, ಉಪ ಫಾರ್ಮಿನಲ್ಲಿ ಯಾವ ಲಂಬಸಾಲುಗಳನ್ನು ಪ್ರಮುಖ ಫಾರ್ಮಿನ ಯಾವ ಲಂಬಸಾಲಿಗೆ ತಾಳೆಯಾಗಬೇಕು ಎಂದು ನೀವು ಸೂಚಿಸಬಹುದು."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ಲೇಬಲ್"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "ಲೇಬಲ್"
diff --git a/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
index 9ba4c530ff9..45ebf68a277 100644
--- a/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kn/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -23735,6 +23735,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26077,6 +26086,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26095,6 +26113,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/kn/sc/messages.po b/source/kn/sc/messages.po
index 1eda661bf40..89aaaf506d6 100644
--- a/source/kn/sc/messages.po
+++ b/source/kn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15730,6 +15730,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ವಿಶೇಷ ಪ್ರವೇಶ)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16306,12 +16311,12 @@ msgstr "ನಿಬಂಧನೆಯ ಫಾರ್ಮಾಟ್ ಪದ್ಧತಿ"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17603,85 +17608,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "ದತ್ತಾಂಶ ನಮೂನೆ"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "ಮುಚ್ಚು (_C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "ಹೊಸ ದಾಖಲೆ"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "ಹೊಸ (_N)"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "ಅಳಿಸು (_D)"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "ಮರಳಿ ಸ್ಥಾಪಿಸು (_R)"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "ಹಿಂದಿನ ದಾಖಲೆ (_P)"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "ಮುಂದಿನ ದಾಖಲೆ (_R)"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "ಮುಚ್ಚು (_C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "ನೇರ ದತ್ತಾಂಶ ಹರಿವುಗಳು"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-#, fuzzy
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "ಮೂಲ ದಸ್ತಾವೇಜಿಗಾಗಿ ಸ್ಥಳೀಯ ಕಡತ ವ್ಯವಸ್ಥೆಯ ಅಥವಾ ಅಂತರಜಾಲದ URL ಅನ್ನು ಇಲ್ಲಿ ನಮೂದಿಸಿ."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ಜಾಲಾಟ(_B)...."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ದತ್ತಸಂಚಯ ವ್ಯಾಪ್ತಿಗಳು"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-#, fuzzy
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "ಹರಿವಿನ ಮೂಲ"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19454,34 +19415,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "ಇದರ ಫಲಿತಾಂಶ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "ದತ್ತಾಂಶ(_D)"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "ಲಂಬಸಾಲುಗಳು"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "ಅಡ್ಡಸಾಲುಗಳು"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "ಹೀಗೆ ವರ್ಗೀಕರಣ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "ಮದ್ಯಂತರ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "ನಿಯತಾಂಕಗಳು"
@@ -19635,167 +19601,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22410,17 +22378,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "ಹುಡುಕಾಟದ ಫಲಿತಾಂಶ"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24354,109 +24332,114 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "ಸಂಕೇತಗಳ ಹೊರರೇಖೆ (_O)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "ಕಿಟಕಿ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "ಚೌಕಜಾಲ ರೇಖೆಗಳು(_G)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "ಬಣ್ಣ(_C)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "ತೋರಿಸು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "ಬಣ್ಣದ ಕೋಶಗಳಲ್ಲಿ ತೋರಿಸು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "ಅಡಗಿಸು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "ಪುಟದ ತಡೆ(_P)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "ಸ್ಥಳಾಂತರಿಸುವಾಗ ಸಹಾಯದ ಗೆರೆಗಳು (_w)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
#, fuzzy
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "ದೃಶ್ಯ ಉಪಕರಣಗಳು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
#, fuzzy
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "ವಸ್ತು/ಚಿತ್ರ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "ಚಾರ್ಟ್ ಗಳು(_r)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "ಚಿತ್ರರಚನೆಯ ವಸ್ತುಗಳು (_D):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "ತೋರಿಸು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "ಅಡಗಿಸು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "ತೋರಿಸು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "ಅಡಗಿಸು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "ತೋರಿಸು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "ಅಡಗಿಸು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "ವಸ್ತುಗಳು"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "ಹಾಳೆಗಳನ್ನು ಹೊಂದಾಣಿಕೆ ಮಾಡು (_y)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "ಜೂಮ್"
diff --git a/source/kn/scp2/source/ooo.po b/source/kn/scp2/source/ooo.po
index 70d4e4b0eb0..702d1a04bbf 100644
--- a/source/kn/scp2/source/ooo.po
+++ b/source/kn/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
@@ -35,6 +35,14 @@ msgstr "ದಸ್ತಾವೇಜನ್ನು ತೆರೆ"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/kn/scp2/source/winexplorerext.po b/source/kn/scp2/source/winexplorerext.po
index 1805fab6e7a..2beb2d9d731 100644
--- a/source/kn/scp2/source/winexplorerext.po
+++ b/source/kn/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 23:38+0200\n"
-"Last-Translator: Shankar <svenkate@redhat.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:51+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369353116.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "%PRODUCTNAME ನ ಬಗೆಗಿನ ದಸ್ತಾವೇಜುಗಳ ಮಾಹಿತಿಯನ್ನು ಚಿಕ್ಕ ಗಾತ್ರದ ಮುನ್ನೋಟವನ್ನು ತೋರಿಸಲು ಮೈಕ್ರೊಸಾಫ್ಟ್ ಇಂಟರ್ನೆಟ್ ಎಕ್ಸ್‍ಫ್ಲೋರರನ್ನು ಶಕ್ತಗೊಳಿಸುತ್ತದೆ."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/kn/sd/messages.po b/source/kn/sd/messages.po
index cd732880e55..97f4be33480 100644
--- a/source/kn/sd/messages.po
+++ b/source/kn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2628,6 +2628,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3095,164 +3100,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML ವಿನ್ಯಾಸವನ್ನು ಹೆಸರಿಸು"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4720,160 +4910,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "ಬದಲಾವಣೆಯನ್ನು ತೋರಿಸು"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/kn/sfx2/messages.po b/source/kn/sfx2/messages.po
index 236b957aee3..57bbd66dfc6 100644
--- a/source/kn/sfx2/messages.po
+++ b/source/kn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -931,12 +931,6 @@ msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
#, fuzzy
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "ಗುಣವನ್ನು ತೆಗೆದುಹಾಕಿ"
-
-#: include/sfx2/strings.hrc:197
-#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -945,30 +939,30 @@ msgstr ""
"ಇಲ್ಲಿ ದಾಖಲಿಸಲಾದ ಮೌಲ್ಯವು ಸೂಚಿಸಲಾದ ಪ್ರಕಾರವನ್ನು ಹೋಲುವುದಿಲ್ಲ.\n"
"ಮೌಲ್ಯವನ್ನು ಪಠ್ಯದ ರೂಪದಲ್ಲಿ ಉಳಿಸಲಾಗುವುದು."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ಶೈಲಿ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ತಿದ್ದಿಬರೆಯಬೇಕೇ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "ಮರು ಸಿದ್ಧಗೊಳಿಸು (~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ಈ ಹೆಸರು ಈಗಾಗಲೇ ಬಳಕೆಯಲ್ಲಿದೆ."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ಈ ಶೈಲಿಯು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -978,7 +972,7 @@ msgstr ""
"ಈ ಶೈಲಿಯನ್ನು ಮೂಲ ಶೈಲಿಯಾಗಿ ಬಳಸಲು ಸಾಧ್ಯವಿಲ್ಲ,\n"
"ಏಕೆಂದರೆ ಇದು ಒಂದು ಪುನರಾವರ್ತಿತ ಉಲ್ಲೇಖಕ್ಕೆ ಕಾರಣವಾಗುತ್ತದೆ."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
#, fuzzy
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
@@ -988,7 +982,7 @@ msgstr ""
"ಹೆಸರು ಈಗಾಗಲೇ ಪೂರ್ವನಿಯೋಜಿತ ಶೈಲಿಯಂತೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ.\n"
"ದಯವಿಟ್ಟು ಬೇರೆ ಹೆಸರನ್ನು ಆಯ್ಕೆಮಾಡಿ."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -999,96 +993,96 @@ msgstr ""
"ನೀವು ಈ ಶೈಲಿಗಳನ್ನು ಅಳಿಸಿದಲ್ಲಿ, ಪಠ್ಯವು ಪೋಷಕ (ಪೇರೆಂಟ್) ಶೈಲಿಗೆ ಮರಳಿಸಲ್ಪಡುತ್ತದೆ.\n"
"ಆದರೂ ಸಹ ನೀವು ಈ ಶೈಲಿಗಳನ್ನು ಅಳಿಸಲು ಬಯಸುವಿರಾ?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "ಬಳಕೆಯಲ್ಲಿರುವ ಶೈಲಿಗಳು : "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "ನ್ಯಾವಿಗೇಟರ್"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
#, fuzzy
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "ದೋಷಯುಕ್ತ ಗುಪ್ತಪದವೆಂದು ದೃಢಪಟ್ಟಿದೆ"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "ಕಳುಹಿಸು"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ಅಕ್ಷರಶೈಲಿ"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "ಆವೃತ್ತಿ ಟಿಪ್ಪಣಿಯನ್ನು ಸೇರಿಸು"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "ಶೈಲಿ ಪಟ್ಟಿ"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "ಶ್ರೇಣೀಕೃತ"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ರಚನಾ ಸ್ಥಿತಿಯನ್ನು ಭರ್ತಿಮಾಡು"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "ಆಯ್ಕೆಯಿಂದ ಹೊಸ ಶೈಲಿ"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "ಶೈಲಿಗಳನ್ನು ಅಪ್‌ಡೇಟ್‌ ಮಾಡು (~U)"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "ದಾಖಲಿಸುವುದನ್ನು ನಿಶ್ಚಿತವಾಗಿಯೂ ವಜಾಮಾಡಬೇಕೇ? ಇಲ್ಲಿಯವರೆಗೂ ದಾಖಲಿಸಲಾದ ಯಾವುದೆ ವಿಷಯಗಳು ಇಲ್ಲವಾಗುತ್ತವೆ."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ದಾಖಲಿಸುವುದನ್ನು ವಜಾಮಾಡು"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ನಮೂನೆ ಪುಟಗಳು ಮೊದಲನೇ ಬಾರಿಯ ಬಳಕೆಗೆ ಆರಂಭಗೊಳ್ಳುತ್ತಿವೆ."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1097,7 +1091,7 @@ msgstr ""
"ಸಾಮಾನ್ಯ ಮುದ್ರಕವು ಕಂಡುಬಂದಿಲ್ಲ. \n"
"ದಯವಿಟ್ಟು ಒಂದು ಮುದ್ರಕವನ್ನು ಆರಿಸಿ ನಂತರ ಪ್ರಯತ್ನಿಸಿ."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1106,17 +1100,17 @@ msgstr ""
"ಮುದ್ರಕವನ್ನು ಪ್ರಾರಂಭಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. \n"
"ದಯವಿಟ್ಟು ನಿಮ್ಮ ಮುದ್ರಕ ಸಂರಚನೆಯನ್ನು ಒಮ್ಮೆ ಪರಿಶೀಲಿಸಿ."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "ಮುದ್ರಕವು ಕಾರ್ಯನಿರತವಾಗಿದೆ"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ಓದಲು ಮಾತ್ರ)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1121,7 @@ msgstr ""
"ಈ ಹೊಸ ಸಿದ್ಧತೆಯನ್ನು ಸಕ್ರಿಯ ದಸ್ತಾವೇಜಿನಲ್ಲಿ ಉಳಿಸಲು\n"
"ಬಯಸುವಿರಾ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1138,7 +1132,7 @@ msgstr ""
"ಹೊಸ ಸಿದ್ಧತೆಗಳನ್ನು ಸಕ್ರಿಯ ದಸ್ತಾವೇಜಿನಲ್ಲಿ\n"
"ಉಳಿಸಬೇಕೇ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1149,7 +1143,7 @@ msgstr ""
"ಈ ಹೊಸ ಸಿದ್ಧತೆಯನ್ನು ಸಕ್ರಿಯ ದಸ್ತಾವೇಜಿನಲ್ಲಿ ಉಳಿಸಲು\n"
"ಬಯಸುವಿರಾ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1159,7 +1153,7 @@ msgstr ""
"ಮುದ್ರಣ ಕಾರ್ಯ ನಡೆಯುತ್ತಿರುವುದರಿಂದ \n"
"ದಸ್ತಾವೇಜನ್ನು ಮುಚ್ಚಲಾಗುವುದಿಲ್ಲ."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1167,7 +1161,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1175,18 +1169,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ಈ ಕಡತವನ್ನು ಸಂಪಾದಿಸಲಾಗುವುದಿಲ್ಲ, ಬಹುಶಃ ನಿಮ್ಮ ಪ್ರವೇಶಾಧಿಕಾರಗಳು ಇಲ್ಲದೆ ಇರಬಹುದು. ಈ ಕಡತದ ಒಂದು ಪ್ರತಿಯನ್ನು ಸಂಪಾದಿಸಲು ಬಯಸುವಿರಾ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1194,356 +1188,366 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (ದುರಸ್ತಿಮಾಡಲಾದ ಕಡತ)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "ಪೂರೈಕೆಗಣಕದಲ್ಲಿ ದಸ್ತಾವೇಜನ್ನು ಚೆಕ್‌ ಔಟ್ ಮಾಡಲಾಗಿಲ್ಲ"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "ವರದಿಯ ನಿಯಂತ್ರಣಗಳು"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "ಪಡೆದುಕೊ"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ದಸ್ತಾವೇಜನ್ನು ಸಂಪಾದಿಸಿ"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ದಸ್ತಾವೇಜನ್ನು ಸಹಿ ಮಾಡು..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ಡಾಕ್ ಮಾಡು"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "ಅನ್‌ಡಾಕ್ ಮಾಡು"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "ಬದಿಪಟ್ಟಿಯ ಡೆಕ್‌ ಅನ್ನು ಮುಚ್ಚು"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "ಅಗತ್ಯಾನುಗುಣಗೊಳಿಕೆ"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "ಪೂರ್ವನಿಯೋಜಿತವನ್ನು ಮರಳಿ ಸ್ಥಾಪಿಸು"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ತೆಗೆದುಹಾಕು"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1919,32 +1923,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "ಆವೃತ್ತಿ ಟಿಪ್ಪಣಿ"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "ಹೆಸರು"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "ಬಗೆ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "ಮೌಲ್ಯ"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "ಬಗೆ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "ಹೌದು"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "ಇಲ್ಲ"
@@ -1954,17 +1943,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "ಹೆಸರು"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "ಬಗೆ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "ಮೌಲ್ಯ"
@@ -2100,17 +2089,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ಸ್ಥಳ (_L):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ಬಗೆ (_T):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸು (_P)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ಸಿದ್ಧವಿನ್ಯಾಸ ಪುಟ:"
@@ -2121,27 +2110,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "ಇದರ ಗುಣಗಳು "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "ಸಾಮಾನ್ಯ "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "ವಿವರಣೆ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "ಇಚ್ಛೆಯ ಗುಣಗಳು"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS ಗುಣಲಕ್ಷಣಗಳು"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "ಸುರಕ್ಷತೆ"
@@ -2370,6 +2359,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/kn/shell/messages.po b/source/kn/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/kn/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/kn/starmath/messages.po b/source/kn/starmath/messages.po
index c4d458dcff9..aa37ac893ae 100644
--- a/source/kn/starmath/messages.po
+++ b/source/kn/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1654,269 +1654,294 @@ msgid "Examples"
msgstr "ಉದಾಹರಣೆಗಳು"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "ಶಿಷ್ಟ"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ಓರೆ"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ಬೋಲ್ಡ್"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "ಕಪ್ಪು"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ನೀಲಿ"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "ಹಸಿರು"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "ಕೆಂಪು"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ನೀಲಿ ಹಸಿರು"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "ಕಡುಗೆಂಪು"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ಬೂದು"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "ಸಮಯ"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "ಕಂದುಗೆಂಪು"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ಗಾಢಬೂದು ನೀಲಿ"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ಆಲಿವ್"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ನೇರಳೆ"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ಬೆಳ್ಳಿ"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "ಗಾಢನೀಲಿಹಸಿರು"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "ಹಳದಿ"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ಅಡಗಿಸು"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "ಗಾತ್ರ"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "ಅಕ್ಷರಶೈಲಿ"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ಎಡ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ಮಧ್ಯ"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ಬಲ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
#, fuzzy
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "ಆದೇಶಗಳು"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "ಸೂತ್ರ"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ದಸ್ತಾವೇಜನ್ನು ಉಳಿಸಲಾಗುತ್ತಿದೆ..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION ಫಾರ್ಮುಲ"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ದೋಷ : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "ಅನಿರೀಕ್ಷಿತ ಅಕ್ಷರ"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' ನಿರೀಕ್ಷಿಸಲಾಗಿದೆ"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' ನಿರೀಕ್ಷಿಸಲಾಗಿದೆ"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' ನಿರೀಕ್ಷಿಸಲಾಗಿದೆ"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' ನಿರೀಕ್ಷಿಸಲಾಗಿದೆ"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' ನಿರೀಕ್ಷಿಸಲಾಗಿದೆ"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "ಬಣ್ಣದ ಅವಶ್ಯಕತೆಯಿದೆ"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' ನಿರೀಕ್ಷಿಸಲಾಗಿದೆ"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ವಿಷಯಗಳು"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ಶೀರ್ಷಿಕೆ"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ಸೂತ್ರ ಪಠ್ಯ"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "ಅಂಚುಗಳು"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "ಗಾತ್ರ"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "ಮೂಲ ಗಾತ್ರ"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ಪುಟಕ್ಕೆ ಸರಿಹೊಂದಿಸು"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1984,6 +2009,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "element"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/kn/svtools/messages.po b/source/kn/svtools/messages.po
index 800aace5e1b..2c3e303170a 100644
--- a/source/kn/svtools/messages.po
+++ b/source/kn/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1533 +16,1535 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195639.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ರದ್ದುಮಾಡು: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "ಮತ್ತೆ ಮಾಡು(~d): "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "ಪುನರಾವರ್ತಿಸು(~R): "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "ರೂಪಿಸದೆ ಇರುವ ಪಠ್ಯ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx ಆಂತರಿಕ ಸಂಪರ್ಕದಿಂದ ದೊರೆತ ಸ್ಥಿತಿಯ ಮಾಹಿತಿ"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "ನೆಟ್‌ಸ್ಕೇಪಿನ ಪುಟಗುರುತು"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "ಸ್ಟಾರ್ ಪರಿಚಾಕದ ರೂಪ"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "ಸ್ಟಾರ್ ವಸ್ತುವಿನ ರೂಪ"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "ಆಪ್ಲೆಟ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "ಪ್ಲಗ್‌-ಇನ್‌ ವಸ್ತು"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "ಸ್ಟಾರ್‌-ರೈಟರ್ 3.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "ಸ್ಟಾರ್‌-ರೈಟರ್ 4.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "ಸ್ಟಾರ್‌-ರೈಟರ್ 5.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "ಸ್ಟಾರ್‌-ರೈಟರ್ /ವೆಬ್ 4.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "ಸ್ಟಾರ್‌-ರೈಟರ್ /ವೆಬ್ 5.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "ಸ್ಟಾರ್‌-ರೈಟರ್ /ಮಾಸ್ಟರ್ 4.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "ಸ್ಟಾರ್‌-ರೈಟರ್ /ಮುಖ್ಯ 5.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "ಸ್ಟಾರ್‌-ಡ್ರಾ ವಸ್ತು"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "ಸ್ಟಾರ್‌-ಡ್ರಾ 4.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "ಸ್ಟಾರ್ಇಂಪ್ರೆಸ್ 5.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "ಸ್ಟಾರ್ಇಂಪ್ರೆಸ್ 5.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "ಸ್ಟಾರ್‌-ಕ್ಯಾಲ್ಕ್‍ ವಸ್ತು"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "ಸ್ಟಾರ್‌-ಕ್ಯಾಲ್ಕ್‍ 4.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "ಸ್ಟಾರ್‌-ಕ್ಯಾಲ್ಕ್‍ 5.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "ಸ್ಟಾರ್‌-ಚಾರ್ಟ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "ಸ್ಟಾರ್‌-ಚಾರ್ಟ್ 4.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "ಸ್ಟಾರ್‌-ಚಾರ್ಟ್ 5.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "ಸ್ಟಾರ್‌ಇಮೇಜ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "ಸ್ಟಾರ್‌ಇಮೇಜ್ 4.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "ಸ್ಟಾರ್‌ಇಮೇಜ್ 5.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "ಸ್ಟಾರ್‌-ಮ್ಯಾತ್‌ ವಸ್ತು"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "ಸ್ಟಾರ್‌-ಮ್ಯಾತ್‌ 4.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "ಸ್ಟಾರ್‌-ಮ್ಯಾತ್‌ 5.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "ಸ್ಟಾರ್‌ಆಬ್ಜೆಕ್ಟ್‍ ಪೇಂಟ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "ಮೈಕ್ರೋಸಾಫ್ಟ್‍ ವರ್ಡ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "ಸ್ಟಾರ್‌-ಫ್ರೇಮ್‌ಸೆಟ್‌ ವಸ್ತು"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ಆಫೀಸ್ ದಸ್ತಾವೇಜು ವಸ್ತು"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "ಟಿಪ್ಪಣಿ ದಸ್ತಾವೇಜು ಮಾಹಿತಿ"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "ಸ್ಟಾರ್‌-ಚಾರ್ಟ್ 5.0 ವಸ್ತು"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ಗ್ರಾಫಿಕ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 ರೈಟರ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 ರೈಟರ್/ವೆಬ್‌ ವಸ್ತು"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 ರೈಟರ್/ಮಾಸ್ಟರ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 ಡ್ರಾ ವಸ್ತು"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 ಇಂಪ್ರೆಸ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 ಕ್ಯಾಲ್ಕ್‌ ವಸ್ತು"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 ಚಾರ್ಟ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 ಮ್ಯಾತ್ ವಸ್ತು"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "ವಿಂಡೋಸ್ ಮೆಟಾಕಡತ"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ದತ್ತ ಆಕರ ವಸ್ತು"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ದತ್ತ ಆಕರ ಕೋಷ್ಟಕ"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL ಪ್ರಶ್ನೆ"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ಸಂವಾದಚೌಕ"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "ಸಂಪರ್ಕಕೊಂಡಿ"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "ಟಿಪ್ಪಣಿಗಳಿಲ್ಲದೆ HTML ರೂಪ"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% ವಸ್ತುವನ್ನು ಸೇರಿಸಲಾಗಲಿಲ್ಲ."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% ಕಡತದ ವಸ್ತುವನ್ನು ಸೇರಿಸಲಾಗಲಿಲ್ಲ."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "ಮುಂದಿನ ವಸ್ತುಗಳು"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "ಗೊತ್ತಿಲ್ಲದ ಆಕರ"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "ಹೆಸರು"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "ಗಾತ್ರ"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "ದಿನಾಂಕ ಮಾರ್ಪಾಡಾಗಿದೆ"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "ಬಗೆ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ಬೈಟುಗಳು"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "ಅಡ್ಡಸಾಲು: %1, ಉದ್ದಸಾಲು: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", ಮಾದರಿ: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ಕಡತಕೋಶ"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ಕಡತ"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ಖಾಲಿ ವರ್ಗ"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ಅಕ್ಷರಸಾಂಖ್ಯಿಕ"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "ಸಾಮಾನ್ಯ"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ಅಕ್ಷರ ಗಣ"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "ಶಬ್ಧಕೋಶ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "ಪಿನಿಯಿನ್"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "ಗೆರೆ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "ಮಹತ್ವದ"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ಯೂನಿಕೋಡ್"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "ಝುಯಿನ್"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ದೂರವಾಣಿ ಪುಸ್ತಕ"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ಫೋನೆಟಿಕ್ (ಅಕ್ಷರಸಾಂಖ್ಯಿಕ ಮೊದಲು)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ಫೋನೆಟಿಕ್ (ಅಕ್ಷರಸಾಂಖ್ಯಿಕ ಕೊನೆಯದಾಗಿ)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ಅಕ್ಷರಸಾಂಖ್ಯಿಕ"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "ಶಬ್ಧಕೋಶ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "ಪಿನಿಯಿನ್"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "ಮಹತ್ವದ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "ಗೆರೆ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "ಝುಯಿನ್"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ಫೋನೆಟಿಕ್ (ಅಕ್ಷರಸಾಂಖ್ಯಿಕ ಮೊದಲು, ಸ್ವರಗಳ ಆಧಾರದ ಮೇಲೆ ಗುಂಪುಗೂಡಿಸಲಾದ)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ಫೋನೆಟಿಕ್ (ಅಕ್ಷರಸಾಂಖ್ಯಿಕ ಮೊದಲು, ವ್ಯಂಜನಗಳ ಆಧಾರದ ಮೇಲೆ ಗುಂಪುಗೂಡಿಸಲಾದ)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ಫೋನೆಟಿಕ್ (ಅಕ್ಷರಸಾಂಖ್ಯಿಕ ಕೊನೆಯದಾಗಿ, ಸ್ವರಗಳ ಆಧಾರದ ಮೇಲೆ ಗುಂಪುಗೂಡಿಸಲಾದ)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ಫೋನೆಟಿಕ್ (ಅಕ್ಷರಸಾಂಖ್ಯಿಕ ಕೊನೆಯದಾಗಿ, ವ್ಯಂಜನಗಳ ಆಧಾರದ ಮೇಲೆ ಗುಂಪುಗೂಡಿಸಲಾದ)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ಈ ದಿನ"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "ಏನೂ ಇಲ್ಲ"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ತಿಳಿಯಾದ"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ತೆಳು ಇಟಾಲಿಕ್"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "ಸಾಮಾನ್ಯ"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ಇಟಾಲಿಕ್"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ಬೋಲ್ಡ್‍"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ಬೋಲ್ಡ್‍ ಇಟಾಲಿಕ್"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ಕಪ್ಪು"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "ಕಪ್ಪು ಇಟಾಲಿಕ್"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ಪುಸ್ತಕ"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "ಸಂಕ್ಷಿಪ್ತಗೊಂಡ"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "ಅರೆ ಬೋಲ್ಡು"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "ನಿಮ್ಮ ಮುದ್ರಕ ಮತ್ತು ಪ್ರದರ್ಶಕಗಳಲ್ಲಿ ಒಂದೇ ತರಹದ ಅಕ್ಷರಶೈಲಿಯನ್ನು ಬಳಸಲಾಗುತ್ತದೆ."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "ಇದು ಮುದ್ರಕದ ಅಕ್ಷರಶೈಲಿಯಾಗಿದೆ. ತೆರೆಯ ಚಿತ್ರದಲ್ಲಿ ವ್ಯತ್ಯಾಸ ಕಾಣಬಹುದು."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "ಈ ಅಕ್ಷರಶೈಲಿಯ ಗಾತ್ರವನ್ನು ಪ್ರತ್ಯನುಕರಣ ಅಥವಾ ಲಭ್ಯವಿರುವ,ಅದಕ್ಕೆ ಅತ್ಯಂತ ಸಮೀಪದ ಅಕ್ಷರಶೈಲಿಯ ಗಾತ್ರವನ್ನು ಬಳಸಲಾಗುತ್ತದೆ."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ಈ ಅಕ್ಷರಶೈಲಿಯನ್ನು ಅನುಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ. ಲಭ್ಯವಿರುವ,ಅದಕ್ಕೆ ಅತ್ಯಂತ ಸಮೀಪದ ಅಕ್ಷರಶೈಲಿಯನ್ನು ಬಳಸಲಾಗುತ್ತದೆ."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ವೀಕ್ಷಿಸು..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ನೆಲೆಗೆ ಸ್ಥಳಾಂತರಿಸಿ"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ಎಡಕ್ಕೆ ಚಲಿಸು"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ಬಲಕ್ಕೆ ಚಲಿಸು"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "ಕೊನೆಗೆ ಸ್ಥಳಾಂತರಿಸಿ"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ಸೇರಿಸು"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "ಅಡ್ಡ ಗೆರೆಪಟ್ಟಿ"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ಲಂಬ ಗೆರೆಪಟ್ಟಿ"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 ಬಿಟ್‌ ಮಿತಿ"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 ಬಿಟ್‌ ಕಂಪನ"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 ಬಿಟ್ ಬೂದು ಬಣ್ಣಮಾಪಕ(ಗ್ರೇಸ್ಕೇಲ್‌)"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 ಬಿಟ್ ಬಣ್ಣ"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 ಬಿಟ್ ಗ್ರೇಸ್ಕೇಲ್‌"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 ಬಿಟ್ ಬಣ್ಣ"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 ಬಿಟ್‌ ನೈಜ ಬಣ್ಣ"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ಚಿತ್ರಕ್ಕಾಗಿ ಸುಮಾರು %1 KB ಯಷ್ಟು ಮೆಮೊರಿಯ ಅಗತ್ಯವಿರುತ್ತದೆ."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ಚಿತ್ರಕ್ಕಾಗಿ ಸುಮಾರು %1 KB ಯಷ್ಟು ಮೆಮೊರಿಯ ಅಗತ್ಯವಿರುತ್ತದೆ, ಕಡತದ ಗಾತ್ರವು %2 KB ಆಗಿರುತ್ತದೆ."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ಕಡತದ ಗಾತ್ರವು %1 KB ಆಗಿರುತ್ತದೆ."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ಸೇರಿಸು"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ವಿಂಗಡಿಸು"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "ಸಿದ್ಧ"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ವಿರಮಿಸಿದೆ"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "ಅಳಿಸುವುದರ ನಿರೀಕ್ಷೆಯಲ್ಲಿದೆ"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "ಕಾರ್ಯನಿರತ"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ಆರಂಭಗೊಳ್ಳುತ್ತಿದೆ"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "ನಿರೀಕ್ಷಿಸುತ್ತಿದೆ"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "ಪೂರ್ವಸಿದ್ಧತಾ ಸ್ಥಿತಿಯಲ್ಲಿದೆ"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "ಸಂಸ್ಕರಿಸುತ್ತಿದೆ"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "ಮುದ್ರಿತಗೊಳ್ಳುತ್ತಿದೆ"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ಆಫ್‌ಲೈನ್‌"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ದೋಷ"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "ಗೊತ್ತಿಲ್ಲದ ಪರಿಚಾರಕ"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "ಹಾಳೆ ಸಿಕ್ಕಿಹಾಕಿಕೊಂಡಿದೆ"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "ಸಾಕಷ್ಟು ಕಾಗದ ಇಲ್ಲ"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "ಖುದ್ದು ಹಾಳೆ ನೀಡಿಕೆ"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "ಕಾಗದದ ತೊಂದರೆ"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O ಕ್ರಿಯಾಶೀಲವಾಗಿದೆ"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "ಔಟ್‌ಪುಟ್‌ ಬುಟ್ಟಿಯು ಭರ್ತಿಯಾಗಿದೆ"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "ಬಣ್ಣದ ಪಾತ್ರೆಯಲ್ಲಿ ಬಣ್ಣ ಕಡಿಮೆಯಾಗಿದೆ"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "ಬಣ್ಣವಿಲ್ಲ"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ಪುಟವನ್ನು ಅಳಿಸು"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ಬಳಕೆದಾರನ ಮಧ್ಯವರ್ತಿಕೆಯ ಅಗತ್ಯವಿದೆ"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "ಮೆಮೊರಿ ಸಾಲದು"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "ಮುಚ್ಚಳ ತೆರೆದಿದೆ"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "ವಿದ್ಯುಚ್ಛಕ್ತಿ ಉಳಿತಾಯ ಕ್ರಮ"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ಪೂರ್ವನಿಯೋಜಿತ ಮುದ್ರಕ"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d ದಸ್ತಾವೇಜುಗಳು"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "ಮುಗಿಸು(~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "ಮುಂದಕ್ಕೆ (~N) >>"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< ಹಿಂದೆ(~k)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ಹಂತಗಳು"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ಏನೂ ಇಲ್ಲ>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ಸಂಸ್ಥೆ"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "ವಿಭಾಗ"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "ಮೊದಲ ಹೆಸರು"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "ಕೊನೆಯ ಹೆಸರು"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ರಸ್ತೆ"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "ದೇಶ"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ZIP ಸಂಕೇತ"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "ಊರು"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "ಶೀರ್ಷಿಕೆ"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "ಸ್ಥಾನ"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ವಿಳಾಸ ನಮೂನೆ"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "ಇನಿಷಿಯಲ್‌ಗಳು"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "ಗೌರವಪೂರ್ವಕವಾಗಿ ಮುಚ್ಚುವಿಕೆ"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "ದೂರವಾಣಿ: ಮನೆ"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "ದೂರವಾಣಿ: ಕಛೇರಿ"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ಟಿಪ್ಪಣಿ"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ಬಳಕೆದಾರ 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ಬಳಕೆದಾರ 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ಬಳಕೆದಾರ 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ಬಳಕೆದಾರ 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ರಾಜ್ಯ"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "ದೂರವಾಣಿ: ಕಛೇರಿ"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "ಪೇಜರ್"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "ಮೊಬೈಲ್"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ದೂರವಾಣಿ: ಇತರೆ"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ಕ್ಯಾಲೆಂಡರ್"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "ಆಹ್ವಾನಿಸು"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "ಈ ಕಾರ್ಯಕ್ಕಾಗಿ %PRODUCTNAMEಗೆ ಜಾವಾ ರನ್ ಟೈಮ್ ಎನ್ವಿರಾನ್ಮೆಂಟಿನ(JRE) ಅವಶ್ಯಕತೆ ಇದೆ. ದಯವಿಟ್ಟು JREಅನ್ನು ಅನುಸ್ಥಾಪಿಸಿ ನಂತರ %PRODUCTNAME ಮರಳಿ ಆರಂಭಿಸಿ."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME ಸಂರಚನೆಯನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ. %PRODUCTNAME - ಆದ್ಯತೆಗಳು - %PRODUCTNAME - ಸುಧಾರಿತ ಅನ್ನು ಬಳಸಿಕೊಂಡು, ನೀವು %PRODUCTNAME ಇಂದ ಬಳಸಲಾಗುವ ಜಾವಾ ರನ್ ಟೈಮ್ ಎನ್ವಿರಾನ್ಮೆಂಟ್ ಅನ್ನು ಆಯ್ಕೆಮಾಡಿ."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME ಸಂರಚನೆ ಬದಲಾಯಿಸಲಾಗಿದೆ. ಉಪಕರಣಗಳು - ಆಯ್ಕೆಗಳು - %PRODUCTNAME - ಸುಧಾರಿತ ಅನ್ನು ಬಳಸಿಕೊಂಡು, ನೀವು %PRODUCTNAME ಇಂದ ಬಳಸಲಾಗುವ ಜಾವಾ ರನ್ ಟೈಮ್ ಎನ್ವಿರಾನ್ಮೆಂಟ್ ಅನ್ನು ಆಯ್ಕೆಮಾಡಿ."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ಈ ಕಾರ್ಯವನ್ನು ನಿರ್ವಹಿಸಲು ಜಾವಾ ರನ್ ಟೈಮ್ ಎನ್ವಿರಾನ್ಮೆಂಟಿನ (JRE) ಅವಶ್ಯಕತೆ ಇದೆ. ಆಯ್ಕೆಮಾಡಲಾದ JRE ದೋಷಯುಕ್ತವಾಗಿದೆ. ದಯವಿಟ್ಟು JREನ ಮತ್ತೊಂದು ಆವೃತ್ತಿಯನ್ನು ಆಯ್ಕೆ ಮಾಡಿ ಇಲ್ಲವಾದಲ್ಲಿ ಹೊಸ JREಅನ್ನು ಅನುಸ್ಥಾಪಿಸಿ ನಂತರ ಅದನ್ನು %PRODUCTNAME - ಆದ್ಯತೆಗಳು - %PRODUCTNAME - ಸುಧಾರಿತದ ಅಡಿಯಲ್ಲಿ ಆಯ್ಕೆಮಾಡಿ."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ಈ ಕಾರ್ಯವನ್ನು ನಿರ್ವಹಿಸಲು ಜಾವಾ ರನ್ ಟೈಮ್ ಎನ್ವಿರಾನ್ಮೆಂಟಿನ (JRE) ಅವಶ್ಯಕತೆ ಇದೆ. ಆಯ್ಕೆಮಾಡಲಾದ JRE ದೋಷಯುಕ್ತವಾಗಿದೆ. ದಯವಿಟ್ಟು JREನ ಮತ್ತೊಂದು ಆವೃತ್ತಿಯನ್ನು ಆಯ್ಕೆ ಮಾಡಿ ಇಲ್ಲವಾದಲ್ಲಿ ಹೊಸ JREಅನ್ನು ಅನುಸ್ಥಾಪಿಸಿ ನಂತರ ಅದನ್ನು ಉಪಕರಣಗಳು - ಆಯ್ಕೆಗಳು - %PRODUCTNAME - ಸುಧಾರಿತದ ಅಡಿಯಲ್ಲಿ ಆಯ್ಕೆಮಾಡಿ."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ಅಗತ್ಯವಿದೆ"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಿ"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ದೋಷಯುಕ್ತವಾಗಿದೆ"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "ಆಕರ ಸಂಕೇತ"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ಪುಟಗುರುತು ಕಡತ"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ಗ್ರಾಫಿಕ್ಸ್‍"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ಸಂರಚನಾ ಕಡತ"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "ಅನ್ವಯ"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ದತ್ತಸಂಚಯ ಕೋಷ್ಟಕ"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "ವ್ಯವಸ್ಥಾ ಕಡತ"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "ಸಹಾಯ ಕಡತ"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ಆರ್ಕೈವ್‌ ಕಡತ"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ದಾಖಲೆ ಕಡತ"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ದತ್ತಸಂಚಯ"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "ಸ್ಟಾರ್ ರೈಟರ್ 4.0/5.0 ಮಾಸ್ಟರ್ ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice ಚಿತ್ರ"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ಪಠ್ಯ ಕಡತ"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "ಸಂಪರ್ಕಕೊಂಡಿ"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 ನಮೂನೆ"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel ನಮೂನೆ"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ಗುಂಪು ಕಡತ"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ಕಡತ"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ಕಡತಕೋಶ"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ಪಠ್ಯ ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ಸ್ಪ್ರೆಡ್‌ಷೀಟ್"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "ಪ್ರೆಸೆಂಟೇಶನ್"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ಡ್ರಾಯಿಂಗ್"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ಮುಖ್ಯ ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "ಫಾರ್ಮುಲ"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ದತ್ತಸಂಚಯ"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 ಸ್ಪ್ರೆಡ್‌ಶೀಟ್ ಮಾದರಿ"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 ಡ್ರಾಯಿಂಗ್ ಮಾದರಿ"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 ಪ್ರೆಸೆಂಟೇಶನ್ ಮಾದರಿ"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 ಟೆಕ್ಸ್ಟ್‌ ಡಾಕ್ಯುಮೆಂಟ್‌ಗಳ ಮಾದರಿ"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ಸ್ಥಳೀಯ ಡ್ರೈವ್‌"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ಡಿಸ್ಕ್‍ ಡ್ರೈವ್‌"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ಡ್ರೈವ್"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "ಜಾಲ ಸಂಪರ್ಕ"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint ನಮೂನೆ"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint ಪ್ರದರ್ಶನ"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 ಫಾರ್ಮುಲಾ"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 ಚಾರ್ಟ್"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 ಡ್ರಾಯಿಂಗ್"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 ಸ್ಪ್ರೆಡ್‌ಶೀಟ್"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 ಪ್ರೆಸೆಂಟೇಶನ್"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 ಟೆಕ್ಸ್ಟ್‌ ಡಾಕ್ಯುಮೆಂಟ್‌"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 ಮಾಸ್ಟರ್ ಡಾಕ್ಯುಮೆಂಟ್‌"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument ದತ್ತಸಂಚಯ"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument ಡ್ರಾಯಿಂಗ್"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument ಫಾರ್ಮುಲ"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument ಮಾಸ್ಟರ್ ದಸ್ತಾವೇಜು"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument ಪ್ರೆಸೆಂಟೇಷನ್"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument ಸ್ಪ್ರೆಡ್‌ಷೀಟ್"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument ಪಠ್ಯ"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument ಸ್ಪ್ರೆಡ್‌ಶೀಟ್‌ ನಮೂನೆ"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument ಡ್ರಾಯಿಂಗ್ ನಮೂನೆ"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument ಪ್ರೆಸೆಂಟೇಷನ್ ನಮೂನೆ"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument ಪಠ್ಯ ನಮೂನೆ"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME ವಿಸ್ತರಣೆ"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/kn/svx/messages.po b/source/kn/svx/messages.po
index c687c39d3b2..cd7c2170d3a 100644
--- a/source/kn/svx/messages.po
+++ b/source/kn/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8046,6 +8046,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12584,89 +12589,94 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "ಬಾಹ್ಯರೇಖೆ ಸಂಪಾದಕ"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "ಅನ್ವಯಿಸು"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "ಕಾರ್ಯಸ್ಥಳ"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
#, fuzzy
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "ಆರಿಸು"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "ಆಯತ"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ದೀರ್ಘವೃತ್ತ"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "ಬಹುಭುಜಾಕೃತಿ"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ಬಿಂದುಗಳನ್ನು ಸಂಪಾದಿಸು"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ಬಿಂದುಗಳನ್ನು ಸ್ಥಳಾಂತರಿಸು"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ಬಿಂದುಗಳನ್ನು ಸೇರಿಸು"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ಬಿಂದುಗಳನ್ನು ಅಳಿಸು"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "ಸ್ವಯಂಬಾಹ್ಯಾಕಾರ"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "ರದ್ದುಮಾಡು "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "ಕೆಂಪು"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "ಪಿಪೆಟ್"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12998,123 +13008,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "ಅಡಿಲೇಖ"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ಚಿತ್ರನಕ್ಷೆ ಸಂಪಾದಕ"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "ಅನ್ವಯಿಸು"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "ತೆರೆ..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "ಉಳಿಸು..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "ಮುಚ್ಚು"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
#, fuzzy
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "ಆರಿಸು"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "ಆಯತ"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ದೀರ್ಘವೃತ್ತ"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "ಬಹುಭುಜಾಕೃತಿ"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "ಮುಕ್ತಾಕಾರ ಬಹುಭುಜಾಕೃತಿ"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ಬಿಂದುಗಳನ್ನು ಸಂಪಾದಿಸು"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ಬಿಂದುಗಳನ್ನು ಸ್ಥಳಾಂತರಿಸು"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ಬಿಂದುಗಳನ್ನು ಸೇರಿಸು"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ಬಿಂದುಗಳನ್ನು ಅಳಿಸು"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "ರದ್ದುಮಾಡು "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "ಕೆಂಪು"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "ಸಕ್ರಿಯ"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "ಮ್ಯಾಕ್ರೋ..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "ಗುಣಗಳು: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "ವಿಳಾಸ:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ಚೌಕಟ್ಟು"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/kn/sw/messages.po b/source/kn/sw/messages.po
index e6386a3ef8f..b6fe445fb99 100644
--- a/source/kn/sw/messages.po
+++ b/source/kn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3191,9 +3191,9 @@ msgid "Change object title of $1"
msgstr "$1 ನ ವಸ್ತುವಿನ ಶೀರ್ಷಿಕೆಯನ್ನು ಬದಲಾಯಿಸು"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 ನ ವಸ್ತುವಿನ ವಿವರಣೆಯನ್ನು ಬದಲಾಯಿಸು"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12640,147 +12640,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12790,152 +12790,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14037,7 +14037,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17523,50 +17523,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
#, fuzzy
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "ಅವಲೋಕನ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-#, fuzzy
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "ಮುನ್ನೋಟ"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "ಬಗೆ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "ನಮೂದುಗಳು"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "ಶೈಲಿಗಳು"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "ಲಂಬಸಾಲುಗಳು"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "ಹಿನ್ನೆಲೆ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+#, fuzzy
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "ಮುನ್ನೋಟ"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "ಹಂತ(_L)"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17807,326 +17807,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "ಸಂಪಾದಿಸು..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "ಶೀರ್ಷಿಕೆ(_T):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "ಬಗೆ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "ಕೋಷ್ಟಕ ವಿಷಯಸೂಚಿಗಳು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "ಬಳಕೆದಾರರಿಂದ ಸೂಚಿತವಾದ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ಗ್ರಂಥಋಣ 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ಗಾಗಿ (_o):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "ಸಂಪೂರ್ಣ ದಸ್ತಾವೇಜು(~E)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "ಅಧ್ಯಾಯ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "ಹೊರರೇಖೆ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
#, fuzzy
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "ಕೋಷ್ಟಕಗಳು(_T)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "ಪಠ್ಯ ಚೌಕಟ್ಟುಗಳು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ಗ್ರಾಫಿಕ್ಸ್‍"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE ವಸ್ತುಗಳು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "ನಿಬಂಧಾತ್ಮಕ ಶೈಲಿಗಳು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "ಶೈಲಿಗಳು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "ಶೈಲಿಗಳನ್ನು ನಿಯೋಜಿಸು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "ಶೀರ್ಷಿಕೆ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "ವಸ್ತುವಿನ ಹೆಸರು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "ಪಂಗಡ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "ಪ್ರದರ್ಶಿಸು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "ಉಲ್ಲೇಖಗಳು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "ಪಂಗಡ ಹಾಗು ಸಂಖ್ಯೆ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "ವಿವರಣೆ ಪಠ್ಯ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "ಆವರಣಚಿಹ್ನೆಗಳು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[ಏನೂ ಇಲ್ಲ]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
#, fuzzy
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "ಕೀಲಿ ಸಂವೇದಕ (_C)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ಕಡತ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "ಆಯ್ಕೆಗಳು"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ಭಾಷೆ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "ಕೀಲಿಯ ಬಗೆ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "ವಿಂಗಡಿಸು"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "ಹಂತ(_L)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "ಪ್ಯಾರಾಗ್ರಾಫ್ ಶೈಲಿ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "ಪೂರ್ವನಿಯೋಜಿತ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "ಸಂಪಾದನೆ (_E)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/ko/basctl/messages.po b/source/ko/basctl/messages.po
index b6b89471c6b..6efae61a3cf 100644
--- a/source/ko/basctl/messages.po
+++ b/source/ko/basctl/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-03-15 07:58+0000\n"
+"PO-Revision-Date: 2019-05-22 15:21+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ko\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1552636732.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558538491.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -425,22 +425,22 @@ msgstr "쪽수:"
#: basctl/inc/strings.hrc:101
msgctxt "RID_STR_PRINTDLG_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "모든 페이지(~P)"
#: basctl/inc/strings.hrc:102
msgctxt "RID_STR_PRINTDLG_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "페이지(~G):"
#: basctl/inc/strings.hrc:103
msgctxt "RID_STR_PRINTDLG_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "짝수 쪽(~E)"
#: basctl/inc/strings.hrc:104
msgctxt "RID_STR_PRINTDLG_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "홀수 쪽(~O)"
#: basctl/inc/strings.hrc:105
msgctxt "RID_STR_CHOOSE"
@@ -551,12 +551,12 @@ msgstr "편집"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:363
msgctxt "basicmacrodialog|delete"
msgid "_Delete"
-msgstr ""
+msgstr "삭제(_D)"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:377
msgctxt "basicmacrodialog|new"
msgid "_New"
-msgstr ""
+msgstr "새로 만들기(_N)"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:391
msgctxt "basicmacrodialog|organize"
diff --git a/source/ko/cui/messages.po b/source/ko/cui/messages.po
index efdda9987b9..1feba5b36df 100644
--- a/source/ko/cui/messages.po
+++ b/source/ko/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-03-15 08:02+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "유효한 테마 주소나 검색 낱말을 입력하세오."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "테두리 표시하지 않음"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "바깥쪽 테두리만 표시"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "바깥쪽 테두리와 가로줄만 표시"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "바깥쪽 테두리 및 모든 안쪽 줄 표시"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "안쪽 줄은 변경하지 않고 바깥쪽 테두리를 표시"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "대각선만 설정"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "테두리의 네면을 모두 표시"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "왼쪽과 오른쪽의 테두리만 표시"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "맨위와 맨아래의 테두리만 표시"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "왼쪽 테두리만 표시"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "위, 아래 테두리 및 모든 내부선 설정"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "왼쪽, 오른쪽 테두리 및 모든 내부선 설정"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "그림자 없음"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "오른쪽 아래 방향으로 그림자 효과내기"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "오른쪽 위 방향으로 그림자 효과내기"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "왼쪽 아래 방향으로 그림자 효과내기"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "왼쪽 위 방향으로 그림자 효과내기"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "서명자: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "모든 파일"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME 정보"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "기여한 사람들(_D)"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "웹사이트(_W)"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "빌드 번호: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "지역 설정: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "UI-언어: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "로그 참조: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME 는 최신이며, 사용하기 쉬운, 워드프로세서, 스프레드시트, 프레젠테이션등 여러 가지를 포함한 오픈소스 생산성 제품군입니다."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "저작권 © 2000–2019 리브레오피스 공헌자."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "리브레오피스는 OpenOffice.org를 기반으로 제작되었습니다."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "리브레오피스의 %PRODUCTNAME는 OpenOffice.org를 기반으로 제작되었습니다."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "이 버전은 %OOOVENDOR가 제공하고 있습니다."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "바꾸기(_R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "바꾸기(_C)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "바꿀 단어(_W):"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "텍스트만(_T)"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "최소 단어 길이"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "속성"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "틀(_R):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "이름(_N):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "대체 텍스트(_T):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "설명(_D):"
@@ -9019,80 +9179,80 @@ msgstr "\"설치된 오프라인 도움말 없음\" 팝업 표시"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "도움말"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME 대화 상자 사용(_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "열기/저장 대화 상자"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME 대화 상자 사용(_D)"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "인쇄 대화 상자"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "인쇄 시 \"문서가 수정된\" 상태로 지정(_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "문서 상태"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "연간으로 해석(_I) "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "및 "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "연도 설정(두 자리수)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "사용 현황 데이터를 수집하고 The Document Foundation에 보냄"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "%PRODUCTNAME를 개선하는데 도움주기"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "시스템 시작 시 %PRODUCTNAME 로드"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray 빠른 시작 활성화"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME 빠른 시작"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "사용자 정의 테마"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "또는 확장 기능을 통해 설치된 테마에서 선택:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox 테마"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "보안 옵션"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "파이어폭스 테마 선택하기"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "검색할 낱말 또는 주소"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "분류(_T):"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "개요"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "원인"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "유행"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "영화와 TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "공휴일"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "음악"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "자연"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "기타"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "풍경"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "계절"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "단색"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "스포츠"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "웹사이트"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "추천"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ko/extensions/messages.po b/source/ko/extensions/messages.po
index 1ab57b4b9f5..43592293ce6 100644
--- a/source/ko/extensions/messages.po
+++ b/source/ko/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-15 06:50+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "표 “%1”의 열 레이아웃"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "짧은 이름(_S)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "작성인(_A)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "발행인(_P)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "장(章)(_C)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "편집자"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "유형(_T)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "연도(_Y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "제목(_L)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "주소(_D)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "페이지(_G)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "판(_I)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "책 제목(_B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "볼륨"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "발표 유형(_Y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "조직(_Z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "제도(_U)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "대학(_V)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "보고서 유형(_P)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "월(_M)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "업무 일지(_J)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "숫자(_E)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "시리즈(_R)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "말뭉치 주석(_O)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "메모(_N)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "사용자 정의 필드 _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "사용자 정의 필드 _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "사용자 정의 필드 _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "사용자 정의 필드 _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "사용자 정의 필드 _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "열 이름"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "새 데이터 유형의 이름을 입력하십시오.:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "링크 필드"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "제안"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "하위 양식을 사용하여 마스터 양식의 현재 레코드에 대한 자세한 데이터를 표시할 수 있습니다. 이렇게 하려면 마스터 양식의 열과 일치하는 하위 양식의 열을 지정합니다."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "레이블"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "레이블"
diff --git a/source/ko/helpcontent2/source/auxiliary.po b/source/ko/helpcontent2/source/auxiliary.po
index b81319ff64b..9e1f3a10cc2 100644
--- a/source/ko/helpcontent2/source/auxiliary.po
+++ b/source/ko/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-15 05:32+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "일반 정보"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "도구 모음"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "그리기 (%PRODUCTNAME 드로우)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "메뉴"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "도구 모음"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "개체, 그래픽, 비트맵"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "그룹과 레이어"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "프레젠테이션과 그리기 문서 내 텍스트"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/sbasic/guide.po b/source/ko/helpcontent2/source/text/sbasic/guide.po
index 26456c73ed2..1d1e4752afa 100644
--- a/source/ko/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ko/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-15 05:31+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "프로그램 코드를 사용하여 대화 상자 열기"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>모듈/대화 상자 토글</bookmark_value><bookmark_value>대화 상자;프로그램 코드를 사용하여 표시(예)</bookmark_value><bookmark_value>예; 프로그램 코드를 사용하여 대화 상자 표시</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/sbasic/python.po b/source/ko/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/ko/helpcontent2/source/text/sbasic/python.po
+++ b/source/ko/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/ko/helpcontent2/source/text/sbasic/shared.po b/source/ko/helpcontent2/source/text/sbasic/shared.po
index bb0ea341cc7..f0119a4e156 100644
--- a/source/ko/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ko/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-14 15:12+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic 도움말\">%PRODUCTNAME Basic 도움말</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/sbasic/shared/03.po b/source/ko/helpcontent2/source/text/sbasic/shared/03.po
index f0b6fc75fb0..4626addfd41 100644
--- a/source/ko/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ko/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/ko/helpcontent2/source/text/scalc/01.po b/source/ko/helpcontent2/source/text/scalc/01.po
index 32950761fef..edb3d9cacbd 100644
--- a/source/ko/helpcontent2/source/text/scalc/01.po
+++ b/source/ko/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-03-14 03:33+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">삽입할 데이터가 포함된 파일을 찾습니다.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">삽입할 테이블이나 데이터 범위를 선택합니다.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\"><emph>통합 범위</emph> 상자에 나열된 셀 범위와 통합할 셀 범위를 지정합니다. 시트에서 셀 범위를 선택한 다음 <emph>추가</emph>를 클릭합니다. 또한 <emph>원본 데이터 범위</emph> 목록에서 미리 정의된 셀의 이름을 선택할 수도 있습니다.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/schart/00.po b/source/ko/helpcontent2/source/text/schart/00.po
index 81978d89c31..23db14ef689 100644
--- a/source/ko/helpcontent2/source/text/schart/00.po
+++ b/source/ko/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">선으로 표시되는 선형 차트 또는 XY 차트의 차트 유형 대화상자에서 선 유형을 '곡선'으로 선택하고 속성 버튼을 누릅니다.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">선으로 표시되는 선형 차트 또는 XY 차트의 차트 유형 대화상자에서 선 유형을 '계단형'으로 선택하고 속성 버튼을 누릅니다.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/ko/helpcontent2/source/text/shared/00.po b/source/ko/helpcontent2/source/text/shared/00.po
index 5c73ad8f3cb..7d4c4bebebd 100644
--- a/source/ko/helpcontent2/source/text/shared/00.po
+++ b/source/ko/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/ko/helpcontent2/source/text/shared/01.po b/source/ko/helpcontent2/source/text/shared/01.po
index f807be65a54..bb1ac1eb2b5 100644
--- a/source/ko/helpcontent2/source/text/shared/01.po
+++ b/source/ko/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/ko/helpcontent2/source/text/shared/02.po b/source/ko/helpcontent2/source/text/shared/02.po
index 0d42d8ad8e0..91426c578e6 100644
--- a/source/ko/helpcontent2/source/text/shared/02.po
+++ b/source/ko/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-15 06:14+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1552630450.000000\n"
#: 01110000.xhp
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/ko/helpcontent2/source/text/shared/guide.po b/source/ko/helpcontent2/source/text/shared/guide.po
index 43d7a1fdd3b..2c605b07181 100644
--- a/source/ko/helpcontent2/source/text/shared/guide.po
+++ b/source/ko/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-14 08:27+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/ko/helpcontent2/source/text/shared/optionen.po b/source/ko/helpcontent2/source/text/shared/optionen.po
index 87d155f6e6e..3dcc379acdf 100644
--- a/source/ko/helpcontent2/source/text/shared/optionen.po
+++ b/source/ko/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/ko/helpcontent2/source/text/simpress/01.po b/source/ko/helpcontent2/source/text/simpress/01.po
index 5fb9e1309dd..c19dde251a6 100644
--- a/source/ko/helpcontent2/source/text/simpress/01.po
+++ b/source/ko/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/ko/helpcontent2/source/text/swriter/guide.po b/source/ko/helpcontent2/source/text/swriter/guide.po
index d5b46065f9a..f4b02b023ec 100644
--- a/source/ko/helpcontent2/source/text/swriter/guide.po
+++ b/source/ko/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-15 06:14+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "<emph>표준 도구 모음</emph>에서 <emph>내비게이터</emph> 아이콘 <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\">아이콘</alt></image>을 눌러 <emph>내비게이터</emph>를 엽니다."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "<emph>내비게이터</emph>에서 <emph>내용 보기 </emph> 아이콘<image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">아이콘</alt></image>을 클릭합니다."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "<emph>내비게이터</emph> 목록에서 제목을 클릭하고 <emph>장을 위로 이동</emph><image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">아이콘</alt></image> 또는 <emph>장을 아래로 이동 </emph>아이콘 <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">아이콘</alt></image>을 클릭합니다."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "<emph>수준 올림 </emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">아이콘</alt></image> 또는 <emph>수준 내림 </emph>아이콘<image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">아이콘</alt></image>을 클릭합니다."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "<emph>표시되는 제목 수준 </emph>아이콘 <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">아이콘</alt></image>을 클릭한 다음 목록에서 번호를 선택합니다."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
index e7557cababd..83f93227c05 100644
--- a/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-16 00:15+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "더 많은 항목"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "탭"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "그룹 막대"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ko/sc/messages.po b/source/ko/sc/messages.po
index 68ae9a5e9fb..a1599e521f2 100644
--- a/source/ko/sc/messages.po
+++ b/source/ko/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-16 06:51+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15206,6 +15206,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(단독 액세스 권한)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15759,12 +15764,12 @@ msgstr "조건부 서식 관리"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16982,81 +16987,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "데이터 양식"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "닫기(_C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "새 레코드"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "새로 만들기(_N)"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "삭제(_D)"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "복원하기(_R)"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "이전 레코드(_P)"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "다음 레코드(_X)"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "닫기(_C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "라이브 데이터 스트림"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "로컬 파일 시스템이나 인터넷에 있는 원본 문서의 URL을 입력하십시오."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "찾아보기(_B)..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "데이터베이스 범위:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "데이터 제공자:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "검색할 문자열:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "소스 스트림"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18772,32 +18737,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "결과 :"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "데이터"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "열"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "행"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "그룹화 기준"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "간격:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "매개 변수"
@@ -18937,167 +18907,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "도움말(_H)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "파일(~F)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "선택한 셀의 테두리를 지정하십시오."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "들여쓰기"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "내어쓰기"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "홈(_H)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "홈(~H)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "필드(_D)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "삽입(_I)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "삽입(~I)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "레이아웃(_L)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "레이아웃(~L)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "통계(_S)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "데이터(_D)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "데이터(~D)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "리뷰(_R)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "리뷰(~R)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "보기(_V)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "보기(~V)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "이미지(_G)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "이미지(~G)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "드로우(_D)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "드로우(~D)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "객체(_O)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "객체(~O)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "미디어(_M)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "미디어(~M)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "인쇄(_P)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "인쇄(~P)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "도구(_T)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "도구(~T)"
@@ -21578,17 +21550,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "검색 결과"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23458,107 +23440,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "개요 기호(_O)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "창"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "격자선(_G):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "색상(_C):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "보이기"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "색상이 있는 셀 보이기"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "숨기기"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "페이지 나누기(_P)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "이동 시 보조선(_W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "시각적 보조도구"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "개체/이미지(_J):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "차트(_R):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "그림 개체(_D):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "보이기"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "숨기기"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "보이기"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "숨기기"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "보이기"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "숨기기"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "개체"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "시트 동기화(_Y)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "확대/축소"
diff --git a/source/ko/scp2/source/ooo.po b/source/ko/scp2/source/ooo.po
index 6c3529c30d5..69a258ca412 100644
--- a/source/ko/scp2/source/ooo.po
+++ b/source/ko/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-08 14:14+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "문서 열기"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ko/scp2/source/winexplorerext.po b/source/ko/scp2/source/winexplorerext.po
index a9f95f0030e..782ca0865ce 100644
--- a/source/ko/scp2/source/winexplorerext.po
+++ b/source/ko/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-04-06 00:10+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1522973409.000000\n"
#: module_winexplorerext.ulf
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows 탐색기에서 축소판 미리보기와 같은 %PRODUCTNAME 문서 정보를 표시할 수 있게 합니다."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ko/sd/messages.po b/source/ko/sd/messages.po
index 8b2d54bbcb4..ffeac5ebf31 100644
--- a/source/ko/sd/messages.po
+++ b/source/ko/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-16 06:58+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "클릭하여 다음 링크로 이동:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML 디자인 명"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "파일(_F)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "도움말(_H)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "파일(~F)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "내 폴더(_H)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "홈(~H)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "필드(_D)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "삽입(_I)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "삽입(~I)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "페이지(_P)"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "페이지(~P)"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "검토(_R)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "리뷰(~R)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "보기(_V)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "표(_T)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "표(~T)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "변환"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "이미지(_G)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "이미지(~G)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "드로우(_D)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "드로우(~D)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "도구(_T)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "도구(~T)"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "도형 표시"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "파일(~F)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "홈(_H)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "홈(~H)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "슬라이드(_L)"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "슬라이드(~L)"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "슬라이드 쇼(_S)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "슬라이드 쇼(~S)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "리뷰(_R)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "리뷰(~R)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "보기(_V)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "보기(~V)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "표(_T)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "표(~T)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "변환"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "이미지(_G)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "이미지(~G)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "드로우(_D)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "드로우(~D)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "도구(_T)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "도구(~T)"
diff --git a/source/ko/sfx2/messages.po b/source/ko/sfx2/messages.po
index 946f4083529..4ae1e8e15df 100644
--- a/source/ko/sfx2/messages.po
+++ b/source/ko/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-16 06:59+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "속성 제거"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"입력한 값이 지정된 형식과 일치하지 않습니다.\n"
"입력된 값은 텍스트로 저장됩니다."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "스타일이 이미 존재합니다. 덮어 쓰겠습니까?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "원래대로(~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "이 이름은 이미 사용되고 있습니다."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "이 스타일은 존재하지 않습니다."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"이 스타일은 재귀 참조를 발생시키므로\n"
"기준 스타일로 사용할 수 없습니다."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"이 이름은 기본 스타일의 이름입니다.\n"
"다른 이름을 선택하십시오."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"사용 중인 스타일을 삭제하면, 문자의 스타일이 상위 스타일로 되돌아갑니다.\n"
"그래도 스타일을 삭제하시겠습니까?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "사용중인 스타일: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "빠른 이동 도구"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "암호 확인이 잘못되었습니다."
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "보내기"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "글꼴"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "미리보기 보기"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "버전 주석 보기"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(이름이 설정되지 않음)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "스타일 목록"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "계층"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "서식 채우기모드"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "선택에서 새 스타일 만들기"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "스타일 업데이트"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "기록을 정말로 취소하시겠습니까? 지금까지 기록된 모든 작업 진행 내용을 잃을 수 있습니다."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "기록 취소"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "서식 파일이 처음 사용을 위해 초기화되는 중입니다."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"기본 프린터를 찾지 못했습니다.\n"
"프린터를 선택한 다음 다시 시도하십시오."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"프린터가 시작되지 않았습니다.\n"
"프린터 구성을 검사하십시오."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "프린터 이미 작동중"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (읽기 전용)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"페이지 크기와 방향이 수정되었습니다.\n"
"새 설정을 현재 문서에 저장하시겠습니까?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1114,7 +1109,7 @@ msgstr ""
"페이지 크기가 수정되었습니다.\n"
"새 설정을 현재 문서에 저장하시겠습니까?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1124,7 +1119,7 @@ msgstr ""
"페이지 크기와 방향이 수정되었습니다.\n"
"새 설정을 현재 문서에 저장하시겠습니까?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1133,7 +1128,7 @@ msgstr ""
"인쇄 작업이 아직 진행중이므로\n"
"문서를 지금 닫을 수 없습니다."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1141,7 +1136,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1152,17 +1147,17 @@ msgstr ""
"\n"
"오류 코드 $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "메일 보내기 오류"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "액세스 권한이 없기 때문에 이 문서를 편집할 수 없습니다. 이 문서의 복사본을 편집하시겠습니까?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1173,349 +1168,359 @@ msgstr ""
"\n"
"아니면 잠금 파일을 무시하고 문서를 열어 편집할 수도 있습니다."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "사본 열기(~C)"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "열기(~O)"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (복구된 문서)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "서버에서 문서가 확인되지 않음"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "%PRODUCTNAME를 더 멋지게 만들 수 있도록 도와주세요!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "참여하기"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "기부하기"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "이 문서는 읽기 전용 모드로 열렸습니다."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "이 PDF 파일은 읽기 전용으로 열려 있어, 기존 파일에 서명을 할 수 있습니다."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "이 문서의 분류 레이블은 %1 입니다."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "클립보드로 붙여넣기 전에 이 문서를 분류해야 합니다."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "이 문서는 클립 보드보다 분류 등급이 낮습니다."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "수준"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "국가 안보:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "컨트롤 내보내기:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "확인"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "문서 편집"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "문서 서명"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "이 문서에는 유효하지 않은 서명이 포함되어 있습니다."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "서명은 유효하지만, 문서가 수정되었습니다."
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "서명이 양호하지만, 인증서를 검증할 수 없습니다."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "서명은 양호하지만, 문서의 일부만 서명되었습니다."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "이 문서는 전자 서명이 되었으며, 서명이 유효합니다."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "서명 표시"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "패널 닫기"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "고정"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "고정 해제"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "더 많은 옵션"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "사이드바 덱 닫기"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "사이드바 설정"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "사용자 지정"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "기본값으로 복원"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "사이드바 닫기"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "알리자린"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "벌통"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "파란 곡선"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "청사진 계획"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "밝은 파랑"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "고상한 빨강"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "포커스"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "숲속의 새"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "감명"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "영감"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "빛"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "무성한 녹색"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "도심"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "암청색"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "자연 삽화"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "연필"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "피아노"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "작품집"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "진행 상태"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "석양"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "빈티지"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "생생한"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "이력서"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "기본값"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "현대적인"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "최신 업무용 편지(sans-serif)"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "최신 업무용 편지(serif)"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "명함(로고 포함)"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "제거하기"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "모두 지우기"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "암호 길이"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "입력한 암호는 호환성 문제가 발생할 수 있습니다. 52 바이트보다 짧거나, 55 바이트보다 긴 암호를 입력하십시오."
@@ -1860,32 +1865,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "버전 주석:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "이름"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "종류"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "값"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "종류"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "예"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "아니요"
@@ -1895,17 +1885,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "속성 추가(_P)"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "이름"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "유형"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "값"
@@ -2035,17 +2025,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "위치(_L):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "종류(_T):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "암호 바꾸기(_P)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "서식 파일:"
@@ -2055,27 +2045,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "“%1”의 속성"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "일반 "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "설명"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "사용자 정의 속성"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS 속성"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "보안"
@@ -2289,6 +2279,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ko/shell/messages.po b/source/ko/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ko/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ko/starmath/messages.po b/source/ko/starmath/messages.po
index 7a244fd2325..3a1274c689b 100644
--- a/source/ko/starmath/messages.po
+++ b/source/ko/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "예제"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "표준"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "이탤릭체"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "굵게"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "검은색"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "파란색"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "녹색"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "빨간색"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "시안"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "마젠타"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "회색"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "라임색"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "적갈색"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "군청색"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "올리브색"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "자주색"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "은색"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "진한 청록색"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "노랑"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "숨기기"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "크기"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "글꼴"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "왼쪽"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "가운데"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "오른쪽"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "명령"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "수식"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "문서 저장 중..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION 수식"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "오류: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "예상치 않은 문자"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "예상치 않은 토큰"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' 필요함"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' 필요함"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' 필요함"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' 필요함"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "왼쪽과 오른쪽 기호가 일치하지 않음"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans', 'serif' 글꼴 필요"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'크기' 항목에 예상치 않은 토큰 존재"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "중복 지정은 허용안됨"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "위/아래 첨자는 동시에 사용 불가"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' 필요함"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "색상 필요함"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' 필요함"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "내용"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "제목(~T)"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "수식 텍스트(~F)"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "테두리(~O)"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "크기"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "원본 크기(~R)"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "페이지 크기에 맞춤(~P)"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "배율(~S)"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "요소"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ko/svtools/messages.po b/source/ko/svtools/messages.po
index f0fec8f6918..9730b3cded0 100644
--- a/source/ko/svtools/messages.po
+++ b/source/ko/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-16 06:59+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1552719576.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "실행 취소:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "다시 실행(~D):"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "반복(~R):"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "서식 없는 텍스트"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "서식없는 텍스트 (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "비트맵 이미지 (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "그래픽 장치 인터페이스 메타파일 (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "서식 있는 텍스트 (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "서식 있는 텍스트 (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME 그리기 형식"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView 비트맵/애니메이션 (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx Internal Link로부터의 상태 정보"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME 링크 (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape 책갈피"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star 서버 형식"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star 개체 서식"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "애플릿 개체"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "플러그인 개체"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 개체"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 개체"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 개체"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 개체"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 개체"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 개체"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 개체"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw 개체"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 개체"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 개체"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 개체"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc 개체"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 개체"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 개체"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart 개체"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 개체"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 개체"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage 개체"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 개체"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 개체"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath 개체"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 개체"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 개체"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint 개체"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "하이퍼텍스트 마크업 언어 (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "단순 HTML (Stripped HyperText Markup Language)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "마이크로소프트 엑셀 이진 교환 형식 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "마이크로소프트 엑셀 이진 교환 형식 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "SYLK"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "동적 데이터 교환 (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "데이터 교환 형식 (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word 개체"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet 개체"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office 문서 개체"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "메모 문서 정보"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx 문서"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 개체"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "그래픽 개체"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer 개체"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/웹 개체"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/마스터 개체"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 드로우 객채"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress 개체"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc 개체"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 차트 개체"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 매쓰 개체"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows 메타파일"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "데이터 원본 개체"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "데이터 원본 표"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL 쿼리"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "오픈오피스 1.0 대화 상자"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "링크"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "주석 없는 HTML 형식"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "휴대용 네트워크 그래픽 (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% 개체를 삽입할 수 없습니다."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "파일 %의 개체를 삽입할 수 없습니다."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "그밖의 개체"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "알 수 없는 원본"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "이름"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "크기"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "변경날짜"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "유형"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "바이트"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "행: %1, 열: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", 유형: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "폴더"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "파일"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "빈 필드"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "영숫자"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "정상"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "문자 집합"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "사전"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "한어병음"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "획수"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "부수"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "유니코드"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "한어주음"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "전화 번호부"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "발음 표기 (영숫자를 우선)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "발음 표기(영숫자를 마지막에)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "영숫자"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "사전"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "한어병음"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "부수"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "획수"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "한어주음"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "발음 표기(영숫자를 우선, 음절 기준 순서)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "발음 표기(영숫자를 우선, 자음 기준 순서)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "발음 표기(영숫자를 마지막으로, 음절 기준 순서)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "발음 표기(영숫자를 마지막으로, 자음 기준 순서)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "오늘"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "없음"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "얇게"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "가는 이탤릭체"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "보통"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "이탤릭체"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "굵게"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "이탤릭체(굵게)"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "검게"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "검게, 이탤릭체"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "책"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "기울이고 굵게"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "좁게"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "좁고 굵게"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "좁고 굵은 이탤릭체"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "좁고 기울이고 굵게"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "좁은 이탤릭체"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "좁고 기울여서"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "매우 얇게"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "매우 얇은 이탤릭체"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "기울여서"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "약간 굵은"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "약간 굵은 이탤릭체"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "프린터와 화면에는 같은 글꼴이 사용됩니다."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "이것은 프린터 글꼴입니다. 화면 이미지는 일부 다를 수 있습니다."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "이 글꼴체가 복제되거나 가장 적합한 글꼴체가 사용됩니다."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "이 글꼴은 설치되지 않았습니다. 기존의 가장 적합한 글꼴이 사용됩니다."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "찾아보기..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "홈으로 이동"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "왼쪽으로 이동"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "오른쪽으로 이동"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "끝으로 이동"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "추가"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "가로 눈금자"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "세로 눈금자"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1비트 임계값"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1비트 디더링"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4비트 회색조"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 비트 컬러"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 비트 회색조"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 비트 컬러"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 비트 트루 컬러"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "이 이미지에는 %1 KB 정도의 메모리가 필요합니다."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "이 이미지의 파일 크기는 %2 KB이며, %1 KB 정도의 메모리가 필요합니다."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "파일 크기는 %1 KB입니다."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "호스트"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "포트"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "기타 CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "준비"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "일시정지"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "밀린 작업 삭제"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "사용중"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "초기화"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "대기 중"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "준비중"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "진행중"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "인쇄 중"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "오프라인"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "에러"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "알 수 없는 서버"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "용지 걸림"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "용지가 부족합니다."
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "수동 급지"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "용지 문제"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O 활성"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "출력함이 가득 참"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "토너가 적습니다."
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "토너가 없습니다."
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "페이지 삭제"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "사용자 조작이 필요함"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "메모리가 부족합니다."
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "덮개 열림"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "절전 모드"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "기본 프린터"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d 문서"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "마침(~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "다음 (~N) >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< 뒤로(~K)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "단계"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<없음>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "회사"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "부서"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "이름"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "성"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "번지"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "국가"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "우편번호"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "지역(도시)"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "직함"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "직위"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "호칭"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "약어"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "인사말"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "집 전화번호"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "회사 전화번호"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "이메일"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "메모"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "사용자 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "사용자 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "사용자 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "사용자 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "도"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "전화: 사무실"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "호출기"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "휴대용 전화"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "기타 전화"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "달력"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "초대"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME에서 이 작업을 수행하려면 JRE(Java Runtime Environment)가 필요합니다. JRE를 설치하고 %PRODUCTNAME를 다시 시작하십시오."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME에서 이 작업을 실행하려면 %BITNESS-bit 자바 런타임 환경(JRE)이 필요합니다. JRE를 설치하고 %PRODUCTNAME를 다시 시작하십시오."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME 구성이 변경되었습니다. [%PRODUCTNAME] - [기본 설정] - [%PRODUCTNAME] - [고급 설정] 을 선택하고, %PRODUCTNAME에서 사용할 자바 런타임 환경(Java Runtime Environment)을 선택하십시오."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME 구성이 변경되었습니다. [도구] - [기본 설정] - [%PRODUCTNAME] - [고급 설정] 에서 %PRODUCTNAME에서 사용할 자바 런타임 환경(Java Runtime Environment)을 선택하십시오."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME에서 이 작업을 수행하려면 JRE(Java Runtime Environment)가 필요합니다. 하지만 선택한 JRE에 결함이 있습니다. 다른 버전을 선택하거나 새 JRE를 설치한 다음 [%PRODUCTNAM] - [도구] - [기본 설정] - [%PRODUCTNAME] - [고급 설정] 에서 JRE를 선택하십시오."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME에서 이 작업을 수행하려면 JRE(Java Runtime Environment)가 필요합니다. 하지만 선택한 JRE에 결함이 있습니다. 다른 버전을 선택하거나 새 JRE를 설치한 다음 [%PRODUCTNAM] - [도구] - [기본 설정] - [%PRODUCTNAME] - [고급 설정] 에서 JRE를 선택하십시오."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE 필요"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE 선택"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE에 결함이 있음"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "원본 코드"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "책갈피 파일"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "그래픽"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "구성 파일"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "응용 프로그램"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "데이터베이스 표"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "시스템 파일"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word 문서"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "도움말 파일"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML 문서"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "보관 파일"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "로그 파일"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 데이터베이스"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0/5.0 마스터 문서"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 이미지"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "텍스트 파일"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "링크"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 서식 파일"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel 문서"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel 서식 파일"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "일괄 처리 파일"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "파일"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "폴더"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "텍스트 문서"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "스프레드시트"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "프레젠테이션"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "그림"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML 문서"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "마스터 문서"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "수식"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "데이터베이스"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "오픈오피스 1.0 스프레드시트 서식 파일"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "오픈오피스 1.0 그리기 서식 파일"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "오픈오피스 1.0 프레젠테이션 서식 파일"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "오픈오피스 1.0 텍스트 문서 서식 파일"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "로컬 드라이브"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "디스크 드라이브"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM 드라이브"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "네트워크 연결"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint 문서"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint 서식 파일"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint 쇼"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "오픈오피스 1.0 수식"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "오픈오피스 1.0 차트"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "오픈오피스 1.0 그리기"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "오픈오피스 1.0 스프레드시트"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "오픈오피스 1.0 프레젠테이션"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "오픈오피스 1.0 텍스트 문서"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "오픈오피스 1.0 마스터 문서"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML 문서"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument 데이터베이스"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument 그리기"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument 수식"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument 마스터 문서"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument 프레젠테이션"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument 스프레드시트"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument텍스트"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument 스프레드시트 서식 파일"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument 그리기 서식 파일"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument 프레젠테이션 서식 파일"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument 텍스트 서식 파일"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME 확장"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell 맞춤법검사기"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen 하이픈 생성기"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "신화 백과사전"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "무시할 단어 목록"
diff --git a/source/ko/svx/messages.po b/source/ko/svx/messages.po
index d201140b89f..258528017b4 100644
--- a/source/ko/svx/messages.po
+++ b/source/ko/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-16 07:04+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "왼쪽에서 오른쪽으로 (세로)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "그라디언트 음영 스타일의 가운데에서 수직 오프셋 백분율을 지정하십시오. 수직 중심은 50%입니다."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "윤곽 편집기"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "적용"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "작업 영역"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "선택"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "직사각형"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "타원"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "다각형"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "점 편집"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "점 이동"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "점 삽입"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "점 삭제"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "자동 윤곽"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "실행 취소 "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "재실행"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "피펫(Pipette)"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "색상 오차"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "바닥글"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "이미지맵 편집기"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "적용"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "열기..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "저장..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "닫기"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "선택"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "직사각형"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "타원"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "다각형"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "자유 다각형"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "점 편집"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "점 이동"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "점 삽입"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "점 삭제"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "실행 취소 "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "재실행"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "활성"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "매크로..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "속성..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "주소:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "틀:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "텍스트:"
diff --git a/source/ko/sw/messages.po b/source/ko/sw/messages.po
index b75788b57f6..fd6d9b7eb2f 100644
--- a/source/ko/sw/messages.po
+++ b/source/ko/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ko\n"
@@ -3106,9 +3106,9 @@ msgid "Change object title of $1"
msgstr "$1의 개체 제목 바꾸기"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1의 개체 설명 바꾸기"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -11995,147 +11995,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "도움말(_H)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "파일(~F)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "홈(_H)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "홈(~H)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "삽입(_I)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "삽입(~I)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "레이아웃(_L)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "레이아웃(~L)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "참조(_S)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "참조(~S)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "리뷰(_R)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "리뷰(~R)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "보기(_V)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "보기(~V)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "표(_T)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "표(~T)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "이미지(_G)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "이미지(~G)"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12145,152 +12145,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "파일(_F)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "삽입(_I)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "줄 바꾸기"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "레이아웃"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "참조(_S)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "검토(_R)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "보기(_V)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "표(_A)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "이미지"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "그리기(_R)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "개체"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "미디어(_M)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "인쇄"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "도구(_T)"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13357,8 +13357,8 @@ msgstr "양쪽 맞춤 단락에서 수동 줄 바꿈을 사용하여 줄의 단
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "양식 보호"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16638,47 +16638,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "내용, 인덱스, 참고 문헌에 관한 표"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "미리보기"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "미리보기"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "유형"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "항목"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "스타일"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "열"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "배경"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "미리보기"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "수준(_L)"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "유형(_T)"
@@ -16908,302 +16908,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "편집(_E)..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "제목(_T):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "유형:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "목차"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "알파벳순 색인"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "그림 목차"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "표 색인"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "사용자 정의"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "개체 표"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "참고 문헌"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "수동 변경으로부터 보호"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "유형 및 제목"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "대상:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "전체 문서"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "장"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "수준 평가:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "색인/목차 만들기"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "개요"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "인덱스 표시(_X)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "표"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "텍스트 틀(_X)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "그래픽"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE 개체"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "원래 장에서의 수준 사용"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "추가 스타일(_A)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "스타일(_E)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "스타일 지정..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "캡션"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "개체명"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "카테고리:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "화면표시:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "참조"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "카테고리 및 번호"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "캡션 내용"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "다음으로부터 만들기"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "다음 개체로부터 만들기"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "괄호(_B):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "번호 항목(_N)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[없음]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "항목의 서식 지정"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "동일 항목 합치기"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "p 또는 pp 동일 항목을 하나로 묶음(_P)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "- 로 결합"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "대소문자 구별"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "자동 대문자 변환 항목"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "분리된 항목으로서의 키"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "일치하는 파일(_C)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "파일(_F)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "선택 사항"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "언어:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "키 유형:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "정렬"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "수준(_L)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "단락 스타일(_S)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "기본값(_D)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "편집(_E)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "배정"
diff --git a/source/kok/cui/messages.po b/source/kok/cui/messages.po
index 15332d33a35..6e520888873 100644
--- a/source/kok/cui/messages.po
+++ b/source/kok/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1685,107 +1685,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "देगो सेट करप ना"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "भायली देगच सेट करात"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "भायली देग सेट करात आनी आडवे वळी"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "भायली देग सेट करात आनी सगळ्यो भितरल्यो वळी"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "भायली देग सेट करप भितरल्यो वळी बदलनासतना"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "तिरश्यो वळीच सेट करात"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "चारुय देग सेट करात"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "दावे वटेतली आनी उजवे वटेतली देग सेट करात"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "वयली आनी मुळांतली देग सेट करात"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "फकत दावे वटेतलीच देग दवरात"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "वयल्यो आनी तळाक आशिल्लयो देग सेट करात,आनी सगळयो भितरल्यो वळीSet Top and Bottom Borders and All Inner Lines"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "दावे वटेतली आनी उजवे वटेतली देग सेट करात,आनी सगळ्यो भितरल्यो वळीSet Left and Right Borders and All Inner Lines"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "सावळी ना"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "उजव्या मुळाक शेडो सांचय"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "उजवे वयर शेडो सांचय"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "दाव्या तळाक शेडो सांचय (~s)"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "दावे वयर शेडो सांचय"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1828,7 +1823,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1948,7 +1943,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2188,7 +2183,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2443,12 +2438,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2518,7 +2513,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2598,7 +2593,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2839,7 +2834,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3454,68 +3449,73 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME विशीं"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "म्हजी वेबसायट"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME API"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3640,19 +3640,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "बदलात"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "बदलात"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "रुंदाय"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4524,6 +4524,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5707,29 +5867,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "वैशिश्ट्यां"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "चौकट :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "नाव"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9511,86 +9671,86 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदत"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME संवाद"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME संवाद"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "दस्तावेज नाव \\स्थितिः "
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "आनिक"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "व्यवस्था सुरू जातास्तना %PRODUCTNAME लागू करात"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "सिस्ट्रे क्विकस्टार्टर अक्षम करात."
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11546,24 +11706,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12224,102 +12369,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13394,27 +13443,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/kok/extensions/messages.po b/source/kok/extensions/messages.po
index b687dd30038..cf6ea1fd9d9 100644
--- a/source/kok/extensions/messages.po
+++ b/source/kok/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3246,191 +3246,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "कोष्टक %1 खातीर स्तंभ रचना"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "ल्हान नाव"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "बरोवपीं"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "प्रकाशक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "धडो"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "सम्पादक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "प्रकार"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "वर्स"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "मथळो"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "नामो"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "पान (नां)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "आवृत्ती"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "पुस्तक मथळो"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "प्रमाण"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "प्रकाशन प्रकार"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "संघटना"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "संस्था"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "विद्यापीठ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "अहवालाचो प्रकार"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "म्हयनो"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "नेमाळें"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "क्रमांक "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "मालिका"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "टीपण"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "टीपण"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "वापर करप्यान व्याख्या केल्ले प्रक्षेत्र 1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "वापर करप्यान व्याख्या केल्ले प्रक्षेत्र 2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "वापर करप्यान व्याख्या केल्ले प्रक्षेत्र 3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "वापर करप्यान व्याख्या केल्ले प्रक्षेत्र ४"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "वापर करप्यान व्याख्या केल्ले प्रक्षेत्र ५"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3612,19 +3612,19 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr " प्रक्षेत्रां जोड"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "सुचोवणी"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
@@ -3633,13 +3633,13 @@ msgstr ""
" उपअर्जींचो वापर करू येता. हे करपाखातीर, प्रधान अर्जीतल्या खंयच्या \n"
" स्तंभांकडेन उपअर्जीतले खंयचे स्तंभ जुळटात ते स्पश्ट करूं येता."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "लेबल"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
index 0e2a5fdeb98..3ab7507cecd 100644
--- a/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23758,6 +23758,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26116,6 +26125,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26134,6 +26152,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/kok/sc/messages.po b/source/kok/sc/messages.po
index 043a128d1d0..eb3043f56c6 100644
--- a/source/kok/sc/messages.po
+++ b/source/kok/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15561,6 +15561,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16134,12 +16139,12 @@ msgstr "सशर्त रचना"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17430,90 +17435,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "बंद"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "नवो अभिलेख"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "नवीन"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "काडून उडयात"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "पूर्वस्थिती"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "पयलीचो अभिलेख"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "फुडलो अभिलेख"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "बंद"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ब्रावज्..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "म्हायतीकोश व्याप्ती"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19321,35 +19283,40 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "म्हायती"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "स्तंभ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "रांग"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "न केल्लो गट: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "मध्यंतर"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19496,167 +19463,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22290,17 +22259,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24275,111 +24254,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "जनेल"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "दाखयात"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "लिपयात"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "पान खण्ड"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "तक्ते"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "वस्तींचे चित्र काडप"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "दाखयात"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "लिपयात"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "दाखयात"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "लिपयात"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "दाखयात"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "लिपयात"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "वस्ती"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/kok/scp2/source/ooo.po b/source/kok/scp2/source/ooo.po
index ea78b0bd5c7..7c52b9c0106 100644
--- a/source/kok/scp2/source/ooo.po
+++ b/source/kok/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "दस्तावेज उगडात"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/kok/scp2/source/winexplorerext.po b/source/kok/scp2/source/winexplorerext.po
index bf571593843..2587451f5e7 100644
--- a/source/kok/scp2/source/winexplorerext.po
+++ b/source/kok/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 09:46+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2014-09-26 09:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1411722581.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "%PRODUCTNAME दस्तावेजाविशीं म्हायती दाखोवपाखातीर मायक्रोसॉफ्ट विंडोज एक्सप्लोरराक सक्षम करता. देखीक, लघुरूप पूर्वदृश्य."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/kok/sd/messages.po b/source/kok/sd/messages.po
index cebd5e08a36..9e1910e82d1 100644
--- a/source/kok/sd/messages.po
+++ b/source/kok/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2649,6 +2649,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3129,164 +3134,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4774,160 +4964,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/kok/sfx2/messages.po b/source/kok/sfx2/messages.po
index fc2d63b29f5..3c3888cb7ef 100644
--- a/source/kok/sfx2/messages.po
+++ b/source/kok/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -918,11 +918,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "लक्षणां काडात"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -932,28 +927,28 @@ msgstr ""
"The value entered does not match the specified type.\n"
" The value will be stored as text."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "धारिका पयलीसावन आसा. वयर बरोवया?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "परतून स्थापित करात"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "नाव पयलीसावन् वापरांत आसा."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ही शैली अस्तित्वांत ना."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -963,7 +958,7 @@ msgstr ""
"ही शैली पायो शैली म्हण वापरुपाक येना\n"
"कारण ताचो परिणाम प्रत्यावर्ती संदर्बांत जांव येता."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -972,7 +967,7 @@ msgstr ""
"नाव पयलीसावन् मुळावे शैलींत आसा. \n"
"उपकार करून दुसरे नाव निवडात."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -980,98 +975,98 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "मार्गनिर्देशक"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "सदोश गुप्त शब्दाक दुजोरो"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "धाडात"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "अक्षरसंच"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "आवृति टिपणी घालात"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "शैली "
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "क्रमान रचिल्ले"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "रचना भरात स्थिती"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "निवडीतल्यान नवी शैली"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "शैली अद्ययावत करात"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "अभिलेखन तुमका रद्द करपाचे आसा? ह्या बिंदुमेरेन अभिलिखित केल्ली सगळी सोपाणां रद्द जातली."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "अभिलेखन थांबयात"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "प्रारुपां पयलेच फावट वापराखातीर चालू करता."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1080,7 +1075,7 @@ msgstr ""
"मुळावो मुद्रक मेळ्ळो ना\n"
"उपकार करून मुद्रकाची निवड करात आनिक परतून यत्न करात."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1089,17 +1084,17 @@ msgstr ""
"मुद्रक सुरु करपाक शकना.\n"
"उपकार करून तुमची मुद्रक संरचनाय तपासात."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "मुद्रक व्यस्त"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (फकत वाचपाखातीर)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1110,7 +1105,7 @@ msgstr ""
"तुमकां नवीन स्थापितांची\n"
"सक्रीय दस्तावेजांत जतनाय करपाची आसा ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1121,7 +1116,7 @@ msgstr ""
"नवीन स्थापितांची सक्रीय दस्तावेजांत \n"
"जतनाय करपाची ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1132,7 +1127,7 @@ msgstr ""
"तुमकां नवीन स्थापितांची\n"
"सक्रीय दस्तावेजांत जतनाय करपाची आसा ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1142,7 +1137,7 @@ msgstr ""
"दस्तावेज बंद करपाक शकना, कारण a\n"
"छापपाचे काम चालू आसा."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1150,7 +1145,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1158,18 +1153,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ह्या दस्तावेजाचे सम्पादन करपाक येना. चड करून प्रवेश हक्क शेणिल्ले आशिल्ल्यान. तुमीं दस्तावेजाची प्रत सम्पादित करपाक सोदतात?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1177,352 +1172,362 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (दुरुस्ती केल्लो दस्तावेज)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "दस्तावेज सम्पादन"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "धारिका दस्तावेज"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "डॉक"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "अनडॉक"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "वर्गीकरण पर्याय"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "काडात"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1882,33 +1887,18 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "आवृत्ती टिपणी"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "नाव"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "प्रकार"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "मोल"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "प्रकार"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
#, fuzzy
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "हंय"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "ना"
@@ -1918,17 +1908,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "नाव"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "प्रकार"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "मोल"
@@ -2069,19 +2059,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ठिकाण:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "प्रकार:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "गुप्त शब्द बदलात"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2092,28 +2082,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "सर्वसादारण"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "विवरण"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2337,6 +2327,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/kok/shell/messages.po b/source/kok/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/kok/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/kok/starmath/messages.po b/source/kok/starmath/messages.po
index 2cd7103c4ab..90a3a82d956 100644
--- a/source/kok/starmath/messages.po
+++ b/source/kok/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1660,278 +1660,303 @@ msgid "Examples"
msgstr "देख"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "प्रमाणित"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "तिरके"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ठळक"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "काळो"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "निळो"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "पाचवो"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "तांबडोTambddo"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "सियानPachovoNillo"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "मॅजेन्टा"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "कड्डो"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "वेळ"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "जांबळोZamblli"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "हळदुवो"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "लिपयात"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "आकार"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "अक्षरसंच"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "दावे"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "केंद्र"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "उजवे"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "आदेश"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "सुत्र"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "दस्तावेजाची जतनाय करता..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION सूत्र"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "त्रुटी: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "अनपेक्षित अक्षर"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' अपेक्षित"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' अपेक्षित"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' अपेक्षित"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' अपेक्षित"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' अपेक्षित"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "रंगाची गरज"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' अपेक्षित"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME API"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "आशय"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "मथळो"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "सुत्र मजकूर"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "शीमो"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "आकार"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "मूळ आकार"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "पानांत बसयात"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2004,6 +2029,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "मूलद्रव्यां"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/kok/svtools/messages.po b/source/kok/svtools/messages.po
index 390fdaa2574..5693b56ab8e 100644
--- a/source/kok/svtools/messages.po
+++ b/source/kok/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1538 +15,1540 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195654.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "करू नाकात:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "परतून करात:"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "परतून एक फावट:"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "रचना न केल्लो मजकूर"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx भीतल्ल्या जोडणेसावन् स्थितीची म्हायती"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "नेटस्केप पुस्तकखुणो"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टार सर्व्हर रचना"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टार वस्त रचना"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "एप्लेट वस्त"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लग-ईन वस्त"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "स्टार रायटर 3.0 वस्त"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "स्टार रायटर 4.0 वस्त"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "स्टार रायटर 5.0 वस्त"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "स्टार रायटर / वेब 4.0 वस्त"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "स्टार रायटर / वेब 5.0 वस्त"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "स्टार रायटर / प्रधान 4.0 वस्त"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "स्टार रायटर / प्रधान 5.0 वस्त"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "स्टार ड्रॉ वस्त"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "स्टार ड्रॉ 4.0 वस्त"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "स्टार इंप्रेस 5.0 वस्त"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "स्टार ड्रॉ 5.0 वस्त"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "स्टार गणन वस्त"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "स्टार गणन 4.0 वस्त"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "स्टार गणन 5.0 वस्त"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "स्टार कोष्टक वस्त"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "स्टार कोष्टक 4.0 वस्त"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "स्टार कोष्टक 5.0 वस्त"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "स्टार प्रतिमा वस्त"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "स्टार प्रतिमा 4.0 वस्त"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "स्टार प्रतिमा 5.0 वस्त"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "स्टार गणित वस्त"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "स्टार गणित 4.0 वस्त"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "स्टार गणित 5.0 वस्त"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "स्टारऑब्जेक्ट पेंटवस्त"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "मायक्रोसॉफ्ट वर्ड वस्त"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "स्टार फ्रेम सेट वस्त"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ऑफिस दस्तावेज वस्त"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "नोटस् दस्तावेज म्हायती"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx दस्तावेज"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "स्टार कोष्टक 5.0 वस्त"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "चित्र वस्त"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "विंडोज मेटाधारिका"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "म्हायती स्त्रोत वस्त"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "म्हायती स्त्रोत कोष्टक"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL प्रस्न"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "जोड"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "टिपणीशिवाय HTML रचना"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "वस्त % घालपाक शकना."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "धारिका % मदली वस्त घालपाक शकना"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "मुखावेल्यो वस्ती"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "अज्ञात स्त्रोत"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "नाव"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "आकार"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "बदलील्ली तारीक"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "प्रकार"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बायटस्"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "वळ: %1,स्तंभ : %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", प्रकार: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "धारक"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "धारिका"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "मेकळें प्रक्षेत्र"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "अक्षरसांख्यीक"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "सामान्य"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "अक्षरसंच"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिन्यीन"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "रेघ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "मूलगामी"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "युनिकोड"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "झुइन"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "नामो पुस्तक"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "उच्चाराप्रमाण (अक्षरसांख्यिक पयले)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "उच्चाराप्रमाण (अक्षरसांख्यिक निमणे)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "अक्षरसांख्यीक"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिन्यीन"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "मूलगामी"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "रेघ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "झुइन"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "उच्चाराप्रमाण (अक्षरसांख्यिक पयले, अभ्यासक्रमाप्रमाण गट केल्या)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "उच्चाराप्रमाण (अक्षरसांख्यिक पयले, व्यंजनदर्शक वर्णाप्रमाण गट केल्या)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "उच्चाराप्रमाण (अक्षरसांख्यिक निमणे, अभ्यासक्रमानुसार गट केल्या)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "उच्चाराप्रमाण (अक्षरसांख्यिक निमणे, व्यंजनदर्शक वर्णाप्रमाण गट केल्या)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "आयज"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "कोण ना"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "हलके"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "हलके तिरके"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "नियमित"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "तिरके"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ठळक"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ठळक तिरपो"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "काळो"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "काळो तिरपो"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "पुस्तक"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "चेपिल्ले"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "कमी बॉल्डordhem Ttollok"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "तुमच्या मुद्रकार आनिक पड्ड्यार एकूच अक्षरसंच वापल्लो वतलो."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "हा मुद्रकालो अक्षरसंच. पड्ड्यावेली प्रतिमा वेगळी आसू येता."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "ह्या अक्षरसंच शैलीची नक्कल केली वतली वा लागीची जुळपी शैली वापल्ली वतली."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "हो अक्षरसंच प्रतिष्ठापित ना. लागीचो उपलब्द आशिल्लो अक्षरसंच वापल्लो वतलो."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ब्रावज्..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "चौकट हालयात"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "दाव्यान व्हरात"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "उजव्यान हालयात"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "सकयल व्हरात"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "जोडाप (~w)zodd"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "आडवें भायर"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "उबी फूटपट्टी"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 बिट थ्रेशोल्ड"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "१ बिट डिथर्ड"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "४ बिट कड्डे प्रमाण"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "४ बिट कड्डे प्रमाण"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "२४ बिट खरे रंग"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "किंमत"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "वर्गीकरण"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr ""
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "सुरू करता"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "वाट पळयता"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "त्रुटी"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "पान काडून उडयात"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "अपुरी स्मृती"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "मुळावो मुद्रक"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "वर्ड दस्तावेज"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "सोपले"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "मुखावेलें >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<<फाटल्यान"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "पावलां"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<कोण ना>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "कंपनी"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "खातें"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "पयले नाव"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "निमणें नाव"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "रस्तो"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr " देश"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Zip सांकेतिक क्रमांक"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "शार"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "मथळो"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "स्थान"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "नामो अर्जी"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "आद्याक्षरां"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "भेटस्वरुपांत बंद"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "दूरध्वनी : घर"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "दूरध्वनी : काम"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "टीपण"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "वापरपी 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "वापरपी 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "वापरपी 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "वापरपी 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "राज्य"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "दूरध्वनी : कार्यालय"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजर"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मोबायल"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "दूरध्वनी :हेर"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "कॅलिंडर"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "आपसूक आपयात"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE गरजेचे"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE निवडात"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE सदोश आसा"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr " स्त्रोत संकेत"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "पुस्तकखूण धारिका"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "चित्रां"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "संरचनाय धारिका"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "अनुप्रयोग"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "म्हायतीको कोष्टक"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "व्यवस्था धारिका"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "मायक्रोसॉफ्ट वर्ड दस्तावेज"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "मदत धारिका"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML दस्तावेज"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "पुरातत्त्व धारिका"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लॉगधारिका"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 प्रारुप"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 मुळावो दस्तावेज"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 प्रारुप"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "मजकूर धारिका"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "जोड"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 प्रारुप"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "मायक्रोसॉफ्ट एक्सेल दस्तावेज"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "मायक्रोसॉफ्ट एक्सेल प्रारुप"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "वांगडी धारिका"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "धारिका"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "धारक"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "मजकूर दस्तावेज"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रेडशीट्"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "सादरीकरण"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "चित्रा काडप"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML दस्तावेज"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "प्रधान दस्तावेज"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "सुत्र"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "म्हायतीकोश"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "थळावो ड्रायव्ह"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "डिस्क ड्रायव्ह"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ड्रायव्ह"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "नेटवर्क जुळणी"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "मायक्रोसॉफ्ट पॉवरपॉईंट दस्तावेज"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "मायक्रोसॉफ्ट पॉवरपॉईंट दस्तावेज"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "मायक्रोसॉफ्ट पॉवरपॉईंट खेळ"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML दस्तावेज"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ओपनडॉक्युमेंट म्हायतीकोश"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ओपनडॉक्युमेंट चित्रकला"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ओपनडॉक्युमेंट सूत्र "
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ओपनडॉक्युमेंट प्रधान दस्तावेज"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ओपनडॉक्युमेंट सादरीकरण"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ओपनडॉक्युमेंट स्प्रेडशीट्"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ओपनडॉक्युमेंट मजकूर"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ओपनडॉक्युमेंट स्प्रेडशीट् प्रारूप"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ओपनडॉक्युमेंट चित्रकला प्रारुप "
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ओपनडॉक्युमेंट सादरीकरण प्रारूप"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ओपनडॉक्युमेंट मजकूर प्रारूप"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME विस्तार%PRODUCTNAME Vistar"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/kok/svx/messages.po b/source/kok/svx/messages.po
index 5a025a420cc..f4b8d47e36e 100644
--- a/source/kok/svx/messages.po
+++ b/source/kok/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8107,6 +8107,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12635,88 +12640,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "वलय संपादक"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
#, fuzzy
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "लागू करात"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "कार्यस्थान"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "निवड करात"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "आयत"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "दीर्घवृत्त"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुज"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिन्दुंचे सम्पादन"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिंदू हालयात"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "अनेक बिन्दु घालात"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिंदू काडून उडयात"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "आपसूक भायलीवळ"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "करू नाकात"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "तांबडो"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13056,125 +13066,119 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "चरणलेख"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "प्रतिमा नक्शो संपादपी"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
#, fuzzy
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "लागू करात"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "उगडात..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "जतनाय ..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "बंद"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "निवड करात"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "आयत"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "दीर्घवृत्त"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुज"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "मेकळो बहुकोण"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिन्दुंचे सम्पादन"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिंदू हालयात"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "अनेक बिन्दु घालात"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिंदू काडून उडयात"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "करू नाकात"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "तांबडो"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "सक्रीय"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "मॅक्रो..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "वैशिश्ट्यां"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "नामो :"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "चौकट"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/kok/sw/messages.po b/source/kok/sw/messages.po
index 5b567bda4eb..1dd804861da 100644
--- a/source/kok/sw/messages.po
+++ b/source/kok/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kok\n"
@@ -3178,10 +3178,9 @@ msgid "Change object title of $1"
msgstr "%1 च्या वस्तूचो माथाळो बदलात%1 chea vostu mhatallem bodol"
#: sw/inc/strings.hrc:544
-#, fuzzy
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "%1 च्या वस्तूचो माथाळो बदलात%1 chem vostu vivoronn bodol"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12671,147 +12670,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12821,152 +12820,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14082,7 +14081,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17614,50 +17613,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "पूर्वदृश्य"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "पूर्वदृश्य"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "प्रकार"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "नोंदी"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "शैली "
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "स्तंभ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "फांटभूंय"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "पूर्वदृश्य"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "पातळी"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17902,326 +17901,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "सम्पादन..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "मथळो:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "प्रकार"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "कोष्टक विशय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "वापर करप्यान केल्ली व्याख्या"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ग्रंथावळ 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "अर्जी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "पुराय दस्तावेज"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "धडो"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "भायलीवळ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "कोष्टकां"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "मजकूर चौकट"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "चित्रां"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE वस्ती"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "सशर्त शैली"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "शैली "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "पर्याय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "वस्त नाव"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "विबाग"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "दर्शन"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "संदर्ब "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "विबाग आनिक क्रमांक"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "वळ मजकूर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr " कंस"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[कोण ना] "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "धारिका"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
#, fuzzy
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "पर्याय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "भाशा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "चावी प्रकार"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "वर्गीकरण"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "पातळी"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(परिच्छेद शैली: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "मूळMullavi"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "सम्पादन"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/ks/cui/messages.po b/source/ks/cui/messages.po
index 849e7436868..48d5d3db424 100644
--- a/source/ks/cui/messages.po
+++ b/source/ks/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1670,107 +1670,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "كہین ژھای چھنئ"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1813,7 +1808,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1933,7 +1928,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2173,7 +2168,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2428,12 +2423,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2503,7 +2498,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2583,7 +2578,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2824,7 +2819,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3449,68 +3444,73 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAMEمتعلق"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "میئن ویب سائٹ"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME API"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3634,19 +3634,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "~گڈنیچئ جاے پیٹھ تھئویو"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "~گڈنیچئ جاے پیٹھ تھئویو"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "كھجر"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4519,6 +4519,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5709,29 +5869,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "خصوصیات"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "فریم"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "نام"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9487,84 +9647,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "مدد"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr " %PRODUCTNAME ڈائیلاگز"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr " %PRODUCTNAME ڈائیلاگز"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "بےیئ"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr " %PRODUCTNAMEسسٹم اسٹارٹ اپ کے دوران لوڈ کرو۔"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11531,24 +11691,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12223,102 +12368,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13396,27 +13445,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ks/extensions/messages.po b/source/ks/extensions/messages.po
index d0a37a614f5..b0eeb1a0b74 100644
--- a/source/ks/extensions/messages.po
+++ b/source/ks/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3205,191 +3205,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr " کالم لےآؤٹ جدول خعطرئ %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "مختصر نام "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "لكھآر"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "ناشر"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "باب"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "مدیر"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "ٹائپ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "وری"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "عنوان"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "ایڈریس"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr " ~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "صفحئ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "اشاعت "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "کتابئ ہُند ناو"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "والیوم"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "اشاعتی قسم"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "تنظیم کرُن"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "مقام "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "جامعہ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "رپوٹك قسئم ٹائپ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "ریتھ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "جرنل"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "نمبر"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "ترتیب "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "تبصرہ کرُن"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "نوٹ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "استیمال كرن وۄل-خلاصئ كرمُت شعبہ1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "استیمال كرن وۄل-خلاصئ كرمُت شعبہ2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "استیمال كرن وۄل-خلاصئ كرمُت شعبہ3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "استیمال كرن وۄل-خلاصئ كرمُت شعبہ4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "استیمال كرن وۄل-خلاصئ كرمُت شعبہ5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3572,30 +3572,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "شبعہ جوڑیو"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "مشورہ "
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "لیبل "
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
index 70dc25f1717..998291aa950 100644
--- a/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23756,6 +23756,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26111,6 +26120,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26129,6 +26147,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ks/sc/messages.po b/source/ks/sc/messages.po
index 68f5e7a053b..be0ab21506f 100644
--- a/source/ks/sc/messages.po
+++ b/source/ks/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15642,6 +15642,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
#, fuzzy
msgctxt "subtotalgrppage|liststore1"
@@ -16216,12 +16221,12 @@ msgstr "مشروط شکل دین "
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17509,90 +17514,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "~بند كریو"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "نیاریکارڈ"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "نیا"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "خئرج کرُن"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "ری اسٹورکرو"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "پچھلاریکارڈ"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "اگلاریکارڈ"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "~بند كریو"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "براؤز"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ڈاٹابیسك حد "
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19400,36 +19362,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "ڈاٹا"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "کالم"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "کالم"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr ":گروپ كرنئ آمُت"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "وقفہ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19578,167 +19545,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22382,17 +22351,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24364,111 +24343,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "ونڈو"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "ہٲویو"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "ژورئ تھٲویو"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "پیج بریک"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "چارٹس "
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr " آبجیكٹس بناوان"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "ہٲویو"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "ژورئ تھٲویو"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "ہٲویو"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "ژورئ تھٲویو"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "ہٲویو"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "ژورئ تھٲویو"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "آبجیکٹس "
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr " زوم"
diff --git a/source/ks/scp2/source/ooo.po b/source/ks/scp2/source/ooo.po
index c6fdc59ccc6..6500564a1e8 100644
--- a/source/ks/scp2/source/ooo.po
+++ b/source/ks/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "دستاویزکھولو"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ks/scp2/source/winexplorerext.po b/source/ks/scp2/source/winexplorerext.po
index aa9ffbf4d88..0399b1a55c1 100644
--- a/source/ks/scp2/source/winexplorerext.po
+++ b/source/ks/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 13:39+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369353380.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "مایکروسافٹ ونڈوزایکسپلوررکوقابل بناتا ہے%PRODUCTNAMEدستاویزکی معلومات دکھانے کے لئے،جےسے کے تھمب نیل پری ویوز۔"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ks/sd/messages.po b/source/ks/sd/messages.po
index 1f610e8543b..38551e91136 100644
--- a/source/ks/sd/messages.po
+++ b/source/ks/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2655,6 +2655,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3146,164 +3151,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4794,160 +4984,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ks/sfx2/messages.po b/source/ks/sfx2/messages.po
index 792f2e26fbb..571c1f1b173 100644
--- a/source/ks/sfx2/messages.po
+++ b/source/ks/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -901,39 +901,34 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "فائلچھئ گوڈئی موجود ۔اوررائٹ؟"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "ری سیٹ کرو"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "یہ نام پہلے سے استعمال میں ہے۔"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "یہ اسٹائل موجود نہیں ہے۔"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -943,7 +938,7 @@ msgstr ""
"یہ اسٹائل بیس اسٹائل کے طور پر استعمال نہیں ہو سکتی،\n"
"کیونکہ یہ ری کرسیو ریفرینس کے طور پر ظاہر ہوگا۔"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -952,7 +947,7 @@ msgstr ""
"ڈی فالٹ جیسے نام موجود نہیں ہے۔\n"
"براہ کرم دوسرا نام منتخب کریں۔"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -960,98 +955,98 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "نیویگیٹر"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "غلط خفیہ لفظ تصدیق"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "بھیجنا"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
#, fuzzy
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "فانٹ"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "ورجن رائےداخل کرو"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "درجہ وار"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "فارمیٹ موڈ بھرو"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "انتخاب کا نیاطریقہ"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "اسٹائل کواپ ڈیٹ کرو"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "کیا آپ واقعی ریکارڈینگ خارج کرنا چاہتے ہیں؟اس مرحلے پر کیا گیا کوئی بھی ریکارڈ گم ہو جاۓ گا۔"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ریکارڈینگ خارج کرو"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "پہلی بار استعمال کے لئے ٹیمپلیٹس انیشیئلائز کئے جارہے ہیں۔"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1060,7 +1055,7 @@ msgstr ""
"ڈیفالٹ پرینٹرموجودنہیں ہے۔\n"
"براہ کرم پرینٹرپسند کرو اوردوبارہ کوشش کرو۔"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1069,17 +1064,17 @@ msgstr ""
"پرینٹرشروع نہیں کرو۔\n"
"براہ کرم آپ کہ پرینٹر کی ہئيت چیک کرو۔"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "پرنٹرمصروف ہے"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(صرف-پڑھو)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1090,7 +1085,7 @@ msgstr ""
"کیا آپ نئی سیٹینگس محفوظ کرنا چاہوگے\n"
"فعال دستاویزمیں؟"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1101,7 +1096,7 @@ msgstr ""
"کیا فعال دستاویزمیں نئی سیٹینگس \n"
"محفوظ کی جانی چاہئیے؟"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1112,7 +1107,7 @@ msgstr ""
"کیا آپ نئی سیٹینگس محفوظ کرنا چاہوگے\n"
"فعال دستاویزمیں؟"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1122,7 +1117,7 @@ msgstr ""
"دستاویز بندنہیں کی جاسکتی کیونکہ\n"
"پرنٹ کا عمل ہوچکا ہے۔"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1130,7 +1125,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1138,18 +1133,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "یہ دستاویز مرتب نہیں کیا جاسکتا،ممکن ہےغائب ایکسیس رائٹس کی وجہ سے۔کیاآپ کودستاویز کی نقل مرتب کرنی ہیں؟"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1157,352 +1152,362 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "(درست کیا گیادستاویز)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "دستاویز مرتب کرو"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "فائل دستاویز"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "سارٹ متبئدل "
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ہٹئویو"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1862,35 +1867,18 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "ورجن کمینٹ"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-#, fuzzy
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Name"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-#, fuzzy
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "ٹائپ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "قئمتھ"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
#, fuzzy
msgctxt "cmisline|type"
msgid "Type"
msgstr "ٹائپ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "عئں"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "نئ"
@@ -1900,19 +1888,19 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
#, fuzzy
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Name"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
#, fuzzy
msgctxt "custominfopage|type"
msgid "Type"
msgstr "ٹائپ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "قئمتھ"
@@ -2053,19 +2041,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "جگہ"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr ":ٹائپ"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "خفیہ لفظ كریو تبدیل ۔۔۔"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2076,29 +2064,29 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "عام"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
#, fuzzy
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "وضاحت"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr ""
@@ -2322,6 +2310,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ks/shell/messages.po b/source/ks/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ks/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ks/starmath/messages.po b/source/ks/starmath/messages.po
index d0e6d11060c..d61f0d78bb5 100644
--- a/source/ks/starmath/messages.po
+++ b/source/ks/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1623,276 +1623,301 @@ msgid "Examples"
msgstr "مّثال"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "معیاری"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ترچھئ"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr " بو٘ڈ"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "سیاہ"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ن۪یول"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "سبز"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "وانگَن رنگ"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "میژ۪ی رنگ"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "وقت "
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "لیدُر"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ژورئ تھٲویو"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "سائز"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "فانٹ"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "كھوفُر "
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "مرکز"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "دَچھُن"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "کمانڈس"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "ضئبطہ"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "دستاویزمحفوظ تھٱوان۔۔۔"
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION ضئبطہ"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR :"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "غئرمتوقع لقظ"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr " '{'متوقع "
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr " متوقع'}' "
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr " ')'متوقع "
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr " ')'متوقع "
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr " متوقع'#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr " رنگچ ضر تھ"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "متوقع'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME API"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "مشمولات"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "عنوان"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "۔ضئبطئ مواد"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "کنارے"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "سائز"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "اصل سائز "
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "۔ صفحس سعتھ بنئویو موزون۔"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1968,6 +1993,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "ایلیمینٹ"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/ks/svtools/messages.po b/source/ks/svtools/messages.po
index d9e694c40dc..e0eab4986a9 100644
--- a/source/ks/svtools/messages.po
+++ b/source/ks/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1538 +15,1540 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195661.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "نہیں کرو:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "دوبارہ کرو۔۔۔"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "دہراؤ:"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "وضع نہ کی گئی متن"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "اسٹیٹس انفو Svxاندونی لنك سے۔"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "نشان زدنیٹ اسكیپ "
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "اسٹار سرور فارمیٹ"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "اسٹار آبجیكٹ فارمیٹ"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "آبجیکٹ اپلیٹ"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "شےکےسامنے"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "اسٹار رائٹر 3.0 object"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "اسٹار رائٹر 4.0 object"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "اسٹار رائٹر 5.0 object"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "اسٹار رائٹرr/Web 4.0 object"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "اسٹار رائٹر/Web 5.0 object"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "اسٹار رائٹر/Master 4.0 object"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "اسٹار رائٹر/Master 5.0 object"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "اسٹار آبجیكٹ بنانا"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "اسٹار ڈرا4.0 آبجیكٹ"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "اسٹار امپریس 5.0 آبجیكٹ"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "اسٹار ڈرا 5.0 آبجیكٹ"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "اسٹار كیلك آبجیكٹ"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "اسٹار كیلك 4.0 آبجیكٹ"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "اسٹار كیلك 5.0 آبجیكٹ"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "اسٹار چارٹ آبجیكٹ"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "اسٹار چارٹ 4.0 آبجیكٹ"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "اسٹار چارٹ 5.0 آبجیكٹ"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "اسٹار امیج آبجیكٹ"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "اسٹار امیج 4.0 آبجیكٹ"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "اسٹار امیج 5.0 object"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "اسٹار میتھ آبجیكٹ"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "اسٹار میتھ 4.0 آبجیكٹ"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "اسٹار میتھ5.0 آبجیكٹ"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "اسٹار آبجیكٹ پینٹ آبجیكٹ"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "سیلك"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "مایكرو سافٹ ورڈ آبجیكٹ"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "اسٹار فریم سیٹ آبجیكٹ"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "آفس دستاویز آبجیكٹ"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "نوٹس دستاویز معلومات"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "دستاویزSfx "
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "اسٹار چارٹ 5.0 آبجیكٹ"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "گرافك آبجیكٹ"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "میٹافائل ونڈوس"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ڈاٹاماخذآبجیكٹ"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "جدول ڈاٹا سورس"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "استفسار - SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "کڑی"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "فارمیٹ تنقید كے بغیرHTML"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "جد ول نہیں ملایاجاسکتا"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "آبجیكٹ فائل % سے داخل نہیں ہوسكتے "
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "زائداشیائ"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "نامعلوم ماخذ"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "نام"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "سائز"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "درست کی ہوئی تاریخ"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "ٹائپ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "بائیٹس"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ": %1, کالم: %2سطر"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", ٹائپ: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "فولڈ ر"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "فائل"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "خالی شبعہ"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "اعداد اورحروف"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "صحیح"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ترتیب لفظ"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "لغت"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "ضرب"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "بنیاد"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "یونی کوڈ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "فون بک"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "تلفظ کےمتعلق (اعدادحرف پہلا)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "تلفظ کےمتعلق (اعدادحرف آخری)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "اعداد اورحروف"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "لغت"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "بنیاد"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "ضرب"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "تلفظ کےمتعلق (اعدادحرف پہلا،گروپ سےرکنوں میں تلفظ کرنا)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "تلفظ کےمتعلق (اعدادحرف پہلاگروپ سےکونسنیٹ)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "تلفظ کےمتعلق (اعدادحرف آخری،گروپ سےرکنوں میں تلفظ کرنا)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "تلفظ کےمتعلق (اعدادحرف آخری گروپ سےکونسنیٹ)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "آج"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "نہیں"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "لائٹ"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ہلکا ترچھا"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "باضابطہ"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ترچھا"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "جلی"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ترچھاجلی"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "سیاہ"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "سیاہ ترچھا "
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "کتاب"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "ژمیئمُت"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "دونوں پرایک جیسےفانٹ استعمال کروآپ چھپائی اورآپ اسکرین پر۔"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "یہ پرنٹرفانٹ ہے۔اسکرین امیج مختلف ہے۔"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "یہ فانٹ اسٹائل اندازاختیارکرتایامیچنگ اسٹائل استعمال کرکے بند کرو۔"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "یہ فانٹ سائزانسٹول نہیں ہوسکتا۔موجودسائزکواستعمال کرکے بندکرو۔"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "براؤز"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "فریم ہٹاو "
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "بائیں جانب جاؤ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "دائیں جانب مقام تبدیل کرو"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "بْون كُن غژھیو"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ملاؤ"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "افقی باہر"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "عمودی رولر"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1بٹ ابتداء"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1بٹ ڈائتھرڈ"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "بھوری بٹ ا سکیل4 "
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "بھوری بٹ ا سکیل4 "
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "بٹ صحیح کلر24 "
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "قیمت"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "سارٹ"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "رکاوٹ"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "انیشیئلائزکران"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "ٹھہراہوا"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "غلطی"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "صفحہ كریو خئرج"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "وئرڈ دستاویز"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "ختم"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "۔پتئ>"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "پیچھے"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr " سٹیپس"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<نہیں>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ادارہ"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "شعبہ"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "پہلانام"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "آخری نام"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "سڑک"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "ملک"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "کوڈZip "
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "شہر"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "عنوان"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "مقام"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "پتہ/عنوان کافارم"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "انیشیئلس"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "كامپلیمینٹری بندکرو"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr " (ٹیلیفون(گھر"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr " (ٹیلیفون(کام"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "نوٹ"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "صارف 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "صارف 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "صارف 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "صارف 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ریاست"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr " (ٹیلیفون(دفتر"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "پیجر"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr " (ٹیلیفون(موبائل"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr " (ٹیلیفون(دیگر"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "کیلینڈر"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "مدعوکرنا"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr " JREکی ضرورت ہے"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JREمنتخب کرو"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JREنا قص ہے"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "ماخذکوڈ"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "نشان زد فائل"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "اشکال"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ہیئت فائل"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "ایپلی کیشن"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ڈاٹابیس جدول"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "سسٹم فائل"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS ورڈدستاویز"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "ہیلپ فائل"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "دستاويزHTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "فائل آرکائیو"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "لاگ فائل"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "اسٹارآفس5.0ٹیمپلیٹ"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "ماسٹردستاویز 4.0 / 5.0 اسٹاررائٹر"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "اسٹارآفس5.0ٹیمپلیٹ"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "متن فائل"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "کڑی"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "اسٹارآفس5.0ٹیمپلیٹ"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS ایکسل دستاویز"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS ایکسل ٹمپلیٹ"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "بیاچ فائل"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "فائل"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "فولڈر"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "متن دستاویز"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "اسپریڈشیٹ"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "پیشکش"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ڈرائینگ"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "دستاويزHTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ماسٹردستاویز"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "ضابطہ"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ڈاٹا بیس"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "مقامی ڈرائیو"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ڈسک ڈرائیو"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "ڈرائیوCD-ROM "
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "نیٹ ورک کنیکشن"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS پاؤرپونٹ دستاویز"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS پاؤرپونٹ ٹمپلیٹ"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS پاؤرپونٹ دکھاؤ"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "میتھ دستاویزML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ڈاٹابیس دستاویز کھولئے"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr " ڈرائینگدستاویزکھولئے"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ضابطہ دستاویزکھولئے"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ماسٹردستاویزکودستاویزمیں کھولئے"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "پیشکش دستاویزکھولئے "
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "اسپریڈشیٹ دستاویزکھولئے"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "متن دستاویز کھولئے"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "دستاویزاسپریڈشیٹ ٹمپلیٹ کھولئے"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ٹمپلیٹ ڈرائینگ دستاویزکھولئے"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ٹمپلیٹ پریزینٹیشن دستاویزکھولئے"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "دستاویزمتن ٹمپلیٹ کھولئے"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ks/svx/messages.po b/source/ks/svx/messages.po
index ea548bd31f6..a74219ca549 100644
--- a/source/ks/svx/messages.po
+++ b/source/ks/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8084,6 +8084,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12601,87 +12606,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "قنطورایڈیٹر"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "لاگوکر"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "کامئ ہنز جاے"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "منتخب کرو"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "مستطیل"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "الیپس"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "پالیگَن"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "نقطوں کومرتب کرو"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "نقطوں کامقام تبدیل کرو"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "نقطےداخل کرو"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "نقطوں کوخارج کرو"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr " پانئی كنطور"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "انڈو "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "ۄزُل"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13022,124 +13032,118 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "صفحك تل۪یم خاش۔"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "‎امیج میپ ایڈیٹر"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "لاگوکر"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "کھولیو۔۔۔"
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "محفوظ۔۔۔"
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "بندکرو"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "منتخب کرو"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "مستطیل"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "الیپس"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "پالیگَن"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "آزادانا پالیگن"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "نقطوں کومرتب کرو"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "نقطوں کامقام تبدیل کرو"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "نقطےداخل کرو"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "نقطوں کوخارج کرو"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "انڈو "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "ۄزُل"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "چالو"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "میکرو"
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "خصوصیات:"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "نیب"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "فریم"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/ks/sw/messages.po b/source/ks/sw/messages.po
index a62f2915425..ecf1e7a8e0d 100644
--- a/source/ks/sw/messages.po
+++ b/source/ks/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ks\n"
@@ -3209,7 +3209,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12751,147 +12751,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12901,152 +12901,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14170,7 +14170,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17729,50 +17729,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "پچھلا"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "پچھلا"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "ٹائپ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "~داخلہ جات"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "اسٹائلز"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "کالمز"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "پس منظر"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "پچھلا"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "سطح"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -18024,326 +18024,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "ایڈیٹ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr ":عنوان"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "ٹائپ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "جد ول مشمولات "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "استیمال كرن وۄل -خلاصئ كرمُت1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "فہرست كتابیات 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "فارم"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "پورئ دستاویز"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "باب"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "آؤٹ لائن"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
#, fuzzy
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "جد ولیں "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "متن فریم "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "اشکال"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE آبجیكٹس "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "مشروط اسٹائلز"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "اسٹائلز"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "آپشنس"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "آبجیکٹ ناو"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "درجہ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "ہاو"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "حوالہ جات "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "درجہ اورنمبر"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "کیپشن متن"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "۔بریكیٹس"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[کوئی نہیں]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "فائل"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "آپشنس"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "زبان"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "سارٹ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "سطح"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "پیراگراف اسٹائل"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "ڈیفالٹ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "مرتب کرو"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/ky/cui/messages.po b/source/ky/cui/messages.po
index aa9095fb807..064f8db814d 100644
--- a/source/ky/cui/messages.po
+++ b/source/ky/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1617,107 +1617,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr ""
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1760,7 +1755,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1880,7 +1875,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2120,7 +2115,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2375,12 +2370,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2450,7 +2445,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2530,7 +2525,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2771,7 +2766,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3355,66 +3350,71 @@ msgid "About %PRODUCTNAME"
msgstr ""
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3529,17 +3529,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4359,6 +4359,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5469,27 +5629,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr ""
@@ -8993,80 +9153,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -10934,24 +11094,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -11579,102 +11724,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12681,27 +12730,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ky/extensions/messages.po b/source/ky/extensions/messages.po
index 9201adf0c6f..ccb0a7fafaf 100644
--- a/source/ky/extensions/messages.po
+++ b/source/ky/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3043,162 +3043,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr ""
@@ -3373,27 +3373,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr ""
diff --git a/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
index 104180e67cc..ed6028485c5 100644
--- a/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23408,6 +23408,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25697,6 +25706,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25715,6 +25733,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ky/sc/messages.po b/source/ky/sc/messages.po
index cddcd6b2754..0703128a9b1 100644
--- a/source/ky/sc/messages.po
+++ b/source/ky/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15121,6 +15121,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15671,12 +15676,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16894,81 +16899,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18684,32 +18649,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr ""
@@ -18849,167 +18819,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21497,17 +21469,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23377,107 +23359,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr ""
diff --git a/source/ky/scp2/source/ooo.po b/source/ky/scp2/source/ooo.po
index 626f8233310..91922fea3d5 100644
--- a/source/ky/scp2/source/ooo.po
+++ b/source/ky/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr ""
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ky/scp2/source/winexplorerext.po b/source/ky/scp2/source/winexplorerext.po
index 6c5e3785e6d..431e3466cfc 100644
--- a/source/ky/scp2/source/winexplorerext.po
+++ b/source/ky/scp2/source/winexplorerext.po
@@ -2,17 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:01+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ky\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=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369353705.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
msgstr ""
diff --git a/source/ky/sd/messages.po b/source/ky/sd/messages.po
index 848e68c6ef8..ae312eb9d29 100644
--- a/source/ky/sd/messages.po
+++ b/source/ky/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2570,6 +2570,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3025,164 +3030,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4571,160 +4761,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ky/sfx2/messages.po b/source/ky/sfx2/messages.po
index 2053b17f9f6..c7d3dafca79 100644
--- a/source/ky/sfx2/messages.po
+++ b/source/ky/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -873,52 +873,47 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr ""
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr ""
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -926,116 +921,116 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr ""
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr ""
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr ""
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr ""
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr ""
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr ""
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr ""
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1043,7 +1038,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1051,7 +1046,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1059,14 +1054,14 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1074,7 +1069,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1082,17 +1077,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1100,349 +1095,359 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr ""
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr ""
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr ""
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1787,32 +1792,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr ""
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr ""
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr ""
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr ""
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr ""
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ооба"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Жок"
@@ -1822,17 +1812,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr ""
@@ -1962,17 +1952,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr ""
@@ -1982,27 +1972,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr ""
@@ -2216,6 +2206,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ky/shell/messages.po b/source/ky/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ky/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ky/starmath/messages.po b/source/ky/starmath/messages.po
index d465419428d..ece0c68b0a3 100644
--- a/source/ky/starmath/messages.po
+++ b/source/ky/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr ""
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr ""
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr ""
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr ""
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr ""
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr ""
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr ""
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr ""
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr ""
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr ""
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr ""
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr ""
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr ""
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr ""
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr ""
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr ""
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr ""
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr ""
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr ""
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr ""
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr ""
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr ""
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr ""
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ky/svtools/messages.po b/source/ky/svtools/messages.po
index 55fae9c1dfa..4f1204316c6 100644
--- a/source/ky/svtools/messages.po
+++ b/source/ky/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1519 +16,1521 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195667.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr ""
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
+msgid "Redo: "
msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr ""
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr ""
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr ""
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr ""
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr ""
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr ""
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr ""
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr ""
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ""
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr ""
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr ""
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr ""
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr ""
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr ""
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr ""
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr ""
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr ""
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr ""
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr ""
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr ""
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Бир азга токтотуу"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr ""
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr ""
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr ""
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr ""
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr ""
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr ""
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr ""
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr ""
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr ""
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr ""
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr ""
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr ""
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr ""
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr ""
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr ""
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr ""
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr ""
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr ""
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr ""
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr ""
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr ""
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr ""
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr ""
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr ""
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr ""
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr ""
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr ""
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr ""
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr ""
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr ""
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr ""
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr ""
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr ""
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr ""
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr ""
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ky/svx/messages.po b/source/ky/svx/messages.po
index dc1ade3da46..d449d8523fc 100644
--- a/source/ky/svx/messages.po
+++ b/source/ky/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7906,6 +7906,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12157,82 +12162,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Колдонуу"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr ""
@@ -12540,112 +12550,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Колдонуу"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr ""
diff --git a/source/ky/sw/messages.po b/source/ky/sw/messages.po
index 36a7946d3b5..e0181a0f2d6 100644
--- a/source/ky/sw/messages.po
+++ b/source/ky/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3105,7 +3105,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -11993,147 +11993,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12143,152 +12143,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13353,7 +13353,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -16631,47 +16631,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr ""
@@ -16901,302 +16901,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr ""
diff --git a/source/lb/cui/messages.po b/source/lb/cui/messages.po
index 447195c8ae2..559554e4777 100644
--- a/source/lb/cui/messages.po
+++ b/source/lb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1637,107 +1637,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Kee Schiet"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1780,7 +1775,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1900,7 +1895,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2140,7 +2135,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2395,12 +2390,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2470,7 +2465,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2550,7 +2545,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2791,7 +2786,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3402,67 +3397,72 @@ msgid "About %PRODUCTNAME"
msgstr ""
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3586,19 +3586,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Ersetzen"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Ersetzen"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Breet"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4454,6 +4454,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5612,29 +5772,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Eegeschaften"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Kontur:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Numm"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9303,83 +9463,83 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hëllef"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME Dialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME Dialoger"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "an"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11307,24 +11467,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -11971,102 +12116,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -13116,27 +13165,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/lb/extensions/messages.po b/source/lb/extensions/messages.po
index 0bcce611145..31ed45f48f0 100644
--- a/source/lb/extensions/messages.po
+++ b/source/lb/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3117,188 +3117,188 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Auteur(en)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "~Verlag"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "~Kapitel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Typ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Joer"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Titel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A~dress"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "~Säit(en)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed~itioun"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~Buchtitel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Band"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Or~ganisatioun"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Institut~ioun"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Universitéit"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Mount"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Magazin"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Nummer"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se~rien"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Ann~otatioun"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "~Note"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Benotzer-definéiert Feld ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Benotzer-definéiert Feld ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Benotzer-definéiert Feld ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Benotzer-definéiert Feld ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Benotzer-definéiert Feld ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr ""
@@ -3478,28 +3478,28 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Bezeechnung"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
index ce15cb96c08..038b25c1d3a 100644
--- a/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23750,6 +23750,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -26077,6 +26086,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26095,6 +26113,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/lb/sc/messages.po b/source/lb/sc/messages.po
index b89523f4e54..45439478063 100644
--- a/source/lb/sc/messages.po
+++ b/source/lb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15432,6 +15432,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15998,12 +16003,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17276,89 +17281,46 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "~Zoumaachen"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nei Opnam"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "Nei"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Läschen"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Wiederherstellen"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Nächst Opnam"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "~Zoumaachen"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Duerchsichen..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Datebankberäicher"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19146,36 +19108,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Datum"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolonn"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Zeil"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "~Intervallen"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr ""
@@ -19322,167 +19289,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22070,17 +22039,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24015,114 +23994,119 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
#, fuzzy
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "~Weisen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Seitenum~bruch"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "~Diagrammen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Zeechnenobjeten"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
#, fuzzy
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "~Weisen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
#, fuzzy
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "~Weisen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
#, fuzzy
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "~Weisen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objeten"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoom"
diff --git a/source/lb/scp2/source/ooo.po b/source/lb/scp2/source/ooo.po
index dc07f4ae869..bca6bc96e21 100644
--- a/source/lb/scp2/source/ooo.po
+++ b/source/lb/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Dokument opmaachen"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/lb/scp2/source/winexplorerext.po b/source/lb/scp2/source/winexplorerext.po
index 6ad183db383..d0d07ed8615 100644
--- a/source/lb/scp2/source/winexplorerext.po
+++ b/source/lb/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 11:04+0200\n"
-"Last-Translator: Edson <soued0311@hotmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:01+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369353681.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
msgstr ""
diff --git a/source/lb/sd/messages.po b/source/lb/sd/messages.po
index df9c765f155..51f0fef6c3d 100644
--- a/source/lb/sd/messages.po
+++ b/source/lb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2631,6 +2631,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3101,164 +3106,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4686,160 +4876,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/lb/sfx2/messages.po b/source/lb/sfx2/messages.po
index bddcc6a7e5b..d0f30d2b5a2 100644
--- a/source/lb/sfx2/messages.po
+++ b/source/lb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -885,52 +885,47 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr ""
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Reinitialiséieren"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -938,118 +933,118 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Schéck~en"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Schrëft"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lëschtë sortéieren"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr ""
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr ""
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Drucker ass beschäftegt"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr ""
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1057,7 +1052,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1065,7 +1060,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1073,14 +1068,14 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1088,7 +1083,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1096,17 +1091,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1114,351 +1109,361 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Dokument drécken"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Dokument späicheren"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Ewechmaachen"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1812,32 +1817,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr ""
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Numm"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Typ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr ""
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Typ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Jo"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nee"
@@ -1847,17 +1837,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Numm"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Typ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr ""
@@ -1995,19 +1985,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Typ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "~Passwuert änneren..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2018,28 +2008,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Allgemeng"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Beschreiwung"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2261,6 +2251,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/lb/shell/messages.po b/source/lb/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/lb/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/lb/starmath/messages.po b/source/lb/starmath/messages.po
index 9a95ff5c9bf..639174a5093 100644
--- a/source/lb/starmath/messages.po
+++ b/source/lb/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1663,279 +1663,304 @@ msgid "Examples"
msgstr "Beispill"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiv"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Fett"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "schwaarz"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Blo"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Gréng"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "Cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "Magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Gro"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Zäit"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "Giel"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr ""
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "Gréisst"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Schrëft"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
#, fuzzy
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "lénks "
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Mëtt"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
#, fuzzy
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "riets "
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Kommentaren"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formel"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formel"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
#, fuzzy
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FEELER: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Inhalt"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Titel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formelen"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Konturen"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Gréisst"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Original Gréisst"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2008,6 +2033,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "element"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/lb/svtools/messages.po b/source/lb/svtools/messages.po
index 063f7954425..b2b6852ed91 100644
--- a/source/lb/svtools/messages.po
+++ b/source/lb/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1545 +16,1547 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195673.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr ""
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
+msgid "Redo: "
msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr ""
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
#, fuzzy
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word Dokument"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
#, fuzzy
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Dokument späicheren"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
#, fuzzy
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Zeil "
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Numm"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Gréisst"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr ""
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Typ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ""
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Dossier"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Datei"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
#, fuzzy
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "~Zeechesaz"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
#, fuzzy
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionnairen"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dictionnairen"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Keen"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
#, fuzzy
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Riets"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiv"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Fett"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Schwaarz"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Buch"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Schmuel "
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "hallef fett"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Duerchsichen..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Lénks"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Riets"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Bäisetzen"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Käschten"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Paus"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Feeler"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Word Dokumenter"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Fäerdeg"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Weider >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Etappen"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<keen>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr ""
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr ""
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
#, fuzzy
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Éischt Säit"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr ""
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
#, fuzzy
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "~Strooss"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr ""
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr ""
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Positioun"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
#, fuzzy
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Noten"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
#, fuzzy
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Säit"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalenner"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Text wielen"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafiken"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
#, fuzzy
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfiguratiounsmenü"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Applikatioun"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
#, fuzzy
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS-Word Dokument"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-Dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 Diagramm"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
#, fuzzy
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 5.0 Meeschter Dokument"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 Virlag"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Textdatei"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
#, fuzzy
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Zeil "
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 Virlag"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel Dokument"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
#, fuzzy
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel Virlag"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Datei"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Dossier"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Textdokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Tabell"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentatioun"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Zeechnung"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-Dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr ""
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formel"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datebank"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
#, fuzzy
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint Dokument"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
#, fuzzy
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "PowerPoint Virlagen"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument Datebank"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Zeechnung"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formel"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Meeschter Dokument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument Presentatioun"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Tabell"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Text"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Tabellvirlag"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Zeechnungsvirlag"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Presentatiounsvirlag"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Textvirlag"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/lb/svx/messages.po b/source/lb/svx/messages.po
index 436357252f3..d6d5fed865f 100644
--- a/source/lb/svx/messages.po
+++ b/source/lb/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8009,6 +8009,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12367,85 +12372,90 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Uwennnen"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rechteck"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
#, fuzzy
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Punkte beaarbechten"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Punkte afügen"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Punkte läschen"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoKontur"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Rout"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr ""
@@ -12775,121 +12785,116 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Uwennnen"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Opmaachen..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Späicheren..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Zoumaachen"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rechteck"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
#, fuzzy
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Punkte beaarbechten"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Punkte afügen"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Punkte läschen"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Rout"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktiv"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Eegeschaften: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adress:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Kontur:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/lb/sw/messages.po b/source/lb/sw/messages.po
index c3dbe4655a5..2d626a7bfb8 100644
--- a/source/lb/sw/messages.po
+++ b/source/lb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3202,7 +3202,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12456,147 +12456,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12606,152 +12606,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13837,7 +13837,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17277,48 +17277,48 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Iwwersiicht"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Iwwersiicht"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Typ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
#, fuzzy
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "~Kolonnen "
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Hannergrond"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Iwwersiicht"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17559,316 +17559,316 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Beaarbechten..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Titel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Typ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Benotzer-definéiert1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Formular"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "~Kapitel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Konturen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabellen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafiken"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE Objeten"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Optiounen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorie"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Weisen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "~Klameren"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Datei"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Optiounen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Sprooch"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Standard"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Beaarbechten"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/lo/cui/messages.po b/source/lo/cui/messages.po
index f2e341d974a..01fe4664a79 100644
--- a/source/lo/cui/messages.po
+++ b/source/lo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1659,107 +1659,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr ""
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1802,7 +1797,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1922,7 +1917,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2162,7 +2157,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2417,12 +2412,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2492,7 +2487,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2572,7 +2567,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2813,7 +2808,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3436,68 +3431,73 @@ msgid "About %PRODUCTNAME"
msgstr "ກ່ຽວກັບ %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ເວັບໄຊຂອງຂ້ອຍ"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME API"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3620,19 +3620,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "~ແທນທີ່"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "~ແທນທີ່"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "ຄວາມກ້ວາງ"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4498,6 +4498,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5676,28 +5836,28 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "ຄຸນສົມບັດ"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "ຊື່"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9424,84 +9584,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ຊ່ວຍເຫຼືອ"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ກອບສົນທະນາ"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ກອບສົນທະນາ"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ແລະ"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "ດຶງເອົາ %PRODUCTNAME ໃນລະຫວ່າງລະບົບເລິ່ມຕົ້ນຂື້ນ"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11453,24 +11613,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12139,102 +12284,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13301,27 +13350,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/lo/extensions/messages.po b/source/lo/extensions/messages.po
index cb8aa19bd12..f87b30cdbb0 100644
--- a/source/lo/extensions/messages.po
+++ b/source/lo/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "ຮູບແບບຖັນສຳລັບຕາຕະລາງ “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_ຊື່ສັ້ນ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_ຜູ້ຂຽນ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_ສຳນັກພິມ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_ບົດ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "ບັນນາທິການ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_ຊະນິດ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_ປີ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "_ຫົວຂໍ້"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "_ທີ່ຢູ່"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_ໜ້າ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "_ສະບັບ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_ຫົວເລື່ອງປຶ້ມ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "ຕອນ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "_ຊະນິດສີ່ງພິມອອກມາ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "_ອົງການ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "_ສະຖາບັນ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "_ມະຫາວິທະຍາໄລ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "ຊະນິດຂອງ_ບົດລາຍງານ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_ເດືອນ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_ວາລະສານ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "_ຈຳນວນ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "_ລຳດັບ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "_ຄຳອະທິບາຍປະກອບ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_ໝາຍເຫດ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "ກຳນົດເຂດຂໍ້ມູນຜູ້ໃຊ້ _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "ກຳນົດເຂດຂໍ້ມູນຜູ້ໃຊ້ _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "ກຳນົດເຂດຂໍ້ມູນຜູ້ໃຊ້ _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "ກຳນົດເຂດຂໍ້ມູນຜູ້ໃຊ້ _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "ກຳນົດເຂດຂໍ້ມູນຜູ້ໃຊ້ _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "ຊື່ຖັນ"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "ຊະນິດຊື່ສຳລັບຊະນິດຂໍ້ມູນໃໝ່"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "ເຊື່ອມຕໍ່​ເຂດຂໍ້ມູນ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "ແນະນຳ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "ແບບຟອມຍ່ອຍ​ສາມາດນຳໃຊ້​ເພື່ອ​ສະແດງ​ລາຍລະອຽດ​ຂອງ​ຂໍ້ມູນ​ທີ່​ກ່ຽວກັບ​ການ​ບັນທຶກປັດຈຸບັນຂອງ​ແບບ​ຟອມຫຼັກ. ເພື່ອ​ເຮັດສີ່ງນີ້, ທ່ານ​ສາມາດລະບຸ​ຖັນ​ໃດ​ ໃນ​ແບບຟອມຍ່ອຍ​ທີ່​ກົງ​ກັບ​ຖັນ​ໃນ​ແບບ​ຟອມ​ຫຼັກ."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ປ້າຍ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "ປ້າຍ"
diff --git a/source/lo/helpcontent2/source/auxiliary.po b/source/lo/helpcontent2/source/auxiliary.po
index cf033bd8e02..6e56c698ba7 100644
--- a/source/lo/helpcontent2/source/auxiliary.po
+++ b/source/lo/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,17 +699,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/lo/helpcontent2/source/text/sbasic/guide.po b/source/lo/helpcontent2/source/text/sbasic/guide.po
index 6084970e9f4..8caf02681e7 100644
--- a/source/lo/helpcontent2/source/text/sbasic/guide.po
+++ b/source/lo/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,7 +541,7 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
+msgid "Opening a Dialog With Basic"
msgstr ""
#: show_dialog.xhp
@@ -525,7 +549,7 @@ msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
msgstr ""
#: show_dialog.xhp
diff --git a/source/lo/helpcontent2/source/text/sbasic/python.po b/source/lo/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/lo/helpcontent2/source/text/sbasic/python.po
+++ b/source/lo/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/lo/helpcontent2/source/text/sbasic/shared.po b/source/lo/helpcontent2/source/text/sbasic/shared.po
index 427cde60d05..88464a05634 100644
--- a/source/lo/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lo/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,7 +36197,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/lo/helpcontent2/source/text/sbasic/shared/03.po b/source/lo/helpcontent2/source/text/sbasic/shared/03.po
index 785bee0e540..fb911a595d5 100644
--- a/source/lo/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/lo/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/lo/helpcontent2/source/text/scalc/01.po b/source/lo/helpcontent2/source/text/scalc/01.po
index 5ff71395c6e..b3d4823f98c 100644
--- a/source/lo/helpcontent2/source/text/scalc/01.po
+++ b/source/lo/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,7 +40949,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/lo/helpcontent2/source/text/schart/00.po b/source/lo/helpcontent2/source/text/schart/00.po
index 6cc1e99fec3..3b0d2d64749 100644
--- a/source/lo/helpcontent2/source/text/schart/00.po
+++ b/source/lo/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/lo/helpcontent2/source/text/shared/00.po b/source/lo/helpcontent2/source/text/shared/00.po
index 5f351669d98..79ba3698bd4 100644
--- a/source/lo/helpcontent2/source/text/shared/00.po
+++ b/source/lo/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/lo/helpcontent2/source/text/shared/01.po b/source/lo/helpcontent2/source/text/shared/01.po
index cd81f0a84a0..9ef8abdf34b 100644
--- a/source/lo/helpcontent2/source/text/shared/01.po
+++ b/source/lo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/lo/helpcontent2/source/text/shared/02.po b/source/lo/helpcontent2/source/text/shared/02.po
index f3b06155bda..96dd9b149e4 100644
--- a/source/lo/helpcontent2/source/text/shared/02.po
+++ b/source/lo/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/lo/helpcontent2/source/text/shared/guide.po b/source/lo/helpcontent2/source/text/shared/guide.po
index 65eb1e5280d..d893d9aa234 100644
--- a/source/lo/helpcontent2/source/text/shared/guide.po
+++ b/source/lo/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/lo/helpcontent2/source/text/shared/optionen.po b/source/lo/helpcontent2/source/text/shared/optionen.po
index 2b49878735d..bf110e301e0 100644
--- a/source/lo/helpcontent2/source/text/shared/optionen.po
+++ b/source/lo/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/lo/helpcontent2/source/text/simpress/01.po b/source/lo/helpcontent2/source/text/simpress/01.po
index a65aa03cdfc..85edade5f82 100644
--- a/source/lo/helpcontent2/source/text/simpress/01.po
+++ b/source/lo/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/lo/helpcontent2/source/text/swriter/guide.po b/source/lo/helpcontent2/source/text/swriter/guide.po
index 42e0cef113c..6a220482128 100644
--- a/source/lo/helpcontent2/source/text/swriter/guide.po
+++ b/source/lo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,7 +229,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
msgstr ""
#: arrange_chapters.xhp
@@ -237,7 +237,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po
index f011ba7f0c4..49ff54dee8a 100644
--- a/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23742,6 +23742,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26100,6 +26109,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26118,6 +26136,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/lo/sc/messages.po b/source/lo/sc/messages.po
index 5a5644c6682..9e4d1f110ea 100644
--- a/source/lo/sc/messages.po
+++ b/source/lo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15532,6 +15532,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16100,12 +16105,12 @@ msgstr "ການກຳນົດຮູບແບບເງື່ອນໄຂ"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17387,90 +17392,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "~ປິດ"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "ບັນທຶກໃໝ່"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "ໃໝ່"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "ລຶບ"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "ຕິດຕັ້ງຄືນ"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "ບັນທຶກຄັ້ງທີ່ຜ່ານມາ"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "ບັນທຶກຄັ້ງຕໍ່ໄປ"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "~ປິດ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ເຂົ້າເບິ່ງ..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ຂອບເຂດຖານຂໍ້ມູນ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19267,34 +19229,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "ຂໍ້ມູນ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "ຖັນ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "ແຖວ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "ຈັດກຸ່ມໂດຍ:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "ພາຍໃນ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19441,167 +19408,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22229,17 +22198,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24203,111 +24182,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "ວິນໂດ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "ສະແດງ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "ເຊື່ອງ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "~ຢຸດດ້ວມື"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "ແຜນວາດ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "ການແຕ້ມ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "ສະແດງ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "ເຊື່ອງ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "ສະແດງ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "ເຊື່ອງ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "ສະແດງ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "ເຊື່ອງ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "ວັດຖຸ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "ຂະຫຍາຍ"
diff --git a/source/lo/scp2/source/ooo.po b/source/lo/scp2/source/ooo.po
index 34b10f1fcc2..0a93ca63745 100644
--- a/source/lo/scp2/source/ooo.po
+++ b/source/lo/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "ເປິດເອກະສານ"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/lo/scp2/source/winexplorerext.po b/source/lo/scp2/source/winexplorerext.po
index 8e7e5103c4d..5e1b18dc15d 100644
--- a/source/lo/scp2/source/winexplorerext.po
+++ b/source/lo/scp2/source/winexplorerext.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 23:58+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lo\n"
@@ -12,8 +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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369350439.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "ໃຫ້ Microsoft Windows Explorer ທຳງານໂດຍສະແດງຂໍ້ມູນກ່ຽວກັບ %PRODUCTNAME ເອກະສານ"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/lo/sd/messages.po b/source/lo/sd/messages.po
index 93905f99ca2..3461f086e7a 100644
--- a/source/lo/sd/messages.po
+++ b/source/lo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2638,6 +2638,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3121,164 +3126,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4766,160 +4956,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/lo/sfx2/messages.po b/source/lo/sfx2/messages.po
index c62485f85d6..1b3358af6c2 100644
--- a/source/lo/sfx2/messages.po
+++ b/source/lo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -898,39 +898,34 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ແຟ້ມ​ມີ​ແລ້ວ​. ຂຽນທັບບໍ່?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~ເລີ່ມໃໝ່"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ຊື່ນີ້ແມ່ນຖືກໃຊ້ຮຽບຮ້ອຍແລ້ວ."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ຮູບແບບນີ້ບໍ່ມີຢູ່."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -940,7 +935,7 @@ msgstr ""
"ຮູບແບບນີ້ບໍ່ສາມາດຖືກໃຊ້ເປັນແບບພື້ນຖານໄດ້,\n"
" ເພາະວ່າມັນຈະສົງຜົນໃນການອ້າງອິງການເອີ້ນຊ້ຳ."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -949,7 +944,7 @@ msgstr ""
"ຊື່ທີ່ມີຢູ່ແລ້ວເປັນຮູບແບບດັງເດີມ.\n"
" ກະລຸນາເລືອກຊື່ອື່ນ."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -957,98 +952,98 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "ຕົວນຳທາງໄປບ່ອນຕ່າງໆ"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "ການຢືນຢັນລະຫັດຜິດ"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "~ສົ່ງ"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ແບບຕົວອັກສອນ"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "ແຊກລຸ້ນຄຳອະທິບາຍ"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "ຮູບແບບ"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "ການປົກຄອງ"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ຕື່ມວິທີການກຳນົດຮູບແບບ"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "ຮູບແບບໃໝ່ຈາກການເລືອກ"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "ປັບປຸງຮູບແບບ"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "ເຈົ້າຕ້ອງການຍົກເລີກການບັນທຶກນີ້ແທ້ໆບໍ? ທຸກໆຂັ້ນຕອນການບັນທຶກນີ້ຈະຫາຍໄປ."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ຍົກເລີກການບັນທຶກ"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ແບບຢ່າງກຳລັງຖືກເລີ່ມຕົ້ນສຳລັບການໃຊ້ງານຄັ້ງທຳອິດ."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1057,7 +1052,7 @@ msgstr ""
"ບໍ່ມີເຄື່ອງພີມດັງເດີມຖືກພົບ.\n"
" ກະລຸນາເລືອກເຄື່ອງພີມແລະລອງໃໝ່ອີກຄັ້ງ."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1066,17 +1061,17 @@ msgstr ""
"ບໍ່ສາມາດເລີ່ມທຳງານເຄື່ອງພີມ.\n"
" ກະລຸນາກວດກາການກຳນົດຄ່າເຄື່ອງພີມຂອງເຈົ້າ."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "ເຄື່ອງພີມຍັງບໍ່ວ່າງ"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ອ່ານໄດ້ຢ່າງດຽວ)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1087,7 +1082,7 @@ msgstr ""
" ເຈົ້າຕ້ອງການບັນທຶກການຕິດຕັ້ງໃໝ່ນີ້ບໍ່ໃນ\n"
" ເອກະສານທີ່ເຮັດວຽກຢູ່? "
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1098,7 +1093,7 @@ msgstr ""
" ການຕິດຕັ້ງໃໝ່ນີ້ຄວນຈະຖືກບັນຖືກ\n"
" ໃນເອກະສານທີ່ເຮັດວຽກຢູ່? "
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1109,7 +1104,7 @@ msgstr ""
" ເຈົ້າຕ້ອງການບັນທຶກການຕິດຕັ້ງໃໝ່ນີ້ບໍ່ໃນ\n"
" ເອກະສານທີ່ເຮັດວຽກຢູ່? "
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1119,7 +1114,7 @@ msgstr ""
"ເອກະສານບໍ່ສາມາດຖືກປິດເພາະ\n"
" ວຽກການພີມແມ່ນກຳລັງຖືກນຳສົ່ງອອກໄປ."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1127,7 +1122,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1135,18 +1130,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ເອກະສານນີ້ບໍ່ສາມາດຖືກແກ້ໄຂໄດ້, ເນື່ງຈາກອາດເປັນເພາະສິດທິການເຂົ້າເຖິງຜິດພາດ. ເຈົ້າຕ້ອງການແກ້ໄຂເອກະສານທີ່ໄດ້ຈາກການສຳເນົາບໍ່?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1154,352 +1149,362 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (ເອກະສານທີ່ຖືກຊ້ອມແປງ)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ແກ້ໄຂເອກະສານ"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ແຟ້ມເອກະສານ"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "ຕົວເລືອກການຈັດລຽນ"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ເອົາອອກ"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1858,32 +1863,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "ລຸ້ນຄຳອະທິບາຍ"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "ຊື່"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "ຊະນິດ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "ຄ່າ"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "ຊະນິດ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "ແມ່ນ"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "ບໍ່"
@@ -1893,17 +1883,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "ຊື່"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "ຊະນິດ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "ຄ່າ"
@@ -2044,19 +2034,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ທີ່ຕັ້ງ"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ຊະນິດ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "ປ່ຽນແປງ~ລະຫັດຜ່ານ..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2067,29 +2057,29 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "ທົ່ວໄປ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
#, fuzzy
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "ການ​ອະ​ທິ​ຍາຍ​"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr ""
@@ -2313,6 +2303,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/lo/shell/messages.po b/source/lo/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/lo/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/lo/starmath/messages.po b/source/lo/starmath/messages.po
index c88fadc19f7..b6213dede8b 100644
--- a/source/lo/starmath/messages.po
+++ b/source/lo/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1663,274 +1663,299 @@ msgid "Examples"
msgstr "ຕົວຢາງ"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "ມາດຕະຖານ"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
#, fuzzy
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ຕົວງ່ຽງ"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ຕົວເຂັ້ມ"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ສີຟ້າ"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "ຂຽວ"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr ""
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ເທົາ"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "ເວລາ"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ເຊື່ອງ"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "ຂະໜາດ"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "foot"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ຊ້າຍ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ທາງກາງ"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ຂວາ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "ຄຳສັ່ງ"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "ສູດ"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ການບັນທຶກເອກະສານ..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION ສູດ"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr ""
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ເນື້ອໃນ"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ຫົວຂໍ້"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~ແບບເຊວ"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "ຂອບ"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "ຂະໜາດ"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "ຂະໜາດມາດຕະຖານ"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~ພໍດີໜ້າ"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2006,6 +2031,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "ການເລືອກ"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/lo/svtools/messages.po b/source/lo/svtools/messages.po
index 97a26061339..a1098f2fec0 100644
--- a/source/lo/svtools/messages.po
+++ b/source/lo/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1571 +16,1573 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195680.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ຍົກເລີກການເຮັດ:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~ເຮັດຄືນ:"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~ເຮັດຊ້ຳ:"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
#, fuzzy
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "ກ່ອນຈັດຮູບເອກະສານ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
#, fuzzy
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "ປ່ຽນວັດຖຸ"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
#, fuzzy
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "ເອກະສານ Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
#, fuzzy
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "ເອກະສານຂໍ້ຄວາມ"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
#, fuzzy
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ວັດຖຸພາບສະແດງ"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
#, fuzzy
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ແຫຼ່ງຂໍ້ມູນທີ່ເປັນຕາຕະລາງ"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
#, fuzzy
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "~ເຊື່ອມໂຍງ"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, fuzzy, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "ວັດຖຸບໍ່ສາມາດຖືກແຊກໃສ່"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, fuzzy, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ວັດຖຸບໍ່ສາມາດຖືກແຊກໃສ່"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "ຊື່"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "ຂະໜາດ"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr ""
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "ຊະນິດ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ໄບສ"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ""
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ທີ່ເກັບຂໍ້ມູນ"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ແຟ້ມ"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "ປົກກະຕິ"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ຕັ້ງຄ່າຕົວອັກສອນ"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
#, fuzzy
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "ວັດຈະນານຸກົມ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "ວັດຈະນານຸກົມ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "ບໍ່ມີ"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ແຈ້ງ"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "ປົກກະຕິ"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
#, fuzzy
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ຕົວງ່ຽງ"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ຕົວເຂັ້ມ"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
#, fuzzy
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ຫຼັງ"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ປຶ້ມ"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "ຫຍໍ້"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ເຂົ້າເບິ່ງ..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ຍ້າຍກອບ"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ຍ້າຍທາງຊ້າຍ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ຍ້າຍທາງຂວາ"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "ຍ້າຍລົງ"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ເພີ່ມ"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "ທາງຂວາງນອກ"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ບັນທັດທາງຕັ້ງ"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 ບິດໃກ້ເຂົ້າສູ່"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 ບິດສັ່ນ"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 ບິດສີເທົາ"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 ບິດສີເທົາ"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 ບິດສີແທ້"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ລາຄາ"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ລຽງລຳດັບ"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ຢຸດຊົ່ວຄາວ"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ຄ່າເລີ່ມຕົ້ນ..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ຜິດພາດ"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ລຶບ~ໜ້າ"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ຄ່າເຄື່ອງພີມເກົ່າ"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "ເອກະສານ Word"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~ຈົບ"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~ຕໍ່ໄປ >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ລຳດັບ"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
#, fuzzy
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ບໍລິສັດ"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "ກົມ"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "ຊື່ແທ້"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "ນາມສະກຸນ"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ທາງ"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "ປະເທດ"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "ເມືອງ"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "ຫົວຂໍ້"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "ຕຳແໜ່ງ"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "ເລີ່ມ"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "ປິດວິທີ່ການປ່ຽເລກລົບໃນເລກຖານສອງ"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
#, fuzzy
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ບໍ່ມີ"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ແຂວງ"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "ເພດເຈີ້"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "ໂທລະສັບມືຖື"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ປະຕິຖິນ"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "ເຊີນ"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "ຕ້ອງການ"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "ເລືອກຖັນ"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "~ນັກສືບ"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ຮູບພາບ"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
#, fuzzy
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ລາຍການການກຳນົດຄ່າ"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "ການນຳໃຊ້"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
#, fuzzy
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ຊື່ຖານຂໍ້ມູນ"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
#, fuzzy
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "ເອກະສານ Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "ເອກະສານ HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 Template"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
#, fuzzy
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Master Documents"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 Template"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
#, fuzzy
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "~ເຊື່ອມໂຍງ"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 Template"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
#, fuzzy
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "ເອກະສານ Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
#, fuzzy
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "ແບບ Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ແຟ້ມ"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ທີ່ເກັບຂໍ້ມູນ"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ເອກະສານຂໍ້ຄວາມ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ຕາລາງແຜ່ນ"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "ການບັນຍາຍ"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ການແຕ້ມ"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "ເອກະສານ HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ເອກະສານຂັ້ນສູງ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "ສູດ"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ຖານຂໍ້ມູນ"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
#, fuzzy
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "ເອກະສານ PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
#, fuzzy
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "ແບບ PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument ຖານຂໍ້ມູນ"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
#, fuzzy
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument ການແຕ້ມ"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
#, fuzzy
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument ແບບ"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
#, fuzzy
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument ເອກະສານຂັ້ນສູງ"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
#, fuzzy
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument ການບັນຍາຍ"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
#, fuzzy
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument ໂປແກຣມຄິດໄລ່"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
#, fuzzy
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument ຂໍ້ຄວາມ"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
#, fuzzy
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument ແບບໂປຣແກຣຄິດໄລ່"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
#, fuzzy
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument ແບບການແຕ້ມ"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
#, fuzzy
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument ແບບການບັນຍາຍ"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
#, fuzzy
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument ແບບຂໍ້ຄວາມ"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/lo/svx/messages.po b/source/lo/svx/messages.po
index c9119f22494..7400d417055 100644
--- a/source/lo/svx/messages.po
+++ b/source/lo/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8044,6 +8044,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12534,85 +12539,90 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "ໃຊ້"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "ພື້ນທີ່ວ່າງທີ່ເຮັດວຽກໄດ້"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "ເລືອກ"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "ສີຫລ່ຽມສາກ"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ແອນລິບ"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "ຮູບຫລາຍຫລ່ຽມ"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ແກ້ໄຂຈຸດ"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ຍ້າຍຈຸດ"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ແຊກຈຸດໃສ່"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ລຶບຈຸດ"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "ຍົກເລີກການເຮັດ:"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "ແດງ"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr ""
@@ -12950,120 +12960,115 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "ສ່ວນຕີນ"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "ໃຊ້"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "~ເປີດ..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "ປິດ"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "ເລືອກ"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "ສີຫລ່ຽມສາກ"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ແອນລິບ"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "ຮູບຫລາຍຫລ່ຽມ"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ແກ້ໄຂຈຸດ"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ຍ້າຍຈຸດ"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ແຊກຈຸດໃສ່"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ລຶບຈຸດ"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "ຍົກເລີກການເຮັດ:"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "ແດງ"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "ດຳເນີນຢູ່"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "~ມະຫາພາກ..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "ຄຸນສົມບັດ:"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "ທີ່ຢູ່"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ຂອບ"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/lo/sw/messages.po b/source/lo/sw/messages.po
index 20556c79986..de7bdd27da9 100644
--- a/source/lo/sw/messages.po
+++ b/source/lo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3186,7 +3186,7 @@ msgid "Change object title of $1"
msgstr "ປ່ຽນວັດຖຸສັ່ງງານ %O"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12703,147 +12703,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12853,152 +12853,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_ເຄື່ອງມື"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14120,7 +14120,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17675,51 +17675,51 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "ສະແດງເບິ່ງ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "ສະແດງເບິ່ງ"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "ຊະນິດ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "~ປ້ອນເຂົ້າ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "ຮູບແບບ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "ຖັນ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
#, fuzzy
msgctxt "tocdialog|background"
msgid "Background"
msgstr "ພື້ນຫຼັງ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "ສະແດງເບິ່ງ"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "ລະດັບ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17971,327 +17971,327 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "ແກ້ໄຂ..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "ຫົວຂໍ້:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "ຊະນິດ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "ຕາຕະລາງເນື້ອໃນ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "ຜູ້ໃຊ້ກຳນົດ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ເອກະສານອ້າງອິງ 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ຟອມ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~ເອກະສານທີ່ນຳເຂົ້າມາ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "ບົດ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "ເສັ້ນຂອບ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "ຕາຕະລາງ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "ກອບຂໍ້ຄວາມ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ພາບສະແດງ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "ວັດຖຸ OLE "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "ຮູບແບບເງື່ອນໄຂ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "ຮູບແບບ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "ທາງເລືອກ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "ຊື່ວັດຖຸ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "ປະເພດ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "ສະແດງຜົນ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "ການອ້າງອິງ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "ປະເພດ ແລະ ຕົວເລກ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "ຂໍ້ຄວາມອະທິບາຍພາບ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "~ວົງເລັບ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[ບໍ່]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ແຟ້ມ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
#, fuzzy
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "ທາງເລືອກ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ພາສາ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "ຊະນິດລະຫັດ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "ລຽງລຳດັບ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "ລະດັບ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(ຮູບແບບແຖວ:"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "ຄ່າທີ່ກຳນົດໄວ້ໃຫ້ແລ້ວ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "ແກ້ໄຂ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/lt/cui/messages.po b/source/lt/cui/messages.po
index c61f76c73dc..0ec3fcd62f4 100644
--- a/source/lt/cui/messages.po
+++ b/source/lt/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-09 19:42+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-31 06:21+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557430965.000000\n"
+"X-POOTLE-MTIME: 1559283660.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1550,7 +1550,7 @@ msgstr "Pakeisti naudotojo stilius"
#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_BULLET"
msgid "Replace bullets with: %1"
-msgstr "Pakeisti sąrašo ženklelius į: %1"
+msgstr "Keisti sąrašo ženklelius į: %1"
#. To translators: %1 will be replaced with a percentage, e.g. "10%"
#: cui/inc/strings.hrc:353
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Įveskite tinkamą apvalkalo adresą arba ieškinį."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Nenustatyti kraštinių"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Nustatyti tik išorinę kraštinę"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Nustatyti išorinę kraštinę ir horizontalias linijas"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Nustatyti išorinę kraštinę ir visas vidines linijas"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Nustatyti išorinę kraštinę nekeičiant vidinių linijų"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Nustatyti tik įstrižaines"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Nustatyti visas keturias kraštines"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Nustatyti tik kairę ir dešinę kraštines"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Nustatyti tik viršutinę ir apatinę kraštines"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Nustatyti tik kairę kraštinę"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Nustatyti viršutinę ir apatinę kraštines bei visas vidines linijas"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Nustatyti kairę ir dešinę kraštines bei visas vidines linijas"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Nėra šešėlio"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Mesti šešėlį apačioje iš dešinės"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Mesti šešėlį viršuje iš dešinės"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Mesti šešėlį apačioje iš kairės"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Mesti šešėlį viršuje iš kairės"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Pasirašė: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Visi failai"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1752,7 +1747,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr ""
+msgstr "Lango „Priemonės → Automatinis rašybos taisymas → Automatinio taisymo parinktys“ kortelėje „Keitimas“ pateikiamas programoje naudojamų keitinių sąrašas. Peržiūrėkite ir pridėkite savųjų."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1866,7 +1861,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Galima skaitmeniniu būdu pasirašyti jau turimus PDF failus ir patikrinti tokių failų parašus."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2022,7 +2017,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as an extension."
-msgstr ""
+msgstr "„%PRODUCTNAME“ programoje naujus žodynus įdiegti labai paprasta – jie pateikiami kaip programos plėtiniai."
#: cui/inc/tipoftheday.hrc:95
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2217,7 +2212,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
-msgstr ""
+msgstr "Jei norite taisyti automatinę pateiktį, atverkite ją ir, kai pateiktis pasileis, spustelėkite dešiniuoju pelės klavišu ir pasirinkite komandą „Taisyti“."
#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2362,7 +2357,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) > Text Flow > Breaks and check Insert > Page > Before."
-msgstr ""
+msgstr "Norite, kad skyriaus pavadinimas visada būtų puslapio pradžioje? Pastraipos stiliaus „Antraštė 1“ savybių lango kortelėje „Teksto skaidymas“, parinkčių grupėje „Lūžiai“ pažymėkite parinktį „Įterpti lūžį“ ir nustatykite tipą „Puslapio“ bei padėtį „Prieš žymeklį“."
#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2422,7 +2417,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down Ctrl key and click their tabs before entering."
-msgstr ""
+msgstr "Norite įterpti reikšmę toje pačioje vietoje keliuose skaičiuoklės lakštuose? Prieš įvesdami reikšmę pažymėkite visus norimus lakštus: laikykite nuspaustą klavišą „Vald“ ir spustelėkite lakštų ąseles."
#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2432,32 +2427,32 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to count words for just one particular paragraph style? Use Edit > Find & Replace > Paragraph Styles, select the style > Find All and read the number from the status bar."
-msgstr ""
+msgstr "Norite suskaičiuoti žodžius tik vieno stiliaus pastraipose? Pasirinkite „Taisa → Ieškoti ir keisti“, pažymėkite parinktį „Pastraipos stilių paieška“, pasirinkite stilių ir spustelėkite „Ieškoti visų“ – žodžių skaičius bus rodomas būsenos juostoje."
#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Toolbars are contextual, they open depending on the context. If you do not want that, uncheck them from View > Toolbars."
-msgstr ""
+msgstr "Mygtukų juostos rodomos priklausomai nuo konteksto. Jei nenorite matyti kurios nors mygtukų juostos, išjunkite ją meniu „Rodymas → Mygtukų juostos“."
#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
-msgstr ""
+msgstr "Formules įterpti ir sunumeruoti galima vienu veiksmu: surinkite „fn“, tada paspauskite klavišą „F3“. Bus įterptas autotekstas su formule ir jos eilės numeriu."
#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To automatically number your table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
-msgstr ""
+msgstr "Jei norite automatiškai sunumeruoti lentelės eilutes teksto dokumente, pažymėkite lentelės stulpelį ir jam pritaikykite vieną iš sąrašo stilių."
#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete in one step all of your printing areas: select all sheets then Format > Print Ranges > Clear."
-msgstr ""
+msgstr "Visas spausdinimo sritis galima pašalinti vienu veiksmu – pažymėkite visus lakštus, tada pasirinkite „Formatas → Spausdinimo sritis → Valyti“."
#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools > AutoCorrect Options > Options > Ignore double spaces."
-msgstr ""
+msgstr "Rašant „%PRODUCTNAME“ teksto rengyklėje lengva išvengti dvigubų tarpų – pasirinkite „Priemonės → Automatinis rašybos taisymas → Automatinio taisymo parinktys“ ir kortelėje „Parinktys“ pažymėkite „Du tarpus keisti vienu“."
#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2497,92 +2492,92 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can restarts the slide show after a pause specified at Slide Show > Slide Show Settings > Loop and repeat."
-msgstr ""
+msgstr "Pateikties demonstravimą galima paleisti iš naujo po pauzės, kurios trukmė nurodoma lange „Demonstravimas → Pateikties demonstravimo nuostatos“, laukelyje „Kartoti po“."
#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can not see all the text in a cell? Expand the input line in the formula bar and you can scroll."
-msgstr ""
+msgstr "Nesimato viso teksto skaičiuoklės langelyje? Išskleiskite formulių juostą, tada jos turinį bus galima slinkti."
#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You often create a document from another? Have you considered using a template?"
-msgstr ""
+msgstr "Dažnai kuriate vieną dokumentą kito pagrindu? Patogiau būtų naudoti šablonus!"
#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions do not bring that new features and bug fixes. They also include security patches. Be safe, put yourself updated!"
-msgstr ""
+msgstr "Naujose programos versijose ne tik įdiegtos naujos funkcijos ar ištaisytos funkcinės klaidos. Jose taip pat užlopytos saugumo spragos. Pasirūpinkite saugumu, atnaujinkite programą, kai galima."
#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press Ctrl + D or use Sheet > Fill Cells > Fill Down."
-msgstr ""
+msgstr "Norite nukopijuoti aukščiau esančią skaičiuoklės dokumento eilutę? Paspauskite klavišus „Vald+D“ arba pasirinkite „Lakštas → Užpildyti langelius → Žemyn“."
#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can easily optimize your table per Table > Size > Distribute Rows / Columns Evenly."
-msgstr ""
+msgstr "Lentelės langelių dydį galima lengvai optimizuoti komandomis „Lentelė → Dydis → Paskirstyti eilutes (stulpelius) lygiai“."
#: cui/inc/tipoftheday.hrc:196
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Best way to fix bad looking MS Word table cells via Table > Size > Optimal Row Height / Column Width."
-msgstr ""
+msgstr "Iškraipytus lentelių langelius „MS Word“ dokumentuose geriausia pataisyti komandomis „Lentelė → Dydis → Optimalus eilutės aukštis (stulpelio plotis)“."
#: cui/inc/tipoftheday.hrc:197
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't get lost in large documents. Use the Navigator (F5) to find your way through the content."
-msgstr ""
+msgstr "Nepasimeskite dideliuose dokumentuose. Naudokitės žvalgikliu (F5) reikiamam turiniui rasti."
#: cui/inc/tipoftheday.hrc:198
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table > AutoFormat."
-msgstr ""
+msgstr "Lentelėms dokumente suvienodinti patogu naudoti stilius. Stilių galima pritaikyti iš stilių polangio (F11) arba lange „Lentelė → Automatinio formatavimo stiliai“."
#: cui/inc/tipoftheday.hrc:199
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter"
-msgstr ""
+msgstr "Norite pažymėti langelių bloką neslinkdami lakšto? Pavadinimo langelyje įveskite bloko nuorodą (pvz., A1:A1000) ir paspauskite įvedimo klavišą."
#: cui/inc/tipoftheday.hrc:200
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to center cells on a printed page? Format > Page, Page > Layout settings > Table alignment."
-msgstr ""
+msgstr "Norite lygiuoti langelius išspausdinto lapo viduryje? Pasirinkite „Formatas → Puslapis“, kortelės „Puslapis“ parinkčių grupėje „Maketo parinktys“ pažymėkite norimą lentelės lygiuotę."
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to jump to a particular page by its number? Click the left-most statusbar entry or use Edit > Go To Page… or press Ctrl+G."
-msgstr ""
+msgstr "Norite greitai pereiti į konkretų puslapį? Spustelėkite kairiausią būsenos juostos laukelį, arba pasirinkite „Taisa → Eiti į puslapį“, arba paspauskite „Vald+G“."
#: cui/inc/tipoftheday.hrc:203
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With Tools > AutoText > AutoText > Import you can select Word document or template containing the AutoText entries that you want to import."
-msgstr ""
+msgstr "Autoteksto frazes iš „Word“ dokumento ar šablono galima importuoti pasirinkus „Priemonės → Autotekstas → Frazė → Importuoti“."
#: cui/inc/tipoftheday.hrc:204
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can display a number as a fraction (0.125 = 1/8): Format > Cells, Number > Fraction."
-msgstr ""
+msgstr "Skaičius galima atvaizduoti paprastosiomis trupmenomis (0,125 = 1/8) – pasirinkite „Formatas → Langeliai“ ir kortelėje „Skaičiai“ nustatykite kategoriją „Trupmena“."
#: cui/inc/tipoftheday.hrc:205
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To print the notes of your slides go to File > Print > Impress tab and select Notes under Document > Type."
-msgstr ""
+msgstr "Jei norite spausdinti skaidrių pastabas, pasirinkite „Failas → Spausdinti“ ir laukelyje „Dokumentas“ parinkite „Pastabos“."
#: cui/inc/tipoftheday.hrc:206
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can move an object to another layer by holding it until its edges flash, then drag it to the tab of the layer you want to move it to."
-msgstr ""
+msgstr "Jei norite perkelti objektą į kitą sluoksnį, ties objektu nuspauskite pelės klavišą, palaikykite, kol žymeklis pakeis formą, ir nutempkite objektą virš sluoksnio, į kurį norite perkelti, ąselės."
#: cui/inc/tipoftheday.hrc:207
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find words more than 10 characters? Edit > Find & Replace > Search > [a-z]{10,} > Other Options > check Regular expressions."
-msgstr ""
+msgstr "Norite rasti žodžius, ilgesnius nei 10 rašmenų? Pasirinkite „Taisa → Ieškoti ir keisti“, laukelyje „Ko ieškoti“ įveskite „[a-ž]{10,}“, parinkčių grupėje „Kitos parinktys“ pažymėkite „Reguliarieji reiškiniai“."
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2647,7 +2642,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:220
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Many images in your Writer document? Speed up the display by disabling View > Images and charts."
-msgstr ""
+msgstr "Teksto dokumente daug paveikslų? Paslėpkite juos ir taip paspartinkite dokumento atvaizdavimą – pasirinkite „Rodymas → Paveikslai ir diagramos“."
#: cui/inc/tipoftheday.hrc:221
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -2848,17 +2843,17 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME at Tools > Options > View > User Interface."
-msgstr ""
+msgstr "„%PRODUCTNAME“ išvaizdą galima pakeisti lango „Priemonės → Parinktys → Rodymas“ parinkčių grupėje „Naudotojo sąsaja“."
#: cui/inc/tipoftheday.hrc:263
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
-msgstr ""
+msgstr "„%PRODUCTNAME“ žinynas"
#: cui/inc/tipoftheday.hrc:264
msgctxt "STR_MORE_LINK"
msgid "More info"
-msgstr ""
+msgstr "Daugiau informacijos"
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Apie „%PRODUCTNAME“"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Bendradarbiai"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Tinklalapis"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "„%PRODUCTNAME“"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Darinio identifikatorius: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Lokalė: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
-msgstr ""
+msgstr "Sąsajos kalba: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Žr. žurnalą: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "„%PRODUCTNAME“ – tai modernus, paprastas naudoti, atviras raštinės programų paketas teksto, skaičiuoklių dokumentams ir pateiktims rengti bei kitiems darbams atlikti."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "© 2000–2019 „LibreOffice“ bendradarbiai."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "„LibreOffice“ sukurtas „OpenOffice.org“ pagrindu."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "„%PRODUCTNAME“ yra „LibreOffice“, sukurto „OpenOffice.org“ pagrindu, atšaka."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Šią laidą išleido „%OOOVENDOR“."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Pakeisti"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Ką keisti:"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Kuo pakeisti:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Tik tekstas"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimalus žodžių ilgis"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5491,27 +5651,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Savybės"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "URL adresas:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Kadras:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Pavadinimas:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternatyvusis tekstas:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "Aprašas:"
@@ -9020,80 +9180,80 @@ msgstr "Rodyti pranešimą apie neįdiegtą žinyną"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Žinynas"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Naudoti „%PRODUCTNAME“ langus"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Failų atvėrimo ir įrašymo langai"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Naudoti „%PRODUCTNAME“ langus"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Spausdinimo dialogo langai"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Spausdinimą laikyti dokumento modifikacija"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Spausdinimo poveikis dokumento būsenai"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Laikyti metais tarp"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ir "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Metai be šimtmečių (du skaitmenys)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Rinkti duomenis apie programos naudojimą ir siųsti juos į „The Document Foundation“"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pagalba „%PRODUCTNAME“ kūrėjams"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Įkelti „%PRODUCTNAME“ paleidus operacinę sistemą"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Įjungti sparčiąją paleistį"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "„%PRODUCTNAME“ sparčioji paleistis"
@@ -9933,7 +10093,7 @@ msgstr "Namų telefono numeris"
#: cui/uiconfig/ui/optuserpage.ui:137
msgctxt "optuserpage|faxft"
msgid "Fa_x/email:"
-msgstr ""
+msgstr "Faksas, el. paštas:"
#: cui/uiconfig/ui/optuserpage.ui:160
msgctxt "optuserpage|firstname-atkobject"
@@ -10966,25 +11126,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Įdiegtas apvalkalas"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Kitas apvalkalas"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Arba pasirinkite iš grafinių apvalkalų, įdiegtų su plėtiniais:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "„Firefox“ grafiniai apvalkalai"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11611,102 +11756,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Saugumo parinktys"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "„Firefox“ grafinio apvalkalo parinkimas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Ieškinys arba adresas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Kategorija:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstraktūs"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Tikslai"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Mada"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Kinas ir TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Šventės"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Muzika"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Gamta"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Kiti"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Peizažai"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Metų laikai"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Vienspalviai"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sportas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Tinklalapiai"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Siūlomi"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12713,27 +12762,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr "Dienos patarimas"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr "Rodyti patarimus paleidžiant programą"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr "Patarimus vėl įjungti galima lange <emph>Priemonės → Parinktys → LibreOffice → Bendrosios parinktys</emph>"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "Kitas patarimas"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Ar žinojote?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/lt/extensions/messages.po b/source/lt/extensions/messages.po
index 92517228e97..402d42bb7a1 100644
--- a/source/lt/extensions/messages.po
+++ b/source/lt/extensions/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-05-09 18:04+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-29 21:12+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557425065.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559164324.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -1979,12 +1979,12 @@ msgstr ""
#: extensions/inc/strings.hrc:297
msgctxt "RID_UPDATE_STR_DLG_TITLE"
msgid "Check for Updates"
-msgstr "Ieškoti naujinimų"
+msgstr "Naujinimų paieška"
#: extensions/inc/strings.hrc:298
msgctxt "RID_UPDATE_STR_DOWNLOAD_PAUSE"
msgid "Downloading %PRODUCTNAME %NEXTVERSION paused at..."
-msgstr "„%PRODUCTNAME %NEXTVERSION“ siuntimas pristabdytas..."
+msgstr "„%PRODUCTNAME %NEXTVERSION“ siuntimas pristabdytas…"
#: extensions/inc/strings.hrc:299
msgctxt "RID_UPDATE_STR_DOWNLOAD_ERR"
@@ -3102,162 +3102,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Stulpelių išdėstymas lentelėje „%1“"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Trumpinys"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Autorius(iai)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Leidėjas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Skyrius"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Redaktorius"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Tipas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Metai"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Pavadinimas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Adresas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Puslapiai"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Leidimas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Knygos pavadinimas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Tomas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Publikacijos tipas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organizacija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Institucija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Universitetas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Ataskaitos tipas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Mėnuo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Žurnalas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Numeris"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Serija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Anotacija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Pastaba"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL adresas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Naudotojo aprašytas 1 laukas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Naudotojo aprašytas 2 laukas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Naudotojo aprašytas 3 laukas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Naudotojo aprašytas 4 laukas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Naudotojo aprašytas 5 laukas"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Stulpelių pavadinimai"
@@ -3432,27 +3432,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Įveskite naujojo duomenų tipo pavadinimą:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Susieti laukus"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Pasiūlyti"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Įdėtinėse formose galima pateikti išsamius duomenis apie dabartinį pagrindinės formos įrašą. Tam reikia nurodyti, kurie įdėtinės formos laukai kuriuos pagrindinės formos laukus atitinka."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiketė"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiketė"
diff --git a/source/lt/filter/messages.po b/source/lt/filter/messages.po
index b7e3ce38e57..3bbe32a2b70 100644
--- a/source/lt/filter/messages.po
+++ b/source/lt/filter/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2017-12-31 00:22+0000\n"
+"PO-Revision-Date: 2019-05-25 21:01+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1514679771.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558818086.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_UNKNOWN_APPLICATION"
@@ -423,12 +423,12 @@ msgstr "Sukuriamas PDF dokumentas, kurį paprasta taisyti „%PRODUCTNAME“ pro
#: filter/uiconfig/ui/pdfgeneralpage.ui:466
msgctxt "pdfgeneralpage|pdfa"
msgid "Archive P_DF/A-2b (ISO 19005-2)"
-msgstr ""
+msgstr "Archyvinis PDF/A-2b (ISO 19005-2)"
#: filter/uiconfig/ui/pdfgeneralpage.ui:470
msgctxt "pdfgeneralpage|pdfa|tooltip_text"
msgid "Creates an ISO 19005-2 compliant PDF file, ideal for long-term document preservation"
-msgstr ""
+msgstr "Sukuriamas ISO 19005-2 standartą atitinkantis PDF failas, tinkamas ilgalaikiam dokumento saugojimui"
#: filter/uiconfig/ui/pdfgeneralpage.ui:482
msgctxt "pdfgeneralpage|tagged"
@@ -1023,12 +1023,12 @@ msgstr "XML filtro nuostatos"
#: filter/uiconfig/ui/xmlfiltersettings.ui:103
msgctxt "xmlfiltersettings|header_name"
msgid "Name"
-msgstr ""
+msgstr "Pavadinimas"
#: filter/uiconfig/ui/xmlfiltersettings.ui:116
msgctxt "xmlfiltersettings|header_type"
msgid "Type"
-msgstr ""
+msgstr "Tipas"
#: filter/uiconfig/ui/xmlfiltersettings.ui:144
msgctxt "xmlfiltersettings|new"
diff --git a/source/lt/filter/source/config/fragments/filters.po b/source/lt/filter/source/config/fragments/filters.po
index 9db9d63c6e7..655d2d584a8 100644
--- a/source/lt/filter/source/config/fragments/filters.po
+++ b/source/lt/filter/source/config/fragments/filters.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:17+0100\n"
-"PO-Revision-Date: 2019-02-22 10:39+0000\n"
+"PO-Revision-Date: 2019-05-25 21:04+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"Language: lt\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1550831942.000000\n"
+"X-POOTLE-MTIME: 1558818258.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -429,7 +429,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 97–2003 automatinė pateiktis"
#: MS_PowerPoint_97_Vorlage.xcu
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 2007–2019 automatinė pateiktis"
#: impress_MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
diff --git a/source/lt/formula/messages.po b/source/lt/formula/messages.po
index 1f8747e262d..cfeb7b1e0b0 100644
--- a/source/lt/formula/messages.po
+++ b/source/lt/formula/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-02-22 10:38+0000\n"
+"PO-Revision-Date: 2019-05-25 20:18+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1550831898.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558815507.000000\n"
#: formula/inc/core_resource.hrc:2268
msgctxt "RID_STRLIST_FUNCTION_NAMES"
@@ -2081,7 +2081,7 @@ msgstr "REGEX"
#: formula/inc/core_resource.hrc:2688
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "FOURIER"
-msgstr ""
+msgstr "FOURIER"
#: formula/inc/strings.hrc:25
msgctxt "STR_OPTIONAL"
diff --git a/source/lt/helpcontent2/source/auxiliary.po b/source/lt/helpcontent2/source/auxiliary.po
index b910409734c..2533d380a19 100644
--- a/source/lt/helpcontent2/source/auxiliary.po
+++ b/source/lt/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-03 19:50+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@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%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: 1556913032.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Bendra informacija"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Pateiktys ir grafikos dokumentai (Impress; Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Mygtukų juostos"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Grafikos dokumentai („%PRODUCTNAME Draw“)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Meniu"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Mygtukų juostos"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objektai, paveikslai ir taškinė grafika"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupės ir sluoksniai"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Tekstas pateiktyse ir grafikos dokumentuose"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/sbasic/guide.po b/source/lt/helpcontent2/source/text/sbasic/guide.po
index 9a4a9a94fd9..27b2ca83315 100644
--- a/source/lt/helpcontent2/source/text/sbasic/guide.po
+++ b/source/lt/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,7 +541,7 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
+msgid "Opening a Dialog With Basic"
msgstr ""
#: show_dialog.xhp
@@ -525,7 +549,7 @@ msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
msgstr ""
#: show_dialog.xhp
diff --git a/source/lt/helpcontent2/source/text/sbasic/python.po b/source/lt/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/lt/helpcontent2/source/text/sbasic/python.po
+++ b/source/lt/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/lt/helpcontent2/source/text/sbasic/shared.po b/source/lt/helpcontent2/source/text/sbasic/shared.po
index 6f8efddc9e3..5ad41aa6f48 100644
--- a/source/lt/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lt/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,7 +36197,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/lt/helpcontent2/source/text/sbasic/shared/03.po b/source/lt/helpcontent2/source/text/sbasic/shared/03.po
index 062f873d3de..60a0b777cc4 100644
--- a/source/lt/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/lt/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/lt/helpcontent2/source/text/scalc/01.po b/source/lt/helpcontent2/source/text/scalc/01.po
index b957edb88de..5a6b799372d 100644
--- a/source/lt/helpcontent2/source/text/scalc/01.po
+++ b/source/lt/helpcontent2/source/text/scalc/01.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-05-04 17:42+0000\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
+"PO-Revision-Date: 2019-05-28 19:28+0000\n"
"Last-Translator: eglejasu <egle.jasute@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1556991763.000000\n"
+"X-POOTLE-MTIME: 1559071713.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Nurodykite failo, kurio duomenis norite įterpti, vietą.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Atverkite failo, kuriame yra duomenys, kuriuos norite įterpti, dialogo langą.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Įveskite URL arba failo pavadinimą, kuriame yra duomenys, ir spustelėkite įvesties klavišą.</ahelp> Tik tada bus reikalaujamas URL iš tinklo arba failų sistemos. "
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Įveskite URL arba failo pavadinimą, kur yra duomenys, kuriuos norite įterpti, ir spustelėkite Įvesties klavišą.</ahelp> Arba galite spustelėję mygtuką <emph>Naršyti</emph> pasirinkti failo pavadinimą iš atverto failo dialogo lango. Tik tuomet bus atveriamas URL arba failo sistema."
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Pasirinkite lentelę arba duomenų sritį, kurią norite įterpti.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Pasirinkite lentelę arba duomenų sritį, kurią norite įterpti.</ahelp> Jei pasirinktas skaičiuoklės „Calc“ arba „Excel“ dokumentas neturi pavadintos srities, duomenys negali būti įterpti ir mygtukas <emph>Gerai</emph> liks neaktyvus."
#: 04090000.xhp
msgctxt ""
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Nurodo langelių sritį, kurią norite suderinti su langelių sritimis išvardytomis <emph>Suderinimo sričių </emph>lauke. Pasirinkite lakšte langelių sritį ir tuomet spustelėkite <emph>Pridėti</emph>. Taip pat galite pasirinkti anksčiau apibrėžtų langelių pavadinimą iš <emph>Šaltinio duomenų sričių </emph>sąrašo.</ahelp>"
#: 12070000.xhp
@@ -53310,7 +53310,7 @@ msgctxt ""
"hd_id04032016112394554\n"
"help.text"
msgid "Returns 6, the number of samples in period based on <emph>Values</emph> and <emph>Timeline</emph> named ranges above, no missing data, and AVERAGE as aggregation."
-msgstr ""
+msgstr "Grąžina 6, periodų skaičius laikotarpyje pagrįstame <emph>Reikšmėmis</emph> ir <emph>Laiko juosta</emph> pavadintomis sritimis, be trūkstamų duomenų ir funkcija AVERAGE kaip sumine funkcija."
#: func_forecastetsseason.xhp
msgctxt ""
@@ -53318,7 +53318,7 @@ msgctxt ""
"par_id0603201619261276\n"
"help.text"
msgid "See also: <link href=\"text/scalc/01/func_forecastetsadd.xhp\">FORECAST.ETS.ADD</link>, <link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT</link>, <link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD</link>, <link href=\"text/scalc/01/func_forecastetsstatmult.xhp\">FORECAST.ETS.STAT.MULT</link>, <link href=\"text/scalc/01/func_forecastetspiadd.xhp\">FORECAST.ETS.PI.ADD</link>, <link href=\"text/scalc/01/func_forecastetspimult.xhp\">FORECAST.ETS.PI.MULT</link>, <link href=\"text/scalc/01/04060185.xhp#forecast\">FORECAST</link>, <link href=\"text/scalc/01/04060185.xhp#forecastlinear\">FORECAST.LINEAR</link>"
-msgstr ""
+msgstr "Taip pat skaitykite: <link href=\"text/scalc/01/func_forecastetsadd.xhp\">FORECAST.ETS.ADD</link>, <link href=\"text/scalc/01/func_forecastetsmult.xhp\">FORECAST.ETS.MULT</link>, <link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD</link>, <link href=\"text/scalc/01/func_forecastetsstatmult.xhp\">FORECAST.ETS.STAT.MULT</link>, <link href=\"text/scalc/01/func_forecastetspiadd.xhp\">FORECAST.ETS.PI.ADD</link> <link href=\"text/scalc/01/func_forecastetspimult.xhp\">FORECAST.ETS.PI.MULT</link>, <link href=\"text/scalc/01/04060185.xhp#forecast\">FORECAST</link>, <link href=\"text/scalc/01/04060185.xhp#forecastlinear\">FORECAST.LINEAR</link>"
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -53326,7 +53326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FORECAST.ETS.STAT.ADD"
-msgstr ""
+msgstr "FORECAST.ETS.STAT.ADD"
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -53334,7 +53334,7 @@ msgctxt ""
"bm_id976559765597655\n"
"help.text"
msgid "<bookmark_value>FORECAST.ETS.STAT.ADD function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>FORECAST.ETS.STAT.ADD funkcija</bookmark_value>"
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -53342,7 +53342,7 @@ msgctxt ""
"hd_id0603201615483251\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD Function</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_forecastetsstatadd.xhp\">FORECAST.ETS.STAT.ADD funkcija</link>"
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -53350,7 +53350,7 @@ msgctxt ""
"par_id0603201615485387\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_FORECAST_ETS_STA\">Returns statistical value(s) that are results of the ETS/EDS algorithms.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_FORECAST_ETS_STA\">Grąžina statistines algoritmų ATS/EDS rezultatų reikšmes.</ahelp>"
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -53358,7 +53358,7 @@ msgctxt ""
"par_id0603201608440530\n"
"help.text"
msgid "FORECAST.ETS.STAT.ADD calculates with the model"
-msgstr ""
+msgstr "FORECAST.ETS.STAT.ADD skaičiuoja pagal modelį"
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -53366,7 +53366,7 @@ msgctxt ""
"par_id0603201610005728\n"
"help.text"
msgid "FORECAST.ETS.STAT.ADD (values, timeline, stat_type, [period_length], [data_completion], [aggregation])"
-msgstr ""
+msgstr "FORECAST.ETS.STAT.ADD(reikšmės, laiko skalė, stat_tipas [period_length], [data_completion], [aggregation])"
#: func_forecastetsstatadd.xhp
msgctxt ""
@@ -53374,7 +53374,7 @@ msgctxt ""
"hd_id04032016185123\n"
"help.text"
msgid "=FORECAST.ETS.STAT.ADD(Values;Timeline;3;1;TRUE();1)"
-msgstr ""
+msgstr "=FORECAST.ETS.STAT.ADD(reikšmės;laiko skalė;3;1;TRUE();1)"
#: func_forecastetsstatadd.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/schart/00.po b/source/lt/helpcontent2/source/text/schart/00.po
index e8a280767bb..93b716eda60 100644
--- a/source/lt/helpcontent2/source/text/schart/00.po
+++ b/source/lt/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/lt/helpcontent2/source/text/shared/00.po b/source/lt/helpcontent2/source/text/shared/00.po
index 94f37f3aea7..cf57b9c8835 100644
--- a/source/lt/helpcontent2/source/text/shared/00.po
+++ b/source/lt/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-04 07:14+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@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%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: 1556954076.000000\n"
#: 00000001.xhp
@@ -7567,14 +7567,6 @@ msgstr "<variable id=\"advanced\">Pasirinkite <switchinline select=\"sys\"><case
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Pasirinkite <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME → Parinktys</emph></caseinline><defaultinline><emph>Priemonės → Parinktys</emph></defaultinline></switchinline><emph> → $[officename] → Grafiniai apvalkalai</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/lt/helpcontent2/source/text/shared/01.po b/source/lt/helpcontent2/source/text/shared/01.po
index e8afbf375f0..22dc016108c 100644
--- a/source/lt/helpcontent2/source/text/shared/01.po
+++ b/source/lt/helpcontent2/source/text/shared/01.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-05-09 19:56+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-29 21:29+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1557431785.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559165379.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
@@ -39312,7 +39336,7 @@ msgctxt ""
"par_id190920161744067918\n"
"help.text"
msgid "The notebook bar is available in Writer, Calc and Impress. The user interface has now several available layouts. To change the layout, choose <item type=\"menuitem\">View - User Interface</item> and from the submenu select the layout which you want."
-msgstr ""
+msgstr "Bendrąja mygtukų juosta galima naudotis teksto rengyklėje „Writer“, skaičiuoklėje „Calc“ ir pateikčių rengyklėje „Impress“. Bendroji juosta turi kelis skirtingus išdėstymo variantus. Jei norite pakeisti išdėstymą, pasirinkite meniu komandą <item type=\"menuitem\">Rodymas → Naudotojo sąsaja</item> ir iš išsiskleidusio meniu pasirinkite norimą išdėstymą."
#: notebook_bar.xhp
msgctxt ""
@@ -39320,7 +39344,7 @@ msgctxt ""
"par_id190920161744066306\n"
"help.text"
msgid "Choose menu <item type=\"menuitem\">View - User Interface</item>"
-msgstr ""
+msgstr "Pasirinkite komandą <item type=\"menuitem\">Rodymas → Naudotojo sąsaja</item>"
#: notebook_bar.xhp
msgctxt ""
@@ -39336,7 +39360,7 @@ msgctxt ""
"par_id190920161744068946\n"
"help.text"
msgid "The <emph>User Interface</emph> entry defines which user interface elements are visible. The following three layouts are not of notebook bar type:"
-msgstr ""
+msgstr "Skirtingais <emph>naudotojo sąsajos</emph> išdėstymo variantais nusakoma, kaip ir kokie sąsajos elementai bus rodomi. Šie trys išdėstymo būdai nepriklauso bendrajai mygtukų juostai:"
#: notebook_bar.xhp
msgctxt ""
@@ -39344,7 +39368,7 @@ msgctxt ""
"par_id190920161744068819\n"
"help.text"
msgid "<emph>Standard toolbar</emph> – classic mode with two visible toolbars – standard and formatting. The sidebar is partially collapsed and shows only tabs."
-msgstr ""
+msgstr "<emph>Įprastos mygtukų juostos</emph> – įprastinė veiksena su dviem rodomomis mygtukų juostomis – standartine ir formatavimo. Šoninis skydelis dalinai suskleistas, matomos tik ąselės."
#: notebook_bar.xhp
msgctxt ""
@@ -39352,7 +39376,7 @@ msgctxt ""
"par_id190920161744061192\n"
"help.text"
msgid "<emph>Single toolbar</emph> – one toolbar with all frequently used features. The sidebar is collapsed."
-msgstr "<emph>Kompaktiškas</emph> – rodoma viena mygtukų juosta su dažniausiai naudojamomis funkcijomis. Šoninis skydelis suskleistas."
+msgstr "<emph>Kompaktiška juosta</emph> – rodoma viena mygtukų juosta su dažniausiai naudojamomis funkcijomis. Šoninis skydelis suskleistas."
#: notebook_bar.xhp
msgctxt ""
@@ -39360,7 +39384,7 @@ msgctxt ""
"par_id190920161744069136\n"
"help.text"
msgid "<emph>Sidebar</emph> – The sidebar is fully opened and only one toolbar is showed – formatting toolbar."
-msgstr "<emph>Šoninis skydelis</emph> – Šoninis skydelis išskleistas, rodoma tik viena – formatavimo – mygtukų juosta."
+msgstr "<emph>Šoninis skydelis</emph> – šoninis skydelis išskleistas, rodoma tik viena – formatavimo – mygtukų juosta."
#: notebook_bar.xhp
msgctxt ""
@@ -39368,7 +39392,7 @@ msgctxt ""
"par_id190920161744063797\n"
"help.text"
msgid "When user activates additional toolbars, they will be saved in the user profile. Therefore, on returning from the notebook bar mode, all toolbars set visible before will show again."
-msgstr ""
+msgstr "Informacija apie įgalintas papildomas mygtukų juostas įrašoma naudotojo profilyje. Todėl vėliau išjungus bendrosios juostos veikseną bus rodomos ir įrašytos papildomos juostos."
#: notebook_bar.xhp
msgctxt ""
@@ -39384,7 +39408,7 @@ msgctxt ""
"par_id190920161744063875\n"
"help.text"
msgid "In a notebook bar mode, all toolbar and sidebar are hidden and the notebook bar is placed on the top."
-msgstr ""
+msgstr "Įgalinus bendrąją mygtukų juostą kitos mygtukų juostos ir šoninis skydelis paslepiami, o bendroji juosta rodoma viršuje."
#: notebook_bar.xhp
msgctxt ""
@@ -39400,7 +39424,7 @@ msgctxt ""
"par_id190920161744064039\n"
"help.text"
msgid "In the tabbed mode the menu bar is hidden by default. To display the menu bar, select the <emph>Menubar</emph> icon at the top-left position of the window."
-msgstr ""
+msgstr "Kortelių veiksenoje meniu juosta paslepiama. Jei norite matyti meniu juostą, viršutiniame kairiajame programos lango kampe spustelėkite mygtuką <emph>Meniu juosta</emph>."
#: notebook_bar.xhp
msgctxt ""
@@ -39408,7 +39432,7 @@ msgctxt ""
"par_id190920161744067802\n"
"help.text"
msgid "<emph>Contextual groups</emph> – The notebook bar is divided into 4 groups. The File, Clipboard and Text groups are fixed. The Insert group contents are replaced with commands that depends on the nature of the selected object in the document, as for a table, an image or an OLE object."
-msgstr ""
+msgstr "<emph>Kontekstinės grupės</emph>. Mygtukai ir komandos bendrojoje juostoje suskirstytos į keturias grupes. Grupės <emph>Failas</emph>, <emph>Iškarpinė</emph> ir <emph>Tekstas</emph> yra fiksuotos. Grupės <emph>Įterpimas</emph> komandos gali būti pakeičiamos kitomis, kontekstą atitinkančiomis komandomis, priklausomai nuo tuo metu dokumente pažymėto objekto, pavyzdžiui, lentelės, paveikslo ar OLE objekto."
#: notebook_bar.xhp
msgctxt ""
@@ -39416,7 +39440,7 @@ msgctxt ""
"par_id190920161744063712\n"
"help.text"
msgid "<emph>Contextual single</emph> – Displays a single centered toolbar with context-dependent contents."
-msgstr ""
+msgstr "<emph>Kontekstinė vientisa juosta</emph>. Rodoma viena mygtukų juosta su nuo konteksto priklausomomis komandomis."
#: notebook_bar.xhp
msgctxt ""
@@ -39424,7 +39448,7 @@ msgctxt ""
"par_id190920161744063446\n"
"help.text"
msgid "<emph>Groupedbar</emph> – The bar is divided into groups that contain commands organized as icon sets and menus."
-msgstr ""
+msgstr "<emph>Grupės</emph>. Mygtukų juosta suskirstyta grupėmis, kuriose komandos išdėstomos ir mygtukais, ir meniu."
#: notebook_bar.xhp
msgctxt ""
@@ -39472,7 +39496,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Check for Updates"
-msgstr ""
+msgstr "Ieškoti naujinimų"
#: online_update.xhp
msgctxt ""
@@ -39480,7 +39504,7 @@ msgctxt ""
"bm_id7647328\n"
"help.text"
msgid "<bookmark_value>updates;checking manually</bookmark_value> <bookmark_value>online updates;checking manually</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>naujinimai;rankinė paieška</bookmark_value> <bookmark_value>atnaujinimai internetu;rankinė paieška</bookmark_value>"
#: online_update.xhp
msgctxt ""
@@ -39488,7 +39512,7 @@ msgctxt ""
"hd_id315256\n"
"help.text"
msgid "<variable id=\"online_update\"><link href=\"text/shared/01/online_update.xhp\">Check for Updates</link></variable>"
-msgstr ""
+msgstr "<variable id=\"online_update\"><link href=\"text/shared/01/online_update.xhp\">Ieškoti naujinimų</link></variable>"
#: online_update.xhp
msgctxt ""
@@ -39496,7 +39520,7 @@ msgctxt ""
"par_id6797082\n"
"help.text"
msgid "You can check for updates manually or automatically."
-msgstr ""
+msgstr "Naujinimų galima ieškoti rankiniu būdu arba automatiškai."
#: online_update.xhp
msgctxt ""
@@ -39504,7 +39528,7 @@ msgctxt ""
"par_id4218878\n"
"help.text"
msgid "Checking for updates will also look for updates of all installed extensions."
-msgstr ""
+msgstr "Ieškant programos naujinimų taip pat bus ieškoma ir įdiegtų plėtinių naujinimų."
#: online_update.xhp
msgctxt ""
@@ -39512,7 +39536,7 @@ msgctxt ""
"par_id8132267\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Help - Check for Updates</item> to check manually."
-msgstr ""
+msgstr "Pasirinkite komandą <item type=\"menuitem\">Žinynas → Ieškoti naujinimų</item>, jei norite rankiniu būdu paleisti tikrinimą."
#: online_update.xhp
msgctxt ""
@@ -39520,7 +39544,7 @@ msgctxt ""
"par_id702230\n"
"help.text"
msgid "You can disable or enable the automatic check in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/online_update.xhp\">Online Update</link>."
-msgstr ""
+msgstr "Automatinę naujinimų paiešką įjungti arba išjungti galima lange <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME → Parinktys</caseinline><defaultinline>Priemonės → Parinktys</defaultinline></switchinline> → %PRODUCTNAME → <link href=\"text/shared/optionen/online_update.xhp\">Atnaujinimas internetu</link>."
#: online_update.xhp
msgctxt ""
@@ -39528,7 +39552,7 @@ msgctxt ""
"par_id3422345\n"
"help.text"
msgid "If an update is available, an icon<image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\">Icon</alt></image> on the menu bar will notify you of the update. Click the icon to open a dialog with more information."
-msgstr ""
+msgstr "Apie galimą naujinimą bus pranešama piktograma<image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\">Piktograma</alt></image> meniu juostoje. Spustelėjus piktogramą bus atvertas dialogo langas su papildoma informacija."
#: online_update.xhp
msgctxt ""
@@ -39536,7 +39560,7 @@ msgctxt ""
"par_id9313638\n"
"help.text"
msgid "You will see the <link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link> dialog with some information about the online update of %PRODUCTNAME."
-msgstr ""
+msgstr "Lange <link href=\"text/shared/01/online_update_dialog.xhp\">Naujinimų paieška</link> rodoma informacija apie galimą „%PRODUCTNAME“ atnaujinimą internetu."
#: online_update.xhp
msgctxt ""
@@ -39544,7 +39568,7 @@ msgctxt ""
"par_id9951780\n"
"help.text"
msgid "Enable an Internet connection for %PRODUCTNAME."
-msgstr ""
+msgstr "Įgalinkite interneto ryšį „%PRODUCTNAME“ programai."
#: online_update.xhp
msgctxt ""
@@ -39552,7 +39576,7 @@ msgctxt ""
"par_id6479384\n"
"help.text"
msgid "If you need a proxy server, enter the proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy."
-msgstr ""
+msgstr "Jei naudojate įgaliotąjį serverį, jo parinktis nurodykite lange <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME → Parinktys</caseinline><defaultinline>Priemonės → Parinktys</defaultinline></switchinline> → Internetas → Įgaliotasis serveris."
#: online_update.xhp
msgctxt ""
@@ -39560,7 +39584,7 @@ msgctxt ""
"par_id3639027\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Check for Updates</item> to check for the availability of a newer version of your office suite."
-msgstr ""
+msgstr "Pasirinkite komandą <item type=\"menuitem\">Ieškoti naujinimų</item>, kad patikrintumėte, ar yra išleista naujesnė naudojamo programų paketo versija."
#: online_update.xhp
msgctxt ""
@@ -39568,7 +39592,7 @@ msgctxt ""
"par_id3722342\n"
"help.text"
msgid "If a newer version is available and %PRODUCTNAME is not set up for automatic downloading, then you can select any of the following actions:"
-msgstr ""
+msgstr "Jei nauja versija yra, o „%PRODUCTNAME“ programa nenustatyta naujinimus atsiųsti automatiškai, galima pasirinkti vieną iš šių veiksmų:"
#: online_update.xhp
msgctxt ""
@@ -39576,7 +39600,7 @@ msgctxt ""
"par_id5106662\n"
"help.text"
msgid "Download the new version."
-msgstr ""
+msgstr "atsiųsti naująją programos versiją;"
#: online_update.xhp
msgctxt ""
@@ -39584,7 +39608,7 @@ msgctxt ""
"par_id4931485\n"
"help.text"
msgid "Install the downloaded files."
-msgstr ""
+msgstr "įdiegti atsiųstą programą;"
#: online_update.xhp
msgctxt ""
@@ -39592,7 +39616,7 @@ msgctxt ""
"par_id9168980\n"
"help.text"
msgid "Abort this check for updates for now."
-msgstr ""
+msgstr "nutraukti naujinimų tikrinimą."
#: online_update.xhp
msgctxt ""
@@ -39600,7 +39624,7 @@ msgctxt ""
"par_id9766533\n"
"help.text"
msgid "If %PRODUCTNAME is configured to download the files automatically, the download starts immediately. A download continues even when you minimize the dialog."
-msgstr ""
+msgstr "Jei „%PRODUCTNAME“ programa nustatyta naujinimus atsiųsti automatiškai, siuntimas pradedamas iš karto. Siuntimas bus tęsiamas net jei suskleisite dialogo langą."
#: online_update.xhp
msgctxt ""
@@ -39608,7 +39632,7 @@ msgctxt ""
"par_id927152\n"
"help.text"
msgid "If automatic downloads are disabled, start the download manually."
-msgstr ""
+msgstr "Jei automatinis siuntimas išjungtas, galima pradėti siuntimą rankiniu būdu."
#: online_update.xhp
msgctxt ""
@@ -39616,7 +39640,7 @@ msgctxt ""
"par_id6081728\n"
"help.text"
msgid "If no update was found, you can close the dialog."
-msgstr ""
+msgstr "Jei nauja programos versija nerasta, galima užverti dialogo langą."
#: online_update.xhp
msgctxt ""
@@ -39624,7 +39648,7 @@ msgctxt ""
"par_id9219641\n"
"help.text"
msgid "You need Administrator rights to update %PRODUCTNAME."
-msgstr ""
+msgstr "„%PRODUCTNAME“ programai atnaujinti reikalingos administratoriaus teisės."
#: online_update_dialog.xhp
msgctxt ""
@@ -39632,7 +39656,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Check for Updates"
-msgstr ""
+msgstr "Naujinimų paieška"
#: online_update_dialog.xhp
msgctxt ""
@@ -39640,7 +39664,7 @@ msgctxt ""
"hd_id4959257\n"
"help.text"
msgid "<link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/online_update_dialog.xhp\">Naujinimų paieška</link>"
#: online_update_dialog.xhp
msgctxt ""
@@ -39648,7 +39672,7 @@ msgctxt ""
"par_id1906491\n"
"help.text"
msgid "<ahelp hid=\".\">Checks for available updates to your version of %PRODUCTNAME. If a newer version is available, you can choose to download the update. After downloading, if you have write permissions for the installation directory, you can install the update.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Tikrinama, ar yra naudojamos „%PRODUCTNAME“ programos versijos naujinimų. Jei naujesnė versija yra, galima pradėti ją siųsti. Atsisiuntus failus, jei turite rašymo į programos diegimo aplanką teises, naujinimą galima įdiegti.</ahelp>"
#: online_update_dialog.xhp
msgctxt ""
@@ -39656,7 +39680,7 @@ msgctxt ""
"par_id4799340\n"
"help.text"
msgid "Once the download starts, you see a progress bar and three buttons on the dialog. You can pause and resume the download by clicking the Pause and Resume buttons. Click Cancel to abort the download and delete the partly downloaded file."
-msgstr ""
+msgstr "Pradėjus siuntimą, dialogo lange bus rodoma eigos juosta ir trys mygtukai. Siuntimą galima pristabdyti ir vėl pratęsti mygtukais <emph>Pristabdyti</emph> ir <emph>Tęsti</emph>. Spustelėjus mygtuką <emph>Atsisakyti</emph> siuntimas bus nutrauktas, o dalinai atsiųstas failas – pašalintas."
#: online_update_dialog.xhp
msgctxt ""
@@ -39664,7 +39688,7 @@ msgctxt ""
"par_id1502121\n"
"help.text"
msgid "By default, downloads will be stored to your desktop. You can change the folder where the downloaded file will be stored in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Online Update."
-msgstr ""
+msgstr "Paprastai atsiųsti naujinimo failai įrašomi darbalaukio aplanke. Atsiuntimo vietą pakeisti galima lange <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME → Parinktys</caseinline><defaultinline>Priemonės → Parinktys</defaultinline></switchinline> → %PRODUCTNAME → Atnaujinimas internetu."
#: online_update_dialog.xhp
msgctxt ""
@@ -39672,7 +39696,7 @@ msgctxt ""
"par_id8266853\n"
"help.text"
msgid "After the download is complete, you can click Install to start the installation of the update. You see a confirmation dialog, where you can choose to close %PRODUCTNAME."
-msgstr ""
+msgstr "Kai siuntimas baigtas, galima spustelėti mygtuką <emph>Įdiegti</emph> naujosios versijos diegimui pradėti. Programa paprašys patvirtinimo, o taip pat reikės baigti „%PRODUCTNAME“ programos darbą."
#: online_update_dialog.xhp
msgctxt ""
@@ -39680,7 +39704,7 @@ msgctxt ""
"par_id2871181\n"
"help.text"
msgid "Under some operation systems, it may be required to manually go to the download folder, unzip the download file, and start the setup script."
-msgstr ""
+msgstr "Kai kuriuose operacinėse sistemose gali tekti rankiniu būdu atverti aplanką su atsiųstu failu, pastarąjį išpakuoti ir paleisti diegimo programą."
#: online_update_dialog.xhp
msgctxt ""
@@ -39688,7 +39712,7 @@ msgctxt ""
"par_id2733542\n"
"help.text"
msgid "After installation of the update you can delete the download file to save space."
-msgstr ""
+msgstr "Kai diegimas baigtas, atsiųstą failą galima pašalinti."
#: online_update_dialog.xhp
msgctxt ""
@@ -39696,7 +39720,7 @@ msgctxt ""
"par_id4238715\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Downloads and saves the update files to the desktop or a folder of your choice. Select the folder in %PRODUCTNAME - Online Update in the Options dialog box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Į darbalaukio arba kitą nurodytą aplanką atsiunčiamas programos naujinimo failas. Atsiuntimo aplanką galima nurodyti parinkčių lango kortelėje „%PRODUCTNAME → Atnaujinimas internetu“.</ahelp>"
#: online_update_dialog.xhp
msgctxt ""
@@ -39704,7 +39728,7 @@ msgctxt ""
"par_id8277230\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Installs the downloaded update.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Įdiegiamas atsiųstas naujinimas.</ahelp>"
#: online_update_dialog.xhp
msgctxt ""
@@ -39712,7 +39736,7 @@ msgctxt ""
"par_id4086428\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Pauses the download. Later click Resume to continue downloading.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Pristabdomas siuntimas. Spustelėkite „Tęsti“, kai norėsite toliau siųsti failą.</ahelp>"
#: online_update_dialog.xhp
msgctxt ""
@@ -39720,7 +39744,7 @@ msgctxt ""
"par_id9024628\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Continues a paused download.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Tęsiamas pristabdytas naujinimo siuntimas.</ahelp>"
#: online_update_dialog.xhp
msgctxt ""
@@ -39728,7 +39752,7 @@ msgctxt ""
"par_id3067110\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aborts the download and deletes the partly downloaded file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Siuntimas nutraukiamas, o dalinai atsiųstas failas pašalinamas.</ahelp>"
#: online_update_dialog.xhp
msgctxt ""
@@ -39736,7 +39760,7 @@ msgctxt ""
"par_id8841822\n"
"help.text"
msgid "<link href=\"text/shared/01/online_update.xhp\">Starting online updates</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/online_update.xhp\">Atnaujinimo internetu paleidimas</link>"
#: packagemanager.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/shared/02.po b/source/lt/helpcontent2/source/text/shared/02.po
index 6f5ea5e873a..1f555c6c30d 100644
--- a/source/lt/helpcontent2/source/text/shared/02.po
+++ b/source/lt/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-14 21:28+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@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%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: 1552598926.000000\n"
#: 01110000.xhp
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/lt/helpcontent2/source/text/shared/guide.po b/source/lt/helpcontent2/source/text/shared/guide.po
index b0e1318e97d..3aa127f9dc5 100644
--- a/source/lt/helpcontent2/source/text/shared/guide.po
+++ b/source/lt/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-11 20:32+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-28 21:04+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557606727.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559077473.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"par_id3150275\n"
"help.text"
msgid "Double-click inside a vacant area of the window while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. In the Styles window, double-click a gray part of the window next to the icons while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. Alternatively, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Ctrl</item></defaultinline></switchinline><item type=\"keycode\">+Shift+F10</item>."
-msgstr "Nuspauskite klavišą „<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline>“ ir dukart spustelėkite tuščioje lango vietoje. „Stilių ir formatavimo“ lange dukart spustelėkite pilką lango sritį šalia mygtukų laikydami nuspaustą klavišą <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline>“. Taip pat galima pasinaudoti klavišų kombinacija <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Vald</item></defaultinline></switchinline><item type=\"keycode\">+Lyg2+F10</item>."
+msgstr "Nuspauskite klavišą <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline> ir dukart spustelėkite tuščioje lango vietoje. „Stilių ir formatavimo“ lange dukart spustelėkite pilką lango sritį šalia mygtukų laikydami nuspaustą klavišą <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline>. Taip pat galima pasinaudoti klavišų kombinacija <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"keycode\">Command</item></caseinline><defaultinline><item type=\"keycode\">Vald</item></defaultinline></switchinline><item type=\"keycode\">+Lyg2+F10</item>."
#: autohide.xhp
msgctxt ""
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,26 +4219,10 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "Office Open XML automatinė pateiktis"
#: convertfilters.xhp
msgctxt ""
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
@@ -11534,7 +10206,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Toolbars"
-msgstr ""
+msgstr "Mygtukų juostų naudojimas"
#: floating_toolbar.xhp
msgctxt ""
@@ -11542,7 +10214,7 @@ msgctxt ""
"bm_id3152801\n"
"help.text"
msgid "<bookmark_value>toolbars;docking/undocking</bookmark_value> <bookmark_value>toolbars;viewing/closing</bookmark_value> <bookmark_value>closing;toolbars</bookmark_value> <bookmark_value>docking;toolbars</bookmark_value> <bookmark_value>fixing toolbars</bookmark_value> <bookmark_value>detaching toolbars</bookmark_value> <bookmark_value>placing toolbars</bookmark_value> <bookmark_value>positioning;toolbars</bookmark_value> <bookmark_value>moving;toolbars</bookmark_value> <bookmark_value>attaching toolbars</bookmark_value> <bookmark_value>floating toolbars</bookmark_value> <bookmark_value>windows;docking</bookmark_value> <bookmark_value>viewing;toolbars</bookmark_value> <bookmark_value>showing;toolbars</bookmark_value> <bookmark_value>icon bars, see toolbars</bookmark_value> <bookmark_value>button bars, see toolbars</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>mygtukų juostos;įtvirtinimas ir atlaisvinimas</bookmark_value> <bookmark_value>mygtukų juostos;rodymas ir slėpimas</bookmark_value> <bookmark_value>slėpimas;mygtukų juostos</bookmark_value> <bookmark_value>įtvirtinimas;mygtukų juostos</bookmark_value> <bookmark_value>mygtukų juostų fiksavimas</bookmark_value> <bookmark_value>mygtukų juostų atlaisvinimas</bookmark_value> <bookmark_value>mygtukų juostų vieta</bookmark_value> <bookmark_value>vieta;mygtukų juostos</bookmark_value> <bookmark_value>perkėlimas;mygtukų juostos</bookmark_value> <bookmark_value>mygtukų juostų įtvirtinimas</bookmark_value> <bookmark_value>slankiosios mygtukų juostos</bookmark_value> <bookmark_value>langai;įtvirtinimas</bookmark_value> <bookmark_value>rodymas;mygtukų juostos</bookmark_value> <bookmark_value>įjungimas;mygtukų juostos</bookmark_value> <bookmark_value>piktogramos, žr. mygtukų juostos</bookmark_value> <bookmark_value>priemonių juostos, žr. mygtukų juostos</bookmark_value>"
#: floating_toolbar.xhp
msgctxt ""
@@ -11550,7 +10222,7 @@ msgctxt ""
"hd_id3152801\n"
"help.text"
msgid "<variable id=\"floating_toolbar\"><link href=\"text/shared/guide/floating_toolbar.xhp\" name=\"Using Toolbars\">Using Toolbars</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"floating_toolbar\"><link href=\"text/shared/guide/floating_toolbar.xhp\" name=\"Mygtukų juostų naudojimas\">Mygtukų juostų naudojimas</link> </variable>"
#: floating_toolbar.xhp
msgctxt ""
@@ -11558,7 +10230,7 @@ msgctxt ""
"par_id3143267\n"
"help.text"
msgid "Some toolbar icons, for example the <emph>Font Color</emph> icon, can open another toolbar. Click the arrow next to the icon to open a toolbar containing further icons."
-msgstr ""
+msgstr "Kai kuriais juostose esančiais mygtukais, pavyzdžiui, mygtuku <emph>Teksto spalva</emph>, galima atverti kitas mygtukų juostas. Spustelėkite šalia mygtuko piktogramos esančią rodyklę, kad atvertumėte kitą juostą su daugiau mygtukų."
#: floating_toolbar.xhp
msgctxt ""
@@ -11566,7 +10238,7 @@ msgctxt ""
"par_id3155450\n"
"help.text"
msgid "You now have a choice: either click the icon that you want to activate, or seize the toolbar by its title bar and drag it while holding down the mouse button."
-msgstr ""
+msgstr "Kai tokia juosta atverta, galima arba spustelėti norimos funkcijos mygtuką, ir juosta užsivers, arba nutempti mygtukų juostą sugriebus už pavadinimo juostos (spustelėkite ir laikykite kairįjį pelės klavišą) ir taip ją atskirti nuo pradinio mygtuko. Tokia juosta liks atverta net ir spustelėjus kurį nors mygtuką joje."
#: floating_toolbar.xhp
msgctxt ""
@@ -11574,7 +10246,7 @@ msgctxt ""
"hd_id733970\n"
"help.text"
msgid "Context of Toolbars"
-msgstr ""
+msgstr "Mygtukų juostų kontekstas"
#: floating_toolbar.xhp
msgctxt ""
@@ -11582,7 +10254,7 @@ msgctxt ""
"par_id341196\n"
"help.text"
msgid "Some toolbars open automatically depending on the context. For example, when you click inside a table in a text document, the Table toolbar opens. When you click inside a numbered paragraph, the Bullets and Numbering toolbar opens."
-msgstr ""
+msgstr "Kai kurios mygtukų juostos pasirodo automatiškai priklausomai nuo konteksto. Pavyzdžiui, spustelėjus teksto dokumente esančios lentelės viduje, atveriama <emph>Lentelės</emph> mygtukų juosta. Spustelėjus numeruotoje pastraipoje, atveriama mygtukų juosta <emph>Ženklinimas ir numeravimas</emph>."
#: floating_toolbar.xhp
msgctxt ""
@@ -11590,7 +10262,7 @@ msgctxt ""
"par_id190920161856181370\n"
"help.text"
msgid "Toolbars are hidden by default when the <link href=\"text/shared/01/notebook_bar.xhp\">Notebook bar</link> is active."
-msgstr ""
+msgstr "Kai įjungta <link href=\"text/shared/01/notebook_bar.xhp\">bendroji juosta</link>, kitos mygtukų juostos paslepiamos."
#: floating_toolbar.xhp
msgctxt ""
@@ -11598,7 +10270,7 @@ msgctxt ""
"hd_id4224372\n"
"help.text"
msgid "To Close a Toolbar Temporarily"
-msgstr ""
+msgstr "Laikinas mygtukų juostos slėpimas"
#: floating_toolbar.xhp
msgctxt ""
@@ -11606,7 +10278,7 @@ msgctxt ""
"par_id295724\n"
"help.text"
msgid "Click the icon in the toolbar's title bar, or choose <emph>Close Toolbar</emph> from the context menu. The toolbar will be shown automatically again when the context becomes active again."
-msgstr ""
+msgstr "Spustelėkite mygtuką „X“ šalia mygtukų juostos pavadinimo arba iš kontekstinio meniu pasirinkite komandą <emph>Užverti mygtukų juostą</emph>. Mygtukų juosta vėl pasirodys, kai tik bus tinkamas kontekstas."
#: floating_toolbar.xhp
msgctxt ""
@@ -11614,7 +10286,7 @@ msgctxt ""
"hd_id1905575\n"
"help.text"
msgid "To Close a Toolbar Permanently"
-msgstr ""
+msgstr "Mygtukų juostos slėpimas"
#: floating_toolbar.xhp
msgctxt ""
@@ -11622,7 +10294,7 @@ msgctxt ""
"par_id9776909\n"
"help.text"
msgid "While the toolbar is visible, choose <emph>View - Toolbars</emph> and click the name of the toolbar to remove the check mark."
-msgstr ""
+msgstr "Kai mygtukų juosta įjungta, pasirinkite <emph>Rodymas → Mygtukų juostos</emph> ir išsiskleidusiame meniu spustelėkite mygtukų juostos, kurią norite paslėpti, pavadinimą."
#: floating_toolbar.xhp
msgctxt ""
@@ -11630,7 +10302,7 @@ msgctxt ""
"par_idN1077E\n"
"help.text"
msgid "To Show a Closed Toolbar"
-msgstr ""
+msgstr "Užvertos mygtukų juostos rodymas"
#: floating_toolbar.xhp
msgctxt ""
@@ -11638,7 +10310,7 @@ msgctxt ""
"par_idN10785\n"
"help.text"
msgid "Choose <emph>View - Toolbars</emph> and click the name of the toolbar."
-msgstr ""
+msgstr "Pasirinkite <emph>Rodymas → Mygtukų juostos</emph> ir išsiskleidusiame meniu spustelėkite norimos mygtukų juostos pavadinimą."
#: floating_toolbar.xhp
msgctxt ""
@@ -11646,7 +10318,7 @@ msgctxt ""
"par_id7296975\n"
"help.text"
msgid "Choose <emph>View - Toolbars - Reset</emph> to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context."
-msgstr ""
+msgstr "Jei pasirinksite <emph>Rodymas → Mygtukų juostos → Atstatyti</emph>, vėl bus įgalinta numatytoji nuo konteksto priklausoma mygtukų juostų elgsena. Tuomet kai kurios mygtukų juostos bus rodomos automatiškai priklausomai nuo konteksto."
#: floating_toolbar.xhp
msgctxt ""
@@ -11654,7 +10326,7 @@ msgctxt ""
"par_idN106E9\n"
"help.text"
msgid "To Make a Toolbar a Floating Toolbar"
-msgstr ""
+msgstr "Mygtukų juostos atlaisvinimas"
#: floating_toolbar.xhp
msgctxt ""
@@ -11662,7 +10334,7 @@ msgctxt ""
"par_idN106EF\n"
"help.text"
msgid "Click the handle at the start of the toolbar, and drag the toolbar into the document."
-msgstr ""
+msgstr "Spustelėkite mygtukų juostos pradžioje esančią rankenėlę ir nutempkite juostą į dokumento sritį."
#: floating_toolbar.xhp
msgctxt ""
@@ -11670,7 +10342,7 @@ msgctxt ""
"par_idN106F2\n"
"help.text"
msgid "To Reattach a Floating Toolbar"
-msgstr ""
+msgstr "Mygtukų juostos įtvirtinimas"
#: floating_toolbar.xhp
msgctxt ""
@@ -11678,7 +10350,7 @@ msgctxt ""
"par_idN106F7\n"
"help.text"
msgid "Drag the title bar of the toolbar to an edge of the document window."
-msgstr ""
+msgstr "Nutempkite mygtukų juostos pavadinimo juostą prie dokumento lango krašto."
#: floating_toolbar.xhp
msgctxt ""
@@ -11686,7 +10358,7 @@ msgctxt ""
"par_id6154362\n"
"help.text"
msgid "To reattach a floating window, drag-and-drop the window's title bar to an edge of the document window. The mouse pointer should be very close to the document window's edge when you release the mouse button."
-msgstr ""
+msgstr "Jei norite įtvirtinti slankųjį langą, nutempkite lango pavadinimo juostą prie dokumento lango krašto. Pelės klavišo atleidimo metu žymeklis turi būti labai arti dokumento lango krašto."
#: floating_toolbar.xhp
msgctxt ""
@@ -11694,7 +10366,7 @@ msgctxt ""
"par_id1510055\n"
"help.text"
msgid "Depending on your system's window manager settings, you may also double-click an empty place on the toolbar or window, while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. Or double-click the title bar of the floating toolbar or window."
-msgstr ""
+msgstr "Priklausomai nuo operacinės sistemos langų tvarkytuvės nuostatų, gali suveikti ir dvikartis spustelėjimas tuščioje mygtukų juostos ar lango vietoje, kai laikomas nuspaustas klavišas <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline>. Taip pat galima dukart spustelėti mygtukų juostos ar lango pavadinimo juostą."
#: floating_toolbar.xhp
msgctxt ""
@@ -11702,7 +10374,7 @@ msgctxt ""
"par_idN107AC\n"
"help.text"
msgid "Docking toolbars and windows by drag-and-drop depends on your system's window manager settings. You must enable your system to show the full window contents when you move a window, instead of showing just the outer frame."
-msgstr ""
+msgstr "Ar pavyks įtvirtinti mygtukų juostas ir langus tempiant juos pele, priklauso nuo operacinės sistemos langų tvarkytuvės nuostatų. Turi būti įgalinta parinktis, kad tempiant langą būtų rodomas visas jo turinys, o ne tik kontūras."
#: floating_toolbar.xhp
msgctxt ""
@@ -11710,7 +10382,7 @@ msgctxt ""
"par_id190920161856185296\n"
"help.text"
msgid "<link href=\"text/shared/01/notebook_bar.xhp\">Notebook bar</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/notebook_bar.xhp\">Bendroji mygtukų juosta</link>"
#: fontwork.xhp
msgctxt ""
@@ -17576,7 +16248,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Navigator for Document Overview"
-msgstr ""
+msgstr "Žvalgiklis dokumentų peržiūrai"
#: navigator.xhp
msgctxt ""
@@ -17584,7 +16256,7 @@ msgctxt ""
"bm_id3147008\n"
"help.text"
msgid "<bookmark_value>documents; contents as lists</bookmark_value><bookmark_value>Navigator; contents as lists</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentai; turinys kaip sąrašas</bookmark_value><bookmark_value>žvalgiklis; turinys kaip sąrašas</bookmark_value>"
#: navigator.xhp
msgctxt ""
@@ -17592,7 +16264,7 @@ msgctxt ""
"hd_id3147008\n"
"help.text"
msgid "<variable id=\"navigator\"><link href=\"text/shared/guide/navigator.xhp\" name=\"Navigator for Document Overview\">Navigator for Document Overview</link></variable>"
-msgstr ""
+msgstr "<variable id=\"navigator\"><link href=\"text/shared/guide/navigator.xhp\" name=\"Žvalgiklis dokumentų peržiūrai\">Žvalgiklis dokumentų peržiūrai</link></variable>"
#: navigator.xhp
msgctxt ""
@@ -17600,7 +16272,7 @@ msgctxt ""
"par_id3154823\n"
"help.text"
msgid "All contents of the Navigator window are referred to here as \"categories,\" whether titles, sheets, tables, text frames, graphics, OLE objects, sections, hyperlinks, references, indexes or comments."
-msgstr ""
+msgstr "Objektai žvalgiklio lange grupuojami į kategorijas. Atskiros kategorijos gali būti antraštės, lakštai, lentelės, teksto kadrai, paveikslai, OLE objektai, sekcijos, hipersaitai, nuorodos, rodyklės ar komentarai."
#: navigator.xhp
msgctxt ""
@@ -17608,7 +16280,7 @@ msgctxt ""
"par_id3153662\n"
"help.text"
msgid "The Navigator displays all types of objects contained in a document. If a plus sign appears next to a category, this indicates that at least one object of this kind exists. If you rest the mouse pointer on the category name, the number of objects is displayed in an extended tip."
-msgstr ""
+msgstr "Žvalgiklyje išvardijami visų tipų objektai, esantys dokumente. Jei prie kategorijos pavadinimo yra pliuso ženklas, tai reiškia, kad dokumente yra bent vienas šios kategorijos objektas. Jei virš kategorijos pavadinimo užvesite pelės žymeklį, užuominoje bus parodytas dokumente esančių tos kategorijos objektų skaičius."
#: navigator.xhp
msgctxt ""
@@ -17616,7 +16288,7 @@ msgctxt ""
"par_id3146797\n"
"help.text"
msgid "Open a category by clicking on the plus sign. If you only want to view the entries in a certain category, select the category and click the <emph>Content View</emph> icon. Until you click the icon again, only the objects of this category will be displayed."
-msgstr ""
+msgstr "Spustelėję pliuso ženklą išskleiskite kategoriją. Jei žvalgiklyje norite peržiūrėti tik vienos kategorijos objektus, pažymėkite norimą kategoriją ir spustelėkite mygtuką <emph>Turinys</emph>. Kol nespustelėsite mygtuko dar kartą, žvalgiklyje bus rodomi tik pažymėtos kategorijos objektai."
#: navigator.xhp
msgctxt ""
@@ -17624,7 +16296,7 @@ msgctxt ""
"par_id3166461\n"
"help.text"
msgid "You may dock the Navigator to any document border or turn it back into a free window (double click on the gray area). You can change the size of the Navigator when it is a free window."
-msgstr ""
+msgstr "Žvalgiklio langą galima pritvirtinti bet kuriame programos lango krašte ir po to vėl jį atlaisvinti (dukart spustelėkite pilką lango sritį). Kai žvalgiklio langas atlaisvintas, galima keisti jo dydį."
#: navigator_setcursor.xhp
msgctxt ""
@@ -17632,7 +16304,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Navigation to Quickly Reach Objects"
-msgstr ""
+msgstr "Žvalgiklio naudojimas objektams sparčiai rasti"
#: navigator_setcursor.xhp
msgctxt ""
@@ -17640,7 +16312,7 @@ msgctxt ""
"bm_id3150774\n"
"help.text"
msgid "<bookmark_value>Document Map, see Navigator</bookmark_value><bookmark_value>cursor;quickly moving to an object</bookmark_value><bookmark_value>objects;quickly moving to</bookmark_value><bookmark_value>navigating;in documents</bookmark_value><bookmark_value>Navigator;working with</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumento planas, žr. Žvalgiklis</bookmark_value><bookmark_value>žymeklis;spartus perkėlimas prie objekto</bookmark_value><bookmark_value>objektai;spartus perėjimas</bookmark_value><bookmark_value>žvalgymas;dokumentai</bookmark_value><bookmark_value>žvalgiklis;darbas su žvalgikliu</bookmark_value>"
#: navigator_setcursor.xhp
msgctxt ""
@@ -17648,7 +16320,7 @@ msgctxt ""
"hd_id3150774\n"
"help.text"
msgid "<variable id=\"navigator_setcursor\"><link href=\"text/shared/guide/navigator_setcursor.xhp\" name=\"Navigation to Quickly Reach Objects\">Navigation to Quickly Reach Objects</link></variable>"
-msgstr ""
+msgstr "<variable id=\"navigator_setcursor\"><link href=\"text/shared/guide/navigator_setcursor.xhp\" name=\"Žvalgiklio naudojimas objektams sparčiai rasti\">Žvalgiklio naudojimas objektams sparčiai rasti</link></variable>"
#: navigator_setcursor.xhp
msgctxt ""
@@ -17656,7 +16328,7 @@ msgctxt ""
"par_id3145071\n"
"help.text"
msgid "This is a common use of the Navigator."
-msgstr ""
+msgstr "Štai keletas žvalgiklio naudojimo atvejų."
#: navigator_setcursor.xhp
msgctxt ""
@@ -17664,7 +16336,7 @@ msgctxt ""
"par_id3145382\n"
"help.text"
msgid "Double-click an object in the Navigator to jump directly to the position of the object in the document."
-msgstr ""
+msgstr "Dukart spustelėję objektą žvalgiklyje iškart pereisite į to objekto vietą dokumente."
#: navigator_setcursor.xhp
msgctxt ""
@@ -17672,7 +16344,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "You can use the <emph>Navigation</emph> toolbar to scroll to the previous or next object of a specific category."
-msgstr ""
+msgstr "<emph>Žvalgymo</emph> mygtukų juostos mygtukais galima pereiti prie ankstesnio ar kito konkrečios kategorijos objekto."
#: navigator_setcursor.xhp
msgctxt ""
@@ -17680,7 +16352,7 @@ msgctxt ""
"par_id3148491\n"
"help.text"
msgid "Open the toolbar using the <emph>Navigation</emph> icon below the vertical scroll bar of a text document, or in the Navigator window."
-msgstr ""
+msgstr "<emph>Žvalgymo</emph> mygtukų juostą galima atverti spustelėjus atitinkamą mygtuką teksto dokumento žvalgiklio lange."
#: navigator_setcursor.xhp
msgctxt ""
@@ -17688,7 +16360,7 @@ msgctxt ""
"par_id3153348\n"
"help.text"
msgid "On the <emph>Navigation</emph> toolbar, you first select the category, then click on one of the buttons, <emph>Previous Object</emph> or <emph>Next Object</emph>. The names of the buttons refer to the category, for example, the button \"Next Object\" is named \"Next Page\" or \"Next Bookmark\" according to the category."
-msgstr ""
+msgstr "<emph>Žvalgymo</emph> mygtukų juostoje pirmiausia pasirinkite objektų kategoriją, tada spustelėkite mygtukus <emph>Ankstesnis objektas</emph> arba <emph>Kitas objektas</emph>. Pastarųjų mygtukų pavadinimai kinta priklausomai nuo pasirinktos objektų kategorijos."
#: navpane_on.xhp
msgctxt ""
@@ -17696,7 +16368,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Showing Navigation Pane of the Help"
-msgstr ""
+msgstr "Žinyno žvalgymo polangio rodymas"
#: navpane_on.xhp
msgctxt ""
@@ -17704,7 +16376,7 @@ msgctxt ""
"bm_id3155364\n"
"help.text"
msgid "<bookmark_value>Help; navigation pane showing/hiding</bookmark_value><bookmark_value>hiding;navigation pane in Help window</bookmark_value><bookmark_value>indexes;showing/hiding Help index tab</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>žinynas; žvalgymo polangio rodymas ir slėpimas</bookmark_value><bookmark_value>slėpimas;žinyno žvalgymo polangis</bookmark_value><bookmark_value>rodyklės;žinyno rodyklės rodymas ir slėpimas</bookmark_value>"
#: navpane_on.xhp
msgctxt ""
@@ -17712,7 +16384,7 @@ msgctxt ""
"hd_id3150178\n"
"help.text"
msgid "<variable id=\"navpane_on\"><link href=\"text/shared/guide/navpane_on.xhp\" name=\"Showing Navigation Pane of the Help\">Showing Navigation Pane of the Help</link></variable>"
-msgstr ""
+msgstr "<variable id=\"navpane_on\"><link href=\"text/shared/guide/navpane_on.xhp\" name=\"Žinyno žvalgymo polangio rodymas\">Žinyno žvalgymo polangio rodymas</link></variable>"
#: navpane_on.xhp
msgctxt ""
@@ -17720,7 +16392,7 @@ msgctxt ""
"par_id3147571\n"
"help.text"
msgid "In the Help window, you can show or hide the navigation pane as needed."
-msgstr ""
+msgstr "Žinyno lange žvalgymo polangį galima parodyti arba paslėpti."
#: navpane_on.xhp
msgctxt ""
@@ -17728,7 +16400,7 @@ msgctxt ""
"par_id3156411\n"
"help.text"
msgid "<image id=\"img_id3153345\" src=\"sfx2/res/indexon_small.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153345\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153345\" src=\"sfx2/res/indexon_small.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153345\">Piktograma</alt></image>"
#: navpane_on.xhp
msgctxt ""
@@ -17736,7 +16408,7 @@ msgctxt ""
"par_id3152996\n"
"help.text"
msgid "On the toolbar of the <emph>Help</emph> window, click the left icon to show or hide the navigation pane."
-msgstr ""
+msgstr "<emph>ŽInyno</emph> lango mygtukų juostoje spustelėkite kairiausią mygtuką, jei norite paslėpti ar vėl parodyti žvalgymo polangį."
#: numbering_stop.xhp
msgctxt ""
@@ -22168,7 +20840,7 @@ msgctxt ""
"par_id041620170723504497\n"
"help.text"
msgid "<ahelp hid=\".\">Click on the Settings icon at the bottom left to open the Settings menu.</ahelp> The options are create a New Category, Delete Category or Refresh. If a default template for new documents has been changed, an additional option to reset the factory default template is available."
-msgstr ""
+msgstr "<ahelp hid=\".\">Spustelėjus mygtuką lango apatiniame kairiajame kampe išskleidžiamas nuostatų meniu.</ahelp> Jame yra komandos naujai kategorijai sukurti, kategorijai pašalinti ir šablonų sąrašui atnaujinti. Jei numatytasis naujų dokumentų šablonas buvo pakeistas, šiame meniu bus ir komanda numatytajam šablonui atstatyti."
#: template_manager.xhp
msgctxt ""
@@ -22176,7 +20848,7 @@ msgctxt ""
"hd_id041620170723501627\n"
"help.text"
msgid "Browse Online Templates"
-msgstr ""
+msgstr "Ieškoti šablonų internete"
#: template_manager.xhp
msgctxt ""
@@ -22184,7 +20856,7 @@ msgctxt ""
"par_id041620170723503494\n"
"help.text"
msgid "<ahelp hid=\".\">To browse for more templates online, click on the Browse online templates icon at bottom left to open a browser window and search for templates at <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Spustelėkite mygtuką <emph>Ieškoti šablonų internete</emph>, jei norite interneto naršyklėje atverti tinklalapį <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link>, iš kurio galima atsisiųsti naujų šablonų.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -22192,7 +20864,7 @@ msgctxt ""
"hd_id041620170723503949\n"
"help.text"
msgid "Open"
-msgstr ""
+msgstr "Atverti"
#: template_manager.xhp
msgctxt ""
@@ -22200,7 +20872,7 @@ msgctxt ""
"par_id041620170723503583\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Open, press Enter or double click to open a new document using that template."
-msgstr ""
+msgstr "Pagrindiniame lange pažymėkite šabloną, tada arba spustelėkite jį dešiniuoju pelės klavišu ir pasirinkite komandą <emph>Atverti</emph>, arba paspauskite įvedimo klavišą, arba dukart spustelėkite šabloną, kad pradėtumėte naują dokumentą iš pažymėto šablono."
#: template_manager.xhp
msgctxt ""
@@ -22208,7 +20880,7 @@ msgctxt ""
"hd_id041620170723504268\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Taisyti"
#: template_manager.xhp
msgctxt ""
@@ -22216,7 +20888,7 @@ msgctxt ""
"par_id041620170723502297\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Edit to edit the template. This function is only available for templates that are not built-in."
-msgstr ""
+msgstr "Pagrindiniame lange pažymėkite šabloną ir spustelėkite jį dešiniuoju pelės klavišu, tada pasirinkite komandą <emph>Taisyti</emph>. Ši funkcija neveiks su kartu su programa pateiktais šablonais."
#: template_manager.xhp
msgctxt ""
@@ -22224,7 +20896,7 @@ msgctxt ""
"hd_id041620170723509251\n"
"help.text"
msgid "Set as Default"
-msgstr ""
+msgstr "Nustatyti numatytuoju"
#: template_manager.xhp
msgctxt ""
@@ -22232,7 +20904,7 @@ msgctxt ""
"par_id041620170723501975\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Set as Default to set the template as the default template. This will cause a green tick to appear over the template and the template will automatically load when a new document is created using the matching application."
-msgstr ""
+msgstr "Jei norite nustatyti šabloną numatytuoju, pažymėkite jį pagrindiniame lange, spustelėkite dešiniuoju pelės klavišu ir pasirinkite komandą <emph>Nustatyti numatytuoju</emph>. Šalia šablono miniatiūros atsiras žalia varnelė, o šablonas bus įkeliamas kaskart pradedant naują dokumentą atitinkamoje programoje."
#: template_manager.xhp
msgctxt ""
@@ -22240,7 +20912,7 @@ msgctxt ""
"par_id041620171037534321\n"
"help.text"
msgid "Refer to the <link href=\"text/shared/guide/standard_template.xhp\">Standard Template</link>"
-msgstr ""
+msgstr "Daugiau informacijos apie <link href=\"text/shared/guide/standard_template.xhp\">numatytuosius šablonus</link>"
#: template_manager.xhp
msgctxt ""
@@ -22248,7 +20920,7 @@ msgctxt ""
"hd_id041620170723508003\n"
"help.text"
msgid "Rename"
-msgstr ""
+msgstr "Pervadinti"
#: template_manager.xhp
msgctxt ""
@@ -22256,7 +20928,7 @@ msgctxt ""
"par_id041620170723509003\n"
"help.text"
msgid "Select a template in the main window and right-click and then choose Rename to rename the template. This will cause a dialog box to appear where a new name may be chosen for the template. Type in the name and then choose OK or choose Cancel to revert to the name that is already set."
-msgstr ""
+msgstr "Jei norite pakeisti šablono pavadinimą, pagrindiniame lange pažymėkite šabloną ir spustelėkite jį dešiniuoju pelės klavišu, tada pasirinkite komandą <emph>Pervadinti</emph>. Bus atvertas dialogo langas, kuriame reikės įvesti naująjį šablono pavadinimą. Jei įvedę pavadinimą spustelėsite <emph>Gerai</emph>, naujasis pavadinimas bus pritaikytas šablonui. Jei spustelėsite mygtuką <emph>Atsisakyti</emph>, liks ankstesnis šablono pavadinimas."
#: template_manager.xhp
msgctxt ""
@@ -22264,7 +20936,7 @@ msgctxt ""
"hd_id041620170723508658\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Šalinti"
#: template_manager.xhp
msgctxt ""
@@ -22272,7 +20944,7 @@ msgctxt ""
"par_id041620170723504317\n"
"help.text"
msgid "Select a template in the main window and press the delete button, or right-click then choose Delete to delete the template. A dialog box will appear requesting confirmation. Choose Yes to delete or No to cancel."
-msgstr ""
+msgstr "Jei norite pašalinti šabloną, pažymėkite jį pagrindiniame lange, tada paspauskite šalinimo klavišą arba spustelėkite šablono miniatiūrą dešiniuoju pelės klavišu ir pasirinkite komandą <emph>Šalinti</emph>. Šalinimą reikės patvirtinti atsivėrusiame dialogo lange. Spustelėjus <emph>Taip</emph> šablonas bus pašalintas, spustelėjus <emph>Ne</emph> šalinimo bus atsisakyta."
#: template_manager.xhp
msgctxt ""
@@ -22280,7 +20952,7 @@ msgctxt ""
"hd_id041620170723508845\n"
"help.text"
msgid "Move"
-msgstr ""
+msgstr "Perkelti"
#: template_manager.xhp
msgctxt ""
@@ -22288,7 +20960,7 @@ msgctxt ""
"par_id041620170723518776\n"
"help.text"
msgid "<ahelp hid=\".\">Choose the Move option at the bottom right after selecting a template to move it to a different category. Default templates cannot be moved, but copies can be created in other categories.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Pasirinkite komandą <emph>Perkelti</emph> lango apačioje, jei norite perkelti pažymėtą šabloną į kitą kategoriją. Numatytųjų šablonų perkelti negalima, bet galima sukurti jų kopijas kitose kategorijose.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -22296,7 +20968,7 @@ msgctxt ""
"hd_id041620170723516791\n"
"help.text"
msgid "Export"
-msgstr ""
+msgstr "Eksportuoti"
#: template_manager.xhp
msgctxt ""
@@ -22304,7 +20976,7 @@ msgctxt ""
"par_id041620170723513192\n"
"help.text"
msgid "<ahelp hid=\".\">Choose a template in the main window and then press the Export button at the bottom right to export the template to a folder on your computer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Pažymėjus šabloną ir lango apačioje pasirinkus komandą <emph>Eksportuoti</emph>, šabloną galima įrašyti į norimą aplanką kompiuterio diske.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -22312,7 +20984,7 @@ msgctxt ""
"hd_id041620170723516279\n"
"help.text"
msgid "Import"
-msgstr ""
+msgstr "Importuoti"
#: template_manager.xhp
msgctxt ""
@@ -22320,7 +20992,7 @@ msgctxt ""
"par_id04162017072351776\n"
"help.text"
msgid "<ahelp hid=\".\">Press the Import button at the bottom right, and then choose a Category to import a template from your computer to that category in the Template Manager.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Spustelėkite mygtuką <emph>Importuoti</emph> lango apačioje ir tada pasirinkite kategoriją, kad šabloną iš kompiuterio disko importuotumėte į norimą kategoriją šablonų tvarkytuvėje.</ahelp>"
#: template_manager.xhp
msgctxt ""
@@ -22328,7 +21000,7 @@ msgctxt ""
"hd_id041620170723515107\n"
"help.text"
msgid "Examples"
-msgstr ""
+msgstr "Pavyzdžiai"
#: template_manager.xhp
msgctxt ""
@@ -22336,7 +21008,7 @@ msgctxt ""
"hd_id041620170723516260\n"
"help.text"
msgid "Example 1 – Creating a Business Letter"
-msgstr ""
+msgstr "1 pavyzdys. Tarnybinio laiško kūrimas"
#: template_manager.xhp
msgctxt ""
@@ -22344,7 +21016,7 @@ msgctxt ""
"par_id041620170723512460\n"
"help.text"
msgid "Open %PRODUCTNAME Writer"
-msgstr ""
+msgstr "Paleiskite teksto rengyklę „%PRODUCTNAME Writer“."
#: template_manager.xhp
msgctxt ""
@@ -22352,7 +21024,7 @@ msgctxt ""
"par_id041620170723518567\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N or choose <emph>File - New - Templates</emph> to open the Template Manager"
-msgstr ""
+msgstr "Paspaudę klavišų kombinaciją <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline><emph>+Lyg2+N</emph> arba pasirinkę komandą <emph>Failas → Naujas → Šablonai</emph> atverkite šablonų tvarkytuvę."
#: template_manager.xhp
msgctxt ""
@@ -22360,7 +21032,7 @@ msgctxt ""
"par_id041620170723513600\n"
"help.text"
msgid "Type “business letter” into the search box"
-msgstr ""
+msgstr "Pasirinkite kategoriją <emph>Tarnybiniai laiškai</emph>."
#: template_manager.xhp
msgctxt ""
@@ -22368,7 +21040,7 @@ msgctxt ""
"par_id041620170723518765\n"
"help.text"
msgid "Choose one of the templates from the main window by double-clicking on it or pressing tab to select and then Enter"
-msgstr ""
+msgstr "Pradėkite naują dokumentą iš norimo šablono – dukart spustelėkite šablono miniatiūrą arba spausdami tabuliavimo klavišą pažymėkite šabloną ir tada paspauskite įvedimo klavišą."
#: template_manager.xhp
msgctxt ""
@@ -22376,7 +21048,7 @@ msgctxt ""
"par_id041620170723511456\n"
"help.text"
msgid "A new document using that template is created in a new instance of %PRODUCTNAME Writer"
-msgstr ""
+msgstr "Naujas dokumentas iš pasirinkto šablono bus sukurtas naujame teksto rengyklės „%PRODUCTNAME Writer“ lange."
#: template_manager.xhp
msgctxt ""
@@ -22384,7 +21056,7 @@ msgctxt ""
"par_id041620170723516762\n"
"help.text"
msgid "Change text and logo as needed"
-msgstr ""
+msgstr "Pakeiskite tekstą ir logotipą pagal savo poreikius."
#: template_manager.xhp
msgctxt ""
@@ -22392,7 +21064,7 @@ msgctxt ""
"hd_id041620170723518918\n"
"help.text"
msgid "Example 2 – Import Template – Personal Budget Spreadsheet"
-msgstr ""
+msgstr "2 pavyzdys. Šablono importas – asmeninių finansų skaičiuoklės dokumentas"
#: template_manager.xhp
msgctxt ""
@@ -22400,7 +21072,7 @@ msgctxt ""
"par_id041620170723511504\n"
"help.text"
msgid "Open %PRODUCTNAME Calc"
-msgstr ""
+msgstr "Paleiskite skaičiuoklę „%PRODUCTNAME Calc“."
#: template_manager.xhp
msgctxt ""
@@ -22408,7 +21080,7 @@ msgctxt ""
"par_id041620170723518639\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N or choose <emph>File - New - Templates</emph> to open the Template Manager"
-msgstr ""
+msgstr "Paspaudę klavišų kombinaciją <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline><emph>+Lyg2+N</emph> arba pasirinkę komandą <emph>Failas → Naujas → Šablonai</emph> atverkite šablonų tvarkytuvę."
#: template_manager.xhp
msgctxt ""
@@ -22416,7 +21088,7 @@ msgctxt ""
"par_id041620170723512689\n"
"help.text"
msgid "Click on the world icon to browse for online templates"
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Ieškoti šablonų internete</emph>."
#: template_manager.xhp
msgctxt ""
@@ -22424,7 +21096,7 @@ msgctxt ""
"par_id041620170723511300\n"
"help.text"
msgid "Search for the Personal Budget Template, then download it"
-msgstr ""
+msgstr "Raskite šabloną „Personal Budget Template“ ir jį atsisiųskite."
#: template_manager.xhp
msgctxt ""
@@ -22432,7 +21104,7 @@ msgctxt ""
"par_id041620170723514055\n"
"help.text"
msgid "Open Template Manager and choose the Import button"
-msgstr ""
+msgstr "Atverkite šablonų tvarkytuvę ir spustelėkite mygtuką <emph>Importuoti</emph>."
#: template_manager.xhp
msgctxt ""
@@ -22440,7 +21112,7 @@ msgctxt ""
"par_id041620170723513485\n"
"help.text"
msgid "Select a category to save the new template in (e.g. My Templates) and press OK"
-msgstr ""
+msgstr "Pasirinkite kategoriją, kuriai norite priskirti naująjį šabloną (pavyzdžiui, <emph>Mano šablonai</emph>) ir spustelėkite mygtuką <emph>Gerai</emph>."
#: template_manager.xhp
msgctxt ""
@@ -22448,7 +21120,7 @@ msgctxt ""
"par_id041620170723513541\n"
"help.text"
msgid "Browse to the folder where you downloaded the template, select it and press Open"
-msgstr ""
+msgstr "Atverkite aplanką, kuriame yra atsiųstas šablonas, pažymėkite šabloną ir spustelėkite <emph>Atverti</emph>."
#: template_manager.xhp
msgctxt ""
@@ -22456,7 +21128,7 @@ msgctxt ""
"par_id041620170723511411\n"
"help.text"
msgid "The Template is now available in the category you chose."
-msgstr ""
+msgstr "Naujasis šablonas nuo šiol bus pasirinktoje kategorijoje."
#: template_manager.xhp
msgctxt ""
@@ -22464,7 +21136,7 @@ msgctxt ""
"hd_id041620170723518447\n"
"help.text"
msgid "Example 3 – %PRODUCTNAME Impress – Presentation Template"
-msgstr ""
+msgstr "3 pavyzdys. „%PRODUCTNAME Impress“ – pateikties šablonas"
#: template_manager.xhp
msgctxt ""
@@ -22472,7 +21144,7 @@ msgctxt ""
"par_id041620170723515914\n"
"help.text"
msgid "Open %PRODUCTNAME Impress"
-msgstr ""
+msgstr "Paleiskite pateikčių rengyklę „%PRODUCTNAME Impress“."
#: template_manager.xhp
msgctxt ""
@@ -22480,7 +21152,7 @@ msgctxt ""
"par_id041620170723523193\n"
"help.text"
msgid "The Template Manager opens automatically when you open %PRODUCTNAME Impress"
-msgstr ""
+msgstr "Kai paleidžiama „%PRODUCTNAME Impress“ rengyklė, šablonų tvarkytuvė atveriama automatiškai."
#: template_manager.xhp
msgctxt ""
@@ -22488,7 +21160,7 @@ msgctxt ""
"par_id041620170723525963\n"
"help.text"
msgid "Choose a template for your presentation, filter by categories or search"
-msgstr ""
+msgstr "Pasirinkite norimą pateikties šabloną – rasti gali būti lengviau filtruojant pagal kategorijas ar naudojant paiešką."
#: template_manager.xhp
msgctxt ""
@@ -22496,7 +21168,7 @@ msgctxt ""
"par_id041620170723523510\n"
"help.text"
msgid "Additional features are unavailable, and you may only select a template, filter, or import."
-msgstr ""
+msgstr "Kitos funkcijos šablonų tvarkytuvėje šiuo metu neveiks – galima tik pasirinkti šabloną, filtruoti ar importuoti."
#: template_manager.xhp
msgctxt ""
@@ -22504,7 +21176,7 @@ msgctxt ""
"par_id041620170723525323\n"
"help.text"
msgid "After starting %PRODUCTNAME Impress you may run the Template Manager again to access additional features."
-msgstr ""
+msgstr "Kol pateikčių rengyklė „%PRODUCTNAME Impress“ veikia, galima iš naujo atverti šablonų tvarkytuvės langą – tuomet jame veiks ir kitos funkcijos."
#: template_manager.xhp
msgctxt ""
@@ -22512,7 +21184,7 @@ msgctxt ""
"par_id041620170723521916\n"
"help.text"
msgid "Make use of categories to organize your templates. Create new templates or download templates and organize in the Template Manager. Use templates to save time for repetitive documents."
-msgstr ""
+msgstr "Šablonams tvarkyti išnaudokite kategorijų funkcionalumą. Kurkite naujus šablonus, atsisiųskite juos ir tvarkykite šablonų tvarkytuvėje. Šablonai gali ypač paspartinti didelio kiekio panašių dokumentų kūrimą."
#: template_manager.xhp
msgctxt ""
@@ -22520,7 +21192,7 @@ msgctxt ""
"par_id04162017072352773\n"
"help.text"
msgid "See <link href=\"text/swriter/guide/templates_styles.xhp\">Templates and Styles</link> for related information."
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/templates_styles.xhp\">Šablonai ir stiliai</link>"
#: template_manager.xhp
msgctxt ""
@@ -22528,7 +21200,7 @@ msgctxt ""
"par_id041620170723523966\n"
"help.text"
msgid "See <link href=\"text/swriter/guide/template_create.xhp\">Creating a Document Template</link> for related information."
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/template_create.xhp\">Dokumento šablono kūrimas</link>"
#: template_manager.xhp
msgctxt ""
@@ -22536,7 +21208,7 @@ msgctxt ""
"par_id04162017072352674\n"
"help.text"
msgid "See Chapter 3 – Using Styles and Templates in the Getting Started Guide, available from the <link href=\"https://documentation.libreoffice.org/en/english-documentation/getting-started-guide/\">documentation website</link>."
-msgstr ""
+msgstr "Naudotojo vadovo „Getting Started Guide“ 3 skyrius „Using Styles and Templates“. Vadovą anglų kalba galima atsisiųsti iš <link href=\"https://documentation.libreoffice.org/en/english-documentation/getting-started-guide/\">dokumentacijos tinklalapio</link>."
#: template_manager.xhp
msgctxt ""
@@ -22544,7 +21216,7 @@ msgctxt ""
"par_id041620170723529524\n"
"help.text"
msgid "Refer to <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link> for templates to download."
-msgstr ""
+msgstr "Šablonų galima atsisiųsti iš tinklalapio <link href=\"https://templates.libreoffice.org\">https://templates.libreoffice.org</link>."
#: text_color.xhp
msgctxt ""
@@ -22696,7 +21368,7 @@ msgctxt ""
"par_id3145673\n"
"help.text"
msgid "<emph>INSRT</emph>"
-msgstr "<emph>ĮTERP</emph>"
+msgstr "<emph>Įterpimas</emph>"
#: textmode_change.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/shared/optionen.po b/source/lt/helpcontent2/source/text/shared/optionen.po
index da2c0984b7c..7ff039ecb11 100644
--- a/source/lt/helpcontent2/source/text/shared/optionen.po
+++ b/source/lt/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-24 19:42+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@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%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: 1553456560.000000\n"
#: 01000000.xhp
@@ -14788,182 +14788,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "Daugiau informacijos apie „OpenCL“ ieškokite <link href=\"https://www.khronos.org/opencl/\">OpenCL tinklalapyje</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Grafiniai apvalkalai"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>apvalkalai;nuostatų keitimas</bookmark_value> <bookmark_value>nuostatų keitimas;apvalkalai</bookmark_value> <bookmark_value>grafiniai apvalkalai;Mozilla Firefox apvalkalai</bookmark_value> <bookmark_value>Mozilla Firefox grafiniai apvalkalai;grafiniai apvalkalai</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Grafiniai apvalkalai</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "„%PRODUCTNAME“ programai galima naudoti „Mozilla Firefox“ naršyklės grafinius apvalkalus. Pasirinkto apvalkalo spalvos ar paveikslas bus rodomi meniu juostos bei programos lango viršuje ir apačioje įtvirtintų mygtukų juostų fone."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "„Mozilla Firefox“ grafinius apvalkalus galima atsisiųsti iš tinklalapio <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "„%PRODUCTNAME“ programų paketui galima pritaikyti bet kurį „Firefox“ grafinį apvalkalą. Vis dėlto, ne visi apvalkalai atrodys gerai – jei apvalkalo paveiksle daug smulkių detalių, gali būti sunku perskaityti ir atpažinti komandas bei mygtukus."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "„Firefox“ grafiniai apvalkalai"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Galimos tokios parinktys:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Nenaudoti grafinių apvalkalų"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Mygtukų juostų fono spalva pritaikoma pagal naudojamos grafinės darbalaukio aplinkos nuostatas.</ahelp> Tai numatytoji šios parinkties reikšmė „%PRODUCTNAME“ programoje."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Įdiegtas apvalkalas"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Pažymėjus šią parinktį galima naudoti iš anksto įdiegtus grafinius apvalkalus.</ahelp> Be numatytųjų apvalkalų, „%PRODUCTNAME“ programos diegimo metu galima pridėti naujų. Tokie apvalkalai bus rodomi prie šios parinkties."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Kitas apvalkalas"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Pažymėjus šią parinktį atskirame dialogo lange galima išsirinkti bet kurį iš „Firefox“ grafinių apvalkalų.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "„Firefox“ grafinio apvalkalo parinkimo langas"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Šiame dialogo lange galima peržiūrėti grafinius apvalkalus iš „Mozilla Firefox“ tinklalapio bei norimą apvalkalą įdiegti."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Paieška"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Įveskite ieškinį, kurio bus ieškoma „Mozilla“ apvalkalų tinklalapyje, arba konkretaus apvalkalo URL adresą, jei norite atsisiųsti jį tiesiogiai.</ahelp> Apvalkalo URL adresą pamatysite žiniatinklio naršyklėje atvėrę apvalkalo tinklalapį – nukopijuokite adreso juostoje rodomą URL adresą ir įdėkite jį į šį paieškos langelį parinkčių lange. Spustelėkite mygtuką <item type=\"menuitem\">Ieškoti</item> arba paspauskite klavišą <item type=\"keycode\">Įvesti</item>, kad atsisiųstumėte apvalkalą ir įdiegtumėte jį „%PRODUCTNAME“ programoje."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Apvalkalų peržiūra pagal kategorijas"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Rodomi devyni atsitiktiniai apvalkalai iš mygtukais parenkamos kategorijos.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Spustelėkite vieną iš šešių kategorijų mygtukų ir lango apačioje bus pasiūlyti devyni atsitiktiniai grafiniai apvalkalai iš atitinkamos kategorijos."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Jei norite pritaikyti vieną iš siūlomų apvalkalų, spustelėkite jo paveikslėlį ir mygtuką <item type=\"menuitem\">Gerai</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/lt/helpcontent2/source/text/simpress/01.po b/source/lt/helpcontent2/source/text/simpress/01.po
index 3bc5ec1ac91..7fe43821221 100644
--- a/source/lt/helpcontent2/source/text/simpress/01.po
+++ b/source/lt/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/lt/helpcontent2/source/text/swriter/01.po b/source/lt/helpcontent2/source/text/swriter/01.po
index cbe2d3e6e01..5316231bf78 100644
--- a/source/lt/helpcontent2/source/text/swriter/01.po
+++ b/source/lt/helpcontent2/source/text/swriter/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-06 20:14+0000\n"
-"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
+"PO-Revision-Date: 2019-05-23 15:55+0000\n"
+"Last-Translator: Tolmantas <tolmantas.dagys@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557173645.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558626927.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -10310,7 +10310,7 @@ msgctxt ""
"par_id3151253\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromheadings\">Creates the index using outline levels, that is, paragraphs formatted with one of the predefined heading styles (Heading 1-10) are added to the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromheadings\">Sukuria rodyklę, naudojant struktūros lygius, kuri prideda į rodyklę pastraipas suformatuotas su vienu antraštės stiliumi (Antraštė 1-10).</ahelp>"
#: 04120211.xhp
msgctxt ""
@@ -10318,7 +10318,7 @@ msgctxt ""
"par_id1209200804373840\n"
"help.text"
msgid "You can also assign the outline levels in the <link href=\"text/swriter/01/05030800.xhp\">Outline & Numbering</link> tab page of the Format - Paragraph dialog."
-msgstr ""
+msgstr "Galite priskirti struktūros lygius <link href=\"text/swriter/01/05030800.xhp\">Struktūra ir Numeravimas</link> skirtuko Formatas → Pastraipa dialogo lange."
#: 04120211.xhp
msgctxt ""
@@ -10326,7 +10326,7 @@ msgctxt ""
"hd_id3153633\n"
"help.text"
msgid "Additional Styles"
-msgstr ""
+msgstr "Papildomi stiliai"
#: 04120211.xhp
msgctxt ""
@@ -10334,7 +10334,7 @@ msgctxt ""
"par_id3152772\n"
"help.text"
msgid "<variable id=\"vorlg\"><ahelp hid=\"modules/swriter/ui/tocindexpage/addstylescb\">Includes the paragraph styles that you specify in the <emph>Assign Styles</emph> dialog as index entries. To select the paragraph styles that you want to include in the index, click the <emph>Assign Styles (...)</emph> button to the right of this box.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"vorlg\"><ahelp hid=\"modules/swriter/ui/tocindexpage/addstylescb\">Įterpia pastraipos stilius, kuriuos nurodote <emph>Priskirti stilius</emph> dialogo lange kaip rodyklės įrašą. Norėdami pasirinkti pastraipos stilius, kuriuos norite įterpti į rodyklę, spustelėkite <emph>Priskirti Stilius (...)</emph> mygtuką šio langelio dešinėje.</ahelp></variable>"
#: 04120211.xhp
msgctxt ""
@@ -10342,7 +10342,7 @@ msgctxt ""
"par_id41550528154857\n"
"help.text"
msgid "You can include the Figure Index Heading or Bibliography Heading styles, as well as any other relevant heading style, to the Table of Contents."
-msgstr ""
+msgstr "į turinį galite įterpti skaitmens rodyklės antraštę arba bibliografijos antraštės stilius, taip kaip kaip ir bet kokį kitą tinkamą antraštės stilių."
#: 04120211.xhp
msgctxt ""
@@ -10350,7 +10350,7 @@ msgctxt ""
"hd_id3149168\n"
"help.text"
msgid "Assign styles"
-msgstr ""
+msgstr "Priskirti stilius"
#: 04120211.xhp
msgctxt ""
@@ -10358,7 +10358,7 @@ msgctxt ""
"par_id3145776\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Opens the <emph>Assign Styles</emph> dialog, where you can select the paragraph styles to include in the index. Choose the proper heading level on which the style will be included in the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/styles\">Atveria <emph>Priskirti stilius</emph> dialogo langą, kur galite pasirinkti pastraipos stilius įterpti į rodyklę. Pasirinkite tinkamą antraštės lygį, kuriame stilius bus įterptas į rodyklę.</ahelp>"
#: 04120211.xhp
msgctxt ""
@@ -10366,7 +10366,7 @@ msgctxt ""
"hd_id3151374\n"
"help.text"
msgid "Index marks"
-msgstr ""
+msgstr "Rodyklės įrašai"
#: 04120211.xhp
msgctxt ""
@@ -10374,7 +10374,7 @@ msgctxt ""
"par_id3155861\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/indexmarks\">Includes the index entries that you inserted by choosing <emph>Insert - Table of Contents and Index - Index Entry</emph> in the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/indexmarks\">Įtraukia rodyklės įrašus, kuriuos įterpėte pasirinkdami <emph>Įterpti → Turinys ir rodyklė → Rodyklės įrašas</emph> rodyklėje.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -10382,7 +10382,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Index"
-msgstr ""
+msgstr "Rodyklė"
#: 04120212.xhp
msgctxt ""
@@ -10390,7 +10390,7 @@ msgctxt ""
"hd_id3147338\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120212.xhp\" name=\"Index\">Index</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120212.xhp\" name=\"Index\">Rodyklė</link>"
#: 04120212.xhp
msgctxt ""
@@ -10398,7 +10398,7 @@ msgctxt ""
"par_id3155962\n"
"help.text"
msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Alphabetical Index </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type. </variable>"
-msgstr ""
+msgstr "<variable id=\"verzeichnis\">Tolimesnės parinktys yra galimos, kai pasirenkate <emph>Abėcėlinė rodyklė</emph>kaip<link href=\"text/swriter/01/04120210.xhp\" name=\"index\">rodykės</link> tipą.</variable>"
#: 04120212.xhp
msgctxt ""
@@ -10406,7 +10406,7 @@ msgctxt ""
"hd_id3153247\n"
"help.text"
msgid "Options"
-msgstr ""
+msgstr "Parinktys"
#: 04120212.xhp
msgctxt ""
@@ -10414,7 +10414,7 @@ msgctxt ""
"hd_id3154651\n"
"help.text"
msgid "Combine identical entries"
-msgstr ""
+msgstr "Apjungti vienodus elementus"
#: 04120212.xhp
msgctxt ""
@@ -10422,7 +10422,7 @@ msgctxt ""
"par_id3153810\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/combinesame\">Replaces identical index entries with a single entry that lists the page numbers where the entry occurs in the document. For example, the entries \"View 10, View 43\" are combined as \"View 10, 43\".</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/combinesame\">Pakeičia identiškus rodyklės įrašus su vienu įrašu, kuris rikiuoja puslapio numerių įrašo atsiradimą dokumente. Pavyzdžiui, įrašai „Žiūrėti 10, žiūrėti 43“ yra sujungti kaip „Žiūrėti 10, 43“.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -10430,7 +10430,7 @@ msgctxt ""
"hd_id3147403\n"
"help.text"
msgid "Combine identical entries with p or pp"
-msgstr ""
+msgstr "Apjungti vienodus elementus su p arba pp"
#: 04120212.xhp
msgctxt ""
@@ -10438,7 +10438,7 @@ msgctxt ""
"par_id3083451\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/useff\">Replaces identical index entries, which occur also on the directly following page or pages, with a single entry that lists the first page number and a \"p\" or \"pp\". For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10pp\", and \"View 10, View 11\" as \"View 10p\".</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/useff\">Pakeičia identiškus rodyklės įrašus, kurie atsiranda tolimesniame puslapyje ar puslapiuose, su vienu įrašu, kuris surikiuoja pirmo puslapio numerį ir „p“ arba „pp““. Pavyzdžiui, įrašai „„Žiūrėti 10, žiūrėti 11, žiūrėti 12“ yra apjungti kaip „Žiūrėti 10pp“, ir „Žiūrėti 10, žiūrėti 11“ kaip „Žiūrėti 10p“.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -10446,7 +10446,7 @@ msgctxt ""
"hd_id3157870\n"
"help.text"
msgid "Combine with -"
-msgstr ""
+msgstr "Apjungti su -"
#: 04120212.xhp
msgctxt ""
@@ -10454,7 +10454,7 @@ msgctxt ""
"par_id3145825\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/usedash\">Replaces identical index entries that occur on consecutive pages with a single entry and the page range where the entry occurs. For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10-12\".</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/usedash\">Pakeičia identiškus rodyklės įrašus, kurie atsiranda nuosekliuose puslapiuose su vienu įrašu ir puslapio sritimi, kur įrašas atsiranda. Pavyzdžiui, įrašai „Žiūrėti 10, žiūrėti 11, žiūrėti 12“ yra apjungti kaip „Žiūrėti 10-12“.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -10462,7 +10462,7 @@ msgctxt ""
"hd_id3154502\n"
"help.text"
msgid "Case sensitive"
-msgstr ""
+msgstr "Skirti didžiąsias ir mažąsias raides"
#: 04120212.xhp
msgctxt ""
@@ -10470,7 +10470,7 @@ msgctxt ""
"par_id3149880\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/casesens\">Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies.</ahelp> If you want the first occurrence of the entry in the document to determine the case of the entry, select <emph>Combine identical entries</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/casesens\">Atskiria didžiąją ir mažąją raides identiškuose rodyklių įrašuose. Azijietiškoms kalboms pritaikomas specialus valdymas.</ahelp> Jei norite nustatyti atvejį pirmo dokumento įrašo įvykio, pasirinkite <emph>Apjungti identiškus įrašus</emph>."
#: 04120212.xhp
msgctxt ""
@@ -10478,7 +10478,7 @@ msgctxt ""
"par_idN10671\n"
"help.text"
msgid "To use multi-level collation to Asian languages, select <emph>Case sensitive</emph>. In the multi-level collation, the cases and diacritics of the entries are ignored and only the primitive forms of the entries are compared. If the forms are identical, the diacritics of the forms are compared. If the forms are still identical, the cases of the forms as well as the widths of the characters, and the differences in the Japanese Kana are compared."
-msgstr ""
+msgstr "Norint naudoti kelių lygių sugretinimą Azijos kalboms, pasirinkite <emph>Skirti didžiąsias ir mažąsias raides</emph>. Kelių lygių sugretinime raidės ir diakritiniai ženklai įrašuose yra ignoruojami ir yra lyginamos tik tai primityvios įrašų formos. Jeigu formos yra identiškos, diakritiniai ženklai yra lyginami. Jeigu formos vis dar tebėra identiškos, raidės formose kaip ir rašmenų pločiai ir skirtumai Japonų Kana kalboje yra lyginami."
#: 04120212.xhp
msgctxt ""
@@ -10486,7 +10486,7 @@ msgctxt ""
"hd_id3150569\n"
"help.text"
msgid "AutoCapitalize entries"
-msgstr ""
+msgstr "Įrašai iš didžiųjų raidžių"
#: 04120212.xhp
msgctxt ""
@@ -10494,7 +10494,7 @@ msgctxt ""
"par_id3148772\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/initcaps\">Automatically capitalizes the first letter of an index entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/initcaps\">Automatiškai pirmoji rodyklės įrašo raidė yra didžioji.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -10502,7 +10502,7 @@ msgctxt ""
"hd_id3155986\n"
"help.text"
msgid "Keys as separate entries"
-msgstr ""
+msgstr "Reikšminiai žodžiai atskirais įrašais"
#: 04120212.xhp
msgctxt ""
@@ -10510,7 +10510,7 @@ msgctxt ""
"par_id3147170\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/keyasentry\">Inserts index keys as separate index entries.</ahelp> A key is inserted as a top level index entry and the entries that are assigned to the key as indented subentries."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/keyasentry\">Įterpia rodyklės klavišus kaip atskirus rodyklės įrašus.</ahelp> Klavišas būna įterptas kaip aukščiausio lygio rodyklės įrašas ir tie įrašai būna priskirti klavišui kaip įtraukos įrašai."
#: 04120212.xhp
msgctxt ""
@@ -10518,7 +10518,7 @@ msgctxt ""
"par_id3151184\n"
"help.text"
msgid "To define an index key, choose <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert Index Entry\"><emph>Insert Index Entry</emph></link> dialog."
-msgstr ""
+msgstr "Norėdami apibrėžti rodyklės klavišą, pasirinkite <link href=\"text/swriter/01/04120100.xhp\" name=\"Insert Index Entry\"><emph>Įterpti rodyklės įrašą</emph></link> dialogo langą."
#: 04120212.xhp
msgctxt ""
@@ -10526,7 +10526,7 @@ msgctxt ""
"hd_id3154646\n"
"help.text"
msgid "Concordance file"
-msgstr ""
+msgstr "Atitikmenų failas"
#: 04120212.xhp
msgctxt ""
@@ -10534,7 +10534,7 @@ msgctxt ""
"par_id3156322\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromfile\">Automatically marks index entries using a concordance file - a list of words to include in an index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromfile\">Automatiškai pažymi rodyklės įrašus, naudodami atitikmenų failą – žodžių sąrašą rodyklės įterpimui.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -10542,7 +10542,7 @@ msgctxt ""
"hd_id3150258\n"
"help.text"
msgid "File"
-msgstr ""
+msgstr "Failas"
#: 04120212.xhp
msgctxt ""
@@ -10550,7 +10550,7 @@ msgctxt ""
"par_id3149287\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/file\">Select, create, or edit a concordance file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/file\">Pasirinkti, sukurti ar pataisyti atitikmenų failą.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -10558,7 +10558,7 @@ msgctxt ""
"hd_id3152950\n"
"help.text"
msgid "Sort"
-msgstr ""
+msgstr "Rikiuoti"
#: 04120212.xhp
msgctxt ""
@@ -10566,7 +10566,7 @@ msgctxt ""
"par_id3149812\n"
"help.text"
msgid "Sets the options for sorting the index entries."
-msgstr ""
+msgstr "Nustato parinktis rodyklės įrašams rikiuoti."
#: 04120212.xhp
msgctxt ""
@@ -10574,7 +10574,7 @@ msgctxt ""
"hd_id3150347\n"
"help.text"
msgid "Language"
-msgstr ""
+msgstr "Kalba"
#: 04120212.xhp
msgctxt ""
@@ -10582,7 +10582,7 @@ msgctxt ""
"par_id3154475\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/lang\">Select the language rules to use for sorting the index entries.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/lang\">Pasirinkite kalbos taisykles, kurias norite naudoti rodyklės įrašų rikiavimui.</ahelp>"
#: 04120212.xhp
msgctxt ""
@@ -10590,7 +10590,7 @@ msgctxt ""
"hd_id3153675\n"
"help.text"
msgid "Key type"
-msgstr ""
+msgstr "Bet koks tipas"
#: 04120212.xhp
msgctxt ""
@@ -10598,7 +10598,7 @@ msgctxt ""
"par_id3147530\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/keytype\">Select numeric when you want to sort numbers by value, such as in 1, 2, 12. Select alphanumeric, when you want to sort the numbers by character code, such as in 1, 12, 2.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/keytype\">Pasirinkite skaitvardį kada norite rikiuoti skaičius pagal vertę, kaip kad 1, 2, 12. Pasirinkite raides ir skaičius kada norite rikiuoti skaičius pagal rašmens kodą, kaip kad 1, 12, 2.</ahelp>"
#: 04120213.xhp
msgctxt ""
@@ -10606,7 +10606,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Index"
-msgstr ""
+msgstr "Rodyklė"
#: 04120213.xhp
msgctxt ""
@@ -10614,7 +10614,7 @@ msgctxt ""
"hd_id3147570\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120213.xhp\" name=\"Index\">Index</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120213.xhp\" name=\"Index\">Rodyklė</link>"
#: 04120213.xhp
msgctxt ""
@@ -10622,7 +10622,7 @@ msgctxt ""
"par_id3145415\n"
"help.text"
msgid "<variable id=\"verzeichnis\">The following options are available when you select the <emph>Illustration Index </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr ""
+msgstr "<variable id=\"verzeichnis\">Tolimesnės parinktys yra galimos, kai pasirenkate <emph>Paveikslų rodyklė</emph>kaip<link href=\"text/swriter/01/04120210.xhp\" name=\"index\">rodykės</link> tipą.</variable>"
#: 04120213.xhp
msgctxt ""
@@ -10630,7 +10630,7 @@ msgctxt ""
"hd_id3153534\n"
"help.text"
msgid "Create from"
-msgstr ""
+msgstr "Kuriama naudojant"
#: 04120213.xhp
msgctxt ""
@@ -10638,7 +10638,7 @@ msgctxt ""
"par_id3151315\n"
"help.text"
msgid "Specify the information to be combined to form an index."
-msgstr ""
+msgstr "Nurodykite informaciją, kuri suformuos rodyklę."
#: 04120213.xhp
msgctxt ""
@@ -10646,7 +10646,7 @@ msgctxt ""
"hd_id3154478\n"
"help.text"
msgid "Captions"
-msgstr ""
+msgstr "Pavadinimai"
#: 04120213.xhp
msgctxt ""
@@ -10654,7 +10654,7 @@ msgctxt ""
"par_id3153677\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/captions\">Creates index entries from object captions.</ahelp> To add a caption to an object, select the object, and then choose <emph>Insert - Caption</emph>."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/captions\">Sukuria rodyklės įrašus iš objektų pavadinimų.</ahelp> Norėdami objektui pridėti pavadinimą, pasirinkite objektą ir tada pasirinkite <emph>Įterpti → Pavadinimas</emph>."
#: 04120213.xhp
msgctxt ""
@@ -10662,7 +10662,7 @@ msgctxt ""
"hd_id3154576\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Kategorija"
#: 04120213.xhp
msgctxt ""
@@ -10670,7 +10670,7 @@ msgctxt ""
"par_id3149687\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/category\">Select the caption category that you want to use for the index entries.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/category\">Pasirinkite kategorijos pavadinimą, kurį norite naudoti rodyklės įrašams.</ahelp>"
#: 04120213.xhp
msgctxt ""
@@ -10678,7 +10678,7 @@ msgctxt ""
"hd_id3154195\n"
"help.text"
msgid "Display"
-msgstr ""
+msgstr "Rodyti"
#: 04120213.xhp
msgctxt ""
@@ -10686,7 +10686,7 @@ msgctxt ""
"par_id3155186\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/display\">Select the part of the caption that you want to use for index entries.</ahelp> The following table lists the caption options that can be selected, based on the caption text \"Illustration 24: The Sun\", where \"Illustration 24\" was automatically generated, and \"The Sun\" was added by the user."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/display\">Pasirinkite pavadinimo dalį, kurią norite naudoti rodyklės įrašams.</ahelp> Toliau pateiktos lentelės rikiuoja pavadinimo parinktis, kurios gali būti pasirinktos pagal pavadinimo tekstą „Iliustracija 24: Saulė“, kur „Iliustracija 24“ buvo automatiškai sugeneruota ir „Saulė“ buvo pridėta naudotojo."
#: 04120213.xhp
msgctxt ""
@@ -10694,7 +10694,7 @@ msgctxt ""
"par_id3151260\n"
"help.text"
msgid "Selections in the Display list box"
-msgstr ""
+msgstr "Pasirinkimai Rodyti sąrašo langelyje"
#: 04120213.xhp
msgctxt ""
@@ -10702,7 +10702,7 @@ msgctxt ""
"par_id3148972\n"
"help.text"
msgid "Entry in the Index"
-msgstr ""
+msgstr "Įrašas rodyklėje"
#: 04120213.xhp
msgctxt ""
@@ -10710,7 +10710,7 @@ msgctxt ""
"par_id3147213\n"
"help.text"
msgid "Reference Text"
-msgstr ""
+msgstr "Nuorodos tekstas"
#: 04120213.xhp
msgctxt ""
@@ -10718,7 +10718,7 @@ msgctxt ""
"par_id3153636\n"
"help.text"
msgid "Illustration 24: The Sun"
-msgstr ""
+msgstr "Iliustracija 24: Saulė"
#: 04120213.xhp
msgctxt ""
@@ -10726,7 +10726,7 @@ msgctxt ""
"par_id3152768\n"
"help.text"
msgid "Category and Number"
-msgstr ""
+msgstr "Kategorija ir numeris"
#: 04120213.xhp
msgctxt ""
@@ -10734,7 +10734,7 @@ msgctxt ""
"par_id3155145\n"
"help.text"
msgid "Illustration 24"
-msgstr ""
+msgstr "Iliustracija 24"
#: 04120213.xhp
msgctxt ""
@@ -10742,7 +10742,7 @@ msgctxt ""
"par_id3149168\n"
"help.text"
msgid "Caption"
-msgstr ""
+msgstr "Pavadinimas"
#: 04120213.xhp
msgctxt ""
@@ -10750,7 +10750,7 @@ msgctxt ""
"par_id3145781\n"
"help.text"
msgid "The Sun"
-msgstr ""
+msgstr "Saulė"
#: 04120213.xhp
msgctxt ""
@@ -10758,7 +10758,7 @@ msgctxt ""
"par_id3155915\n"
"help.text"
msgid "If you select \"Caption Text\", the punctuation and the space at the beginning of the caption does not appear in the index entry."
-msgstr ""
+msgstr "Jeigu pasirenkate „Pavadinimo tekstas“, skyrybos tikrinimas ir tarpai pavadinimo pradžioje neatsiranda rodyklės įraše."
#: 04120213.xhp
msgctxt ""
@@ -10766,7 +10766,7 @@ msgctxt ""
"hd_id3151378\n"
"help.text"
msgid "Object names"
-msgstr ""
+msgstr "Objektų pavadinimai"
#: 04120213.xhp
msgctxt ""
@@ -10774,7 +10774,7 @@ msgctxt ""
"par_id3155863\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/objnames\">Creates index entries from object names.</ahelp> You can view object names in the Navigator, for example, and change them in the context menu."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/objnames\">Sukuria rodyklės įrašus pagal objekto pavadinimus.</ahelp> Galite matyti objekto pavadinimus žvalgiklyje ir pakeisti juos kontekstiniame meniu."
#: 04120214.xhp
msgctxt ""
@@ -10782,7 +10782,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Index"
-msgstr ""
+msgstr "Rodyklė"
#: 04120214.xhp
msgctxt ""
@@ -10790,7 +10790,7 @@ msgctxt ""
"hd_id3151387\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120214.xhp\" name=\"Index\">Index</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120214.xhp\" name=\"Index\">Rodyklė</link>"
#: 04120214.xhp
msgctxt ""
@@ -10798,7 +10798,7 @@ msgctxt ""
"par_id3146320\n"
"help.text"
msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Index of Tables </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr ""
+msgstr "<variable id=\"verzeichnis\">Tolimesnės parinktys yra galimos, kai pasirenkate <emph>Lentelių rodyklė</emph>kaip<link href=\"text/swriter/01/04120210.xhp\" name=\"index\">rodykės</link> tipą.</variable>"
#: 04120215.xhp
msgctxt ""
@@ -10806,7 +10806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Index"
-msgstr ""
+msgstr "Rodyklė"
#: 04120215.xhp
msgctxt ""
@@ -10814,7 +10814,7 @@ msgctxt ""
"hd_id3150568\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120215.xhp\" name=\"Index\">Index</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120215.xhp\" name=\"Index\">Rodyklė</link>"
#: 04120215.xhp
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"par_id3151183\n"
"help.text"
msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>User-Defined </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr ""
+msgstr "<variable id=\"verzeichnis\">Tolimesnės parinktys yra galimos, kai pasirenkate <emph>Naudotojo aprašyta</emph>kaip<link href=\"text/swriter/01/04120210.xhp\" name=\"index\">rodykės</link> tipą.</variable>"
#: 04120215.xhp
msgctxt ""
@@ -10830,7 +10830,7 @@ msgctxt ""
"par_id3151174\n"
"help.text"
msgid "User-defined indexes are available in the <emph>Type</emph> box when you insert an index entry in your document."
-msgstr ""
+msgstr "Naudotojo aprašytos rodyklės yra galimos <emph>Tipas</emph> langelyje, kai į dokumentą įterpiate rodyklės įrašą."
#: 04120215.xhp
msgctxt ""
@@ -10838,7 +10838,7 @@ msgctxt ""
"hd_id3154097\n"
"help.text"
msgid "Create from"
-msgstr ""
+msgstr "Kuriama naudojant"
#: 04120215.xhp
msgctxt ""
@@ -10846,7 +10846,7 @@ msgctxt ""
"hd_id3149802\n"
"help.text"
msgid "Styles"
-msgstr ""
+msgstr "Stiliai"
#: 04120215.xhp
msgctxt ""
@@ -10854,7 +10854,7 @@ msgctxt ""
"hd_id3151320\n"
"help.text"
msgid "Tables"
-msgstr ""
+msgstr "Lentelės"
#: 04120215.xhp
msgctxt ""
@@ -10862,7 +10862,7 @@ msgctxt ""
"par_id3154473\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromtables\">Includes tables in the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromtables\">Įterpia lenteles į rodyklę.</ahelp>"
#: 04120215.xhp
msgctxt ""
@@ -10870,7 +10870,7 @@ msgctxt ""
"hd_id3154569\n"
"help.text"
msgid "Graphics"
-msgstr ""
+msgstr "Paveikslai"
#: 04120215.xhp
msgctxt ""
@@ -10878,7 +10878,7 @@ msgctxt ""
"par_id3153676\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromgraphics\">Includes graphics in the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromgraphics\">Įterpia paveiklus į rodyklę.</ahelp>"
#: 04120215.xhp
msgctxt ""
@@ -10886,7 +10886,7 @@ msgctxt ""
"hd_id3149685\n"
"help.text"
msgid "Text frames"
-msgstr ""
+msgstr "Teksto kadrai"
#: 04120215.xhp
msgctxt ""
@@ -10894,7 +10894,7 @@ msgctxt ""
"par_id3154195\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromframes\">Includes text frames in the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromframes\">Įterpia teksto kadrus į rodyklę.</ahelp>"
#: 04120215.xhp
msgctxt ""
@@ -10902,7 +10902,7 @@ msgctxt ""
"hd_id3155182\n"
"help.text"
msgid "OLE objects"
-msgstr ""
+msgstr "OLE objektai"
#: 04120215.xhp
msgctxt ""
@@ -10910,7 +10910,7 @@ msgctxt ""
"par_id3143282\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromoles\">Includes OLE objects in the index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/fromoles\">Įterpia OLE objektus į rodyklę.</ahelp>"
#: 04120215.xhp
msgctxt ""
@@ -10918,7 +10918,7 @@ msgctxt ""
"hd_id3149095\n"
"help.text"
msgid "Use level from source chapter"
-msgstr ""
+msgstr "Naudoti pirminio skyriaus lygį"
#: 04120215.xhp
msgctxt ""
@@ -10926,7 +10926,7 @@ msgctxt ""
"par_id3151250\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/uselevel\">Indents table, graphic, text frame, and OLE object index entries according their place in the chapter heading hierarchy.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/uselevel\">Įtraukia lentelę, paveikslą, teksto kadrą ir OLE objekto rodyklės įrašą pagal jų vietą skyriaus antraštėse.</ahelp>"
#: 04120215.xhp
msgctxt ""
@@ -10934,7 +10934,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120100.xhp\" name=\"Defining an index entry\">Defining an index entry</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120100.xhp\" name=\"Defining an index entry\">Apibrėžia rodyklės įrašą</link>"
#: 04120216.xhp
msgctxt ""
@@ -10942,7 +10942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Index"
-msgstr ""
+msgstr "Rodyklė"
#: 04120216.xhp
msgctxt ""
@@ -10950,7 +10950,7 @@ msgctxt ""
"hd_id3145247\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120216.xhp\" name=\"Index\">Index</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120216.xhp\" name=\"Index\">Rodyklė</link>"
#: 04120216.xhp
msgctxt ""
@@ -10958,7 +10958,7 @@ msgctxt ""
"par_id3147175\n"
"help.text"
msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Table of Objects </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr ""
+msgstr "<variable id=\"verzeichnis\">Tolimesnės parinktys yra galimos, kai pasirenkate <emph>Objektų lentelė</emph>kaip<link href=\"text/swriter/01/04120210.xhp\" name=\"index\">rodykės</link> tipą.</variable>"
#: 04120216.xhp
msgctxt ""
@@ -10966,7 +10966,7 @@ msgctxt ""
"hd_id3151174\n"
"help.text"
msgid "Create from the following objects"
-msgstr ""
+msgstr "Kuriant naudojami šie objektai"
#: 04120216.xhp
msgctxt ""
@@ -10974,7 +10974,7 @@ msgctxt ""
"par_id3153417\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/objects\">Select the object types that you want to include in a table of objects.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/objects\">Pasirinkite objekto tipus, kuriuos norite įterpti į objektų lentelę.</ahelp>"
#: 04120217.xhp
msgctxt ""
@@ -10982,7 +10982,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Index"
-msgstr ""
+msgstr "Rodyklė"
#: 04120217.xhp
msgctxt ""
@@ -10990,7 +10990,7 @@ msgctxt ""
"hd_id3146322\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120217.xhp\" name=\"Index\">Index</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120217.xhp\" name=\"Index\">Rodyklė</link>"
#: 04120217.xhp
msgctxt ""
@@ -10998,7 +10998,7 @@ msgctxt ""
"par_id3145825\n"
"help.text"
msgid "<variable id=\"verzeichnis\">The following options are available when you select <emph>Bibliography </emph>as the <link href=\"text/swriter/01/04120210.xhp\" name=\"index\">index</link> type.</variable>"
-msgstr ""
+msgstr "<variable id=\"verzeichnis\">Tolimesnės parinktys yra galimos, kai pasirenkate <emph>Bibliography</emph>kaip<link href=\"text/swriter/01/04120210.xhp\" name=\"index\">rodykės</link> tipą.</variable>"
#: 04120217.xhp
msgctxt ""
@@ -11006,7 +11006,7 @@ msgctxt ""
"hd_id3148773\n"
"help.text"
msgid "Formatting of the entries"
-msgstr ""
+msgstr "Įrašų formatavimas"
#: 04120217.xhp
msgctxt ""
@@ -11014,7 +11014,7 @@ msgctxt ""
"hd_id3147167\n"
"help.text"
msgid "Number entries"
-msgstr ""
+msgstr "Numeruoti įrašus"
#: 04120217.xhp
msgctxt ""
@@ -11022,7 +11022,7 @@ msgctxt ""
"par_id3154647\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/numberentries\">Automatically numbers the bibliography entries.</ahelp> To set the sorting options for the numbering, click the <link href=\"text/swriter/01/04120227.xhp\" name=\"Entries\">Entries</link> tab."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/numberentries\">Automatiškai sunumeruoja bibliografijos įrašus.</ahelp> Norint nustatyti rikiavimo parinktis numeravimui, paspauskite <link href=\"text/swriter/01/04120227.xhp\" name=\"Entries\">Įrašai</link> skirtuką."
#: 04120217.xhp
msgctxt ""
@@ -11030,7 +11030,7 @@ msgctxt ""
"hd_id3150759\n"
"help.text"
msgid "Brackets"
-msgstr ""
+msgstr "Skliaustai"
#: 04120217.xhp
msgctxt ""
@@ -11038,7 +11038,7 @@ msgctxt ""
"par_id3149295\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/brackets\">Select the brackets that you want to enclose bibliography entries.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/brackets\">Pažymėkite skliaustus, kuriais norite apskliausti bibliografijos įrašus.</ahelp>"
#: 04120219.xhp
msgctxt ""
@@ -11046,7 +11046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Assign Styles"
-msgstr ""
+msgstr "Priskirti stilius"
#: 04120219.xhp
msgctxt ""
@@ -11054,7 +11054,7 @@ msgctxt ""
"hd_id3155621\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120219.xhp\" name=\"Assign Styles\">Assign Styles</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120219.xhp\" name=\"Assign Styles\">Priskirti stilius</link>"
#: 04120219.xhp
msgctxt ""
@@ -11062,7 +11062,7 @@ msgctxt ""
"par_id3145828\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/assignstylesdialog/AssignStylesDialog\" visibility=\"visible\">Creates index entries from specific paragraph styles.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/assignstylesdialog/AssignStylesDialog\" visibility=\"visible\">Sukuria rodyklės įrašą pagal nurodytus pastraipų stilius.</ahelp>"
#: 04120219.xhp
msgctxt ""
@@ -11070,7 +11070,7 @@ msgctxt ""
"hd_id3145249\n"
"help.text"
msgid "Styles"
-msgstr ""
+msgstr "Stiliai"
#: 04120219.xhp
msgctxt ""
@@ -11078,7 +11078,7 @@ msgctxt ""
"par_id3150566\n"
"help.text"
msgid "The list contains the paragraph styles that you can assign to index levels."
-msgstr ""
+msgstr "Sąraše yra pastraipos stiliai, kuriuos galite priskirti rodyklės lygiams."
#: 04120219.xhp
msgctxt ""
@@ -11086,7 +11086,7 @@ msgctxt ""
"par_id3147176\n"
"help.text"
msgid "To create an index entry from a paragraph style, click the style in the<emph> Styles</emph> list, and then click the <emph>>> </emph>button to move the style to the index level that you want."
-msgstr ""
+msgstr "Norėdami sukurti rodyklės įrašą pagal pastraipos stilių, paspauskite stilių <emph>Stiliai</emph> sąraše ir tada spustelėkite <emph>>></emph>mygtuką, kad patrauktumėte stilių į rodyklės lygį, kurio norite."
#: 04120219.xhp
msgctxt ""
@@ -11102,7 +11102,7 @@ msgctxt ""
"par_id3149289\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/assignstylesdialog/left\" visibility=\"visible\">Moves the selected paragraph style up one level in the index hierarchy.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/assignstylesdialog/left\" visibility=\"visible\">Patraukia pažymėtą pastraipos stilių vienu lygiu aukštyn rodyklės hierarchijoje.</ahelp>"
#: 04120219.xhp
msgctxt ""
@@ -11118,7 +11118,7 @@ msgctxt ""
"par_id3157903\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/assignstylesdialog/right\" visibility=\"visible\">Moves the selected paragraph style down one level in the index hierarchy.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/assignstylesdialog/right\" visibility=\"visible\">Patraukia pažymėtą pastraipos stilių vienu lygiu žemyn rodyklės hierarchijoje.</ahelp>"
#: 04120220.xhp
msgctxt ""
@@ -11126,7 +11126,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entries (indexes/tables)"
-msgstr ""
+msgstr "Įrašai (rodyklės/lentelės)"
#: 04120220.xhp
msgctxt ""
@@ -11134,7 +11134,7 @@ msgctxt ""
"hd_id3149349\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120220.xhp\" name=\"Entries (indexes/tables)\">Entries (indexes/tables)</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120220.xhp\" name=\"Entries (indexes/tables)\">Įrašai (Rodyklių/lentelių)</link>"
#: 04120220.xhp
msgctxt ""
@@ -11142,7 +11142,7 @@ msgctxt ""
"par_id3154504\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/tocentriespage/TocEntriesPage\">Specify the format of the index or table entries. The appearance of this tab changes to reflect the type of index that you selected on the <link href=\"text/swriter/01/04120210.xhp\" name=\"Type\">Type</link> tab.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/tocentriespage/TocEntriesPage\">Nurodykite rodyklės ar lentelės įrašo formatą. Šio skirtuko išvaizda atspindi rodyklės tipą, kurį pasirinkote <link href=\"text/swriter/01/04120210.xhp\" name=\"Type\">Tipas</link> skirtuke.</ahelp>"
#: 04120220.xhp
msgctxt ""
@@ -11150,7 +11150,7 @@ msgctxt ""
"hd_id3148770\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120221.xhp\" name=\"Table of Contents\">Table of Contents</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120221.xhp\" name=\"Table of Contents\">Turinys</link>"
#: 04120220.xhp
msgctxt ""
@@ -11158,7 +11158,7 @@ msgctxt ""
"hd_id3147564\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120222.xhp\" name=\"Alphabetical Index\">Alphabetical Index</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120222.xhp\" name=\"Alphabetical Index\">Abėcėlinė rodyklė</link>"
#: 04120220.xhp
msgctxt ""
@@ -11166,7 +11166,7 @@ msgctxt ""
"hd_id3151188\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120223.xhp\" name=\"Illustration Index\">Illustration Index</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120223.xhp\" name=\"Illustration Index\">Paveikslų rodyklė</link>"
#: 04120220.xhp
msgctxt ""
@@ -11174,7 +11174,7 @@ msgctxt ""
"hd_id3150761\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120224.xhp\" name=\"Index of Tables\">Index of Tables</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120224.xhp\" name=\"Index of Tables\">Lentelių rodyklė</link>"
#: 04120220.xhp
msgctxt ""
@@ -11182,7 +11182,7 @@ msgctxt ""
"hd_id3153517\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120225.xhp\" name=\"User-Defined\">User-Defined</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120225.xhp\" name=\"User-Defined\">Naudotojo aprašyta</link>"
#: 04120220.xhp
msgctxt ""
@@ -11190,7 +11190,7 @@ msgctxt ""
"hd_id3151175\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120226.xhp\" name=\"Table of Objects\">Table of Objects</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120226.xhp\" name=\"Table of Objects\">Objektų lentelė</link>"
#: 04120220.xhp
msgctxt ""
@@ -11198,7 +11198,7 @@ msgctxt ""
"hd_id3147506\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120227.xhp\" name=\"Bibliography\">Bibliography</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120227.xhp\" name=\"Bibliography\">Bibliografija</link>"
#: 04120221.xhp
msgctxt ""
@@ -11206,7 +11206,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entries (table of contents)"
-msgstr ""
+msgstr "Įrašai (Turinio)"
#: 04120221.xhp
msgctxt ""
@@ -11214,7 +11214,7 @@ msgctxt ""
"hd_id3145827\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120221.xhp\" name=\"Entries (table of contents)\">Entries (table of contents)</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120221.xhp\" name=\"Entries (table of contents)\">Įrašai (turinio)</link>"
#: 04120221.xhp
msgctxt ""
@@ -11222,7 +11222,7 @@ msgctxt ""
"par_id3150017\n"
"help.text"
msgid "<variable id=\"eintraege\">Specify the format of the entries in the table of contents.</variable>"
-msgstr ""
+msgstr "<variable id=\"eintraege\">Nurodykite įrašų formatą turinio lentelėje.</variable>"
#: 04120221.xhp
msgctxt ""
@@ -11230,7 +11230,7 @@ msgctxt ""
"hd_id3148774\n"
"help.text"
msgid "Level"
-msgstr ""
+msgstr "Lygis"
#: 04120221.xhp
msgctxt ""
@@ -11238,7 +11238,7 @@ msgctxt ""
"par_id3147169\n"
"help.text"
msgid "<ahelp hid=\".\">Select the level that you want to define.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Pasirinkite lygį, kurį norite apibrėžti.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11246,7 +11246,7 @@ msgctxt ""
"hd_id3147569\n"
"help.text"
msgid "Structure and formatting"
-msgstr ""
+msgstr "Struktūra ir formatavimas"
#: 04120221.xhp
msgctxt ""
@@ -11254,7 +11254,7 @@ msgctxt ""
"par_id3154638\n"
"help.text"
msgid "The <emph>Structure </emph>line defines how the entries in the index are composed. To change the appearance of an entry you can enter codes or text in the empty boxes on this line. You can also click in an empty box or on a code, and then click a code button."
-msgstr ""
+msgstr "<emph>Struktūros </emph>linija apibrėžia kaip yra sudarytas įrašas rodyklėje. Norėdami pakeisti įrašo išvaizdą, galite įvesti kodus arba tekstą į tuščią langelį šioje linijoje. Taip pat galite spustelėti ant tuščio langelio arba kodo ir tada paspausti kodo klavišą."
#: 04120221.xhp
msgctxt ""
@@ -11262,7 +11262,7 @@ msgctxt ""
"par_id3149292\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays the remainder of the <emph>Structure </emph>line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Parodo <emph>Struktūros</emph>linijos likutį.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11270,7 +11270,7 @@ msgctxt ""
"par_id3147512\n"
"help.text"
msgid "To delete a code from the <emph>Structure </emph>line, click the code, and then press the <item type=\"keycode\">Delete</item> key."
-msgstr ""
+msgstr "Norėdami ištrinti kodą <emph>Struktūros</emph>linijoje, spustelėkite kodą ir tada paspauskite <item type=\"keycode\">Šalinti</item> klavišą."
#: 04120221.xhp
msgctxt ""
@@ -11278,7 +11278,7 @@ msgctxt ""
"par_id3149806\n"
"help.text"
msgid "To replace a code from the <emph>Structure </emph>line, click the code, and then click a code button."
-msgstr ""
+msgstr "Norėdami pakeisti kodą iš <emph>Struktūra</emph>linijos, spustelėkite kodą ir tada paspauskite kodo klavišą."
#: 04120221.xhp
msgctxt ""
@@ -11286,7 +11286,7 @@ msgctxt ""
"par_id3154480\n"
"help.text"
msgid "To add a code to the <emph>Structure </emph>line, click in an empty box, and then click a code button."
-msgstr ""
+msgstr "Norėdami pridėti kodą iš <emph>Struktūra</emph>linijos, spustelėkite tuščią langelį ir tada paspauskite kodo klavišą."
#: 04120221.xhp
msgctxt ""
@@ -11294,7 +11294,7 @@ msgctxt ""
"hd_id3153675\n"
"help.text"
msgid "Chapter number (E#)"
-msgstr ""
+msgstr "Skyriaus numeris (E#)"
#: 04120221.xhp
msgctxt ""
@@ -11302,7 +11302,7 @@ msgctxt ""
"par_id3154567\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Inserts the chapter number. To assign chapter numbering to a heading style, choose<emph> Tools - Chapter Numbering</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterno\">Įterpia skyriaus numerį. Norėdami priskirti skyriaus numeravimą į antraštės stilių, pasirinkite<emph> Priemonės → Skyriaus numeravimas</emph>.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11310,7 +11310,7 @@ msgctxt ""
"hd_id3149691\n"
"help.text"
msgid "Entry text (E)"
-msgstr ""
+msgstr "Įrašo tekstas (E)"
#: 04120221.xhp
msgctxt ""
@@ -11318,7 +11318,7 @@ msgctxt ""
"par_id3154199\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/entrytext\">Inserts the text of the chapter heading.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/entrytext\">Įterpia skyriaus antraštės tekstą.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11326,7 +11326,7 @@ msgctxt ""
"hd_id3143276\n"
"help.text"
msgid "Tab stop (T)"
-msgstr ""
+msgstr "tabuliavimo pozicija (T)"
#: 04120221.xhp
msgctxt ""
@@ -11334,7 +11334,7 @@ msgctxt ""
"par_id3149490\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/tabstop\">Inserts a tab stop. To add leader dots to the tab stop, select a character in the <emph>Fill character box</emph>. To change the position of the tab stop, enter a value in the <emph>Tab stop position </emph>box, or select the <emph>Align right </emph>check box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/tabstop\">Įterpia tabuliavimo poziciją. Norėdami pridėti taškelius į tabuliavimo žymę, pasirinkite rašmenį <emph>Užpildo rašmens langelis</emph>. Norėdami pakeisti tabuliavimo poziciją, įrašykite vertę į <emph>Tabuliavimo pozcija</emph>langelį, arba pasirinkite <emph>Lygiuoti dešinėje </emph>žymimąjį langelį.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11342,7 +11342,7 @@ msgctxt ""
"hd_id3151257\n"
"help.text"
msgid "Page number (#)"
-msgstr ""
+msgstr "Puslapio numeris (#)"
#: 04120221.xhp
msgctxt ""
@@ -11350,7 +11350,7 @@ msgctxt ""
"par_id3148981\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/pageno\">Inserts the page number of the entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/pageno\">Įterpia įrašo puslapio numerį.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11358,7 +11358,7 @@ msgctxt ""
"hd_id3147212\n"
"help.text"
msgid "Hyperlink (LS and LE)"
-msgstr ""
+msgstr "Hipersaitas (LS ir LE)"
#: 04120221.xhp
msgctxt ""
@@ -11366,7 +11366,7 @@ msgctxt ""
"par_id3153631\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/hyperlink\">Creates a hyperlink for the part of the entry that you enclose by the opening (LS) and the closing (LE) hyperlink tags. On the <emph>Structure </emph>line, click in the empty box in front of the part that you want to create a hyperlink for, and then click this button. Click in the empty box after the part that you want to hyperlink, and then click this button again. All hyperlinks must be unique. Available only for a table of contents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/hyperlink\">Sukuria hipersaitą įrašo daliai, kurią apskliaudžiate atverdami (LS) ir užverdami (LE) hipersaito žymes. <emph>Struktūros</emph>linijoje, spustelėkite tuščią langelį tos dalies priekyje, kur norite sukurti hipersaitą ir tada spauskite šį mygtuką. Paspauskite ant tuščio langelio po dalies, kurią norite padaryti hipersaitu ir tada spustelėkite šį mygtuką dar kartą. Visi hipersaitai privalo būti unikalūs. Galima tik turinio lentelei.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11374,7 +11374,7 @@ msgctxt ""
"hd_id3152766\n"
"help.text"
msgid "All"
-msgstr ""
+msgstr "Visi"
#: 04120221.xhp
msgctxt ""
@@ -11382,7 +11382,7 @@ msgctxt ""
"par_id3155137\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/all\">Applies the current settings to all levels without closing the dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/all\">Pritaikyti dabartines nuostatas visiems lygiams, neuždarant dialogo lango.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11390,7 +11390,7 @@ msgctxt ""
"hd_id3153355\n"
"help.text"
msgid "Character Style"
-msgstr ""
+msgstr "Rašmens stilius"
#: 04120221.xhp
msgctxt ""
@@ -11398,7 +11398,7 @@ msgctxt ""
"par_id3156277\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/charstyle\">Specify the formatting style for the selected part on the <emph>Structure line</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/charstyle\">Nurodykite formatavimo stilių pasrinktai <emph>Struktūros linijos</emph>daliai.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11406,7 +11406,7 @@ msgctxt ""
"hd_id3145772\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Taisa"
#: 04120221.xhp
msgctxt ""
@@ -11414,7 +11414,7 @@ msgctxt ""
"par_id3151372\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/edit\">Opens a dialog where you can edit the selected character style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/edit\">Atveria dialogo langą, kur galite taisyti pasirinktą rašmens stilių.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"hd_id3155909\n"
"help.text"
msgid "Fill character"
-msgstr ""
+msgstr "Užpildo rašmuo"
#: 04120221.xhp
msgctxt ""
@@ -11430,7 +11430,7 @@ msgctxt ""
"par_id3150112\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/fillchar\">Select the tab leader that you want use.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/fillchar\">Pasirinkite tabuliavimo vedlį, kurį norite naudoti.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11438,7 +11438,7 @@ msgctxt ""
"hd_id3155859\n"
"help.text"
msgid "Tab stop position"
-msgstr ""
+msgstr "Tab. pozicija"
#: 04120221.xhp
msgctxt ""
@@ -11446,7 +11446,7 @@ msgctxt ""
"par_id3150689\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/tabstoppos\">Enter the distance to leave between the left page margin and the tab stop.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/tabstoppos\">Įveskite atstumą, kurį norite palikti tarp kairiojo puslapio paraštės ir tab pozicijos.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11454,7 +11454,7 @@ msgctxt ""
"hd_id3147415\n"
"help.text"
msgid "Align right"
-msgstr ""
+msgstr "Dešininė lygiuotė"
#: 04120221.xhp
msgctxt ""
@@ -11462,7 +11462,7 @@ msgctxt ""
"par_id3147495\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/alignright\">Aligns the tab stop to the right page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/alignright\">Lygiuoja tab poziciją į dešinę puslpaio paraštę.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11470,7 +11470,7 @@ msgctxt ""
"hd_id3145269\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Formatas"
#: 04120221.xhp
msgctxt ""
@@ -11478,7 +11478,7 @@ msgctxt ""
"par_id6499221\n"
"help.text"
msgid "<ahelp hid=\".\">Only visible when you click the E# button in the Structure line. Select to show the chapter number with or without separator.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Matoma tik, kai paspaudžiate E# mygtuką struktūros linijoje. Pasirinkite rodyti skyriaus numerį su arba be skirtuko.</ahelp>"
#: 04120221.xhp
msgctxt ""
@@ -11486,7 +11486,7 @@ msgctxt ""
"hd_id3149559\n"
"help.text"
msgid "Tab position relative to Paragraph Style indent"
-msgstr ""
+msgstr "Tabuliavimo žingsnis pagal pastraipos įtrauką"
#: 04120221.xhp
msgctxt ""
@@ -11494,7 +11494,7 @@ msgctxt ""
"par_id3150554\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/reltostyle\">Positions the tab stop relative to the \"indent from left\" value defined in the paragraph style selected on the <emph>Styles</emph> tab. Otherwise the tab stop is positioned relative to the left text margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/reltostyle\">Perstato tab poziciją pagal „įtrauka iš kairės“ vertę, pasirinktą pastraipos stilių <emph>Stiliai</emph> skirtuke. Kitu aveju tab pozicija yra pagal kairiąją teksto paraštę.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -11502,7 +11502,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entries (alphabetical index)"
-msgstr ""
+msgstr "Įrašasai (abėcėlinė rodyklė)"
#: 04120222.xhp
msgctxt ""
@@ -11510,7 +11510,7 @@ msgctxt ""
"hd_id3147506\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120222.xhp\" name=\"Entries (alphabetical index)\">Entries (alphabetical index)</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120222.xhp\" name=\"Entries (alphabetical index)\">Abėcėlinė rodyklė</link>"
#: 04120222.xhp
msgctxt ""
@@ -11518,7 +11518,7 @@ msgctxt ""
"par_id3154100\n"
"help.text"
msgid "<variable id=\"eintraege\">Specify the format of the alphabetical index entries. </variable>"
-msgstr ""
+msgstr "<variable id=\"eintraege\">Nurodykite įrašų formatą abėcėlinėje rodyklėje.</variable>"
#: 04120222.xhp
msgctxt ""
@@ -11526,7 +11526,7 @@ msgctxt ""
"par_id3153532\n"
"help.text"
msgid "Level \"S\" refers to the single letter headings that divide the index entries alphabetically. To enable these headings, select the <emph>Alphabetical delimiter</emph> check box in the <emph>Format</emph> area."
-msgstr ""
+msgstr "Lygis „S“ nurodo į vienos raidės antraštes, kurios padalina rodyklės įrašus pagal abėcėlę. Norėdami įjungti šias antraštes, pasirinkite <emph>abėcėlinį skirtuką</emph> pažymėkite langelį <emph>Formatas</emph> srityje."
#: 04120222.xhp
msgctxt ""
@@ -11534,7 +11534,7 @@ msgctxt ""
"hd_id3152957\n"
"help.text"
msgid "Chapter Info"
-msgstr ""
+msgstr "Skyriaus informacija"
#: 04120222.xhp
msgctxt ""
@@ -11542,7 +11542,7 @@ msgctxt ""
"par_id3154573\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterinfo\">Inserts chapter information, such as the chapter heading and number. Select the information that you want to display in the <emph>Chapter entry </emph>box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterinfo\">Įterpia skyriaus informaciją, tokią kaip skyriaus antraštė ir numeris. Pažymėkite informaciją, kurią norite rodyti <emph>Skyriaus įrašo</emph>langelyje.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -11550,7 +11550,7 @@ msgctxt ""
"hd_id3149692\n"
"help.text"
msgid "Chapter entry"
-msgstr ""
+msgstr "Skyriaus įrašas"
#: 04120222.xhp
msgctxt ""
@@ -11558,7 +11558,7 @@ msgctxt ""
"par_id3155174\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterentry\">Select the chapter information that you want to include in the index entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/chapterentry\">Pasirinkite skyriaus informaciją, kurią norite įterpti į rodyklės įrašą.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -11566,7 +11566,7 @@ msgctxt ""
"hd_id7605517\n"
"help.text"
msgid "Evaluate up to level"
-msgstr ""
+msgstr "Įvertinti iki lygio"
#: 04120222.xhp
msgctxt ""
@@ -11574,7 +11574,7 @@ msgctxt ""
"par_id6739402\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the maximum hierarchy level down to which objects are shown in the generated index.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Įveskite didžiausią hierarchijos lygį iki kurio objektai bus rodomi sugeneruotoje rodyklėje.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -11582,7 +11582,7 @@ msgctxt ""
"hd_id3149493\n"
"help.text"
msgid "Character Style for main entries"
-msgstr ""
+msgstr "Rašmens stilius pagrindiniams įrašams"
#: 04120222.xhp
msgctxt ""
@@ -11590,7 +11590,7 @@ msgctxt ""
"par_id3149109\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">Specify the formatting style for the main entries in the alphabetical index. To convert an index entry into a main entry, click in front of the index field in the document and then choose <emph>Edit - </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\"><emph>Index Entry</emph></link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/mainstyle\">Nurodykite formatavimo stilių pagrindiniams įrašams abėcėlinėje rodyklėje. Norėdami konvertuoti rodyklės įrašą į pagrindinį įrašą, spustelėkite laukelį rodyklės priekyje ir pasirinkite <emph>Taisa → </emph><link href=\"text/swriter/01/04120100.xhp\" name=\"Index Entry\"><emph>Rodyklės įrašas</emph></link>.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -11598,7 +11598,7 @@ msgctxt ""
"hd_id3148977\n"
"help.text"
msgid "Alphabetical delimiter"
-msgstr ""
+msgstr "Abėcėlinis skirtukas"
#: 04120222.xhp
msgctxt ""
@@ -11606,7 +11606,7 @@ msgctxt ""
"par_id3147100\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/alphadelim\">Uses the initial letters of the alphabetically arranged index entries as section headings.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/alphadelim\">Naudoja pradines raides, abėcėliškai išrikiuotas rodyklės irašuose, kaip sekcijos antraštes.</ahelp>"
#: 04120222.xhp
msgctxt ""
@@ -11614,7 +11614,7 @@ msgctxt ""
"hd_id3147226\n"
"help.text"
msgid "Key separated by commas"
-msgstr ""
+msgstr "Įrašai atskirti kableliais"
#: 04120222.xhp
msgctxt ""
@@ -11622,7 +11622,7 @@ msgctxt ""
"par_id3153631\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/commasep\">Arranges the index entries on the same line, separated by commas.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/commasep\">Išdėsto rodyklės įrašus toje pačioje linijoje, atskirtus kableliais.</ahelp>"
#: 04120223.xhp
msgctxt ""
@@ -11630,7 +11630,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entries (illustration index)"
-msgstr ""
+msgstr "Įrašai (iliustracijos rodyklė)"
#: 04120223.xhp
msgctxt ""
@@ -11638,7 +11638,7 @@ msgctxt ""
"hd_id3145244\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120223.xhp\" name=\"Entries (illustration index)\">Entries (illustration index)</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120223.xhp\" name=\"Entries (illustration index)\">Įrašai (iliustracijos rodyklė)</link>"
#: 04120223.xhp
msgctxt ""
@@ -11646,7 +11646,7 @@ msgctxt ""
"par_id3148769\n"
"help.text"
msgid "<variable id=\"eintraege\">Specify the format for the illustration index entries. </variable>"
-msgstr ""
+msgstr "<variable id=\"eintraege\">Nurodykite formatą iliustracijos rodyklės įrašams.</variable>"
#: 04120223.xhp
msgctxt ""
@@ -11654,7 +11654,7 @@ msgctxt ""
"par_id3154639\n"
"help.text"
msgid "Illustration Indexes only have one index level."
-msgstr ""
+msgstr "Iliustracijos rodyklės turi tik vieną rodyklės lygį."
#: 04120224.xhp
msgctxt ""
@@ -11662,7 +11662,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entries (index of tables)"
-msgstr ""
+msgstr "Įrašai (lentelių rodyklė)"
#: 04120224.xhp
msgctxt ""
@@ -11670,7 +11670,7 @@ msgctxt ""
"hd_id3147406\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120224.xhp\" name=\"Entries (index of tables)\">Entries (index of tables)</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120224.xhp\" name=\"Entries (index of tables)\">Įrašai (lentelių rodyklė)</link>"
#: 04120224.xhp
msgctxt ""
@@ -11678,7 +11678,7 @@ msgctxt ""
"par_id3146318\n"
"help.text"
msgid "<variable id=\"eintraege\">Specify the format for the entries in an Index of Tables. </variable>"
-msgstr ""
+msgstr "<variable id=\"eintraege\">Nurodykite formatą įrašams lentelių rodyklėje.</variable>"
#: 04120224.xhp
msgctxt ""
@@ -11686,7 +11686,7 @@ msgctxt ""
"par_id3150020\n"
"help.text"
msgid "An Index of Tables only has one index level."
-msgstr ""
+msgstr "Lentelių rodyklė turi tik vieną rodyklės lygį."
#: 04120225.xhp
msgctxt ""
@@ -11694,7 +11694,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entries (user-defined index)"
-msgstr ""
+msgstr "Įrašai (naudotojo aprašyta rodyklė)"
#: 04120225.xhp
msgctxt ""
@@ -11702,7 +11702,7 @@ msgctxt ""
"hd_id3147406\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120225.xhp\" name=\"Entries (user-defined index)\">Entries (user-defined index)</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120225.xhp\" name=\"Entries (user-defined index)\">Įrašai (vartotojo aprašyta rodyklė)</link>"
#: 04120225.xhp
msgctxt ""
@@ -11710,7 +11710,7 @@ msgctxt ""
"par_id3146318\n"
"help.text"
msgid "<variable id=\"eintraege\">Specify the format for the entries in a user-defined index. </variable>"
-msgstr ""
+msgstr "<variable id=\"eintraege\">Nurodykite formatą įrašams vartotojo aprašytoje rodyklėje.</variable>"
#: 04120225.xhp
msgctxt ""
@@ -11718,7 +11718,7 @@ msgctxt ""
"par_id3150020\n"
"help.text"
msgid "User-defined indexes do not support sub-keys."
-msgstr ""
+msgstr "Vartotojo aprašytos rodyklės nepalaiko sub klavišų."
#: 04120226.xhp
msgctxt ""
@@ -11726,7 +11726,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entries (table of objects)"
-msgstr ""
+msgstr "Įrašai (objektų lentelė)"
#: 04120226.xhp
msgctxt ""
@@ -11734,7 +11734,7 @@ msgctxt ""
"hd_id3147401\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120226.xhp\" name=\"Entries (table of objects)\">Entries (table of objects)</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120226.xhp\" name=\"Entries (table of objects)\">Įrašai (objektų lentelė)</link>"
#: 04120226.xhp
msgctxt ""
@@ -11742,7 +11742,7 @@ msgctxt ""
"par_id3083447\n"
"help.text"
msgid "<variable id=\"eintraege\">Specify the format for the entries in a Table of Objects. </variable>"
-msgstr ""
+msgstr "<variable id=\"eintraege\">Nurodykite įrašų formatą objektų lentelėje.</variable>"
#: 04120226.xhp
msgctxt ""
@@ -11750,7 +11750,7 @@ msgctxt ""
"par_id3150017\n"
"help.text"
msgid "A Table of Objects only has one index level."
-msgstr ""
+msgstr "Objektų lentelė turi tik vieną rodyklės lygį."
#: 04120227.xhp
msgctxt ""
@@ -11758,7 +11758,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entries (bibliography)"
-msgstr ""
+msgstr "Įrašai (bibliografija)"
#: 04120227.xhp
msgctxt ""
@@ -11766,7 +11766,7 @@ msgctxt ""
"hd_id3151388\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120227.xhp\" name=\"Entries (bibliography)\">Entries (bibliography)</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120227.xhp\" name=\"Entries (bibliography)\">Įrašai (bibliografija)</link>"
#: 04120227.xhp
msgctxt ""
@@ -11774,7 +11774,7 @@ msgctxt ""
"par_id3083449\n"
"help.text"
msgid "<variable id=\"eintraege\">Specify the format for bibliography entries.</variable>"
-msgstr ""
+msgstr "<variable id=\"eintraege\">Nurodykite formatą bibliografijos įrašams.</variable>"
#: 04120227.xhp
msgctxt ""
@@ -11782,7 +11782,7 @@ msgctxt ""
"hd_id31544970\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Tipas"
#: 04120227.xhp
msgctxt ""
@@ -11790,7 +11790,7 @@ msgctxt ""
"par_id3150017\n"
"help.text"
msgid "The types that are displayed depend on the different literature sources."
-msgstr ""
+msgstr "Tipai, kurie yra rodomi priklauso nuo skirtingų literatūrinių šaltinių."
#: 04120227.xhp
msgctxt ""
@@ -11798,7 +11798,7 @@ msgctxt ""
"hd_id3150570\n"
"help.text"
msgid "Type"
-msgstr ""
+msgstr "Tipas"
#: 04120227.xhp
msgctxt ""
@@ -11806,7 +11806,7 @@ msgctxt ""
"par_id3147175\n"
"help.text"
msgid "Lists the available bibliography entries. <ahelp hid=\".\">To add an entry to the Structure line, click the entry, click in an empty box on the Structure line, and then click <emph>Insert</emph>.</ahelp> Use the <link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Define Bibliography Entry</link> dialog to add new entries."
-msgstr ""
+msgstr "Surikiuoja galimus bibliografijos įrašus. <ahelp hid=\".\">Norėdami pridėti įrašą į struktūros liniją, spustelėkite įrašą, paspauskite ant tuščio langelio struktūros linijoje ir tada paspauskite <emph>Įterpti</emph>.</ahelp> N<link href=\"text/swriter/01/04120229.xhp\" name=\"Define Bibliography Entry\">Bibliografijos įrašo aprašymas</link> dialogo langą, kad pridėtumėte naujus įrašus."
#: 04120227.xhp
msgctxt ""
@@ -11814,7 +11814,7 @@ msgctxt ""
"hd_id3149287\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Įterpimas"
#: 04120227.xhp
msgctxt ""
@@ -11822,7 +11822,7 @@ msgctxt ""
"par_id3151178\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/insert\">Adds the reference code for the selected bibliography entry to the Structure line. Select an entry in the list, click in an empty box, and then click this button.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/insert\">Prideda nuorodos kodą pasirinktam bibliografijos įrašui į strukstūros liniją. Iš sąrašo pasirinkite įrašą, spustelėkite tuščią langelį ir paspauskite šį mygtuką.</ahelp>"
#: 04120227.xhp
msgctxt ""
@@ -11830,7 +11830,7 @@ msgctxt ""
"hd_id3154096\n"
"help.text"
msgid "Remove"
-msgstr ""
+msgstr "Šalinti"
#: 04120227.xhp
msgctxt ""
@@ -11838,7 +11838,7 @@ msgctxt ""
"par_id3149807\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/remove\">Removes the selected reference code from the Structure line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/remove\">Pašalina pasirinktą nuorodos kodą iš struktūros linijos.</ahelp>"
#: 04120227.xhp
msgctxt ""
@@ -11846,7 +11846,7 @@ msgctxt ""
"hd_id3154470\n"
"help.text"
msgid "Sort by"
-msgstr ""
+msgstr "Rikiuoti pagal"
#: 04120227.xhp
msgctxt ""
@@ -11854,7 +11854,7 @@ msgctxt ""
"par_id3154482\n"
"help.text"
msgid "Specify the sorting options for the bibliography entries."
-msgstr ""
+msgstr "Nurodykite rikiavimo parinktis bibliografijos įrašams."
#: 04120227.xhp
msgctxt ""
@@ -11862,7 +11862,7 @@ msgctxt ""
"hd_id3153665\n"
"help.text"
msgid "Document position"
-msgstr ""
+msgstr "Vieta dokumente"
#: 04120227.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/swriter/guide.po b/source/lt/helpcontent2/source/text/swriter/guide.po
index faddd9339d9..e4db225246f 100644
--- a/source/lt/helpcontent2/source/text/swriter/guide.po
+++ b/source/lt/helpcontent2/source/text/swriter/guide.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-03-25 20:39+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-20 19:47+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1553546355.000000\n"
+"X-POOTLE-MTIME: 1558381660.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "<emph>Standartinė juosta</emph> paspauskite<emph>Žvalgiklis</emph> piktogramą <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Piktograma</alt></image> atidaryti <emph>Žvalgiklis</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "<emph>Žvalgiklis</emph> paspauskite <emph>Turinio rodymas</emph> piktogramą <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Piktograma</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Paspauskite antraštę <emph>Žvalgiklio</emph> sąraše ir tada paspauskite <emph>Paaukštinti skyriaus lygį</emph><image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Piktograma</alt></image> arba <emph>Pažeminti skyriaus lygį</emph> piktograma <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Piktograma</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Paspauskite <emph>Paaukštinti lygį</emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Piktograma</alt></image> arba <emph>Pažeminti lygį</emph> piktogramą<image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Piktograma</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Paspauskite <emph>Antraštės lygiai yra rodomi</emph> piktogramą <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Piktograma</alt></image> ir tada pasirinkite skaičių iš sąrašo."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
@@ -14462,7 +14462,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating a Document Template"
-msgstr ""
+msgstr "Dokumento šablono kūrimas"
#: template_create.xhp
msgctxt ""
@@ -14470,7 +14470,7 @@ msgctxt ""
"bm_id3149688\n"
"help.text"
msgid "<bookmark_value>document templates</bookmark_value> <bookmark_value>templates; creating document templates</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentų šablonai</bookmark_value> <bookmark_value>šablonai; dokumento šablono kūrimas</bookmark_value>"
#: template_create.xhp
msgctxt ""
@@ -14478,7 +14478,7 @@ msgctxt ""
"hd_id3149688\n"
"help.text"
msgid "<variable id=\"template_create\"><link href=\"text/swriter/guide/template_create.xhp\" name=\"Creating a Document Template\">Creating a Document Template</link></variable>"
-msgstr ""
+msgstr "<variable id=\"template_create\"><link href=\"text/swriter/guide/template_create.xhp\" name=\"Dokumento šablono kūrimas\">Dokumento šablono kūrimas</link></variable>"
#: template_create.xhp
msgctxt ""
@@ -14486,7 +14486,7 @@ msgctxt ""
"par_id3149492\n"
"help.text"
msgid "You can create a template to use as the basis for creating new text documents."
-msgstr ""
+msgstr "Sukurkite šabloną, kurį bus galima naudoti kaip pagrindą naujiems teksto dokumentams."
#: template_create.xhp
msgctxt ""
@@ -14494,7 +14494,7 @@ msgctxt ""
"par_id3155915\n"
"help.text"
msgid "Create a document and add the content and formatting styles that you want."
-msgstr ""
+msgstr "Sukurkite dokumentą – įterpkite norimą turinį ir pritaikykite stilius."
#: template_create.xhp
msgctxt ""
@@ -14502,7 +14502,7 @@ msgctxt ""
"par_id3147422\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Templates - Save As Template</item>."
-msgstr ""
+msgstr "Pasirinkite komandą <item type=\"menuitem\">Failas → Šablonai → Įrašyti kaip šabloną.</item>"
#: template_create.xhp
msgctxt ""
@@ -14510,7 +14510,7 @@ msgctxt ""
"par_id3149829\n"
"help.text"
msgid "In the <item type=\"menuitem\">New Template</item> box, type a name for the new template."
-msgstr ""
+msgstr "Laukelyje <item type=\"menuitem\">Šablono pavadinimas</item> įveskite norimą naujojo šablono pavadinimą."
#: template_create.xhp
msgctxt ""
@@ -14518,7 +14518,7 @@ msgctxt ""
"par_id3156098\n"
"help.text"
msgid "Select a template category in the <item type=\"menuitem\">Categories</item> list."
-msgstr ""
+msgstr "Iš sąrašo <item type=\"menuitem\">Šablono kategorija</item> parinkite norimą kategoriją."
#: template_create.xhp
msgctxt ""
@@ -14526,7 +14526,7 @@ msgctxt ""
"par_id3149281\n"
"help.text"
msgid "Click <emph>OK</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Įrašyti</emph>."
#: template_create.xhp
msgctxt ""
@@ -14534,7 +14534,7 @@ msgctxt ""
"par_id3153404\n"
"help.text"
msgid "To create a document based on the template, choose <item type=\"menuitem\">File - New - Templates</item>, select the template, and then click <item type=\"menuitem\">Open</item>."
-msgstr ""
+msgstr "Jei šablono pagrindu norite sukurti naują dokumentą, pasirinkite komandą <item type=\"menuitem\">Failas → Naujas → Šablonai</item>, pažymėkite norimą šabloną ir spustelėkite mygtuką <item type=\"menuitem\">Atverti</item>."
#: template_create.xhp
msgctxt ""
@@ -14542,7 +14542,7 @@ msgctxt ""
"par_id3149636\n"
"help.text"
msgid "<link href=\"text/shared/01/01110300.xhp\" name=\"File - Templates - Save As Template\">File - Templates - Save As Template</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01110300.xhp\" name=\"Failas → Šablonai → Įrašyti kaip šabloną\">Failas → Šablonai → Įrašyti kaip šabloną</link>"
#: template_default.xhp
msgctxt ""
@@ -14550,7 +14550,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Changing the Default Template"
-msgstr ""
+msgstr "Numatytojo šablono keitimas"
#: template_default.xhp
msgctxt ""
@@ -14558,7 +14558,7 @@ msgctxt ""
"bm_id3155913\n"
"help.text"
msgid "<bookmark_value>default templates;defining/resetting</bookmark_value> <bookmark_value>defaults; templates</bookmark_value> <bookmark_value>templates; default templates</bookmark_value> <bookmark_value>text documents;default templates</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>numatytieji šablonai;nustatymas ir keitimas</bookmark_value> <bookmark_value>numatytosios parinktys; šablonai</bookmark_value> <bookmark_value>šablonai; numatytieji šablonai</bookmark_value> <bookmark_value>teksto dokumentai;numatytieji šablonai</bookmark_value>"
#: template_default.xhp
msgctxt ""
@@ -14566,7 +14566,7 @@ msgctxt ""
"hd_id3155913\n"
"help.text"
msgid "<variable id=\"template_default\"><link href=\"text/swriter/guide/template_default.xhp\" name=\"Changing the Default Template\">Changing the Default Template</link></variable>"
-msgstr ""
+msgstr "<variable id=\"template_default\"><link href=\"text/swriter/guide/template_default.xhp\" name=\"Numatytojo šablono keitimas\">Numatytojo šablono keitimas</link></variable>"
#: template_default.xhp
msgctxt ""
@@ -14574,7 +14574,7 @@ msgctxt ""
"par_id3145569\n"
"help.text"
msgid "The default template contains the default formatting information for new text documents. If you want, you can create a new template and use it as the default template."
-msgstr ""
+msgstr "Numatytajame šablone aprašytas numatytasis naujų dokumentų formatavimas. Prireikus galima sukurti naują šabloną ir naudoti jį kaip numatytąjį."
#: template_default.xhp
msgctxt ""
@@ -14582,7 +14582,7 @@ msgctxt ""
"hd_id6414990\n"
"help.text"
msgid "To Create a Default Template"
-msgstr ""
+msgstr "Numatytojo šablono kūrimas"
#: template_default.xhp
msgctxt ""
@@ -14590,7 +14590,7 @@ msgctxt ""
"par_id3149838\n"
"help.text"
msgid "Create a document and the content and formatting styles that you want."
-msgstr ""
+msgstr "Sukurkite dokumentą – įterpkite norimą turinį ir pritaikykite stilius."
#: template_default.xhp
msgctxt ""
@@ -14598,7 +14598,7 @@ msgctxt ""
"par_id3156101\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Templates - Save As Template</item>."
-msgstr ""
+msgstr "Pasirinkite komandą <item type=\"menuitem\">Failas → Šablonai → Įrašyti kaip šabloną.</item>"
#: template_default.xhp
msgctxt ""
@@ -14606,7 +14606,7 @@ msgctxt ""
"par_id3149283\n"
"help.text"
msgid "In the <emph>New Template</emph> box, type a name for the new template."
-msgstr ""
+msgstr "Laukelyje <emph>Šablono pavadinimas</emph> įveskite norimą naujojo šablono pavadinimą."
#: template_default.xhp
msgctxt ""
@@ -14614,7 +14614,7 @@ msgctxt ""
"par_id3153409\n"
"help.text"
msgid "In the dialog that appears, double-click the \"My Templates\" folder, and then click <emph>Save</emph>. You will then be prompted for a name; write it and click <emph>OK</emph>."
-msgstr ""
+msgstr "Pažymėkite kategoriją <emph>Mano šablonai</emph> ir spustelėkite mygtuką <emph>Įrašyti</emph>."
#: template_default.xhp
msgctxt ""
@@ -14622,7 +14622,7 @@ msgctxt ""
"par_id3153140\n"
"help.text"
msgid "Choose <emph>File - New - Templates</emph>."
-msgstr ""
+msgstr "Pasirinkite <emph>Failas → Naujas → Šablonai</emph>."
#: template_default.xhp
msgctxt ""
@@ -14630,7 +14630,7 @@ msgctxt ""
"par_id3149952\n"
"help.text"
msgid "Double-click the \"My Templates\" folder."
-msgstr ""
+msgstr "Pasirinkite kategoriją <emph>Mano šablonai</emph>."
#: template_default.xhp
msgctxt ""
@@ -14638,7 +14638,7 @@ msgctxt ""
"par_id3149970\n"
"help.text"
msgid "Click on the template that you created, and click <emph>Set as Default</emph>."
-msgstr ""
+msgstr "Dešiniuoju pelės klavišu spustelėkite naująjį šabloną ir pasirinkite komandą <emph>Nustatyti numatytuoju</emph>."
#: template_default.xhp
msgctxt ""
@@ -14646,7 +14646,7 @@ msgctxt ""
"par_id3149620\n"
"help.text"
msgid "Close the dialog."
-msgstr ""
+msgstr "Užverkite dialogo langą."
#: templates_styles.xhp
msgctxt ""
diff --git a/source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 6dfd59d06d8..23a502eb335 100644
--- a/source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/lt/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-02-22 10:41+0000\n"
+"PO-Revision-Date: 2019-05-25 20:20+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1550832108.000000\n"
+"X-POOTLE-MTIME: 1558815627.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"OOO_ERROR_131\n"
"LngText.text"
msgid "Installing a pre-requisite [2] failed. You might need to manually install it from Microsoft site to be able to run the product.[3]"
-msgstr ""
+msgstr "Nepavyko įdiegti reikiamo komponento „[2]“. Gali tekti jį įdiegti rankiniu būdu iš „Microsoft“ tinklalapio, kad programa veiktų.[3]"
#: LaunchCo.ulf
msgctxt ""
diff --git a/source/lt/officecfg/registry/data/org/openoffice/Office.po b/source/lt/officecfg/registry/data/org/openoffice/Office.po
index c526eee28e8..24a1520f323 100644
--- a/source/lt/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/lt/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-04-26 20:17+0000\n"
+"PO-Revision-Date: 2019-05-20 19:55+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1556309877.000000\n"
+"X-POOTLE-MTIME: 1558382131.000000\n"
#: Addons.xcu
msgctxt ""
@@ -185,7 +185,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "~Labels"
-msgstr ""
+msgstr "Etiketė"
#: Common.xcu
msgctxt ""
@@ -194,7 +194,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "B~usiness Cards"
-msgstr "Vizitinės kortelės"
+msgstr "Vizitinė kortelė"
#: Common.xcu
msgctxt ""
diff --git a/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po
index 596a736974a..573a3c4ad9d 100644
--- a/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lt/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-03 20:49+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-29 19:11+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"Language: lt\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1556916588.000000\n"
+"X-POOTLE-MTIME: 1559157076.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -448,7 +448,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Šalinti tiesioginį formatavimą"
#: CalcCommands.xcu
msgctxt ""
@@ -1402,7 +1402,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Print Area"
-msgstr "Spausdinimo sritis"
+msgstr "Apibrėžti spausdinimo sritį"
#: CalcCommands.xcu
msgctxt ""
@@ -1411,7 +1411,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Define"
-msgstr "Apibrėžti"
+msgstr "Apibrėžti spausdinimo sritį"
#: CalcCommands.xcu
msgctxt ""
@@ -1429,7 +1429,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr "Išvalyti"
+msgstr "Valyti"
#: CalcCommands.xcu
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Clear"
-msgstr "Valyti"
+msgstr "Valyti spausdinimo sritį"
#: CalcCommands.xcu
msgctxt ""
@@ -1447,7 +1447,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Print Ranges"
-msgstr ""
+msgstr "Valyti spausdinimo sritį"
#: CalcCommands.xcu
msgctxt ""
@@ -1456,7 +1456,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit"
-msgstr "Spausdinimo sritis"
+msgstr "Taisyti"
#: CalcCommands.xcu
msgctxt ""
@@ -1465,7 +1465,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Edit..."
-msgstr "Taisyti…"
+msgstr "Taisyti spausdinimo sritį…"
#: CalcCommands.xcu
msgctxt ""
@@ -1492,7 +1492,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Add"
-msgstr "Pridėti"
+msgstr "Pridėti spausdinimo sritį"
#: CalcCommands.xcu
msgctxt ""
@@ -1546,7 +1546,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "De~lete..."
-msgstr "Šalinti…"
+msgstr "Šalinti langelius…"
#: CalcCommands.xcu
msgctxt ""
@@ -2339,7 +2339,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Insert..."
-msgstr "Įterpti…"
+msgstr "Įterpti langelius…"
#: CalcCommands.xcu
msgctxt ""
@@ -2501,7 +2501,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Define..."
-msgstr "Aprašyti…"
+msgstr "Nurodyti pavadinimą…"
#: CalcCommands.xcu
msgctxt ""
@@ -2519,7 +2519,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Manage..."
-msgstr "Tvarkyti…"
+msgstr "Tvarkyti pavadinimus…"
#: CalcCommands.xcu
msgctxt ""
@@ -2870,7 +2870,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Format ~Page..."
-msgstr "Puslapio formatas..."
+msgstr "Puslapio parinktys…"
#: CalcCommands.xcu
msgctxt ""
@@ -9145,7 +9145,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Zoom & Pan"
-msgstr ""
+msgstr "Mastelis ir slinkimas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -9154,7 +9154,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Zoom & Pan (CTRL to Zoom Out, SHIFT to Pan)"
-msgstr ""
+msgstr "Mastelio keitimas – „Vald“, slinkimas – „Lyg2“"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -19509,7 +19509,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Emoji"
-msgstr "Emodži"
+msgstr "Jaustukas"
#: GenericCommands.xcu
msgctxt ""
@@ -19518,7 +19518,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Emoji"
-msgstr "Įterpti emodži"
+msgstr "Įterpti jaustuką"
#: GenericCommands.xcu
msgctxt ""
@@ -21526,7 +21526,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Design Mode"
-msgstr "Perjungti projektavimo veikseną"
+msgstr "Projektavimo veiksena"
#: GenericCommands.xcu
msgctxt ""
@@ -23409,6 +23409,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Daugiau laukų"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25481,7 +25490,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr "Standartinės mygtukų juostos"
+msgstr "Įprastos mygtukų juostos"
#: ToolbarMode.xcu
msgctxt ""
@@ -25562,7 +25571,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr "Standartinės mygtukų juostos"
+msgstr "Įprastos mygtukų juostos"
#: ToolbarMode.xcu
msgctxt ""
@@ -25634,7 +25643,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr "Standartinės mygtukų juostos"
+msgstr "Įprastos mygtukų juostos"
#: ToolbarMode.xcu
msgctxt ""
@@ -25688,7 +25697,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr "Standartinės mygtukų juostos"
+msgstr "Įprastos mygtukų juostos"
#: ToolbarMode.xcu
msgctxt ""
@@ -25702,6 +25711,15 @@ msgstr "Kortelės"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25720,11 +25738,20 @@ msgstr "Grupės"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr "Standartinės mygtukų juostos"
+msgstr "Įprastos mygtukų juostos"
#: ToolbarMode.xcu
msgctxt ""
@@ -25733,7 +25760,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr "Standartinės mygtukų juostos"
+msgstr "Įprastos mygtukų juostos"
#: WriterCommands.xcu
msgctxt ""
@@ -26291,7 +26318,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Use header/footer menu"
-msgstr ""
+msgstr "Naudoti puslapinės antraštės ir poraštės meniu"
#: WriterCommands.xcu
msgctxt ""
@@ -27902,7 +27929,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Columns Before"
-msgstr ""
+msgstr "Įterpti stulpelius kairiau"
#: WriterCommands.xcu
msgctxt ""
@@ -27920,7 +27947,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Columns After"
-msgstr ""
+msgstr "Įterpti stulpelius dešiniau"
#: WriterCommands.xcu
msgctxt ""
@@ -29757,7 +29784,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Standard"
-msgstr "Įprastinė"
+msgstr "Įprastinė atranka"
#: WriterCommands.xcu
msgctxt ""
@@ -29766,7 +29793,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Block Area"
-msgstr "Blokinė"
+msgstr "Blokinė atranka"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/lt/sc/messages.po b/source/lt/sc/messages.po
index 56d4bb45b09..c2097d47341 100644
--- a/source/lt/sc/messages.po
+++ b/source/lt/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-03 11:09+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-26 20:46+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554289791.000000\n"
+"X-POOTLE-MTIME: 1558903615.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15456,6 +15456,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(išskirtinė prieiga)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16010,12 +16015,12 @@ msgstr "Sąlyginių formatų tvarkymas"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17236,81 +17241,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Duomenų forma"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Užverti"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Naujas įrašas"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "Naujas"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Šalinti"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Atkurti"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Ankstesnis įrašas"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Kitas įrašas"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Užverti"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Duomenų srautai"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL adresas:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Įveskite pirminio dokumento adresą kompiuteryje arba internete."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Parinkti…"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Duomenų bazės sritis:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Srauto šaltinis"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19036,32 +19001,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Kur įrašyti rezultatus:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Duomenys"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Stulpeliai"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Eilutės"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Sugrupuota pagal"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervalas:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametrai"
@@ -19195,177 +19165,179 @@ msgstr "Sprendimas nerastas."
#: sc/uiconfig/scalc/ui/notebookbar.ui:2101
msgctxt "CalcNotebookbar|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "Failas"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2121
msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "Žinynas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "Failas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Pradžia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
-msgstr ""
+msgstr "Pradžia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Laukas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Įterpimas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "Įterpimas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
-msgstr ""
+msgstr "Išdėstymas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
-msgstr ""
+msgstr "Objekto lygiuotė"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Išdėstymas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
-msgstr ""
+msgstr "Statistika"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "Duomenys"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
-msgstr ""
+msgstr "Duomenys"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Tikrinimas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Rodymas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "Rodymas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Priemonės"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Priemonės"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:1890
msgctxt "notebookbar_compact|FileLabel"
@@ -19391,12 +19363,12 @@ msgstr "Nustatomos pažymėtų langelių kraštinės."
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3840
msgctxt "notebookbar_compact|CalcLabel"
msgid "Home"
-msgstr ""
+msgstr "Pradžia"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:3893
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Įterpimas"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4157
msgctxt "notebookbar_compact|FieldMenuButton"
@@ -19406,52 +19378,52 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4497
msgctxt "notebookbar_compact|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Įterpimas"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:4977
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Puslapis"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5029
msgctxt "notebookbar_compact|LayoutLabel"
msgid "Layout"
-msgstr ""
+msgstr "Išdėstymas"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5075
msgctxt "notebookbar_compact|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "Duomenys"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5661
msgctxt "notebookbar_compact|Statistics"
msgid "_Statistics"
-msgstr ""
+msgstr "Statistika"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:5717
msgctxt "notebookbar_compact|DataLabel"
msgid "Data"
-msgstr ""
+msgstr "Duomenys"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6092
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6125
msgctxt "notebookbar_compact|ReviewLabel"
msgid "Review"
-msgstr ""
+msgstr "Tikrinimas"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6602
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Rodymas"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:6654
msgctxt "notebookbar_compact|ViewLabel"
msgid "View"
-msgstr ""
+msgstr "Rodymas"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:7316
msgctxt "notebookbar_compact|GraphicMenuButton"
@@ -19506,17 +19478,17 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8780
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Priemonės"
#: sc/uiconfig/scalc/ui/notebookbar_compact.ui:9634
msgctxt "notebookbar_compact|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Priemonės"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3138
msgctxt "notebookbar_groupedbar_compact|MenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "Meniu"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3238
msgctxt "notebookbar_groupedbar_compact|fileb"
@@ -19542,7 +19514,7 @@ msgstr "Šriftas"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3905
msgctxt "notebookbar_groupedbar_compact|paragraphb"
msgid "_Paragraph"
-msgstr ""
+msgstr "Pastraipa"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4223
msgctxt "notebookbar_groupedbar_compact|numberb"
@@ -19562,7 +19534,7 @@ msgstr "Įterpimas"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4565
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
-msgstr "Peržiūra"
+msgstr "Tikrinimas"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4679
msgctxt "notebookbar_groupedbar_compact|viewb"
@@ -19573,7 +19545,7 @@ msgstr "Rodymas"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:10562
msgctxt "notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Forma"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:5069
msgctxt "notebookbar_groupedbar_compact|FormatButton"
@@ -21865,17 +21837,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Paieškos rezultatai"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23775,107 +23757,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Struktūros simboliai"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Langas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Tinklelio linijos:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "Spalva:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Rodyti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Rodyti nuspalvintuose langeliuose"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Slėpti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Puslapių lūžiai"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Tempiant rodomi orientyrai"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Pagalbinės priemonės"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Objektai ir paveikslai:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diagramos:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Grafikos objektai:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Rodyti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Slėpti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Rodyti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Slėpti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Rodyti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Slėpti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objektai"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Vienodas visuose lakštuose"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Mastelis"
diff --git a/source/lt/scp2/source/ooo.po b/source/lt/scp2/source/ooo.po
index 2ba0849a23f..ae244f6ed62 100644
--- a/source/lt/scp2/source/ooo.po
+++ b/source/lt/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-03-07 06:38+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-25 21:09+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
"Language: lt\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1551940697.000000\n"
+"X-POOTLE-MTIME: 1558818591.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -36,6 +36,14 @@ msgstr "Atverti dokumentą"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (ribotoji veiksena)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
@@ -4672,7 +4680,7 @@ msgctxt ""
"STR_REG_VAL_EXTENSION\n"
"LngText.text"
msgid "%PRODUCTNAME Extension"
-msgstr ""
+msgstr "„%PRODUCTNAME“ plėtinys"
#: registryitem_ooo.ulf
msgctxt ""
diff --git a/source/lt/scp2/source/winexplorerext.po b/source/lt/scp2/source/winexplorerext.po
index 510ed20c62d..df95822c395 100644
--- a/source/lt/scp2/source/winexplorerext.po
+++ b/source/lt/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 11:08+0200\n"
-"Last-Translator: Rimas <rq@akl.lt>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:06+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369354018.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Įdiegiama galimybė „Microsoft Windows Explorer“ failų tvarkytuvėje matyti informaciją apie „%PRODUCTNAME“ dokumentus, dokumentų miniatiūras."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/lt/sd/messages.po b/source/lt/sd/messages.po
index 8b2a5cb2358..970e906565f 100644
--- a/source/lt/sd/messages.po
+++ b/source/lt/sd/messages.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-07 19:28+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-26 20:57+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554665311.000000\n"
+"X-POOTLE-MTIME: 1558904221.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -2599,6 +2599,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Spustelėkite, jei norite atverti hipersaitą:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3060,164 +3065,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Pavadinti HTML projektą"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Pradžia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "Pradžia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Tikrinimas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -3265,7 +3455,7 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11836
msgctxt "draw_notebookbar_groupedbar_compact|insertText"
msgid "_Snap"
-msgstr ""
+msgstr "Trauka"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3879
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6283
@@ -3277,7 +3467,7 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3993
msgctxt "draw_notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4132
msgctxt "draw_notebookbar_groupedbar_compact|rowscolumnst"
@@ -4624,160 +4814,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Rodyti figūras"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Pradžia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "Pradžia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "Demonstravimas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
-msgstr ""
+msgstr "Demonstravimas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Tikrinimas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -4829,7 +5019,7 @@ msgstr "Braižymas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11968
msgctxt "notebookbar_groupedbar_compact|insertText"
msgid "_Snap"
-msgstr ""
+msgstr "Trauka"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3824
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12108
@@ -4840,7 +5030,6 @@ msgstr "Įterpimas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3949
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6351
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12233
-#, fuzzy
msgctxt "notebookbar_groupedbar_compact|viewT"
msgid "_View"
msgstr "Rodymas"
@@ -4849,7 +5038,7 @@ msgstr "Rodymas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12347
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
-msgstr "Peržiūra"
+msgstr "Tikrinimas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4205
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
diff --git a/source/lt/sfx2/messages.po b/source/lt/sfx2/messages.po
index be4078553f8..4b157cd00d7 100644
--- a/source/lt/sfx2/messages.po
+++ b/source/lt/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-03 11:28+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-25 09:55+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554290907.000000\n"
+"X-POOTLE-MTIME: 1558778129.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -917,11 +917,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Šalinti savybę"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -930,27 +925,27 @@ msgstr ""
"Įvesta reikšmė neatitinka nurodyto tipo.\n"
"Reikšmė bus įrašyta kaip tekstas."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Toks stilius jau yra. Perrašyti?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Atstatyti"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Toks pavadinimas jau naudojamas."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Tokio stiliaus nėra."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -959,7 +954,7 @@ msgstr ""
"Šio stiliaus negalima naudoti kaip pagrindo,\n"
"nes taip būtų sukurta kryžminė nuoroda."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -968,7 +963,7 @@ msgstr ""
"Toks stiliaus pavadinimas jau egzistuoja.\n"
"Parinkite kitą pavadinimą."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -979,92 +974,92 @@ msgstr ""
"Pašalinus šiuos stilius tekstui bus pritaikytas bazinis stilius.\n"
"Ar tikrai šalinti šiuos stilius?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Naudojami stiliai: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Žvalgiklis"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Neteisingai pakartotas slaptažodis"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Siųsti"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Šriftas"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Įterpti versijos komentarą"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(pavadinimas nenurodytas)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Stilių sąrašas"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Stilių hierarchija"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Stiliaus pritaikymo veiksena"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Naujas stilius pagal atranką"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Atnaujinti stilių"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Ar tikrai stabdyti įrašymą? Iki šiol įrašyti duomenys nebus išsaugoti."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Stabdyti įrašymą"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Šablonai parengiami naudoti pirmą kartą."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1073,7 +1068,7 @@ msgstr ""
"Numatytasis spausdintuvas nerastas.\n"
"Parinkite spausdintuvą ir bandykite dar kartą."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1082,17 +1077,17 @@ msgstr ""
"Nepavyko paleisti spausdintuvo.\n"
"Patikrinkite spausdintuvo sąranką."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Spausdintuvas užimtas"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (tik skaitymui)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1102,7 +1097,7 @@ msgstr ""
"Puslapio dydis ir padėtis buvo pakeisti.\n"
"Ar pritaikyti naująsias nuostatas aktyviajam dokumentui?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1113,7 +1108,7 @@ msgstr ""
"Ar pritaikyti naująsias nuostatas\n"
"aktyviajam dokumentui?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1123,7 +1118,7 @@ msgstr ""
"Puslapio dydis ir padėtis buvo pakeisti.\n"
"Ar pritaikyti naująsias nuostatas aktyviajam dokumentui?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1132,7 +1127,7 @@ msgstr ""
"Dokumento negalima užverti,\n"
"nes dar nebaigtas spausdinimas."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1142,7 +1137,7 @@ msgstr ""
"Prašome patikrinti „%PRODUCTNAME“ nuostatas arba jūsų elektroninio pašto programos nuostatas."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1150,17 +1145,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Klaida siunčiant paštą"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Dokumento negalima taisyti dėl, tikriausiai, nepakankamų prieigos teisių. Ar norite taisyti šio dokumento kopiją?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1168,350 +1163,360 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Atverti kopiją"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (sutvarkytas dokumentas)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Šis dokumentas nepaimtas iš serverio."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Padarykite „%PRODUCTNAME“ dar geresnį!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Bendradarbiauti"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dokumentas atvertas tik skaitymui."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Šis PDF dokumentas atvertas tik skaitymui, kad būtų galima jį pasirašyti."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Šio dokumento klasifikacijos žyma yra „%1“."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Prieš įdedant iškarpinės turinį, dokumentui turi būti priskirta slaptumo žyma."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Šio dokumento klasifikacijos lygmuo žemesnis nei iškarpinės turinio."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nacionalinis saugumas:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Eksporto kontrolė:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Paimti"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Taisyti dokumentą"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Pasirašyti dokumentą"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dokumento parašas negalioja."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Parašas galiojo, bet dokumentas buvo pakeistas."
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Parašas galioja, bet nepavyko patikrinti liudijimo."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Parašas galioja, bet dokumentas pasirašytas tik dalinai."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dokumentas pasirašytas galiojančiu skaitmeniniu parašu."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Rodyti parašus"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Įtvirtinti"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Atlaisvinti"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Daugiau parinkčių"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Paslėpti šoninį skydelį"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Šoninio skydelio nuostatos"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Sąranka"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Atstatyti numatytąją"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Paslėpti šoninį skydelį"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
-msgstr ""
+msgstr "Alizarinas"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
-msgstr ""
+msgstr "Bičių avilys"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
-msgstr ""
+msgstr "Mėlyna kreivė"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
-msgstr ""
+msgstr "Brėžinys"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
-msgstr ""
+msgstr "Šviesiai mėlynas"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
-msgstr ""
+msgstr "Raudonas"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNR"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
-msgstr ""
+msgstr "Fokusavimas"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
-msgstr ""
+msgstr "Miško paukščiai"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
-msgstr ""
+msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
-msgstr ""
+msgstr "Įkvėpimas"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
-msgstr ""
+msgstr "Šviesos"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
-msgstr ""
+msgstr "Sodriai žalias"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
-msgstr ""
+msgstr "Miestietiškas"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
-msgstr ""
+msgstr "Nakties mėlynas"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
-msgstr ""
+msgstr "Gamta"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
-msgstr ""
+msgstr "Pieštukas"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
-msgstr ""
+msgstr "Pianinas"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
-msgstr ""
+msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
-msgstr ""
+msgstr "Progresas"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
-msgstr ""
+msgstr "Saulėlydis"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
-msgstr ""
+msgstr "Senoviškas"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
-msgstr ""
+msgstr "Ryškus"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Šalinti"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Šalinti visus"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1880,32 +1885,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Versijos komentaras:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Pavadinimas"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipas"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Reikšmė"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipas"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Taip"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Ne"
@@ -1915,17 +1905,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Pridėti savybę"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Pavadinimas"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipas"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Reikšmė"
@@ -2055,17 +2045,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Vieta:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Tipas:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Keisti slaptažodį"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Šablonas:"
@@ -2075,27 +2065,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Savybės: %1"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Pagrindinės"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Aprašas"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Kitos savybės"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS savybės"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Saugumas"
@@ -2318,6 +2308,26 @@ msgstr ""
"\n"
"Šį produktą sukūrė „%OOOVENDOR“ „OpenOffice.org“ pagrindu: © 2000, 2011 „Oracle“ ir (arba) bendrovės filialai. „%OOOVENDOR“ dėkoja visiems bendruomenės nariams, žr. http://www.libreoffice.org/."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/lt/shell/messages.po b/source/lt/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/lt/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/lt/starmath/messages.po b/source/lt/starmath/messages.po
index dec7f0ae377..e0aa18c5c69 100644
--- a/source/lt/starmath/messages.po
+++ b/source/lt/starmath/messages.po
@@ -3,9 +3,9 @@ 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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2018-05-08 13:42+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-25 20:11+0000\n"
+"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525786962.000000\n"
+"X-POOTLE-MTIME: 1558815076.000000\n"
#: starmath/inc/smmod.hrc:16
msgctxt "RID_UI_SYMBOLSET_NAMES"
@@ -424,22 +424,22 @@ msgstr "Paprastoji trupmena"
#: starmath/inc/strings.hrc:38
msgctxt "RID_XODIVIDEY_HELP"
msgid "Circled Slash"
-msgstr ""
+msgstr "Įstrižas brūkšnys apskritime"
#: starmath/inc/strings.hrc:39
msgctxt "RID_XODOTY_HELP"
msgid "Circled Dot"
-msgstr ""
+msgstr "Taškas apskritime"
#: starmath/inc/strings.hrc:40
msgctxt "RID_XOMINUSY_HELP"
msgid "Circled Minus"
-msgstr ""
+msgstr "- ženklas apskritime"
#: starmath/inc/strings.hrc:41
msgctxt "RID_XOPLUSY_HELP"
msgid "Circled Plus"
-msgstr ""
+msgstr "+ ženklas apskritime"
#: starmath/inc/strings.hrc:42
msgctxt "RID_XOTIMESY_HELP"
@@ -509,7 +509,7 @@ msgstr "Žymiai daugiau"
#: starmath/inc/strings.hrc:55
msgctxt "RID_XDEFY_HELP"
msgid "Is Defined As"
-msgstr ""
+msgstr "Apibrėžiama kaip"
#: starmath/inc/strings.hrc:56
msgctxt "RID_XEQUIVY_HELP"
@@ -554,12 +554,12 @@ msgstr "Artėja"
#: starmath/inc/strings.hrc:64
msgctxt "RID_XTRANSLY_HELP"
msgid "Corresponds To (Left)"
-msgstr ""
+msgstr "Atitinka (kairėje)"
#: starmath/inc/strings.hrc:65
msgctxt "RID_XTRANSRY_HELP"
msgid "Corresponds To (Right)"
-msgstr ""
+msgstr "Atitinka (dešinėje)"
#: starmath/inc/strings.hrc:66
msgctxt "RID_XINY_HELP"
@@ -839,42 +839,42 @@ msgstr "Ribos indeksas"
#: starmath/inc/strings.hrc:121
msgctxt "RID_LIMINFX_HELP"
msgid "Limit Inferior"
-msgstr ""
+msgstr "Apatinė riba"
#: starmath/inc/strings.hrc:122
msgctxt "RID_LIMINF_FROMX_HELP"
msgid "Limit Inferior Subscript Bottom"
-msgstr ""
+msgstr "Apatinis apatinės ribos indeksas"
#: starmath/inc/strings.hrc:123
msgctxt "RID_LIMINF_TOX_HELP"
msgid "Limit Inferior Superscript Top"
-msgstr ""
+msgstr "Viršutinis apatinės ribos indeksas"
#: starmath/inc/strings.hrc:124
msgctxt "RID_LIMINF_FROMTOX_HELP"
msgid "Limit Inferior Sup/Sub script"
-msgstr ""
+msgstr "Apatinės ribos indeksas"
#: starmath/inc/strings.hrc:125
msgctxt "RID_LIMSUPX_HELP"
msgid "Limit Superior"
-msgstr ""
+msgstr "Viršutinė riba"
#: starmath/inc/strings.hrc:126
msgctxt "RID_LIMSUP_FROMX_HELP"
msgid "Limit Superior Subscript Bottom"
-msgstr ""
+msgstr "Apatinis viršutinės ribos indeksas"
#: starmath/inc/strings.hrc:127
msgctxt "RID_LIMSUP_TOX_HELP"
msgid "Limit Superior Superscript Top"
-msgstr ""
+msgstr "Viršutinis viršutinės ribos indeksas"
#: starmath/inc/strings.hrc:128
msgctxt "RID_LIMSUP_FROMTOX_HELP"
msgid "Limit Superior Sup/Sub script"
-msgstr ""
+msgstr "Viršutinės ribos indeksas"
#: starmath/inc/strings.hrc:129
msgctxt "RID_EXISTS_HELP"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Pavyzdžiai"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Įprastas"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursyvas"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Pusjuodis"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "juoda"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "mėlyna"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "žalia"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "raudona"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "žydra"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "purpurinė"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "pilka"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "citrininė"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kaštoninė"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "jūros"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "alyvuogių"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "violetinė"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "sidabrinė"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "tamsiai žydra"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "geltona"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "slėpti"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "dydis"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "šriftas"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "kairėje"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dešinėje"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Komandos"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formulė"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Įrašomas dokumentas…"
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "„%PRODUCTNAME %PRODUCTVERSION“ formulių dokumentas"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "KLAIDA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Netikėtas rašmuo"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Tikėtasi „{“"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Tikėtasi „}“"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Tikėtasi „(“"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Tikėtasi „)“"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Kairysis ir dešinysis ženklai nesutampa"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dvigubas lygiavimas negalimas"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dvigubi indeksai negalimi"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Tikėtasi „#“"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Tikėtasi spalvos"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Tikėtasi 'RIGHT' "
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "„%PRODUCTNAME“ %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Spaudinio turinys"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Pavadinimas"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Formulės tekstas"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Rėmeliai"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Spaudinio mastelis"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Originalus dydis"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Pritaikyti prie puslapio"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Mastelis"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Ženklai"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/lt/svtools/messages.po b/source/lt/svtools/messages.po
index a2f8d4e50c5..fdb4aa6ab05 100644
--- a/source/lt/svtools/messages.po
+++ b/source/lt/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-23 22:04+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1520 +16,1522 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1556057053.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Atšaukti: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Atstatyti: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Pakartoti: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Neformatuotas tekstas"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Būsenos informacija naudojantis vidine Svx nuoroda"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "„Netscape“ žymelė"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "„Star“ serverio formatas"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "„Star“ objekto formatas"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Programėlės objektas"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Papildinio objektas"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "„StarWriter 3.0“ objektas"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "„StarWriter 4.0“ objektas"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "„StarWriter 5.0“ objektas"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "„StarWriter/Web 4.0“ objektas"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "„StarWriter/Web 5.0“ objektas"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "„StarWriter/Master 4.0“ objektas"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "„StarWriter/Master 5.0“ objektas"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "„StarDraw“ objektas"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "„StarDraw 4.0“ objektas"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "„StarImpress 5.0“ objektas"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "„StarDraw 5.0“ objektas"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "„StarCalc“ objektas"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "„StarCalc 4.0“ objektas"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "„StarCalc 5.0“ objektas"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "„StarChart“ objektas"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "„StarChart 4.0“ objektas"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "„StarChart 5.0“ objektas"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "„StarImage“ objektas"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "„StarImage 4.0“ objektas"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "„StarImage 5.0“ objektas"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "„StarMath“ objektas"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "„StarMath 4.0“ objektas"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "„StarMath 5.0“ objektas"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "„StarObject Paint“ objektas"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "„Microsoft Word“ objektas"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "„StarFrameSet“ objektas"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "„Office“ dokumento objektas"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "„Notes“ dokumento informacija"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokumentas"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "„StarChart 5.0“ objektas"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Paveikslas"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "„OpenOffice.org 1.0“ tekstų rengyklės objektas"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "„OpenOffice.org 1.0“ tinklalapių rengyklės objektas"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "„OpenOffice.org 1.0“ pagrindinių dokumentų rengyklės objektas"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "„OpenOffice.org 1.0“ grafikos rengyklės objektas"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "„OpenOffice.org 1.0“ pateikčių rengyklės objektas"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "„OpenOffice.org 1.0“ skaičiuoklės objektas"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "„OpenOffice.org 1.0“ diagramų rengyklės objektas"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "„OpenOffice.org 1.0“ formulių rengyklės objektas"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "„Windows“ metafailas"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Pradinių duomenų objektas"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Pradinių duomenų lentelė"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL užklausa"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "„OpenOffice.org 1.0“ dialogas"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Saitas"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML formatas be komentarų"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Nepavyko įterpti objekto %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Nepavyko įterpti objekto iš failo %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Kiti objektai"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Nežinomas šaltinis"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Vardas"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Dydis"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Modifikavimo data"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipas"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "B"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Eilutė: %1, stulpelis: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", tipas: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Aplankas"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Failas"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Tuščias laukas"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Raidės ir skaičiai"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Įprastai"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Rašmenų aibė"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Žodynas"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Kirčiai"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Šaknys"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unikodas"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonų knyga"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetiškai (raidės ir skaičiai pirmiausia)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetiškai (raidės ir skaičiai paskiausia)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Raidės ir skaičiai"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Žodynas"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Šaknys"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Kirčiai"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetiškai (raidės ir skaičiai pirmiausia, sugrupuota pagal skiemenis)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetiškai (raidės ir skaičiai pirmiausia, sugrupuota pagal priebalses)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetiškai (raidės ir skaičiai paskiausia, sugrupuota pagal skiemenis)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetiškai (raidės ir skaičiai paskiausia, sugrupuota pagal priebalses)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Šiandien"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Nieko"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Šviesus"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Šviesus kursyvas"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normalus"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursyvas"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Pusjuodis"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Pusjuodis kursyvas"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Juodas"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Juodas kursyvas"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Knyga"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Suglausti"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "pusiau pusjuodis"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Bus spausdinama tuo pačiu šriftu, kuris matomas ekrane."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Tai spausdintuvo šriftas. Vaizdas ekrane gali atrodyti kitaip."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Šis šrifto stilius bus sumodeliuotas arba bus naudojamas panašiausias stilius."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Toks šriftas neįdiegtas. Bus panaudotas panašiausias šriftas."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Parinkti…"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Perkelti į pradžią"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Perkelti kairėn"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Perkelti dešinėn"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Perkelti į pabaigą"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Pridėti"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontalioji liniuotė"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertikalioji liniuotė"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bito ribinės reikšmės"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bito pseudopustoniai"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bitų pilkos spalvos atspalviai"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bitų spalvos"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bitų pilkos spalvos atspalviai"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bitų spalvos"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bitų tikrosios spalvos"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Paveikslui reikia apie %1 KB atmintinės."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Paveikslui reikia apie %1 KB atmintinės, failo dydis yra %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Failo dydis yra %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "serveris"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "prievadas"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "paruoštas"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "pristabdytas"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "laukiama šalinimo"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "užimtas"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "inicializuojama"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Laukiama"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "apšilimas"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "apdorojama"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Spausdinama"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Atsijungęs"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Klaida"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Nežinomas serveris"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Įstrigo lapas"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nėra popieriaus"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Lapų padavimas rankiniu būdu"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problemos su popieriumi"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Įvesti arba išvesti"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Spaudinių dėklas pilnas"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Baigiasi dažai"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Nėra dažų"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Šalinti puslapį"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Būtinas naudotojo įsikišimas"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Nepakanka atminties"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Atidarytas dangtis"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energijos taupymo veiksena"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Numatytasis spausdintuvas"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumentai"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Baigti"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Toliau >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Atgal"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Žingsniai"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<nenurodyta>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Organizacija:"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Skyrius:"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Vardas:"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Pavardė:"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Gatvė:"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Šalis:"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Pašto kodas"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Miestas"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Laipsnis:"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pareigos:"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adreso forma:"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicialai:"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Sveikinimas:"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Namų tel.:"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Darbo tel.:"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL:"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Pastabos:"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Naudotojas 1:"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Naudotojas 2:"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Naudotojas 3:"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Naudotojas 4:"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID:"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Apskritis, rajonas:"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Darbo tel.:"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pranešimų gaviklis:"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobilus tel.:"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Kiti tel.:"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendorius:"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Kvietimas:"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ – $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Šiam veiksmui atlikti „%PRODUCTNAME“ programai reikalinga „Java“ programų vykdymo terpė (JRE). Įdiekite JRE ir iš naujo paleiskite „%PRODUCTNAME“."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Šiam veiksmui atlikti „%PRODUCTNAME“ programai reikalinga %BITNESS bitų „Java“ programų vykdymo terpė (JRE). Įdiekite JRE ir iš naujo paleiskite „%PRODUCTNAME“."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "Šiai užduočiai atlikti „%PRODUCTNAME“ reikalingas „Oracle“ „Java“ komplektas (JDK), veikiantis 10.10 ar vėlesnės versijos „macOS“ sistemoje. Įdiekite reikiamą komplektą ir paleiskite „%PRODUCTNAME“ iš naujo."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "„%PRODUCTNAME“ sąranka buvo pakeista. Lange „%PRODUCTNAME → Parinktys → %PRODUCTNAME → Kitos parinktys“ parinkite „Java“ programų vykdymo terpę, kurią turėtų naudoti „%PRODUCTNAME“ programa."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "„%PRODUCTNAME“ sąranka buvo pakeista. Lange „Priemonės → Parinktys → %PRODUCTNAME →Kitos parinktys“ pasirinkite „Java“ programų vykdymo terpę, kurią turėtų naudoti „%PRODUCTNAME“ programa."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Šiam veiksmui atlikti „%PRODUCTNAME“ programai reikalinga „Java“ programų vykdymo terpė (JRE). Parinkta „Java“ terpė yra sugadinta. Parinkite kitą JRE versiją arba įdiekite kitą „Java“ terpę ir parinkite ją lange „%PRODUCTNAME → Parinktys → %PRODUCTNAME → Kitos parinktys“."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Šiam veiksmui atlikti „%PRODUCTNAME“ programai reikalinga „Java“ programų vykdymo terpė (JRE). Parinkta „Java“ terpė yra sugadinta. Parinkite kitą JRE versiją arba įdiekite kitą „Java“ terpę ir parinkite ją lange „Priemonės → Parinktys → %PRODUCTNAME → Kitos parinktys“."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Reikalinga JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE parinkimas"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE sugadinta"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Pirminis tekstas"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Žymelių failas"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Paveikslas"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Sąrankos failas"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Programa"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Duomenų bazės lentelė"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sisteminis failas"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "„MS Word“ dokumentas"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Žinyno failas"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Tinklalapis"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Pakuotasis failas"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Žurnalo failas"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "„StarOffice“ duomenų bazė"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "„StarWriter 4.0 / 5.0“ pagrindinis dokumentas"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "„StarOffice“ paveikslas"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstinis failas"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Saitas"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "„StarOffice 3.0 – 5.0“ šablonas"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "„MS Excel“ dokumentas"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "„MS Excel“ šablonas"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Komandų failas .bat"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Failas"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Aplankas"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Teksto dokumentas"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Skaičiuoklės dokumentas"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Pateiktis"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Grafikos dokumentas"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Tinklalapis"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Pagrindinis dokumentas"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formulių dokumentas"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Duomenų bazė"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 skaičiuoklės šablonas"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 grafikos šablonas"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 pateikties šablonas"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 teksto šablonas"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Vietinis diskas"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskas"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Kompaktinių plokštelių įrenginys"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Tinklo ryšys"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "„MS PowerPoint“ dokumentas"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "„MS PowerPoint“ šablonas"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "„MS PowerPoint“ demonstracija"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 formulių dokumentas"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 diagrama"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 grafikos dokumentas"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 skaičiuoklė"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 pateiktis"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 teksto dokumentas"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 pagrindinis dokumentas"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "„MathML“ dokumentas"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "„OpenDocument“ duomenų bazė"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "„OpenDocument“ grafikos dokumentas"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "„OpenDocument“ formulių dokumentas"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "„OpenDocument“ pagrindinis dokumentas"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "„OpenDocument“ pateiktis"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "„OpenDocument“ skaičiuoklės dokumentas"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "„OpenDocument“ teksto dokumentas"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "„OpenDocument“ skaičiuoklės šablonas"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "„OpenDocument“ grafikos šablonas"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "„OpenDocument“ pateikties šablonas"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "„OpenDocument“ teksto šablonas"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "„%PRODUCTNAME“ plėtinys"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Nepaisomi žodžiai"
diff --git a/source/lt/svx/messages.po b/source/lt/svx/messages.po
index 8d5624347d2..9f850bd2cc6 100644
--- a/source/lt/svx/messages.po
+++ b/source/lt/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-06 20:22+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-25 21:41+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557174148.000000\n"
+"X-POOTLE-MTIME: 1558820483.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -5831,7 +5831,7 @@ msgstr "Keitimas"
#: include/svx/strings.hrc:1230
msgctxt "RID_SVXSTR_INSERT_TEXT"
msgid "Insert"
-msgstr ""
+msgstr "Įterpimas"
#: include/svx/strings.hrc:1231
msgctxt "RID_SVXSTR_XMLSEC_SIG_OK"
@@ -7947,6 +7947,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Iš kairės į dešinę (vertikaliai)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12237,82 +12242,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Nurodykite gradiento šešėlio vertikalųjį poslinkį nuo centro procentais. 50% žymį vertikalųjį centrą."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Kontūro taisymas"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Taikyti"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Darbo sritis"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Atranka"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Stačiakampis"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsė"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Daugiakampis"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Taisyti taškus"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Perkelti taškus"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Įterpti taškus"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Šalinti taškus"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Savaiminis kontūro sukūrimas"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Atšaukti "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Atstatyti"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipetė"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Leistinas spalvos nuokrypis"
@@ -12630,112 +12640,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Puslapinė poraštė"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Jautrių paveikslo sričių tvarkymas"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Taikyti"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Atverti…"
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Įrašyti…"
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Užverti"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Atranka"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Stačiakampis"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsė"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Daugiakampis"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Uždara piešta kreivė"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Taisyti taškus"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Perkelti taškus"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Įterpti taškus"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Šalinti taškus"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Atšaukti "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Atstatyti"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktyvinta"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makrokomanda…"
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Savybės…"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresas:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Kadras:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekstas:"
diff --git a/source/lt/sw/messages.po b/source/lt/sw/messages.po
index 4bbe3b62a6a..7135d8f279e 100644
--- a/source/lt/sw/messages.po
+++ b/source/lt/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-06 20:14+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-26 20:47+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557173650.000000\n"
+"X-POOTLE-MTIME: 1558903623.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3124,9 +3124,9 @@ msgid "Change object title of $1"
msgstr "Keisti objekto pavadinimą: $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Keisti objekto aprašymą: $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -10360,7 +10360,7 @@ msgstr "skiltį"
#: sw/uiconfig/swriter/ui/insertbreak.ui:134
msgctxt "insertbreak|columnrb-atkobject"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next column. A manual column break is indicated by a nonprinting border at the top of the new column."
-msgstr ""
+msgstr "Rankiniu būdu įterpiamas skilties lūžis (daugelio skilčių išdėstyme), o tekstas, esantis į dešinę nuo žymeklio, perkeliamas į naujosios skilties pradžią. Rankiniu būdu įterptas skilties lūžis žymimas nespausdinama linija skilties viršuje."
#: sw/uiconfig/swriter/ui/insertbreak.ui:146
msgctxt "insertbreak|pagerb"
@@ -12024,147 +12024,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Pradžia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "Pradžia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Tikrinimas"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12174,152 +12174,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Pradžia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "Pradžia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Įterpimas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Tikrinimas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Rodymas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Priemonės"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -12381,7 +12381,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4529
msgctxt "notebookbar_groupedbar_compact|ReviewButton"
msgid "_Review"
-msgstr ""
+msgstr "Tikrinimas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4643
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9745
@@ -12394,7 +12394,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11561
msgctxt "notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Forma"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5550
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
@@ -13402,8 +13402,8 @@ msgstr "Išplėsti tarpus tarp žodžių, jei abipus lygiuotoje pastraipoje rank
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Apsaugoti formą"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16703,47 +16703,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Turinys, rodyklė arba bibliografija"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Peržiūra"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Peržiūra"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Įrašai"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stiliai"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Skiltys"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fonas"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Peržiūra"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Lygmuo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "Tipas"
@@ -16973,302 +16973,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Taisa…"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Antraštė:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipas:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Turinys"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Abėcėlinė rodyklė"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Lentelių rodyklė"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Kitokia rodyklė"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektų sąrašas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografija"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Negalima keisti rankiniu būdu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipas ir antraštė"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Kam:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Visam dokumentui"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Skyriui"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Įvertinti iki lygio:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Sukurti rodyklę arba turinį"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Struktūra"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Rodyklės įrašai"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Lentelės"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Teksto kadrai"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Paveikslai"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE objektai"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Naudoti pirminio skyriaus lygmenį"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Papildomi stiliai"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stiliai"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Priskirti stilius…"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Pavadinimai"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektų pavadinimai"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorija:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Rodoma:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Nuorodos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorija ir numeris"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Pavadinimo tekstas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Kuriant naudojama"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Kuriant naudojami šie objektai"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Skliaustai:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Numeruoti įrašus"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[jokių]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Įrašų formatavimas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Apjungti vienodus elementus"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Apjungti vienodus elementus su p arba pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Apjungti su -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Skirti didž. ir maž. raides"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Įrašai iš didžiųjų raidžių"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Reikšminiai žodžiai atskirais įrašais"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Atitikmenų failas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Failas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Parinktys"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Kalba:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Rakto tipas:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Rikiavimas"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Lygmenys"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Pastraipos stiliai"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Numatyta"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Taisyti"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Priskyrimas"
diff --git a/source/lt/wizards/messages.po b/source/lt/wizards/messages.po
index f2a55f53fb1..aad6a22ed65 100644
--- a/source/lt/wizards/messages.po
+++ b/source/lt/wizards/messages.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-04-06 17:08+0000\n"
+"PO-Revision-Date: 2019-05-25 20:22+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554570487.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558815737.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -1085,7 +1085,7 @@ msgstr "Mano darbotvarkės šablonas"
#: wizards/com/sun/star/wizards/common/strings.hrc:264
msgctxt "RID_AGENDAWIZARDDIALOG_START_43"
msgid "An error occurred while saving the agenda template."
-msgstr ""
+msgstr "Įrašant darbotvarkės šabloną įvyko klaida."
#: wizards/com/sun/star/wizards/common/strings.hrc:265
msgctxt "RID_AGENDAWIZARDDIALOG_START_44"
@@ -1145,7 +1145,7 @@ msgstr "Pavadinimas ir vieta"
#: wizards/com/sun/star/wizards/common/strings.hrc:276
msgctxt "RID_AGENDAWIZARDDIALOG_START_56"
msgid "An error occurred while opening the agenda template."
-msgstr ""
+msgstr "Atveriant darbotvarkės šabloną įvyko klaida."
#: wizards/com/sun/star/wizards/common/strings.hrc:277
msgctxt "RID_AGENDAWIZARDDIALOG_START_57"
diff --git a/source/lt/xmlsecurity/messages.po b/source/lt/xmlsecurity/messages.po
index f4156925314..ac550780e7d 100644
--- a/source/lt/xmlsecurity/messages.po
+++ b/source/lt/xmlsecurity/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-02-12 19:31+0000\n"
+"PO-Revision-Date: 2019-05-25 21:11+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1549999867.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558818671.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -188,12 +188,12 @@ msgstr "Užšifruoti"
#: xmlsecurity/uiconfig/ui/certdetails.ui:49
msgctxt "certdetails|field"
msgid "Field"
-msgstr ""
+msgstr "Laukas"
#: xmlsecurity/uiconfig/ui/certdetails.ui:62
msgctxt "certdetails|value"
msgid "Value"
-msgstr ""
+msgstr "Reikšmė"
#: xmlsecurity/uiconfig/ui/certgeneral.ui:33
msgctxt "certgeneral|label1"
diff --git a/source/lv/cui/messages.po b/source/lv/cui/messages.po
index ad15cdcf131..bdc24de23ad 100644
--- a/source/lv/cui/messages.po
+++ b/source/lv/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-04-25 17:12+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Lūdzu, ievadiet derīgu motīva adresi vai meklējamo terminu."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Iestatīt bez malām"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Iestatīt tikai ārējās malas"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Iestatīt ārējās apmales un horizontālās līnijas"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Iestatīt ārējās malas un visas iekšējās līnijas"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Iestatīt ārējās apmales nemainot iekšējās līnijas"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Iestatīt tikai diagonālās līnijas"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Iestatīt visas četras malas"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Iestatīt tikai labās un kreisās malas"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Iestatīt tikai augšējās un apakšējās malas"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Iestatīt tikai kreisās puses malu"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Iestatīt augšējo, apakšējo malu un visas iekšējās līnijas"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Iestatīt labās, kreisās malas un visas iekšējās līnijas"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Nav ēnas"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Mest ēnu uz leju/pa labi"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Mest ēnu uz augšu/pa labi"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Mest ēnu uz leju/pa kreisi"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Mest ēnu uz augšu/pa kreisi"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Parakstījis: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Visas datnes"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Reģistrētās datubāzes"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Par %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Vei_dotāji"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Tīmekļa vietne"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Būvējuma ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Lokāle: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Lietotāja saskarnes valoda: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Skatīt žurnālu: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME ir mūsdienīga, viegli lietojama, atvērtā pirmkoda biroja programmatūra teksta apstrādei, izklājlapām, prezentācijām un vēl vairāk."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Autortiesības © 2000 - 2019 LibreOffice veidotāji."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice bija veidots uz OpenOffice.org pamata."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME ir atvasināts no LibreOffice, kas tika veidots uz OpenOffice.org pamata."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Šo laidienu nodrošina %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Aizstāt"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Aizstāt"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Ar:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Tikai teksts"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimālais vārdu garums"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Īpašības"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Ietva_rs:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nosaukums:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternatīvs _teksts:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Apraksts:"
@@ -9019,80 +9179,80 @@ msgstr "Rādīt izlecošo logu \"Neviena lokālā palīdzība nav instalēta\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Palīdzība"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Lietot %PRODUCTNAME dialogus"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Atvērt/saglabāt dialogi"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Lietot %PRODUCTNAME _dialogus"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Drukāšanas dialogi"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Drukāšana iestata \"dokuments modificēts\" statusu"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumenta statuss"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretēt kā gadus starp "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "un "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Gads (divciparu)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Ievākt informāciju par izmantošanu un nosūtīt to uz The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Palīdzi uzlabot %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Ielādēt %PRODUCTNAME pie sistēmas startēšanas"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Ieslēgt sistēmas ikonu joslā Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Priekšinstalēts motīvs"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Mans motīvs"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Ielādēt Firefox motīvu"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Vai arī izvēlieties no motīviem, kas instalēti caur paplašinājumiem:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox motīvi"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Drošības opcijas"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Izvēlieties Firefox motīvu"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Meklējamais termins vai adrese"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ka_tegorija:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstrakts"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Cēloņi"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Mode"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Kino un TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Brīvdiena"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Mūzika"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Daba"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Cits"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Ainava"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Sezonas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Viendabīgs"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sports"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Tīmekļa vietnes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Piedāvātās"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/lv/extensions/messages.po b/source/lv/extensions/messages.po
index 9aede5343ab..ea9e6cc0f41 100644
--- a/source/lv/extensions/messages.po
+++ b/source/lv/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-17 09:13+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@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 != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555492410.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Kolonnu izkārtojums tabulai “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Īsai_s nosaukums"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autors(-i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Izdevējs"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Nodaļa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Redaktors"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tips"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Gads"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "_Virsraksts"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_drese"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_Lappuse(-es)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "_Izdevums"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "G_rāmatas nosaukums"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Sējums"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Publikācijas t_ips"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zācija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Ies_tāde"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versitāte"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Atskaites _tips"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mēnesis"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Ž_urnāls"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "N_umurs"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Sē_rija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_otācija"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Piezīme"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Lietotāja definēts _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Lietotāja definēts _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Lietotāja definēts _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Lietotāja definēts _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Lietotāja definēts _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Kolonnu nosaukumi"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Ievadiet nosaukumu jaunajam datu tipam:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Saišu lauki"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Ieteikt"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Apakšformas var izmantot, lai attēlotu detalizētus datus par pašreizējo ierakstu no galvenās formas. Lai to darītu, jums ir jānorāda kuras kolonnas apakšformā sakrīt ar kurām kolonnām galvenajā formā."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiķete"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiķete"
diff --git a/source/lv/helpcontent2/source/auxiliary.po b/source/lv/helpcontent2/source/auxiliary.po
index efd2fcf6e60..d7380151e32 100644
--- a/source/lv/helpcontent2/source/auxiliary.po
+++ b/source/lv/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-27 13:28+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Vispārēja informācija"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "Rīkjoslas"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Zīmējumi (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Izvēlnes"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Rīkjoslas"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objekti, grafikas un bitkartes"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupas un slāņi"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Teksts prezentācijās un zīmējumos"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/sbasic/guide.po b/source/lv/helpcontent2/source/text/sbasic/guide.po
index 0c92c090c1d..004f21174fd 100644
--- a/source/lv/helpcontent2/source/text/sbasic/guide.po
+++ b/source/lv/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-27 12:06+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Salīdzināt Access2Base ar Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Dialoga atvēršana ar programmas kodu"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>moduļu/dialogu pārslēgšana</bookmark_value><bookmark_value>dialogi;lietot programmas kodu, lai parādītu (piemērs)</bookmark_value><bookmark_value>piemēri; parādīt dialogu, lietojot programmas kodu</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/lv/helpcontent2/source/text/sbasic/python.po b/source/lv/helpcontent2/source/text/sbasic/python.po
index 543383eba82..299ca01693e 100644
--- a/source/lv/helpcontent2/source/text/sbasic/python.po
+++ b/source/lv/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-27 15:23+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,7 +77,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,7 +1469,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1493,7 +1493,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1515,6 +1515,30 @@ msgstr "Basic klases moduļa lietošana:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/lv/helpcontent2/source/text/sbasic/shared.po b/source/lv/helpcontent2/source/text/sbasic/shared.po
index 4128e0ef19f..af06d2b9326 100644
--- a/source/lv/helpcontent2/source/text/sbasic/shared.po
+++ b/source/lv/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-09 15:18+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,7 +36197,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/lv/helpcontent2/source/text/sbasic/shared/03.po b/source/lv/helpcontent2/source/text/sbasic/shared/03.po
index ccaaf858f7d..007445dec88 100644
--- a/source/lv/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/lv/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/lv/helpcontent2/source/text/scalc/01.po b/source/lv/helpcontent2/source/text/scalc/01.po
index b1491fa7ad4..94e9b7e1b8b 100644
--- a/source/lv/helpcontent2/source/text/scalc/01.po
+++ b/source/lv/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-02-27 15:24+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,7 +40949,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/lv/helpcontent2/source/text/schart/00.po b/source/lv/helpcontent2/source/text/schart/00.po
index fb81e7a3f6f..2059676e837 100644
--- a/source/lv/helpcontent2/source/text/schart/00.po
+++ b/source/lv/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/lv/helpcontent2/source/text/shared/00.po b/source/lv/helpcontent2/source/text/shared/00.po
index 086870b25f1..d6cee93637d 100644
--- a/source/lv/helpcontent2/source/text/shared/00.po
+++ b/source/lv/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/lv/helpcontent2/source/text/shared/01.po b/source/lv/helpcontent2/source/text/shared/01.po
index b5d8034fa95..8bf05e8930b 100644
--- a/source/lv/helpcontent2/source/text/shared/01.po
+++ b/source/lv/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/lv/helpcontent2/source/text/shared/02.po b/source/lv/helpcontent2/source/text/shared/02.po
index a221d12a7ef..20abd594d52 100644
--- a/source/lv/helpcontent2/source/text/shared/02.po
+++ b/source/lv/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-09 15:19+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@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 != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1552144782.000000\n"
#: 01110000.xhp
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/lv/helpcontent2/source/text/shared/guide.po b/source/lv/helpcontent2/source/text/shared/guide.po
index ec574b09ae2..1813708d6e1 100644
--- a/source/lv/helpcontent2/source/text/shared/guide.po
+++ b/source/lv/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/lv/helpcontent2/source/text/shared/optionen.po b/source/lv/helpcontent2/source/text/shared/optionen.po
index 69969ec0b8f..d3c4b3d7e2f 100644
--- a/source/lv/helpcontent2/source/text/shared/optionen.po
+++ b/source/lv/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/lv/helpcontent2/source/text/simpress/01.po b/source/lv/helpcontent2/source/text/simpress/01.po
index e91836333b0..655f7aaa5a8 100644
--- a/source/lv/helpcontent2/source/text/simpress/01.po
+++ b/source/lv/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/lv/helpcontent2/source/text/swriter/guide.po b/source/lv/helpcontent2/source/text/swriter/guide.po
index 90a010b9a1e..42b65b0ff35 100644
--- a/source/lv/helpcontent2/source/text/swriter/guide.po
+++ b/source/lv/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,7 +229,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
msgstr ""
#: arrange_chapters.xhp
@@ -237,7 +237,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po
index 4893d80b3ea..3012b9e5347 100644
--- a/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lv/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-13 05:31+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1557725471.000000\n"
#: BaseWindowState.xcu
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Vairāk lauku"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Tabulēts"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Grupēta josla"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/lv/sc/messages.po b/source/lv/sc/messages.po
index 0c9e62cb503..666cc33b102 100644
--- a/source/lv/sc/messages.po
+++ b/source/lv/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-22 18:11+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15226,6 +15226,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ekskluzīva pieeja)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15779,12 +15784,12 @@ msgstr "Pārvaldīt formatēšanu ar nosacījumiem"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17002,81 +17007,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Datu forma"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Aizvērt"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Jauns ieraksts"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "Jau_ns"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Dzēst"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Atjaunot"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Ie_priekšējais ieraksts"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Nā_kamais ieraksts"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Aizvērt"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Dzīvās datu straumes"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Ievadiet URL avota dokumentam lokālajā datņu sistēmā vai internetā."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Pārlūkot..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Datubāzes diapazons:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Datu sniedzējs:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Meklēt virkni:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Avota straume"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18792,32 +18757,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Rezultāti uz:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Dati"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolonnas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rindas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Grupēts pēc"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervāls:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametri"
@@ -18957,167 +18927,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Palīdzība"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Datne"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Norādiet izvēlēto šūnu malas."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Palielināt atkāpi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Samazināt atkāpi"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Sākums"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Sākums"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Lauks"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ievietot"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ievietot"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Izkārtojums"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Izkārtojums"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistika"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dati"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dati"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Pā_rskatīt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Pā~rskatīt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Skats"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Skats"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Attēls"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Attēls"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zīmēt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zīmēt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objekts"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekts"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medijs"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medijs"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Drukāt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Drukāt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rīki"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Rīki"
@@ -21598,17 +21570,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Meklēšanas rezultāti"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Loksne"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Šūna"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Saturs"
@@ -23478,107 +23460,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Struktūras simb_oli"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Logs"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Režģa līnijas:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Krāsa:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Rādīt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Rādīt uz krāsainām šūnām"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Slēpt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "La_ppušu atdalītāji"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Palīglīnijas _pārvietojot"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Vizuālie palīglīdzekļi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jekti / attēli:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diag_rammas:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Zīmējuma objekti:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Rādīt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Slēpt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Rādīt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Slēpt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Rādīt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Slēpt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekti"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_inhronizēt loksnes"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Tālummaiņa"
diff --git a/source/lv/scp2/source/ooo.po b/source/lv/scp2/source/ooo.po
index 88a3290f1fd..a441d0992ae 100644
--- a/source/lv/scp2/source/ooo.po
+++ b/source/lv/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-17 14:44+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1555512255.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Atvērt dokumentu"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/lv/scp2/source/winexplorerext.po b/source/lv/scp2/source/winexplorerext.po
index a06f2bc3f96..ec7e8b316a7 100644
--- a/source/lv/scp2/source/winexplorerext.po
+++ b/source/lv/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-07-05 22:12+0300\n"
-"Last-Translator: Rūdofls Mazurs <rudolfs.mazurs@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:05+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
"Language: lv\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 != 0 ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369353932.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Ļauj Microsoft Windows Explorer parādīt informāciju par %PRODUCTNAME dokumentiem, piemēram, sīktēlus."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/lv/sd/messages.po b/source/lv/sd/messages.po
index 57d30e48196..0c2c009a7be 100644
--- a/source/lv/sd/messages.po
+++ b/source/lv/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-01 06:23+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Klikšķis, lai atvērtu hipersaiti: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nosauciet HTML projektējumu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Datne"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Palīdzība"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Datne"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Sākums"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Sākums"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Lauks"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ievietot"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ievietot"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "La_ppuse"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "La~ppuse"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Pā_rskatīt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Pā~rskatīt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Skats"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Skats"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_eksts"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~eksts"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabula"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabula"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Pārveidot"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Attēls"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Attēls"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zīmēt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zīmēt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekts"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekts"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medijs"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medijs"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rīki"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Rīki"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Rādīt figūras"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Datne"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Palīdzība"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Datne"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Sākums"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Sākums"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Lauks"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ievietot"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ievietot"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "S_laids"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "S~laids"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Slīdrāde"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Slīdrāde"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Pā_rskatīt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Pā~rskatīt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Skats"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Skats"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabula"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabula"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Pārveidot"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Attēls"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Attēls"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zīmēt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zīmēt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekts"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekts"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medijs"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medijs"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rīki"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Rīki"
diff --git a/source/lv/sfx2/messages.po b/source/lv/sfx2/messages.po
index 3b0e9f8698c..2a1c5ef2fe0 100644
--- a/source/lv/sfx2/messages.po
+++ b/source/lv/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-05-01 06:37+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-25 10:01+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1556692626.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558778474.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " G: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Izņemt īpašību"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Ievadītā vērtība neatbilst norādītajam tipam.\n"
"Vērtība tiks saglabāta kā teksts."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Stils jau pastāv. Pārrakstīt?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Atiestatīt"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Šis nosaukums jau tiek lietots."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Stils nepastāv."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Stilu nevar lietot kā bāzes stilu,\n"
"jo tas var izveidot rekursīvas atsauces."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Nosaukums jau pastāv kā noklusējuma stils.\n"
"Lūdzu, izvēlieties citu nosaukumu."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Ja šos stilus izdzēsīsiet, teksts izmantos vecāka stilu.\n"
"Vai vēl aizvien vēlaties dzēst šos stilus?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Izmantotie stili:"
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigators"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Kļūdaina paroles apstiprināšana"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Sūtīt"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Fonts"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Rādīt priekšskatījumus"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Skatīt versijas komentāru"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(nosaukums nav iestatīts)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Stila saraksts"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarhisks"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Aizpildījuma formatēšanas režīms"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Jauns stils no izvēlētā"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Stilu darbības"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Atjaunināt stilu"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Vai tiešām vēlaties pārtraukt ierakstīšanu? Visi ieraksta soļi līdz šim brīdim tiks zaudēti."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Beigt ierakstīšanu"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Veidnes tiek sagatavotas pirmās reizes lietošanai."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Netika atrasts noklusējuma printeris.\n"
"Lūdzu, izvēlieties printeri un mēģiniet vēlreiz."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Nevar startēt printeri.\n"
"Lūdzu, pārbaudiet printera konfigurāciju."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Printeris aizņemts"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (lasīšanas režīmā)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Vai vēlaties saglabāt jaunos iestatījumus\n"
"aktīvajā dokumentā?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Vai jaunie iestatījumi ir jāsaglabā\n"
"aktīvajā dokumentā?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Vai vēlaties saglabāt jaunos iestatījumus\n"
"aktīvajā dokumentā?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Dokumentu nevar aizvērt,\n"
" jo tiek sagatavota izdruka."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1144,7 +1139,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1152,17 +1147,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Kļūda, nosūtot pastu"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Šo dokumentu nevar rediģēt. Varbūt Jums nav tam nepieciešamo tiesību. Vai vēlaties rediģēt šī dokumenta kopiju?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1173,349 +1168,359 @@ msgstr ""
"\n"
"Varat arī mēģināt ignorēt slēgumu un atvērt datni rediģēšanai."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Atvērt ~kopiju"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Atvērt"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (izlabots dokuments)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Šis dokuments nav paņemts no servera."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Palīdzi mums padarīt %PRODUCTNAME vēl labāku!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Iesaistīties"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Jūsu ziedojumi atbalsta mūsu vispasaules kopienu."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Ziedot"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Informācija par laidienu"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Šis dokuments ir atvērts tikai lasāmā režīmā."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Šis PDF ir atvērts tikai lasāmā režīmā, lai ļautu parakstīt esošo datni."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Šī dokumenta klasifikācijas etiķete ir %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Šim dokumentam vajag tikt klasificētam, pirms starpliktuve var tikt ielīmēta."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Šim dokumentam ir zemāks klasifikācijas līmenis kā starpliktuvei."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Līmenis"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nacionālā drošība:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Eksporta vadība:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Paņemt"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Rediģēt dokumentu"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Parakstīt dokumentu"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Šim dokumentam ir nederīgs paraksts."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Paraksts bija derīgs, bet dokuments tika izmainīts"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Paraksts ir kārtībā, bet sertifikāts nevarēja tikt validēts."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Paraksts ir kārtībā, bet dokuments ir tikai daļēji parakstīts."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Sertifikāts nevarēja tikt validēts un dokuments ir tikai daļēji parakstīts."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Šis dokuments ir ciparparakstīts un paraksts ir derīgs."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Rādīt parakstus"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Aizvērt rūti"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Dokot"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Atdokot"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Vairāk opciju"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Aizvērt sānjoslu"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Sānjoslas iestatījumi"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Pielāgošana"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Atjaunot noklusējuma"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Aizvērt sānjoslu"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarīns"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bišu strops"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Zila līkne"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Rasējuma plāni"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Eleganti sarkans"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNS"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokuss"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Meža putns"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Iespaids"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Iedvesma"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Gaismas"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Sulīgi zaļš"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropole"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Pusnakts zils"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Dabas ilustrācija"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Zīmulis"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavieres"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfelis"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progress"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Saulriets"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vecmodīgs"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Izteikts"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Noklusējuma"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderns"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderna biznesa vēstule, bez rēdzēm"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderna biznesa vēstule, ar rēdzēm"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Vizītkarte ar logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Izņemt"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Attīrīt visu"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Paroles garums"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Ievadītā parole izraisa sadarbspējas problēmas. Lūdzu, ievadiet paroli, kura ir īsāka par 52 baitiem vai garāka par 55 baitiem."
@@ -1860,32 +1865,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Versijas komentāri:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nosaukums"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tips"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Vērtība"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tips"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Jā"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nē"
@@ -1895,17 +1885,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Pievienot ī_pašību"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nosaukums"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tips"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Vērtība"
@@ -2035,17 +2025,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Vieta:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tips:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Mainīt _paroli"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Veidne:"
@@ -2055,27 +2045,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "“%1” īpašības"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Vispārējs"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Apraksts"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Pielāgotas īpašības"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS īpašības"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Drošība"
@@ -2298,6 +2288,26 @@ msgstr ""
"\n"
"Šo produktu ir veidojis %OOOVENDOR, balstoties uz OpenOffice.org, kura autortiesības 2000, 2011 pieder Oracle un/vai tā partneriem. %OOOVENDOR atzīst visus kopienas dalībniekus, pilna informācija atrodama http://www.libreoffice.org/."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/lv/shell/messages.po b/source/lv/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/lv/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/lv/starmath/messages.po b/source/lv/starmath/messages.po
index 95bbd2fcaad..1e78453c549 100644
--- a/source/lv/starmath/messages.po
+++ b/source/lv/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-05-01 06:37+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@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 != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1556692655.000000\n"
#: starmath/inc/smmod.hrc:16
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Piemēri"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standarta"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursīvs"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Trekns"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "melns"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "zils"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "zaļš"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "sarkans"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ciāns"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "fuksīns"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "pelēks"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "laima"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "sarkanbrūns"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "tumšzils"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olīvu"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purpura"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "sudraba"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "tumši ciāna"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "dzeltens"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "slēpt"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "izmērs"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "fonts"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "pa kreisi"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "vidū"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "pa labi"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Komandas"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Saglabā dokumentu..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "KĻŪDA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Negaidīta rakstzīme"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Negaidīta marķierierīce"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Būtu jābūt '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Būtu jābūt '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Būtu jābūt '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Būtu jābūt ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Pa kreisi un pa labi esošie simboli neatbilst"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Būtu jābūt 'fixed', 'sans' vai 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Pēc 'size' seko negaidīts elements"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dubultā izlīdzināšana nav atļauta"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dubultie apakš-/augšraksti nav atļauti"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Būtu jābūt '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Nepieciešama krāsa"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Būtu jābūt 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Saturs"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Virsraks~ts"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formulas teksts"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "M~alas"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Izmērs"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Sākotnējais izmē~rs"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ietil~pināt lappusē"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Mērogošana"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementi"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/lv/svtools/messages.po b/source/lv/svtools/messages.po
index 599da58d126..a49081a0e9c 100644
--- a/source/lv/svtools/messages.po
+++ b/source/lv/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-01 06:43+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-26 08:06+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556692995.000000\n"
+"X-POOTLE-MTIME: 1558858009.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Atsaukt: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "A~tatsaukt: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Atkā~rtot: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Neformatēts teksts"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Neformatēts teksts (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitkartes attēls (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Grafisko ierīču saskarnes metadatne (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Bagātinātā teksta formatēšana (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Bagātinātā teksta formatēšana (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME zīmējuma formāts"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitkarte/animācija (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statusa informācija no Svx iekšējās saites"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME saite (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape grāmatzīme"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star servera formāts"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star objekta formāts"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Sīklietotnes objekts"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Spraudņa objekts"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 objekts"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 objekts"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 objekts"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 objekts"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 objekts"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 objekts"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 objekts"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw objekts"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 objekts"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 objekts"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 objekts"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc objekts"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 objekts"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 4.0 objekts"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart objekts"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 objekts"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekts"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage objekts"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 objekts"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 objekts"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath objekts"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 objekts"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 objekts"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint objekts"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Hiperteksta iezīmēšanas valoda (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Vienkāršota hiperteksta iezīmēšanas valoda (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel binārais apmaiņas formāts 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel binārais apmaiņas formāts 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dinamiskā datu apmaiņa (DDE saite)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Datu apmaiņas formāts (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word objekts"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet objekts"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Biroja dokumenta objekts"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes dokumenta info"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx dokuments"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 objekts"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Grafiskais objekts"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer objekts"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web objekts"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master objekts"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw objekts"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress objekts"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc objekts"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart objekts"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math objekts"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows metadati"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datu avota objekts"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datu avota tabula"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL vaicājums"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dialogs"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Saite"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML formāts bez komentāriem"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Pārvietojama tīkla grafika (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Objektu % nevar ievietot."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Objektu no datnes % nevar ievietot."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Citi objekti"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Nezināms avots"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nosaukums"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Izmērs"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Modificēšanas datums"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tips"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Baiti"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Rinda: %1, kolonna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", tips: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Mape"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Datne"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Tukšs lauks"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerisks"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normāls"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Rakstzīmju kopa"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Vārdnīca"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinīnu"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Līnija"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikāls"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unikods"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonu grāmata"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonētisks (burti vispirms)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonētisks (burti pēdējie)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerisks"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Vārdnīca"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinīnu"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikāls"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Līnija"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonētiskā (alfabēts sākumā, grupēts pēc zilbēm)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonētiskais (alfabēts vispirms, grupēts pēc līdzskaņiem)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonētiski (alfabēts sākumā, grupēts pēc zilbēm)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonētisks (alfabēts beigās, grupēts pēc līdzskaņiem)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Šodien"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Nav"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Viegls"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Viegls kursīvs"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Parasts"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursīvs"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Trekns"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Trekns kursīvs"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Melns"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Melns kursīvs"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Grāmata"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Trekns slīpraksts"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Ciešāks"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Ciešāks treknraksts"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Ciešāks trekns kursīvs"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Ciešāks trekns slīpraksts"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Ciešāks kursīvs"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Ciešāks slīpraksts"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ļoti viegls"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ļoti viegls kursīvs"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Slīpraksts"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Pustrekns"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Pustrekns kursīvs"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Šis fonts tiks lietots gan printerim, gan uz ekrāna."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Šis ir printera fonts. Ekrāna attēls var izskatīties citādi."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Šis fonta stils tiks simulēts, vai arī tiks lietots tuvākais līdzīgais stils."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Šis fonts nav instalēts. Tiks lietots tuvākais līdzīgais fonts."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Pārlūkot..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Pārvietot uz sākumu"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Pārvietot pa kreisi"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Pārvietot pa labi"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Pārvietot uz beigām"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Pievienot"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontālā mērjosla"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Vertikālā mērjosla"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 bita slieksnis"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 bita tonēts"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 bitu pelēktoņu"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bitu krāsu"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 bitu pelēktoņu"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bitu krāsu"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bitu dabiskā krāsa"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Attēlam ir vajadzīgi aptuveni %1 KB atmiņas."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Attēlam ir vajadzīgi aptuveni %1 KB atmiņas, datnes izmērs ir %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Datnes izmērs ir %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "resursdators"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ports"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Cits CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Gatavs"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pauzēts"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Gaida dzēšanu"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Aizņemts"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Notiek inicializēšana"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Gaida"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Iesilst"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Apstrādā"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Drukā"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Nesaistē"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Kļūda"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Nezināms serveris"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Iestrēdzis papīrs"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Nepietiek papīra"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Pašrocīgā padeve"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papīra problēma"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O aktīvs"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Pilna izvades kaste"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Maz tonera"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Nav tonera"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Dzēst lappusi"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Nepieciešama lietotāja iejaukšanās"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Nepietiek atmiņas"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Atvērts vāks"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Enerģijas taupīšanas režīms"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Noklusējuma printeris"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumenti"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Beigt"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Uz Priekšu >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Atpa~kaļ"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Soļi"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<nekas>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Firma"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departaments"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Vārds"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Uzvārds"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Iela"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Valsts"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Pasta indekss"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Pilsēta"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Tituls"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Amats"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adr. forma"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciāļi"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Nobeiguma vārdi"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tālr. (mājas)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tālr. (darba)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fakss"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-pasts"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Piezīme"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Lietotāja 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Lietotāja 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Lietotāja 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Lietotāja 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Id"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Rajons"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tālr. (biroja)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Peidžeris"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mob. tālr."
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tālr. (cits)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendārs"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Uzaicināt"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ir nepieciešams JRE (Java runtime environment), lai turpināto šo darbību. Lūdzu, instalējiet JRE un pārstartējiet %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ir nepieciešams %BITNESS bitu JRE (Java runtime environment), lai turpinātu šo darbību. Lūdzu, instalējiet JRE un pārstartējiet %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ir nepieciešams Oracle Java Development Kit (JDK) uz macOS 10.10 vai jaunākas, lai veiktu šo uzdevumu. Lūdzu, instalējiet to un pārstartējiet %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME konfigurācija ir mainīta. Ar %PRODUCTNAME - Iestatījumi - %PRODUCTNAME - Paplašināti, norādiet, kuru Java palaišanas vidi vēlaties izmantot ar %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME konfigurācija ir mainīta. Ar Rīki - Opcijas - %PRODUCTNAME - Paplašināti, norādiet kuru Java palaišanas vidi vēlaties izmantot ar %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Lai paveiktu šo uzdevumu, %PRODUCTNAME nepieciešams JRE (Java runtime environment). Izvēlētais JRE ir defektīvs. Lūdzu, izvēlieties citu versiju vai instalējiet jaunu JRE un izvēlieties to caur %PRODUCTNAME - Iestatījumi - %PRODUCTNAME - Paplašināti."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME nepieciešams JRE (Java runtime environment), lai paveiktu šo uzdevumu. Izvēlētais JRE ir defektīvs. Lūdzu, izvēlieties citu versiju vai instalējiet jaunu JRE un izvēlieties to caur Rīki - Opcijas - %PRODUCTNAME - Paplašināti."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Nepieciešams JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Izvēlieties JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ir bojāts"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Pirmkods"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Grāmatzīmju datne"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafika"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Konfigurācijas datne"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Lietotne"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Datubāzes tabula"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Sistēmas datne"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word dokuments"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Palīdzības datne"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML dokuments"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arhīva datne"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Žurnāla datne"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice datubāze"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 galvenais dokuments"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice attēls"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Teksta datne"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Saite"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 veidne"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel dokuments"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel veidne"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Paketes (batch) datne"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Datne"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Mape"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Teksta dokuments"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Izklājlapa"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentācija"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Zīmējums"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML dokuments"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Galvenais dokuments"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Datubāze"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 izklājlapas veidne"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 zīmējuma veidne"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 prezentācijas veidne"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 teksta dokumenta veidne"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokālais disks"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskierīce"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM diskierīce"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Tīkla savienojums"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint dokuments"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint veidne"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint skate"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 formula"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 diagramma"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 zīmējums"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 izklājlapa"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 prezentācija"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 teksta dokuments"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 galvenais dokuments"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML dokuments"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument datubāze"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument zīmējums"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument formula"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument galvenais dokuments"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument prezentācija"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument izklājlapa"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument teksts"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument izklājlapas veidne"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument zīmējuma veidne"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument prezentācijas veidne"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument teksta veidne"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME paplašinājums"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell pareizrakstības pārbaudītājs"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen zilbju dalītājs"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes tēzaurs"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Ignorēto vārdu saraksts"
@@ -4127,7 +4129,7 @@ msgstr "Iloku"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Angļu (Zambija)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/lv/svx/messages.po b/source/lv/svx/messages.po
index 8d2203a2acb..918b4310e18 100644
--- a/source/lv/svx/messages.po
+++ b/source/lv/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-01 09:40+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7921,6 +7921,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "No kreisās uz labo (vertikāli)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12188,82 +12193,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Norādiet krāsu pārejas ēnošanas stila vertikālo nobīdi, izteiktu procentos. 50% apzīmē vertikālo vidu."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Kontūras redaktors"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Pielietot"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Darbavieta"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Izvēlēties"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Taisnstūris"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Daudzstūris"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Rediģēt punktus"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Pārvietot punktus"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Ievietot punktus"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Dzēst punktus"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Automātiska kontūra"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Atsaukt "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Atatsaukt"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipete"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Krāsu pielaide"
@@ -12574,112 +12584,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Kājene"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Attēla kartes redaktors"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Pielietot"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Atvērt..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Saglabāt..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Aizvērt"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Izvēlēties"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Taisnstūris"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Daudzstūris"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Brīvas formas daudzstūris"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Rediģēt punktus"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Pārvietot punktus"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Ievietot punktus"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Dzēst punktus"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Atsaukt "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Atatsaukt"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktīvs"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makrokomanda..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Īpašības..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adrese:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Ietvars:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Teksts:"
diff --git a/source/lv/sw/messages.po b/source/lv/sw/messages.po
index a1c21eadaec..9662c49a401 100644
--- a/source/lv/sw/messages.po
+++ b/source/lv/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-02 18:53+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-14 15:25+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lv\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556823208.000000\n"
+"X-POOTLE-MTIME: 1557847552.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3125,9 +3125,9 @@ msgid "Change object title of $1"
msgstr "Mainīt objekta $1 virsrakstu"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Mainīt objekta $1 aprakstu"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -7683,7 +7683,7 @@ msgstr "Rakstzīme"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Standarta"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -12014,147 +12014,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Palīdzība"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Datne"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Sākums"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Sākums"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Ievietot"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Ievietot"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Izkārtojums"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Izkārtojums"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "At_sauces"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Norāde~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Pā_rskatīt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Pā~rskatīt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Skats"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Skats"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabula"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabula"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Attēls"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "~Attēls"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Zīmēt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Zīmēt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekts"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekts"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Medijs"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Medijs"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "_Drukāt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Drukāt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rma"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rma"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rīki"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Rīki"
@@ -12164,155 +12164,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Datne"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Datne"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Sākums"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Sākums"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Ievietot"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Ievietot"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Aplauzt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Izkārtojums"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Izkārtojums"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "At_sauces"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Norāde~s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Pā_rskatīt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "Pā~rskatīt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Skats"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Skats"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abula"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tabula"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Attēls"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "~Attēls"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Zīmēt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Zīmēt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekts"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objekts"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Medijs"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Medijs"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Drukāt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Drukāt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rma"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rma"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Rīki"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Rīki"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12453,7 +12453,7 @@ msgstr "_Objekts"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "Ietva_rs"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12663,7 +12663,7 @@ msgstr "_Medijs"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objekts"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13376,8 +13376,8 @@ msgstr "Abpuslīdzinātās rindkopās paplašināt vārdu atstarpes rindās, kur
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Aizsargāt formu"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16115,7 +16115,7 @@ msgstr "Horizontāli"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (top to bottom)"
-msgstr ""
+msgstr "Vertikāli (no augšas uz apakšu)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
msgctxt "tabletextflowpage|liststore1"
@@ -16125,7 +16125,7 @@ msgstr "Izmantot virsobjekta iestatījumus"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:301
msgctxt "tabletextflowpage|liststore1"
msgid "Vertical (bottom to top)"
-msgstr ""
+msgstr "Vertikāli (no apakšas uz augšu)"
#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:322
msgctxt "tabletextflowpage|headline"
@@ -16400,7 +16400,7 @@ msgstr "Lappušu stils"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:71
msgctxt "templatedialog8|standard"
msgid "Standard"
-msgstr ""
+msgstr "Standarta"
#: sw/uiconfig/swriter/ui/templatedialog8.ui:166
msgctxt "templatedialog8|organizer"
@@ -16657,47 +16657,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Satura rādītājs, indekss vai bibliogrāfija"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Priekšskatījums"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Priekšskatījums"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tips"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Ieraksti"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stili"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Kolonnas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fons"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Priekšskatījums"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Līmenis"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tips"
@@ -16927,302 +16927,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "R_ediģēt..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Virsraks_ts"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tips:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Satura rādītājs"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Alfabētiskais rādītājs"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Ilustrāciju saraksts"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Tabulu rādītājs"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Lietotāja definēts"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektu tabula"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliogrāfija"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Aizsargāt no pašrocīgām izmaiņām"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tips un virsraksts"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Kam:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Visam dokumentam"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Nodaļa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Veidot līdz līmenim:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Izveidot indeksu vai satura rādītāju"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Struktūra"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Rā_dītāja atzīmes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabulas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Te_ksta ietvari"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafika"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE objekti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Izmantot līmeni no avota nodaļas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "P_apildu stili"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "St_ili"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Piesaistīt stilus..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Paraksti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektu nosaukumi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategorija:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Attēlot:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Atsauces"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategorijas un numerācija"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Paraksta teksts"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Veidot formu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Izveidot no sekojošiem objektiem"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Iekavas:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Skaitļu ieraksti"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[nav]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Visu ierakstu formatēšana"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Apvienot identiskus ierakstus"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Apvienot identiskos ierakstus ar p vai _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Apvienot ar –"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Reģistrjutīgs"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Ierakstu automātiska reģistra maiņa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Atslēgas, kā atsevišķus ierakstus"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Atbilstības datne"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Datne"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opcijas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Valoda:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Atslēgas tips:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Kārtot"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Līmeņi"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Rindkopu _stili"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Noklusējuma"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "R_ediģēt"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Piešķiršana"
diff --git a/source/mai/cui/messages.po b/source/mai/cui/messages.po
index f6dba160d72..1277e14373d 100644
--- a/source/mai/cui/messages.po
+++ b/source/mai/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1666,107 +1666,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "कोनो छाया नहि"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1809,7 +1804,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1929,7 +1924,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2169,7 +2164,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2424,12 +2419,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2499,7 +2494,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2579,7 +2574,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2820,7 +2815,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3435,68 +3430,73 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME क' बारेमे"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "myWebsite"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME API"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3620,19 +3620,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "प्रतिस्थापित करू (~R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "प्रतिस्थापित करू (~R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "चओड़ाइ"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4508,6 +4508,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5689,29 +5849,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "गुणसभ"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ढ़ाँचा:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "नाम"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9456,84 +9616,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदद"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME संवाद"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME संवाद"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "आओर"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "सिस्टम प्रारंभ होएबाक समय %PRODUCTNAME केँ लोड करू"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11492,24 +11652,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12177,102 +12322,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13347,27 +13396,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/mai/extensions/messages.po b/source/mai/extensions/messages.po
index 3c0a6a5c1f0..b12a54b5e26 100644
--- a/source/mai/extensions/messages.po
+++ b/source/mai/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3204,191 +3204,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "सारणी %1 क' लेल स्तंभ अभिन्यास"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "छोट नाम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "लेखक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "प्रकाशक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "अध्याय"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "संपादक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "वर्ग"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "वर्ष"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "शीर्षक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "पता"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "पृष्ठ (~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "संस्करण (~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "पुस्तक शीर्षक (~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "आवाज"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "प्रकाशन वर्ग (~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "संगठन (~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "संस्था (~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "विश्वविद्यालय"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "रिपोर्टक' वर्ग (~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "माह"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "पत्रिका"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "संख्या"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "श्रृंखला (~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "एनोटेशन (~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "नोट"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "प्रयोक्ता परिभाषित क्षेत्र 1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "प्रयोक्ता परिभाषित क्षेत्र ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "प्रयोक्ता परिभाषित क्षेत्र ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "प्रयोक्ता परिभाषित क्षेत्र ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "प्रयोक्ता परिभाषित क्षेत्र ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3570,30 +3570,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "लिंक क्षेत्र"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "सलाह दिअ'."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "लेबल"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po
index e9ef9cfe93f..e94cefbd6a4 100644
--- a/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23758,6 +23758,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26120,6 +26129,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26138,6 +26156,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/mai/sc/messages.po b/source/mai/sc/messages.po
index 7eb83c71d7a..3937b5a4be4 100644
--- a/source/mai/sc/messages.po
+++ b/source/mai/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15669,6 +15669,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16242,12 +16247,12 @@ msgstr "सशर्त प्रारूप"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17544,90 +17549,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "बन्न करू (~C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "नवीन लेखा"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "नवीन"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "मेटाबू"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "पूर्व अवस्थामे पहुँचाबू"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "पछिला लेखा"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "अगिला लेखा"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "बन्न करू (~C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "यूआरएल"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ब्राउज़ करू..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "डाटाबेस फैलाव"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19437,37 +19399,42 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "आँकड़ा"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "कॉलम"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "पंक्ति"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "एकरा द्वारा समूहीकृत: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "अंतराल"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19617,167 +19584,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22419,17 +22388,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24408,111 +24387,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "विन्डो (~W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "देखाबू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "नुकाबू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "पृष्ठ खण्डन"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "चार्ट"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "वस्तु आरेख बनाएब रहल अछि"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "देखाबू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "नुकाबू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "देखाबू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "नुकाबू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "देखाबू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "नुकाबू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "वस्तुसभ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "ज़ूम"
diff --git a/source/mai/scp2/source/ooo.po b/source/mai/scp2/source/ooo.po
index 94d9d96323c..5f50d5e8504 100644
--- a/source/mai/scp2/source/ooo.po
+++ b/source/mai/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "दस्तावेज खोलू"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/mai/scp2/source/winexplorerext.po b/source/mai/scp2/source/winexplorerext.po
index e72bf480dbf..0801232c6ee 100644
--- a/source/mai/scp2/source/winexplorerext.po
+++ b/source/mai/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 00:12+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:15+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369350939.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows एक्सप्लोररकेँ %PRODUCTNAME दस्तावेजक बारेमे सूचना देखाबैछ, जहिना थँबनेल पूर्वावलोकन."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/mai/sd/messages.po b/source/mai/sd/messages.po
index 8c08cbd42b3..32ce8e10d0b 100644
--- a/source/mai/sd/messages.po
+++ b/source/mai/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2652,6 +2652,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3136,164 +3141,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4780,160 +4970,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/mai/sfx2/messages.po b/source/mai/sfx2/messages.po
index 3f3e6229887..0e1ff5863f6 100644
--- a/source/mai/sfx2/messages.po
+++ b/source/mai/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -898,39 +898,34 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "फाइल पहिनेसँ मोजुद अछि. एकरा उप्पर लिखू?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "फिनु सेट करू (~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ई नाम पहिनेसँ उपयोगमे अछि."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ई शैली अस्तित्वमे नहि अछि."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -940,7 +935,7 @@ msgstr ""
"ई शैलीकेँ बेस शैलीकेँ रूपमे प्रयोग नहि कएल जाए सकैछ,\n"
"किएक ई पुनरावृति संदर्भमे परिणाम देत."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -949,7 +944,7 @@ msgstr ""
"नाम पहिनेसँ एक मूलभूत शैलीरूपेँ मोजुद अछि.\n"
"कृपया एकटा आन नाम चुनू."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -957,97 +952,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "नाविगेटर"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "अधलाह कूटशब्द प्रमाणीकरण"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "भेजू (~d)"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "फ़ॉन्ट"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "सँस्करण टिप्पणी जोड़ू"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "पदक्रमीय"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "रचना प्रकार भरू"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "चुनावसँ नवीन शैली"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "शैली अद्यतन करू"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "की अहाँ सचमुच रेकार्डिंगकेँ रद्द करबाक लेल चाहैत छी? कोनो चरण ई बिंदु तक रेकार्ड कएल गुण भ' जाएत."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "रेकार्डिंग रद्द करू"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "नमूनाकेँ पहिल बेर उपयोग करबाक लेल आरंभीकृत कएनए अछि."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1056,7 +1051,7 @@ msgstr ""
"कोनो मूलभूत मुद्रक नहि भेटल.\n"
"कृपया एकटा मुद्रक चुनू आओर फिनु कोशिश करू."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1065,17 +1060,17 @@ msgstr ""
"मुद्रक आरंभ नहि कए सकल.\n"
"कृपया अपन मुद्रक बिन्यास जाँचू."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "मुद्रक व्यस्त"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (केवल-पढ़बा लेल)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1086,7 +1081,7 @@ msgstr ""
"की अहाँ सक्रिय जमावटकेँ नवीन जमावटमे\n"
" सहेजब चाहैत छी?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1097,7 +1092,7 @@ msgstr ""
"की नवीन जमावटकेँ सक्रिय दस्तावेजमे\n"
"सहेजल जाएनाइ चाही?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1108,7 +1103,7 @@ msgstr ""
"की अहाँ सक्रिय जमावटकेँ नवीन जमावटमे \n"
"सहेजब चाहै छी?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1118,7 +1113,7 @@ msgstr ""
"दस्तावेज सहेजल नहि जाए सकैछ किएक एकटा\n"
"मुद्रक काज भ' रहल अछि."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1126,7 +1121,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1134,12 +1129,12 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
@@ -1148,7 +1143,7 @@ msgstr ""
"अधिकार नहि अछि. अहाँ एकरा एकटा नमूना जहिना \n"
"नवीन दस्तावेजमे उपयोग करब चाहैत अछि?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1156,352 +1151,362 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (दस्तावेजकेँ मरम्मत कएलक)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "दस्तावेज संपादन"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "फाइल दस्तावेज"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "छाँटबाक विकल्पसभ"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "हटाबू"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1862,36 +1867,19 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "सँस्करण टिप्पणी"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-#, fuzzy
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "नाम"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-#, fuzzy
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "वर्ग"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "मान"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
#, fuzzy
msgctxt "cmisline|type"
msgid "Type"
msgstr "वर्ग"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
#, fuzzy
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "हँ "
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "नहि"
@@ -1901,19 +1889,19 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
#, fuzzy
msgctxt "custominfopage|name"
msgid "Name"
msgstr "नाम"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
#, fuzzy
msgctxt "custominfopage|type"
msgid "Type"
msgstr "वर्ग"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "मान"
@@ -2054,19 +2042,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "स्थान"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "प्रकार:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "कूटशब्द बदलू (~P)..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2077,29 +2065,29 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "सामान्य"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
#, fuzzy
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "विवरण"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr ""
@@ -2324,6 +2312,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/mai/shell/messages.po b/source/mai/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/mai/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/mai/starmath/messages.po b/source/mai/starmath/messages.po
index cb2d76dfbe6..4832849ec17 100644
--- a/source/mai/starmath/messages.po
+++ b/source/mai/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1657,277 +1657,302 @@ msgid "Examples"
msgstr "उदाहरण"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "मानक"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "तिरछा"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "मोट"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "करिया"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "नीला"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "हरिअर"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "मैजेन्टा"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ग्रे"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "समय"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "पिअर"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "नुकाबू"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "आकार"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "फ़ॉन्ट"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "बामाँ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "केंद्र"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "दहिन्ना"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "कमाँड"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "सूत्र"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "दस्तावेज सहेज रहल अछि..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION सूत्र"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "त्रुटि :"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "अप्रत्याशित संप्रतीक"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' प्रत्याशित"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' प्रत्याशित"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' प्रत्याशित"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' प्रत्याशित"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' प्रत्याशित"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "रंगक जरूरत"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' प्रत्याशित"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME आधार"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "विषय"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "शीर्षक"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "सूत्र पाठ (~F)"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "किनारसभ"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "आकार"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "मूल आकार (~r)"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "पृष्ठ कलेल योग्य (~F)"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2003,6 +2028,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "तत्व"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/mai/svtools/messages.po b/source/mai/svtools/messages.po
index d0330e6eb90..fda8cc2c537 100644
--- a/source/mai/svtools/messages.po
+++ b/source/mai/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1538 +15,1540 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195702.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "वापिस करू: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "फिनुसँ लाबू (~d): "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "दोहराबू (~R): "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "बिनु सँरूपित पाठ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "भीतरक Svx लिंक सँ वस्तुस्थिति सूचना"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "नेटस्केप पुस्तकचिह्न"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टारक सर्वर प्रारूप"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टारक वस्तु प्रारूप"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "एप्प्लेट वस्तु"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लग-इन वस्तु"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 वस्तु"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 वस्तु"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 वस्तु"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 वस्तु"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 वस्तु"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 वस्तु"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 वस्तु"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw वस्तु"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 वस्तु"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 वस्तु"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 वस्तु"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc वस्तु"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 वस्तु"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 वस्तु"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart वस्तु"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 वस्तु"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 वस्तु"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage वस्तु"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 वस्तु"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 वस्तु"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMat वस्तु"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMat 4.0 वस्तु"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMat 5.0 वस्तु"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject पेंट वस्तु"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft वर्ड वस्तु"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet वस्तु"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ऑफिस दस्तावेजक वस्तु"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "टिप्पणी दस्तावेजक सूचना"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx दस्तावेज"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 वस्तु"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "आलेखी वस्तु"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows मेटाफाइल"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "आँकड़ा श्रोत वस्तु"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "आँकड़ा श्रोत सारणी"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL प्रश्न"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "लिंक"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "बिनु टिप्पणीकेँ HTML प्रारूप"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "वस्तु % केँ जोड़ नहि सकैत अछि"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "फाइल % सँ वस्तुकेँ जोड़ नहि सकैत अछि."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "आओर वस्तु"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "अनचिह्न श्रोत"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "नाम"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "आकार"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "दिनांक सुधारलकाह"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "प्रकार"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बाइट्स"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "पंक्ति: %1, स्तंभ: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", प्रकार: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "फोल्डर"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "फाइल"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "खाली क्षेत्र"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "वर्णाँकिक"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "सामान्य"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "संप्रतीक समूह"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "रेडिकल"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "यूनिकोड"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "झुयिन"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "फोन बुक"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ध्वन्यात्मक (वर्णाँकिक पहिने)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ध्वन्यात्मक (वर्णाँकिक अंतमे)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "वर्णाँकिक"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "रेडिकल"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "झुयिन"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ध्वन्यात्मक (वर्णाँकिक पहिने, सिलेबल द्वारा समूहीकृत)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ध्वन्यात्मक (वर्णाँकिक पहिने, व्यंजन द्वारा समूहीकृत)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ध्वन्यात्मक (वर्णाँकिक अंतिम, सिलेबल द्वारा समूहीकृत)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ध्वन्यात्मक (वर्णाँकिक अंतिम, व्यंजन द्वारा समूहीकृत)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "आइ"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "केओ नहि"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "हलुक"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "हलुक तिरछा"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "नियमित"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "तिरछा"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "मोट"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "बोल्ड तिरछा"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "करिया"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "करिया तिरछा"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "पुस्तक"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "सघन"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "समान फाँट अहाँक मुद्रक अहाँक स्क्रीन दूनू पर प्रयोग कएल जएताह."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "ई मुद्रक फँट अछि. परदामे चित्र भिन्न प्रकारक भए सकैत अछि."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "ई फाँट शैली सिमुलेट कएल जएताह अथवा सर्वाधिक मेल खाएल शैली प्रयोग कएल जाएत."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ई फाँट सँस्थापित कएल जाय रहल अछि. सबसँ नजदीक फाँट प्रयोग कएल जएताह."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ब्राउज़ करू..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "फ्रेमक स्थान परिवर्तन करू"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "बामाँ जाउ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "दहिन्ना जाउ"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "नीच्चाँ जाउ"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "जोड़ू"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "क्षैतिज बाहर"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "लंबरूप रूलर"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 बिट् थ्रेशहोल्ड"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 बिट् डिथर्ड"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 बिट ग्रेस्केल"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 बिट ग्रेस्केल"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 बिट साँच रंग"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "लागत"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "छांटू"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ठहरू"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "आरंभ रहल अछि..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "प्रतीक्षारत"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "त्रुटि"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "पृष्ठ मेटाबू (~e)"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "अपर्याप्त स्मृति."
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "मूलभूत मुद्रक"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "वर्ड दस्तावेज"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "समाप्त (~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "आगाँ (~N) >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< पाछाँ (~k)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "कदम"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<केओ नहि>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "कँपनी"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "विभाग"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "पहिल नाम"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "अंतिम नाम"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "सड़क"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "देश"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ZIP कोड"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "नगर"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "शीर्षक"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "स्थान"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "पता प्रपत्र"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "आरँभिक"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "पूरक बन्न"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "फोन: निवास"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "फोन: कार्यालय"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "यूआरएल"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "नोट"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "प्रयोक्ता 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "प्रयोक्ता 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "प्रयोक्ता 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "प्रयोक्ता 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "आईडी"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "राज्य"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "फोन: कार्यालय"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजर"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मोबाइल"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "फोन: आन"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "कैलेंडर"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "निमँत्रित करू"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE जरूरी"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE चुनू"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE अधलाह अछि."
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "मूल कोड़"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "पुस्तकचिह्न फाइल"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "आलेखी"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "बिन्यास फाइल"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "अनुप्रयोग"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "डाटाबेस सारणी"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "सिस्टम फाइल"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word दस्तावेज "
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "मदद फाइल"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML दस्तावेज"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "अभिलेख फाइल"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लॉग फाइल"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 नमूना"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 मुख्य दस्तावेज"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 नमूना"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "पाठ फाइल"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "लिंक"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 नमूना"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS एक्सेल दस्तावेज"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS एक्सेल नमूना"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "बैच फाइल"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "फाइल"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "फ़ोल्डर"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "पाठ दस्तावेज"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रेडशीट"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रस्तुति"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "रेखाचित्र"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML दस्तावेज"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "मास्टर दस्तावेज"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "सूत्र"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "डाटाबेस"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "स्थानीय ड्राइव"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "डिस्कक ड्राइव"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM चालक"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "संजाल सँबँधन"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS पावर प्वाइँट दस्तावेज"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS पावर प्वाइँट टेंपलेट"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS पावर प्वाइँट प्रदर्शन"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML दस्तावेज"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ओपनडॉक्यूमेंट डाटाबेस"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ओपनडॉक्यूमेंट ड्रॉइँग"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ओपनडॉक्यूमेंट सूत्र"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ओपनडॉक्यूमेंट मुख्य दस्तावेज"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ओपनडॉक्यूमेंट प्रेजेंटेशन"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ओपनडॉक्यूमेंट स्प्रेडशीट"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ओपनडॉक्यूमेंट पाठ"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ओपनडॉक्यूमेंट स्प्रेडशीट टेंपलेट"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ओपनडॉक्यूमेंट ड्रॉइँग टेंपलेट"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ओपनडॉक्यूमेंट प्रेजेंटेशन टेंपलेट"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ओपनडॉक्यूमेंट पाठ टेंपलेट"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/mai/svx/messages.po b/source/mai/svx/messages.po
index be242e81606..69d7f043e30 100644
--- a/source/mai/svx/messages.po
+++ b/source/mai/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8082,6 +8082,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12597,88 +12602,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "परिवेश संपादक"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "लागू करू"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "कार्यस्थान"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "चुनू"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "आयत"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "दीर्घवृत्त"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुज"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
#, fuzzy
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिन्दु संपादित करू"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिन्दुसभक स्थान परिवर्तन करू"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिन्दुसभकेँ जोड़ू"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिन्दुसभकेँ मेटाबू"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "स्वचालित परिवेश"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "वापस लिअ' "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "लाल"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13017,125 +13027,119 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "पाद टिप्पणी"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "बिंबमैप संपादक"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "लागू करू"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "खोलू..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "सहेजू..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "बन्द करू"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "चुनू"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "आयत"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "दीर्घवृत्त"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुज"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "स्वतंत्र बहुभुज"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
#, fuzzy
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिन्दु संपादित करू"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिन्दुसभक स्थान परिवर्तन करू"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिन्दुसभकेँ जोड़ू"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिन्दुसभकेँ मेटाबू"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "वापस लिअ' "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "लाल"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "सक्रिय करू"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "मॉक्रो..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "विशेषतासभ: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "पता:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ढाँचा"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/mai/sw/messages.po b/source/mai/sw/messages.po
index 091d947714a..5dffd3f19aa 100644
--- a/source/mai/sw/messages.po
+++ b/source/mai/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mai\n"
@@ -3219,7 +3219,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12767,147 +12767,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12917,152 +12917,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14187,7 +14187,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17749,51 +17749,51 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "पूर्वावलोकन"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "पूर्वावलोकन"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "प्रकार"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "प्रविष्टि सभ (~E)"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "शैली सभ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
#, fuzzy
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "कॉलम सभ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "पूर्वावलोकन"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "स्तर"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -18044,326 +18044,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "संपादन... "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "शीर्षक:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "प्रकार"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "सारणी विषय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "प्रयोक्ता परिभाषित"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ग्रन्थ-सूची 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "प्रपत्र"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "सम्पूर्ण दस्तावेज (~E)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "अध्याय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "रूपरेखा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "सारणी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "पाठ फ्रेम"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "आलेखी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE वस्तु"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "सशर्त शैलीसभ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "शैली सभ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "विकल्पसभ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "वस्तुक नाम"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "वर्ग"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "देखाबू"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "संदर्भ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "वर्ग आओर संख्या"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "कैप्शन पाठ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "कोष्ठक सभ (~B)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[केओ नहि]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "फाइल"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
#, fuzzy
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "विकल्पसभ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "भाषा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "छांटू"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "स्तर"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(अनुच्छेद शैली: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "मूलभूत"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "संपादन"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/mk/cui/messages.po b/source/mk/cui/messages.po
index 2e7b1605932..fe7f44cc320 100644
--- a/source/mk/cui/messages.po
+++ b/source/mk/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1664,107 +1664,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Без сенка"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1807,7 +1802,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1927,7 +1922,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2167,7 +2162,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2422,12 +2417,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2497,7 +2492,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2577,7 +2572,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2818,7 +2813,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3431,68 +3426,73 @@ msgid "About %PRODUCTNAME"
msgstr "За %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "мојаВебЛокација"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3616,19 +3616,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Замени"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Замени"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Ширина"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4493,6 +4493,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5670,29 +5830,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Својства"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Рамка:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Име"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9434,86 +9594,86 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Помош"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Дијалози за %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Дијалози за %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Име на документ\tСтатус"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "и"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Вчитај %PRODUCTNAME при подигнување на системот"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Оневозможи го Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11470,24 +11630,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12151,102 +12296,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13318,27 +13367,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/mk/extensions/messages.po b/source/mk/extensions/messages.po
index a991a1cc93c..957a436e16c 100644
--- a/source/mk/extensions/messages.po
+++ b/source/mk/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3245,191 +3245,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Изглед на колоните за табелата %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Скратено име"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Автор(и)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Издавач"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Поглавје"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Уредник"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Тип"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Година"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Наслов"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Адреса"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Ст~раници"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "~Издание"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~Наслов на книга"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Партиција"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Тип на пуб~ликација"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Органи~зација"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Инстит~уција"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Универзитет"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Тип на и~звештај"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Месец"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Дневник"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Број"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Се~рии"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Б~елешка"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Белешка"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Кориснички дефинирано поле ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Кориснички дефинирано поле ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Кориснички дефинирано поле ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Кориснички дефинирано поле ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Кориснички дефинирано поле ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3611,31 +3611,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Поврзување полиња"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Предложи"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Под-формите можат да се користат за прикажување на детални податоци за тековниот запис на главната форма. За да го направите тоа, можете да одредите кои колони во под-формата одговараат на кои колони од главната форма."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Ознака"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/mk/helpcontent2/source/auxiliary.po b/source/mk/helpcontent2/source/auxiliary.po
index 5e8b2230b1f..b8cf6972f12 100644
--- a/source/mk/helpcontent2/source/auxiliary.po
+++ b/source/mk/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "Алатници"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Менија"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Алатници"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,17 +699,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/mk/helpcontent2/source/text/sbasic/guide.po b/source/mk/helpcontent2/source/text/sbasic/guide.po
index 422cd5bd459..78da675281d 100644
--- a/source/mk/helpcontent2/source/text/sbasic/guide.po
+++ b/source/mk/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Opening a Dialog With Program Code"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>modules and dialogs; toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/sbasic/python.po b/source/mk/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/mk/helpcontent2/source/text/sbasic/python.po
+++ b/source/mk/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/mk/helpcontent2/source/text/sbasic/shared.po b/source/mk/helpcontent2/source/text/sbasic/shared.po
index e6451435a6f..ae877f060c9 100644
--- a/source/mk/helpcontent2/source/text/sbasic/shared.po
+++ b/source/mk/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/sbasic/shared/03.po b/source/mk/helpcontent2/source/text/sbasic/shared/03.po
index 0c0b4f04c7b..637df90a9fa 100644
--- a/source/mk/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/mk/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/mk/helpcontent2/source/text/scalc/01.po b/source/mk/helpcontent2/source/text/scalc/01.po
index fdefe82981a..a4a4e0a188f 100644
--- a/source/mk/helpcontent2/source/text/scalc/01.po
+++ b/source/mk/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/schart/00.po b/source/mk/helpcontent2/source/text/schart/00.po
index 247048ad675..6103db02db0 100644
--- a/source/mk/helpcontent2/source/text/schart/00.po
+++ b/source/mk/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/mk/helpcontent2/source/text/shared/00.po b/source/mk/helpcontent2/source/text/shared/00.po
index 1a029c2444e..8fcafb092df 100644
--- a/source/mk/helpcontent2/source/text/shared/00.po
+++ b/source/mk/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/mk/helpcontent2/source/text/shared/01.po b/source/mk/helpcontent2/source/text/shared/01.po
index 18456a81d46..6543ff1fe41 100644
--- a/source/mk/helpcontent2/source/text/shared/01.po
+++ b/source/mk/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/mk/helpcontent2/source/text/shared/02.po b/source/mk/helpcontent2/source/text/shared/02.po
index d50485de695..50a8a1b864d 100644
--- a/source/mk/helpcontent2/source/text/shared/02.po
+++ b/source/mk/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/mk/helpcontent2/source/text/shared/guide.po b/source/mk/helpcontent2/source/text/shared/guide.po
index 11dd7877a0c..81a5ad3c081 100644
--- a/source/mk/helpcontent2/source/text/shared/guide.po
+++ b/source/mk/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/mk/helpcontent2/source/text/shared/optionen.po b/source/mk/helpcontent2/source/text/shared/optionen.po
index af97975f4ed..0969344f2e0 100644
--- a/source/mk/helpcontent2/source/text/shared/optionen.po
+++ b/source/mk/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/mk/helpcontent2/source/text/simpress/01.po b/source/mk/helpcontent2/source/text/simpress/01.po
index c546a3f5ce0..dcfca3feb11 100644
--- a/source/mk/helpcontent2/source/text/simpress/01.po
+++ b/source/mk/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/mk/helpcontent2/source/text/swriter/guide.po b/source/mk/helpcontent2/source/text/swriter/guide.po
index a6e0a7c6c64..0e331890db4 100644
--- a/source/mk/helpcontent2/source/text/swriter/guide.po
+++ b/source/mk/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "На <emph>Основната лента</emph> кликнете на иконата <emph> Навигатор</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id5211883\">Icon</alt></image> за да го отворите <emph>Навигаторот</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
index 0509364cded..19cd24c485d 100644
--- a/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23738,6 +23738,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26111,6 +26120,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26129,6 +26147,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/mk/sc/messages.po b/source/mk/sc/messages.po
index d7eae4e415a..557dd58f734 100644
--- a/source/mk/sc/messages.po
+++ b/source/mk/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15619,6 +15619,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16191,12 +16196,12 @@ msgstr "Условно форматирање"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17501,90 +17506,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "~Затвори"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Нов запис"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "~Ново"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Избриши"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Обнови"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Претходен запис"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Следен запис"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "~Затвори"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Прелистај..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Опсези на базите на податоци"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19390,36 +19352,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Податоци"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Колона"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Ред"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Групирано според: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Интервал"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19566,167 +19533,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22357,17 +22326,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24342,111 +24321,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~Прозорец"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Прикажи"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Скриј"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Прелом на страница"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Графикони"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Нацртани објекти"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Прикажи"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Скриј"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Прикажи"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Скриј"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Прикажи"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Скриј"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Објекти"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Зумирање"
diff --git a/source/mk/scp2/source/ooo.po b/source/mk/scp2/source/ooo.po
index 1404535577b..2d0cbaa159c 100644
--- a/source/mk/scp2/source/ooo.po
+++ b/source/mk/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Отвори документ"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/mk/scp2/source/winexplorerext.po b/source/mk/scp2/source/winexplorerext.po
index 2d7bfba852a..f7dd0018c38 100644
--- a/source/mk/scp2/source/winexplorerext.po
+++ b/source/mk/scp2/source/winexplorerext.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 00:19+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mk\n"
@@ -12,8 +12,9 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369354266.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Му овозможува на Microsoft Windows Explorer да прикаже информации за документи од %PRODUCTNAME, како што се на пример прегледи со сликички."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/mk/sd/messages.po b/source/mk/sd/messages.po
index 1450aead04f..7b0c215e854 100644
--- a/source/mk/sd/messages.po
+++ b/source/mk/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2648,6 +2648,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3127,164 +3132,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4773,160 +4963,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/mk/sfx2/messages.po b/source/mk/sfx2/messages.po
index 9b801c71054..e8afc8e2286 100644
--- a/source/mk/sfx2/messages.po
+++ b/source/mk/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -909,11 +909,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Отстрани својство"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -923,28 +918,28 @@ msgstr ""
"Вредноста која е внесена не одговара на одредениот тип.\n"
"Вредноста ќе биде зачувана како текст."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Датотеката веќе постои. Да ја препишам?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Ресетирај"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Ова име веќе се користи."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Овој стил не постои."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -954,7 +949,7 @@ msgstr ""
"Овој стил не може да биде користен како основен стил\n"
"бидејќи ќе резултира со рекурзивна референца."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -963,7 +958,7 @@ msgstr ""
"Името веќе постои како стандарден стил.\n"
"Изберете друго име."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -971,97 +966,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Навигатор"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Потврда на погрешна лозинка"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Испрати"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Фонт"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Вметнување коментар за верзија"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Стилови"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Хиерархиски"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Режим на формати за пополнување"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Нов стил од изборот"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "~Ажурирај стилови"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Дали навистина сакате да го откажете снимањето? Сите чекори снимени досега ќе бидат изгубени."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Откажи снимање"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Обрасците се подготвуваат за прва употреба."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1070,7 +1065,7 @@ msgstr ""
"Не е пронајден основен печатач.\n"
"Изберете печатач и обидете се повторно."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1079,17 +1074,17 @@ msgstr ""
"Не можам да го стартувам печатачот.\n"
"Проверете ја конфигурацијата на печатачот."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Печатачот е зафатен"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (само за читање)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1100,7 +1095,7 @@ msgstr ""
"Дали сакате да ги зачувате новите поставувања во\n"
"активниот документ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1111,7 +1106,7 @@ msgstr ""
"Дали да бидат зачувани новите поставувања\n"
"во активниот документ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1122,7 +1117,7 @@ msgstr ""
"Дали сакате да ги зачувате новите поставувања во\n"
"активниот документ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1132,7 +1127,7 @@ msgstr ""
"Документот не може да биде затворен, бидејќи\n"
" се извршува задача за печатење."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1140,7 +1135,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1148,18 +1143,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Овој документ не може да биде уредуван, најверојатно поради правата за пристап што недостасуваат. Дали сакате да уредите копија од овој документ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1167,352 +1162,362 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (поправен документ)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Уредување документ"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Документ (датотека)"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Опции за подредување"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Отстрани"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1885,32 +1890,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Коментар за верзијата"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Име"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Тип"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Вредност"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Тип"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Да"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
#, fuzzy
msgctxt "cmisline|no"
msgid "No"
@@ -1921,17 +1911,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Име"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Тип"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Вредност"
@@ -2072,19 +2062,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Локација:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Тип:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Измени ~лозинка..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2095,28 +2085,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Општо"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Опис"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2341,6 +2331,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/mk/shell/messages.po b/source/mk/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/mk/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/mk/starmath/messages.po b/source/mk/starmath/messages.po
index 6a7361b2190..85e8e5c0576 100644
--- a/source/mk/starmath/messages.po
+++ b/source/mk/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1671,278 +1671,303 @@ msgid "Examples"
msgstr "Пример"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Стандардно"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Курзив"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Задебелено"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "Црно"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Сина"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Зелена"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "Магента"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Сива"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Време"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "Жолта"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Скриј"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "Големина"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Фонт"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "лево"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Во средина"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "десно"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Наредби"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Формула"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Зачувувам документ..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION-формула"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ГРЕШКА : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Неочекуван знак"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Беше очекувана „{“"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Беше очекувана „}“"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Беше очекувана „(“"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Беше очекувана „)“"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Беше очекуван знакот „#“"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Се бараше боја"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Беше очекувано „RIGHT“"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Base"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Содржина"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Наслов"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Текст на формулата"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Рабови"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Големина"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "О~ригинална големина"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Прилаг~оди кон страницата"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2016,6 +2041,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "element"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/mk/svtools/messages.po b/source/mk/svtools/messages.po
index 75a6f7af422..858e9a1c5fd 100644
--- a/source/mk/svtools/messages.po
+++ b/source/mk/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1537 +16,1539 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195709.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Отповикај: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "По~втори: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Повто~ри: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Неформатиран текст"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Инфо. за статус од внатрешна врска Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Обележувач за Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server-формат"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star object-формат"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Аплет-објект"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Објект-приклучок"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0-објект"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0-објект"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0-објект"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0-објект"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0-објект"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0-објект"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0-објект"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-објект"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0-објект"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0-објект"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0-објект"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-објект"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0-објект"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0-објект"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-објект"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0-објект"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-објект"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-објект"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0-објект"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0-објект"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-објект"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0-објект"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0-објект"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject-објект за боење"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word-објект"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet-објект"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Објект за канцелариски документ"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Информации за белешките од документот"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-документ"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-објект"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Графички објект"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-метадатотека"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Објект за извор на податоци"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Табела за извор на податоци"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-прашање"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Врска"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-формат без коментари"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Објектот % не може да се вметне."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Објектот од датотеката % не може да се вметне."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Дополнителни објекти"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Непознат извор"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Име"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Големина"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Датум на промена"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Тип"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Бајти"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Ред: %1, Колона: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Тип: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Папка"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Датотека"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Празно поле"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Алфанумеричко"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Нормално"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Множество знаци"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Речник"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Потез"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Уникод"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Телефонски именик"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Фонетско (прво алфанумерички)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Фонетско (алфанумерички на крај)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Алфанумеричко"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Речник"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Потез"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Фонетско (прво алфанумерички, групирани по слогови)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Фонетско (прво алфанумерички, групирани по согласки)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Фонетско (алфанумерички на крај, групирани по слогови)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Фонетско (алфанумерички на крај, групирани по согласки)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Денес"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Нема"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Светло"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Тенок курзив"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Регуларен"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Курзив"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Задебелен"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Задебелен курзив"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Црно"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Црно курзив"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Книга"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "збиен"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Истиот фонт ќе се користи и за вашиот печатач и за вашиот екран."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Ова е фонт за печатач. Сликата на екранот може да се разликува."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Овој стил на фонт ќе биде симулиран или ќе биде употребен најблискиот стил што одговара."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Овој фонт не е инсталиран. Ќе биде употребен најблискиот фонт што е на располагање."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Прелистај..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Премести ред надолу"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Помести налево"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Помести надесно"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Надолу"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Додај"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Хоризонтално нанадвор"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Вертикален линијар"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Праг од 1 бит"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Мешање од 1 бит"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Сиви нијанси од 4 бита"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Сиви нијанси од 4 бита"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Вистински бои - 24 бита"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Трошок"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Подредување"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Пауза"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Иницијализирам..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Чека"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Грешка"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "~Избриши страница"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Недоволно меморија."
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Основен печатач"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Word-документи"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Заврши"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Следно >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<<~Назад"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Чекори"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<нема>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Компанија"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Оддел"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Име"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Презиме"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Улица"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Земја"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Пошт. број"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Град"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Титула"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Позиција"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Формулар за адреса"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Иницијали"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Завршна фраза"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Тел. дома"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Тел. работа"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Белешка"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Корисник 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Корисник 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Корисник 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Корисник 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Ид."
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Земја"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Тел. канцеларија"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Пејџер"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Мобилен"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Тел. други"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Календар"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Покани"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Потребна е JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Избирање на JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE е дефектна"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Изворен код"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Датотека со обележувачи"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Графика"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Конфигурациска датотека"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Апликација"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Табела од база на податоци"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Системска датотека"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-документ"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Датотека за помош"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML-документ"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Архивска датотека"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Датотека-дневник"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0-образец"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0-главен документ"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0-образец"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Текстуална датотека"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Врска"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0-образец"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-документ"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-образец"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Командна датотека"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Датотека"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Папка"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Текстуален документ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Табеларна пресметка"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Презентација"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Цртеж"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML-документ"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Главен документ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Формула"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "База на податоци"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Локален уред"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Диск"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM уред"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Мрежна врска"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-документ"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-образец"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-шоу"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-документ"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-база на податоци"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-цртеж"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-формула"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-главен документ"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-презентација"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-табеларна пресметка"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-текст"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-образец за табеларна пресметка"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-образец за цртеж"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-образец за презентација"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-образец за текст"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Екстензија за %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/mk/svx/messages.po b/source/mk/svx/messages.po
index b112988d4ee..2b08f3ca0bb 100644
--- a/source/mk/svx/messages.po
+++ b/source/mk/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8065,6 +8065,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12595,87 +12600,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Уредувач на контура"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Примени"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Работен простор"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Избери"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Правоаголник"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Елипса"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Полигон"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Уредување точки"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Премести точки"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Вметни точки"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Избриши точки"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Автоматска контура"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Отповикај "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Црвена"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13014,123 +13024,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Подножје"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Уредувач на МапаНаСлика"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Примени"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Отвори..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Зачувај..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Затвори"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Избери"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Правоаголник"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Елипса"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Полигон"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Произволен полигон"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Уредување точки"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Премести точки"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Вметни точки"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Избриши точки"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Отповикај "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Црвена"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Активно"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Макро..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Својства: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Адреса:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Рамка"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/mk/sw/messages.po b/source/mk/sw/messages.po
index 9d79886dd91..4b4c7e8a3b7 100644
--- a/source/mk/sw/messages.po
+++ b/source/mk/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:27+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mk\n"
@@ -3221,7 +3221,7 @@ msgid "Change object title of $1"
msgstr "Смени редослед на објекти на %1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12727,147 +12727,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12877,152 +12877,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14137,7 +14137,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17663,50 +17663,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Преглед"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Преглед"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Тип"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "~Елементи"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Стилови"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Колони"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Подлога"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Преглед"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Ниво"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17952,326 +17952,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Уреди..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Наслов:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Тип"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Содржина на табела"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Кориснички дефинирано"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Библиографија 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Форма"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~Цел документ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Поглавје"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Контура"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Табели"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Рамки за текст"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Графика"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-објекти"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Условни стилови"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Стилови"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Опции"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Име на објектот"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Категорија"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Прикажи"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Референци"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Категорија и број"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Текст на наслов"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "~Загради"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Нема]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Датотека"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Опции"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Јазик"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Тип на клуч"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Подредување"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Ниво"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(Стил на пасус: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Стандардно"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Уреди"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/ml/cui/messages.po b/source/ml/cui/messages.po
index 67cc9c53aac..f0faa5851be 100644
--- a/source/ml/cui/messages.po
+++ b/source/ml/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,107 +1652,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "അതിരുകള്‍ സജ്ജമാക്കരുതു്"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "പുറമേയുള്ള അതിരുകള്‍ മാത്രം സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "പുറമേയുള്ള അതിരുകളും നേരെയുള്ള വരികളും സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "പുറമേയുള്ള അതിരുകളും എല്ലാ അകത്തുള്ള വരികളും സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "അകത്തുള്ള വരികള്‍ മാറ്റാതെ പുറമേയുള്ള അതിരു് സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "കുറുകെയുള്ള വരികള്‍ മാത്രം സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "എല്ലാ നാലും അതിരുകളും സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "ഇടത്തും വലത്തും അതിരുകള്‍ മാത്രം സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "മുകളിലും താഴെയുമുള്ള അതിരുകള്‍ മാത്രം സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "ഇടത്തുള്ള അതിരു് മാത്രം സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "മുകളിലും താഴെയുമുള്ള അതിരുകളും അകത്തുള്ള എല്ലാ വരികളും സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "ഇടത്തും വലത്തുമുള്ള അതിരുകളും, അകത്തുള്ള എല്ലാ വരികളും സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "നിഴല്‍ ഇല്ലാതെ"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "താഴെ വലത്തേക്കു് നിഴല്‍ സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "മുകളില്‍ വലത്തു് നിഴല്‍ സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "താളെ വലത്തു് നിഴല്‍ സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "മുകളില്‍ ഇടത്തു് നിഴല്‍ സജ്ജമാക്കുക"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1795,7 +1790,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1915,7 +1910,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2155,7 +2150,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2410,12 +2405,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2485,7 +2480,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2565,7 +2560,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2806,7 +2801,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3433,66 +3428,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME-നെ കുറിച്ചു്"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "അനുമോദ_നങ്ങള്‍"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_വെബ്സൈറ്റ്"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME-ലേക്കു്"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ബിള്‍ഡ് ഐഡി $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "ലോക്കേല്‍: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME പുതിയതും എഴുപ്പത്തില്‍ ഉപയോഗിയ്ക്കുവാനും സാധ്യമായൊരു ഓപ്പണ്‍ സോഴ്സ് പ്രൊഡക്ടിവിറ്റി സ്യൂട്ടാകുന്നു. വേഡ് പ്രൊസസ്സിങ്, സ്പ്രെഡ്ഷീറ്റുകള്‍, പ്രസന്റേഷനുകള്‍ എന്നിവ ഇതില്‍ ഉള്‍പ്പെടുന്നു."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "OpenOffice.org.-ന്റെ അടിസ്ഥാനത്തിലാണു് ലിബര്‍ഓഫീസ്."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME ലഭ്യമായതു് ലിബര്‍ഓഫീസില്‍ നിന്നാണു്, ഇതു് OpenOffice.org-ന്റെ അടിസ്ഥാനത്തിലാണു്."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "ഈ പതിപ്പു് ലഭ്യമാക്കിയതു് %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3609,17 +3609,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "മാറ്റി വയ്ക്കുക"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_മാറ്റിസ്ഥാപിയ്ക്കുക"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_With:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "ടെക്സ്റ്റ് മാത്രം"
@@ -4452,6 +4452,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "വാക്കിന്റെ ചുരുങ്ങിയ ദൈര്‍ഘ്യം "
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5574,27 +5734,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "വിശേഷതകള്‍"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "യുആര്‍എല്‍ (_U):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ഫ്രെ_യിം:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "പേരു് (_N):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "വിവരണം (_D):"
@@ -9177,84 +9337,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "സഹായം"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ഡയലോഗുകള്‍ _ഉപയോഗിയ്ക്കുക"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ഡയലോഗുകള്‍ തുറക്കുക/സൂക്ഷിയ്ക്കുക"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME _ഡയലോഗുകള്‍ കാണിയ്ക്കുക"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "പ്രിന്റ് ചെയ്യുന്നതിനുള്ള ഡയലോഗുകള്‍"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printing sets \"document modified\" status"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "രേഖയുടെ അവസ്ഥ"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "എത്ര വര്‍ഷങ്ങള്‍ എന്നു് _കണക്കു കൂട്ടുക "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "പിന്നെ"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "വര്‍ഷം (രണ്ട് അക്കങ്ങള്‍)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "സിസ്റ്റത്തിന്റെ പ്രാരംഭത്തില്‍ %PRODUCTNAME ലഭ്യമാക്കുക"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray ക്വിക്ക്സ്റ്റാര്‍ട്ടര്‍ പ്രവര്‍ത്തന സജ്ജമാക്കുക"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME ക്വിക്ക്സ്റ്റാര്‍ട്ടര്‍"
@@ -11223,25 +11383,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "സ്വന്തം പ്രമേയം"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "ഫയര്‍ഫോക്സ് പ്രമേയങ്ങള്‍"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11902,102 +12047,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "സുരക്ഷാ ഉപാധികള്‍"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13067,27 +13116,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ml/extensions/messages.po b/source/ml/extensions/messages.po
index 8ab9d1b3419..537d885d6fd 100644
--- a/source/ml/extensions/messages.po
+++ b/source/ml/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3239,191 +3239,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "പട്ടിക %1 ന്റെ സ്തംഭപ്ലാന്"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "ചുരുക്കപ്പേരു്"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "ലേഖകന്(ര്)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "പ്രസാധകര്"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "അദ്ധ്യായം"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "എഡിറ്റര്"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "വിഭാഗം"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "വര്‍ഷം"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "കുത്തനെയുള്ള ടെക്സ്റ്റ്"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "മേല്‍വിലാസം"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "പേജ്(കള്)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "പതിപ്പ്"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "പുസ്തക തലക്കെട്ട്"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "വോള്യം"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "പ്രസിദ്ധീകരണ വിഭാഗം"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "സംഘടന"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "പ്രസ്ഥാനം"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "സര്വ‍കലാശാല"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "റിപ്പോര്ട്ടിന്റെ രീതി"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "മാസം"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "ജേര്ണല്"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "സംഖ്യ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "ശ്രേണി"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "വ്യാഖ്യാനം"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "കുറിപ്പ്"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "ഉപഭാക്താവ് നിര്വ‍ചിച്ച മണ്ഡലം 1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "ഉപഭാക്താവ് നിര്വ‍ചിച്ച മണ്ഡലം 2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "ഉപഭാക്താവ് നിര്വ‍ചിച്ച മണ്ഡലം 3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "ഉപഭാക്താവ് നിര്വ‍ചിച്ച മണ്ഡലം 4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "ഉപഭാക്താവ് നിര്വ‍ചിച്ച മണ്ഡലം 5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3609,31 +3609,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "ലിങ്ക് മണ്ഡലം"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "നിര്ദ്ദേശിക്കുക"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "സബ്ഫോള്ഡര് ഉപയോഗിച്ച് മുഖ്യ രൂപത്തിന്റെ ഇപ്പോഴത്തെ റിക്കോര്ഡിനെപ്പറ്റി വിശദമായി പ്രദര്ശിപ്പിക്കാം. ഇത് ചെയ്യുന്നതിനുവേണ്ടി മുഖ്യ രൂപത്തിലുള്ളതുമായി യോജിക്കുന്ന ഉപ രൂപം താങ്കള് ചൂണ്ടികാട്ടണം"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ലേബല്"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po
index 4dc2f322771..97e7fb0988f 100644
--- a/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23723,6 +23723,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26064,6 +26073,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26082,6 +26100,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ml/sc/messages.po b/source/ml/sc/messages.po
index e44e4fd31cc..76ae044c340 100644
--- a/source/ml/sc/messages.po
+++ b/source/ml/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15571,6 +15571,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(പ്രത്യേക അനുമതി)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
#, fuzzy
msgctxt "subtotalgrppage|liststore1"
@@ -16157,12 +16162,12 @@ msgstr "കണ്ടീഷനല്‍ ഫോര്‍മാറ്റിങ്"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17488,83 +17493,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "ഡോറ്റാ ഫോം"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "അടയ്ക്കുക"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "പുതിയ റിക്കോര്ഡ്"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "പുതിയ"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_വെട്ടി നീക്കുക"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_വീണ്ടെടുക്കുക"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_മുമ്പുള്ള റിക്കോര്‍ഡ്"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "_അടുത്ത റിക്കോര്‍ഡ്"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "അടയ്ക്കുക"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "ലോക്കല്‍ ഫയലിലെ അഥവാ ഇന്റര്‍നെറ്റിലെ ഉറവിട ഡോക്കുമെന്റിന്റെ യുആര്‍എല്‍ നല്‍കുക."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ബ്രൌസ്"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ഡേറ്റാബേസ് പരിധികള്‍"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19352,36 +19315,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "തീയതി"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "നിര"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "നിര"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "ഗ്രൂപ്പ് ചെയ്ത്"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "ഇടവേള"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "പരാമീറ്ററുകള്‍"
@@ -19529,167 +19497,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22340,17 +22310,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24330,113 +24310,118 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "വിന്ഡോ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "ഗ്രിഡ് രേഖ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "നിറം (_C):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "കാണിക്കകു"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "അദൃശ്യമാക്കുക"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "പേജ് വിച്ഛേദനം"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
#, fuzzy
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "നീങ്ങുമ്പോള്‍ _ആവശ്യമായ സഹായങ്ങള്‍"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "ചാര്‍ട്ടൂകള്‍"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "ചിത്രരചന വസ്തു"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "കാണിക്കകു"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "അദൃശ്യമാക്കുക"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "കാണിക്കകു"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "അദൃശ്യമാക്കുക"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "കാണിക്കകു"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "അദൃശ്യമാക്കുക"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "വസ്തു"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "വലിപ്പം മാറ്റുക"
diff --git a/source/ml/scp2/source/ooo.po b/source/ml/scp2/source/ooo.po
index fc2f30c0429..66331024341 100644
--- a/source/ml/scp2/source/ooo.po
+++ b/source/ml/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "ഡോക്കുമെന്റ് തുറക്കുക"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ml/scp2/source/winexplorerext.po b/source/ml/scp2/source/winexplorerext.po
index 05770d269c0..d90b504a42d 100644
--- a/source/ml/scp2/source/winexplorerext.po
+++ b/source/ml/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 00:26+0200\n"
-"Last-Translator: anipeter <peter.ani@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:08+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369354111.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "%PRODUCTNAME ഡോക്കുമെന്റിന്റെ വിവരങ്ങള് അതായത് തന്പ്നേയില് മുന്കാഴ്ച കാണിക്കാന് മൈക്രോസോഫ്റ്റ് വിന്ഡോ എക്സ്പ്ലോറര് പ്രവര്ത്തനസജ്ജമാക്കുക."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ml/sd/messages.po b/source/ml/sd/messages.po
index 46eef5ca24d..13364876398 100644
--- a/source/ml/sd/messages.po
+++ b/source/ml/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2640,6 +2640,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3124,164 +3129,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4769,160 +4959,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "ആരോ ആകൃതികള്‍"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ml/sfx2/messages.po b/source/ml/sfx2/messages.po
index bd1d3387ee3..bcfd517c7f9 100644
--- a/source/ml/sfx2/messages.po
+++ b/source/ml/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -914,11 +914,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "വിശേഷത നീക്കം ചെയ്യുക"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -928,28 +923,28 @@ msgstr ""
"നിങ്ങള്‍ നല്‍കി മൂല്ല്യം വ്യക്തമാക്കിയ രീതിയുമായി പൊരുത്തപ്പെടുന്നില്ല.\n"
"മൂല്ല്യം വാചകമായി സൂക്ഷിയ്ക്കുന്നു."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ഫയല്‍ നിലവിലുണ്ടു്, തിരുത്തിയെഴുതണമോ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~വീണ്ടും സജ്ജമാക്കുക"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ഈ പേര‍് ഉപയോഗത്തിലാണ‌്"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ഈ ശൈലി നിലവിലില്ല."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -959,7 +954,7 @@ msgstr ""
"ഈ ശൈലി അടിസ്ഥാന ശൈലിയായി ഉപയോഗിക്കാന് കഴിയില്ല,\n"
"കാരണം ഇത് റഫറന്സ് ആവര്ത്തനത്തിന‌് കാരണമാവും."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -968,7 +963,7 @@ msgstr ""
"സംസ്ഥാപിത ശൈലിയായി ഡോക്കുമെന്റ് നിലവിലുണ്ട്.\n"
"ദയവായി മറ്റൊരു പേര‌് തിരഞ്ഞെടുക്കുക."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -976,95 +971,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "ഉപയോഗത്തിലുള്ള ശൈലികള്‍: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "നാവിഗേറ്റര്"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "സങ്കേതപദം സ്ഥിരീക്കരിക്കുന്നതിലുള്ള അപൂര്ണ്ണത"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "അയയ്ക്കുക"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "അക്ഷര‍സഞ്ചയം"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "പതിപ്പിന്റെ വ്യാഖ്യാനം കാണുക"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "ശൈലിയുടെ പട്ടിക"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "സ്ഥാനം അനുസരിച്ച്"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "രൂപരേഖ രീതി നിറയ്ക്കുക"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "തിരഞ്ഞെടുത്ത പുതിയ ശൈലി"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "ശൈലികള്‍ ~പരിഷ്കരിയ്ക്കുക"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "താങ്ങള്ക്ക് റിക്കോര്ഡിങ്ങ് റദ്ദാക്കണോ? ഇതുവരെ റിക്കോര്ഡ് ചെയ്തത് നഷ്ടപ്പെടും."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "റിക്കോര്ഡിങ്ങ് റദ്ദാക്കുക"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "അദ്യമായിട്ട് ഉപയോഗിക്കുന്നയാള്ക്കുവേണ്ടി മാതൃകകള് ആരംഭിച്ചിട്ടുണ്ട്"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1073,7 +1068,7 @@ msgstr ""
"സംസ്ഥാപിത അച്ചടിയന്ത്രം കണ്ടെത്താനായില്ല.\n"
"ദയവായി ഒരു അച്ചടിയന്ത്രം തിരഞ്ഞെടുത്ത് വീണ്ടും ശ്രമിക്കുക."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1082,17 +1077,17 @@ msgstr ""
"അച്ചടിയന്ത്രം പ്രവര്‍ത്തിപ്പിക്കാന്‍ കഴിയുന്നില്ല.\n"
"ദയവായി അച്ചടിയന്ത്രത്തിന്റെ രൂപരേഖ പരിശോധിക്കുക."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "അച്ചടിയന്ത്രം ജോലിയിലാണ്‍"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(വായിക്കാന് വേണ്ടി മാത്രം)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1103,7 +1098,7 @@ msgstr ""
"പുതിയ സജ്ജീകരണങ്ങള്‍ താങ്കള്‍ക്ക്\n"
"ഇവിടെ സംഭരിക്കണോ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1114,7 +1109,7 @@ msgstr ""
"പുതിയ സജ്ജീകരണങ്ങള്‍ താങ്കള്‍ക്ക്\n"
"ഇവിടെ സൂക്ഷിക്കണോ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1125,7 +1120,7 @@ msgstr ""
"പുതിയ സജ്ജീകരണങ്ങള് താങ്കള്‍ക്ക്\n"
"ഇവിടെ സൂക്ഷിക്കണോ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1133,7 +1128,7 @@ msgid ""
" print job is being carried out."
msgstr "ഡോക്കുമെന്റ് അടയ്ക്കാന് കഴിയുന്നില്ല കാരണം ഒരി അച്ചടിജോലി നടന്നുകൊണ്ടിരിക്കുകയാണ‍്"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1141,7 +1136,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1149,18 +1144,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "പ്രവേശന അവകാശം നഷ്ടപ്പെട്ടതുകാരണം ഈ ഡോക്കുമെന്റ് എഡിറ്റ് ചെയ്യാന് കഴിയില്ല. താങ്കള്ക്ക് ഡോക്കുമെന്റിന്റെ ഒരു പകര്പ്പ് എഡിറ്റ് ചെയ്യണോ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1168,356 +1163,366 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (കേടുപാട് തീര്ത്ത ഡോക്കുമെന്റ്)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "സര്‍വറില്‍ നിന്നും രേഖ ലഭ്യമാക്കിയിട്ടില്ല"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "നിയന്ത്രണങ്ങള്‍ രേഖപ്പെടുത്തുക"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "ലഭ്യമാക്കുക"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ഡോക്കുമെന്റ് എഡിറ്റ് ചെയ്യുക"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "രേഖ ഒപ്പിടുക..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ഡോക്ക്"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "അണ്‍ഡോക്ക് ചെയ്യുക"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "കൂടുതല്‍ ഐച്ഛികങ്ങള്‍"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "സൈഡ്ബാര്‍ ഡെക്ക് അടയ്ക്കുക"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "പ്രവര്‍ത്തികള്‍ ഇഷ്ടാനുസൃതമാക്കുക"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "സ്വതവേയുള്ളതു് വീണ്ടെടുക്കുക"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "നീക്കം ചെയ്യുക"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1892,33 +1897,18 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "പരിഭാഷ വ്യാഖ്യാനം"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr " നാമം"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "തരം"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "മൂല്യം"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "തരം"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
#, fuzzy
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "ഉണ്ട്"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "ഇല്ല"
@@ -1928,17 +1918,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr " നാമം"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "തരം"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "മൂല്യം"
@@ -2074,17 +2064,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_സ്ഥാനം:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_തരം:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "_രഹസ്യവാക്ക് മാറ്റുക"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "മാതൃക"
@@ -2095,27 +2085,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "-ന്റെ സവിശേഷതകള്"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "പൊതുവായ "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "വിശദവവിവരങ്ങള്‍"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "യഥേഷ്ടമുള്ള വിശേഷതകള്‍"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "സുരക്ഷ"
@@ -2343,6 +2333,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ml/shell/messages.po b/source/ml/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ml/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ml/starmath/messages.po b/source/ml/starmath/messages.po
index c362ef505bc..2a84c12fa29 100644
--- a/source/ml/starmath/messages.po
+++ b/source/ml/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1649,274 +1649,299 @@ msgid "Examples"
msgstr "ഉദാഹരണങ്ങള്‍"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "നിലവാരം"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ചരിഞ്ഞക്ഷരം"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "സുസ്പഷ്ടം"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "കറുത്ത"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "നീല"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "പച്ച"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "ചുവപ്പ്"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "സിയാന്‍"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "മജന്ഡ"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ഗ്രേ"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "നാരങ്ങ"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "മറൂണ്‍"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "നേവി"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ഒലീവ്"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "പര്‍പ്പിള്‍"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silver"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "teal"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "മഞ്ഞ"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "അദൃശ്യമാക്കുക"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "സൈന്"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "ഫോണ്ഡ്"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ഇടത്"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "മദ്ധ്യം"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "വലത്"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "നിര്ദ്ദേശം"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "സൂത്രവാക്യം"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ഡോക്കുമെന്റ് സംഭരിക്കുന്നു"
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "അപ്രതീക്ഷിത അക്ഷരം"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' പ്രതിക്ഷിച്ചത്"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' പ്രതിക്ഷിച്ചത്"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' പ്രതിക്ഷിച്ചത്"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' പ്രതിക്ഷിച്ചത്"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' പ്രതിക്ഷിച്ചത്"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "ആവശ്യത്തിനുള്ള നിറം"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' പ്രതിക്ഷിച്ചത്"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ഉള്ളടക്കം"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ശീര്‍ഷകം "
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "സൂത്രവാക്യ ടെക്സ്റ്റ്"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "അതിരുകള്"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "പരിമാണം"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "യഥാര്‍ത്ഥ വ്യാപ്തി"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "പേജിനു പാകമാക്കുക"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1989,6 +2014,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "എലമെന്റ്"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/ml/svtools/messages.po b/source/ml/svtools/messages.po
index 3ceb48c7630..57f38d2a651 100644
--- a/source/ml/svtools/messages.po
+++ b/source/ml/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1537 +16,1539 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195716.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ശിഥിലീകരിക്കുക"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "വീണ്ടും ചെയ്യുക"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "അവര്ത്തിക്കുക"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "രൂപരേഖചെയ്യാത്ത ടെക്സ്റ്റ്"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx ആന്തരിക ലിങ്കില് നിന്നുള്ള സ്ഥാനവിവരം"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "നെറ്റ്സ്കേപ് അടയാളം"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "സ്റ്റാര് സെര്‍വര് രൂപരേഖ"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "സ്റ്റാര് വസ്തു രൂപരേഖ"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "അപ്പലെറ്റ്വസ്തു"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "പ്ലഗ്-ഇന് വസ്തു"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "സ്റ്റാര് റൈറ്റര് 3.0 വസ്തു"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "സ്റ്റാര് റൈറ്റര് 4.0 വസ്തു"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "സ്റ്റാര് റൈറ്റര് 5.0 വസ്തു"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "സ്റ്റാര് റൈറ്റര്/ വെബ് 4.0 വസ്തു"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "സ്റ്റാര് റൈറ്റര്/ വെബ് 5.0 വസ്തു"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "സ്റ്റാര് റൈറ്റര്/ മുഖ്യ 4.0 വസ്തു"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "സ്റ്റാര് റൈറ്റര്/ മുഖ്യ 5.0 വസ്തു"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "സ്റ്റാര് ചിത്രരചന വസ്തു"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "സ്റ്റാര് ചിത്രരചന 4.0 വസ്തു"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "സ്റ്റാര് ഇംപ്രസ് 5.0 വസ്തു"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "സ്റ്റാര് ചിത്രരചന 5.0 വസ്തു"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "സ്റ്റാര് കാല്ക് വസ്തു"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "സ്റ്റാര് കാല്ക് 4.0 വസ്തു"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "സ്റ്റാര് കാല്ക് 5.0 വസ്തു"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "സ്റ്റാര് ചാര്ട്ട് വസ്തു"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "സ്റ്റാര് ചാര്ട്ട്4.0 വസ്തു"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 ഒബ്ജക്ട്"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "സ്റ്റാര് ചിത്ര വസ്തു"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "സ്റ്റാര് ചിത്ര 4.0 വസ്തു"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "സ്റ്റാര് ചിത്ര 5.0 വസ്തു"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "സ്റ്റാര് മാത് വസ്തു"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "സ്റ്റാര് മാത് 4.0 വസ്തു"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "സ്റ്റാര് മാത് 5.0 വസ്തു"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "സ്റ്റാര് വസ്തു സെറ്റ് വസ്തു"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "മൈക്രോസോഫ്റ്റ് വേഡ് വസ്തു"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "സ്റ്റാര് ഫ്രെയിം സെറ്റ് വസ്തു"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ഓഫീസ് ഡോക്കുമെന്റ് വസ്തു"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "ഡോക്കുമെന്റ് വിവരക്കുറിപ്പുകള്"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx ഡോക്കുമെന്റ്"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 ഒബ്ജക്ട്"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ഗ്രാഫിക് വസ്തു"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
#, fuzzy
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 മാസ്റ്റര്‍ ഡോക്യുമെന്റ്"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
#, fuzzy
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 ഡ്രോയിങ്"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
#, fuzzy
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 ചാര്‍ട്ട്"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
#, fuzzy
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 മാസ്റ്റര്‍ ഡോക്യുമെന്റ്"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "വിന്ഡോസ് മെറ്റാഫയല്"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ഡേറ്റായുടെ ഉറവിട വസ്തു"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ഡേറ്റാ ഉറവിട പട്ടിക"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "അന്വേഷണം- SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
#, fuzzy
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 ഡ്രോയിങ്"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "ലിങ്ക്"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML രൂപരേഖ കല്പനയില്ലാതെ"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "വസ്തു % ചേക്കാന് കഴിയുന്നില്ല"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ഫയലില്% നിന്നുള്ള വസ്തു ചേര്ക്കാന് കഴിയില്ല"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "കൂടുതല് വസ്തുക്കള്"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "അജ്ഞാതം ഉറവിടം"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr " നാമം"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "പരിമാണം"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "പരിഷ്കരിച്ച തീയതി"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "തരം"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ബൈറ്റ്സ്"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "നിര: %1, സ്തംഭം: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", വിഭാഗം: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ഫോള്ഡര്"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ഫയല്"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ഒഴിഞ്ഞ മണ്ഡലം"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "അല്‍ഫാന്യൂമെറിക്"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "സാധാരണ"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "അക്ഷരസമൂഹം"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr " നിഘണ്ടു"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "പിന്‍യിന്"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "സ്ട്രോക്ക്"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "റാഡിക്കല്"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "യൂണികോഡ്"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "സ്യൂന്"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ഫോണ് ബുക്ക്"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ഫോണെറ്റിക് (പ്രഥമ ആല്ഫാന്യൂമറിക്)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ഫോണെറ്റിക് (അവസാന ആല്ഫാന്യൂമറിക്)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "അല്‍ഫാന്യൂമെറിക്"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr " നിഘണ്ടു"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "പിന്‍യിന്"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "റാഡിക്കല്"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "സ്ട്രോക്ക്"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "സ്യൂന്"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ഫോണെറ്റിക് (പ്രഥമ ആല്ഫാന്യൂമറിക്, ക്രമമനുസരിച്ച് ഗ്രൂപ്പ് ചെയ്തിരിക്കുന്നു)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ഫോണെറ്റിക് (പ്രഥമ ആല്ഫാന്യൂമറിക്, അക്ഷരം അനുസരിച്ച് അടുക്കിയിരിക്കുന്നു )"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ഫോണെറ്റിക് (അവസാന ആല്ഫാന്യൂമറിക്, ക്രമമനുസരിച്ച് ഗ്രൂപ്പ് ചെയ്തിരിക്കുന്നു)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ഫോണെറ്റിക് (അവസാന ആല്ഫാന്യൂമറിക്, അക്ഷരം അനുസരിച്ച് അടുക്കിയിരിക്കുന്നു )"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ഇന്ന്"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "ഒന്നുമില്ല"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "പ്രകാശം"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "നേര്ത്ത ചരിഞ്ഞ അക്ഷരം"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "പതിവായ"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ചരിഞ്ഞക്ഷരം"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "കട്ടിയുള്ള"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "കട്ടിയുള്ള ചരിഞ്ഞ അക്ഷരം"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "കറുത്ത"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "കറുത്ത (ചരിഞ്ഞ) അക്ഷരം"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ബുക്ക്"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "സാന്ദ്രീകരിച്ച"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "സെമീ ബോള്‍ഡ്"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "സ്ക്രീനിലും അച്ചടിയന്ത്രത്തിലും ഒരേ ഫോണ്ട് ഉപയോഗിക്കുക"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "ഇതൊരു അച്ചടിയന്ത്ര ഫോണ്ടാണ‍്. സ്ക്രീനിലെ ചിത്രത്തിന‍് മാറ്റമുണ്ട്."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "ഈ ഫോണ്ടിന്റെ ശൈലി അനുകരിച്ചതാണ‍് അഥവാ ഏകദേശം യോജിക്കുന്ന പരിമാണം ഉപയോഗിക്കുക"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ഫോണ്ട് സ്ഥാപിച്ചിട്ടില്ല. ഏകദേശം യോജിക്കുന്ന ഫോണ്ട് ഉപയോഗിക്കുക"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ബ്രൌസ്"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ആസ്ഥാനത്തിലേക്കു് നീക്കുക"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ഇടത്തോട്ട് നീങ്ങുക"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "വലത്തോട്ട് നീങ്ങുക"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "ഒടുവിലേക്കു് നീക്കുക"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ചേര്‍ക്കുക"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "കുറുകെയുള്ള റൂളര്"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "കുറുകെയുള്ള അളവുകോല്"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 ബിറ്റ് തുടക്കം"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 ബിറ്റ് ഡിതിറഡ്"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 ബിറ്റ് ഗ്രെ സ്കേല്‍"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 ബിറ്റ് നിറം"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 ബിറ്റ് ഗ്രെ സ്കേല്‍"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 ബിറ്റ് നിറം"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 ബിറ്റ് ശരിയായ നിറം"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ചിത്രത്തിനു് %1 കെബി മെമ്മറി ആവശ്യമുണ്ടു്."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ചിത്രത്തിനു് %1 കെബി മെമ്മറി ആവശ്യമുണ്ടു്, ഫയലിന്റെ വ്യാപ്തി %2 കെബി ആകുന്നു."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ഫയലിന്റെ വ്യാപ്തി %1 കെബി ആകുന്നു."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "വില"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ക്രമത്തിലാക്കുക"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "തയ്യാര്"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "തല്ക്കാലം വിരമിക്കുക"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "തീര്ച്ചപ്പെടാത്ത മാറ്റിക്കളയല്"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "തിരക്ക്"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ഇനിഷ്യലൈസ് ചെയ്യുക"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "കാത്തിരിക്കുന്നു"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "ഉഷ്ണം"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "പ്രവര്ത്തനഗതി"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "അച്ചടിക്കുക"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ഓഫ്ലൈന്"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "തെറ്റ്"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "അജ്ഞാതം സെര്വര്"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "പേപ്പര് ജാം"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "മതിയായ പേപ്പര് ഇല്ല"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "മാനുവല് ഫീഡ്"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "കടലാസ് പ്രശ്നം"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O സജീവം"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "ഓട്ടപുട്ട്കുട്ട നിറയെ"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "താണ ടോണര്"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "ടോണര് ഇല്ല"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "പേജ് നീക്കം ചെയ്യുക"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ഉപഭോക്താവിന്റെ ഇടപെടല് ആവശ്യമാണ്‍"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "മതിയായ മെമ്മറി ലഭ്യമല്ല"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "മൂടി തുറക്കുക"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "പവര് സംഭരിക്കുന്ന രീതി"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "സംസ്ഥാപിത അച്ചടിയന്ത്രം"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "സമാപ്തി"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "അടുത്ത"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<<പിന്നോട്ട്"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "രീതികള്"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "ഒന്നുമില്ല"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "കന്പനി"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "വിഭാഗം"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "ആദ്യ നാമം"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "അന്തിമ നാമം"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "തെരുവ്"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "ദേശം"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Zip കോഡ്"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "നഗരം"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "ശീര്ഷകം"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "സ്ഥാനം"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "മേല്വ‍ിലാസ ഫോം"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "ഇനിഷ്യല്സ്"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "ബഹുമാനസൂചകമായ"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "ടെലിഫോണ് (വീട്)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "ടെലിഫോണ് (ജോലി)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "കുറിപ്പ്"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ഉപഭോക്താവ് 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ഉപഭോക്താവ് 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ഉപഭോക്താവ് 3 "
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ഉപഭോക്താവ് 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "സംസ്ഥാനം"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "ടെലിഫോണ് (ആഫീസ്)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "പേജറ്"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "മൊബൈല്"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ടെലിഫോണ് (മറ്റുള്ള)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "കലണ്ടര്"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "ക്ഷണിക്കുക"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "ഈ ജോലി നടപ്പിലാക്കുന്നതിനായി %PRODUCTNAME-നു് ജാവാ റണ്‍ടൈം എന്‍വയണ്മെന്റ് (ജെആര്‍ഇ) ആവശ്യമുണ്ടു്. ദയവായി ജെആര്‍ഇ സ്ഥാപിച്ചു് %PRODUCTNAME പുനരാരംഭിയ്ക്കുക."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME ക്രമീകരണം മാറിയിരിക്കുന്നു. %PRODUCTNAME - മുന്‍ഗണനകള്‍ - %PRODUCTNAME - നവീനമായ എന്നതില്‍, %PRODUCTNAME ഉപയോഗിക്കേണ്ട ജാവാ റണ്‍ടൈം എന്‍വയോണ്‍മെന്റ് തെരഞ്ഞെടുക്കുക."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME ക്രമീകരണം മാറിയിരിക്കുന്നു. ഉപകരണങ്ങള്‍ - ഐച്ഛികങ്ങള്‍ - %PRODUCTNAME - നവീനമായ എന്നതില്‍, %PRODUCTNAME ഉപയോഗിക്കേണ്ട ജാവാ റണ്‍ടൈം എന്‍വയോണ്‍മെന്റ് തെരഞ്ഞെടുക്കുക."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "ഈ ജോലി നടപ്പിലാക്കുന്നതിനായി %PRODUCTNAME-നു് ജാവാ റണ്‍ടൈം എന്‍വയണ്മെന്റ് (ജെആര്‍ഇ) ആവശ്യമുണ്ടു്. തെരഞ്ഞെടുത്ത ജെആര്‍ഇയില്‍ തകരാറുണ്ടു്. ദയവായി മറ്റൊരു പതിപ്പു് തെരഞ്ഞെടുക്കുക അല്ലെങ്കില്‍ പുതിയൊരു ജെആര്‍ഇ ഇന്‍സ്റ്റോള്‍ ചെയ്തു്, ഇതു് %PRODUCTNAME - മുന്‍ഗണനകള്‍ - %PRODUCTNAME - നവീനമായ തെരഞ്ഞെടുക്കുക."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "ഈ ജോലി നടപ്പിലാക്കുന്നതിനായി %PRODUCTNAME-നു് ജാവാ റണ്‍ടൈം എന്‍വയണ്മെന്റ് (ജെആര്‍ഇ) ആവശ്യമുണ്ടു്. തെരഞ്ഞെടുത്ത ജെആര്‍ഇയില്‍ തകരാറുണ്ടു്. ദയവായി മറ്റൊരു പതിപ്പു് തെരഞ്ഞെടുക്കുക അല്ലെങ്കില്‍ പുതിയൊരു ജെആര്‍ഇ ഇന്‍സ്റ്റോള്‍ ചെയ്തു്, ഇതു് പ്രയോഗങ്ങള്‍ - ഐച്ഛികങ്ങള്‍ - %PRODUCTNAME - നവീനമായ തെരഞ്ഞെടുക്കുക."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "ജെആര്‍ഇ ആവശ്യമുണ്ടു്"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "ജെആര്‍ഇ തെരഞ്ഞെടുക്കുക"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "തെറ്റായ ജെആര്‍ഇ"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "ഉറവിട കോഡ്"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ഫയല് അടയാളംപ്പെടുത്തുക"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ഗ്രാഫിക്സ്"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "രൂപരേഖ ചെയ്ത ഫയല്"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "പ്രയോഗം"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ഡേറ്റാബേസ് അനുക്രമണിക"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "സിസ്റ്റം ഫയല്"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS- വേഡ് ഡോക്കുമെന്റ്"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "സഹായക ഫയല്"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML രേഖ"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ആര്ക്കീവ് ഫയല്"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ലോഗ് ഫയല്"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "സ്റ്റാര്‍ഓഫീസ് ഡേറ്റാബെയിസ്"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 മുഖ്യ ഡോക്കുമെന്റ്"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "സ്റ്റാര്‍ഓഫീസ് ഇമേജ്"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ടെക്സ്റ്റ് ഫയല്"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "ബന്ധിക്കുക"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "സ്റ്റാര്‍ഓഫീസ് 3.0 - 5.0 മാതൃക"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS- വേര്ഡ് ഡോക്കുമെന്റ്"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS ഏക്സല് മാതൃക"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "മൊത്തം ഫയല്"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ഫയല്"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ഫോള്ഡര്"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ടെക്സ്റ്റ് ഡോക്കുമെന്റ്്"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "സ്പ്രെഡ്ഷീറ്റ്"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "അവതരണം"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "രേഖചിത്രം"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML രേഖ"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "പ്രധാപ്പെട്ട ഡോക്കുമെന്റ് "
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "സൂത്രവാക്യം"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ഡേറ്റാബെയിസ്"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 സ്പ്രെഡ്ഷീറ്റ് മാതൃക"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "ഓപ്പണ്‍ഓഫീസ് 1.0 ഡ്രോയിങ്ങ് മാതൃക"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 പ്രസന്റേഷന്‍ മാതൃക"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 ടെക്സ്റ്റ് ഡോക്യുമെന്റ് മാതൃക"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ലോക്കല് ഡ്രൈവ്"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ഡിസ്ക് ഡ്രൈവ്"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ഡ്രൈവ്"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "നെറ്റ്വര്ക്ക് കണക്ഷന്"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS പവര്പോയിന്റ് ഡോക്കുമെന്റ്"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS ഏക്സല് മാതൃക"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS പവര്പോയിന്റ് ഡോക്കുമെന്റ്"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 ഫോര്‍മുല"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 ചാര്‍ട്ട്"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 ഡ്രോയിങ്"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 സ്പ്രെഡ്ഷീറ്റ്"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 പ്രസന്റേഷന്‍"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 ടെക്സ്റ്റ് ഡോക്യുമെന്റ്"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "ഓപ്പണ്‍ഓഫീസ്.ഓര്‍ഗ് 1.0 മാസ്റ്റര്‍ ഡോക്യുമെന്റ്"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML ഡോക്കുമെന്റ്"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് ഡാറ്റാബേസ് "
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് ചിത്രരചന"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് സൂത്രവാക്യം"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് മുഖ്യഡോക്കുമെന്റ്"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് അവതരണം"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് സ്പ്രെഡ് ഷീറ്റ് "
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് ടെക്സ്റ്റ്"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് സ്പ്രെഡ്ഷീറ്റ് മാതൃക "
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് ചിത്രരചന മാതൃക"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് അവതരണ മാതൃക"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ഓപ്പണ് ഡോക്കുമെന്റ് ടെക്സ്റ്റ് മാതൃക"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME എക്സ്റ്റെന്‍ഷന്‍"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ml/svx/messages.po b/source/ml/svx/messages.po
index dea30d00252..1e73155519d 100644
--- a/source/ml/svx/messages.po
+++ b/source/ml/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8004,6 +8004,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12542,88 +12547,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "പരിവേഷ എഡിറ്റര്"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "പ്രയോഗിക്കുക"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "ജോലിസ്ഥനം"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "തിരഞ്ഞെടുക്കുക"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "ചതുര്ഭുജം"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "അണ്ഡവൃത്തം"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "ബഹുഭുജം"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "പോയിന്റുകള്‍ ചിട്ടപ്പെടുത്തുക"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ബിന്ദുക്കള് നീക്കുക"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ബിന്ദുക്കള് ചേര്ക്കുക"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ബിന്ദുക്കള് നീക്കം ചെയ്യുക"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "സ്വയം പരിവേഷം"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr " ശിഥിലീകരിക്കുക"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "ചുവപ്പ്"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "ചായപ്പലക"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12951,123 +12961,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr " അടിക്കുറിപ്പ്"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr " ചിത്ര ഭൂപട എഡിറ്റര് "
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "പ്രയോഗിക്കുക"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "തുറക്കുക"
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "സംഭരിക്കുക"
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "അടയ്ക്കുക"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "തിരഞ്ഞെടുക്കുക"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "ചതുര്ഭുജം"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "അണ്ഡവൃത്തം"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "ബഹുഭുജം"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "തന്നെയുണ്ടാകുന്ന ബഹുഭുജം"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "പോയിന്റുകള്‍ ചിട്ടപ്പെടുത്തുക"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ബിന്ദുക്കള് നീക്കുക"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ബിന്ദുക്കള് ചേര്ക്കുക"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ബിന്ദുക്കള് നീക്കം ചെയ്യുക"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr " ശിഥിലീകരിക്കുക"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "ചുവപ്പ്"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "സജീവം"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "മാക്രോ"
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "സവിശേഷതകള്: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "മേല്‍വിലാസം"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ഫ്രെയിം"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/ml/sw/messages.po b/source/ml/sw/messages.po
index 99367e996a5..72ac8cb5a07 100644
--- a/source/ml/sw/messages.po
+++ b/source/ml/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ml\n"
@@ -3185,9 +3185,9 @@ msgid "Change object title of $1"
msgstr "$1-ന്റെ ഒബ്ജക്ട് തലക്കെട്ട് മാറ്റുക"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1-നുള്ള വിവരണം മാറ്റുക"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12610,147 +12610,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12760,152 +12760,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14007,7 +14007,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17489,50 +17489,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "തിരനോട്ടം"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "തിരനോട്ടം"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
#, fuzzy
msgctxt "tocdialog|index"
msgid "Type"
msgstr "തരം"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "പ്രവേശനങ്ങള്"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "ശൈലികള്‍"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "സ്തംഭം"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "പശ്ചാത്തലം"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "തിരനോട്ടം"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "തലം"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17776,324 +17776,324 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "എഡിറ്റു ചെയ്യുക"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "ശീര്‍ഷകം:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "തരം"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "പട്ടിക വിഷയം"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "ഉപയോക്താവു് നിര്‍ദ്ദേശിച്ചതു്"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ഗ്രന്ഥസൂചിക"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ന് (_o):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "മുഴുവന് ഡോക്കുമെന്റ്"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "അദ്ധ്യായം"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "ബാഹ്യരേഖ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "പട്ടികകള്"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr " ടെക്സ്റ്റ് ഫ്രെയിം"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ഗ്രാഫിക്സ്"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE വസ്തു"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "നിബന്ധനയുള്ള ശൈലികള്‍"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "ശൈലികള്‍"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "ക്യാപ്ഷന്"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "വസ്തുവിന്റെ പേരു്"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "വിഭാഗം"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "പ്രദര്‍ശനം"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "റഫറന്സ്"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "വിഭാഗവും സംഖ്യയും"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "തലക്കെട്ടിനുള്ള വാചകം"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "ബ്രാക്കറ്റ്"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[none]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
#, fuzzy
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "കേയ്സ് സെന്സിറ്റീവ്"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ഫയല്‍"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "ഐച്ഛികങ്ങള്‍"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ഭാഷ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "കീ വിഭാഗം"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "ക്രമത്തിലാക്കുക"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "തലം"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(ഖണ്ഡിക ശൈലി: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "സഹജം"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_ചിട്ടപ്പെടുത്തുക"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/mn/cui/messages.po b/source/mn/cui/messages.po
index d9c7fd539f6..3cd0740d7ae 100644
--- a/source/mn/cui/messages.po
+++ b/source/mn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,107 +1652,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Хүрээг нь зурахгүй"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Зөвхөн гадна талын хүрээг нь зурах"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Гадна талын хүрээ болон хэвтээ шугамуудыг зурах"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Гадна талын хүрээ болон бүх дотоод шугамуудыг зурах"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Гадна талын хүрээг дотоод шугамуудыг өөрчлөхгүйгээр зурах"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Зөвхөн диагонал шугамуудыг зурах"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Хүрээг бүтнээр нь зурах"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Зөвхөн зүүн ба баруун хүрээнүүдийг зурах"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Зөвхөн дээр ба доод хүрээг зурах"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Зөвхөн зүүн хүрээг зурах"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Дээд ба доод хүрээ болон бүх дотоод шугамуудыг зурах"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Зүүн ба баруун хүрээ болон бүх дотоод шугамуудыг зурах"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Сүүдэргүй"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Сүүдрийг баруунд доод тал руу чулуудах"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Сүүдрийг баруунд дээд тал руу чулуудах"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Сүүдрийг зүүн доод тал руу чулуудах"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Сүүдрийг зүүн дээд тал руу чулуудах"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1795,7 +1790,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1915,7 +1910,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2155,7 +2150,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2410,12 +2405,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2485,7 +2480,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2565,7 +2560,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2806,7 +2801,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3434,66 +3429,71 @@ msgid "About %PRODUCTNAME"
msgstr "Дараахи %PRODUCTNAME-ын тухай"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Оруул_гууд"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Вэб хуудас"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Орон нутгийн схем: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME нь орчин үеийн, ашиглахад амар, үнэгүй буюу нийтэд зориулсан үгтэй, хүснэгттэй, үзүүлэнтэй ажиллах ба ондоо их олон ажиллагаатай програмын цуглуулга юм."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "ЛибреОфис нь OpenOffice.org дээр үндэслэсэн."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME нь OpenOffice.org дээр үндэслэсэн ЛибреОфис-с гаралтай."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Энэ бүтээгдэхүүн нь %OOOVENDOR-с ашиглалтанд өгөгдсөн байна."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://mn.libreoffice.org/about-us/credits/"
@@ -3610,17 +3610,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Орлуулах"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Орлуу_лах"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Дараахиар орлуулах:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Зөвхөн бичвэр"
@@ -4492,6 +4492,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5686,29 +5846,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Тодруулга"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Блок:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Нэр"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9461,85 +9621,85 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Тусламж"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME диалог"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME диалог"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Баримтын төлөв"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ба"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME-г системийн эхлэлд ачаалах"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Системийн самбарын түргэн эхлүүлэгчийг хаах"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11513,24 +11673,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12197,102 +12342,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13376,27 +13425,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/mn/extensions/messages.po b/source/mn/extensions/messages.po
index 4597d78369f..dbb5eeff8d0 100644
--- a/source/mn/extensions/messages.po
+++ b/source/mn/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3247,191 +3247,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "%1 хүснэгтийн баганын загвар"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Товч нэр"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Зохиогч(ид)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Publisher"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Бүлэг"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Хянан шалгагч"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Төрөл"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Жил "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Гарчиг"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Address"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ИСБН"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "~Хуудас(нууд)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Хэ~влэлт"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~Номын нэр"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Диск"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Хэвлэлтийн т~өрөл"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Байг~ууллага"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Инс~титут"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Их сургууль"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "~Тайлангийн Төрөл"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Сар"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Сэтгүүл"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Тоо"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "~Анги"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Тэмдэг~лэгээ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Тэмдэглэл"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "Хаяг (URL)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Хэрэглэгчийн-тод. талбар ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Хэрэглэгчийн-тод. талбар ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Хэрэглэгчийн-тод. талбар ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Хэрэглэгчийн-тод. талбар ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Хэрэглэгчийн-тод. талбар ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3615,31 +3615,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Холбоос талбарууд"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Зөвлөмж"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Үндсэн маягтын идэвхтэй өгөгдлийн нарийвчилсан шинж чанарыг харуулахын тулд дэд маягтууд хэрэглэж болно. Үүнийг та дэд маягтын ямар багана үндсэн маягтын ямар баганатай таарахыг тодорхойлон хийнэ."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Тэмдэглээс"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po
index b59c94418ff..880a34bdba9 100644
--- a/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23754,6 +23754,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26131,6 +26140,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26149,6 +26167,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/mn/sc/messages.po b/source/mn/sc/messages.po
index f21548dc2f0..76c5c216552 100644
--- a/source/mn/sc/messages.po
+++ b/source/mn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15669,6 +15669,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16242,12 +16247,12 @@ msgstr "Нөхцөлт хэлбэржүүлэлт"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17554,90 +17559,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Х~аах"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Шинэ бичлэг"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "Шинэ"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Устгах"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Сэргээх"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Өмнөх бичлэг"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Дараагийн бичлэг"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Х~аах"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "Хаяг (URL)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Гүйлгэн үзэх..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Өгөгдлийн сангийн муж"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19454,36 +19416,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Өгөгдөл"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Багана"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Мөр"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Бүлэглэгдсэн:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Дотоод"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19631,167 +19598,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22443,17 +22412,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24434,112 +24413,117 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~Цонх"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Огтлолцлолын торны шугамууд"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Үзүүл"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Далдал"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Хуудас таслах"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Диаграмм"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Дүрслэл объектууд"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Үзүүл"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Далдал"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Үзүүл"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Далдал"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Үзүүл"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Далдал"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Объектууд"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/mn/scp2/source/ooo.po b/source/mn/scp2/source/ooo.po
index fd826351f8a..7b86f13886f 100644
--- a/source/mn/scp2/source/ooo.po
+++ b/source/mn/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Баримт нээх"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/mn/scp2/source/winexplorerext.po b/source/mn/scp2/source/winexplorerext.po
index 882ff2a06ba..ae4621aa8eb 100644
--- a/source/mn/scp2/source/winexplorerext.po
+++ b/source/mn/scp2/source/winexplorerext.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 00:32+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 23:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mn\n"
@@ -12,8 +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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369351420.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "%PRODUCTNAME баримтуудын мэдээллийн тухай харуулахын (тоймоор нягтлан харах гэх мэт) тулд Майкрософт Виндовс Хөтчийг идэвхжүүлнэ."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/mn/sd/messages.po b/source/mn/sd/messages.po
index 964a409165a..5df22c93b33 100644
--- a/source/mn/sd/messages.po
+++ b/source/mn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2644,6 +2644,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3136,164 +3141,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4779,160 +4969,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/mn/sfx2/messages.po b/source/mn/sfx2/messages.po
index ad11add8c8b..714ed4b873e 100644
--- a/source/mn/sfx2/messages.po
+++ b/source/mn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -908,39 +908,34 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Файл оршин байна. Дарах уу?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Буцаан олгох"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Энэ нэр аль хэдийнэ хэрэглэгдсэн байна."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Загвар байхгүй байна."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -950,7 +945,7 @@ msgstr ""
"Энэ загвар нь үндсэн загвараар хэрэглэгдэх боломжгүй.\n"
"Учир нь рекурс хамаарлыг дагуулж болно."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -959,7 +954,7 @@ msgstr ""
"Нэр хэдийнэ өгөгдмөл загварт өгөгджээ.\n"
"Өөр нэр сонгоно уу."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -967,96 +962,96 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Жолоодлого"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Алдаатай нууц үгийн батламж"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Илгээх"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Фонт"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Хувилбарын тайлбар оруулах"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Шатлах"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Дүүргэх форматын горим"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Шинэ хэлбэр сонголтоос"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Загвар шинэчлэх"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Та бичилтийг таслахыг үнэхээр хүсэж байна уу? Энэ цэг хүртэл бичигдсэн бүх алхам устана."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Бичилтийн цуцлах"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Хэвүүд анхны хэрэглээнд бэлтгэгдэж байна."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1065,7 +1060,7 @@ msgstr ""
"Өгөгдсөн хэвлэгч олдсонгүй.\n"
"Хэвлэгчээ сонгоод дахин оролдож үзнэ үү."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1074,17 +1069,17 @@ msgstr ""
"Хэвлэгчийг эхлүүлж чадсангүй.\n"
"Хэвлэгчийнхээ тохируулгыг шалгана уу."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Хэвлэгч завгүй"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (зөвхөн-унших)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1095,7 +1090,7 @@ msgstr ""
"Та шинэ тохиргоог идэвхтэй баримтанд\n"
"хадгалахыг хүсэж байна уу?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1106,7 +1101,7 @@ msgstr ""
"Шинэ тохиргоонууд нь идэвхитэй буй\n"
"баримтанд хадгалагдах шаардлагатай юу?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1117,7 +1112,7 @@ msgstr ""
"Та шинэ тохиргоог идэвхитэй баримтанд\n"
"хадгалахыг хүсэж байна уу?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1127,7 +1122,7 @@ msgstr ""
"Хэвлэх ажил дуусч байгаагаас шалтгаалан\n"
" баримт нь хаагдах боломжгүй."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1135,7 +1130,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1143,18 +1138,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Хандах эрх дутагдсанаас шалтгаалан баримт нь засварлагдах боломжгүй. Баримтын хуулбарыг засварлах уу?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1162,353 +1157,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (засагдсан баримт)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Баримт засварлах"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Баримтын файл"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Эрэмбэлэх тохируулга"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Өөрийн хөдөлгөөн"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Устгах"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1871,33 +1876,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Хувилбарын тайлбар"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-#, fuzzy
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Нэр"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Төрөл"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Утга"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Төрөл"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Тийм"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Үгүй"
@@ -1907,18 +1896,18 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
#, fuzzy
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Нэр"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Төрөл"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Утга"
@@ -2060,19 +2049,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Байрлал:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Төрөл:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Нууц үг _өөрчлөх"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2083,29 +2072,29 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Ерөнхий"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
#, fuzzy
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Тайлбар"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2335,6 +2324,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/mn/shell/messages.po b/source/mn/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/mn/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/mn/starmath/messages.po b/source/mn/starmath/messages.po
index 21986d9247d..21c48763309 100644
--- a/source/mn/starmath/messages.po
+++ b/source/mn/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1617,278 +1617,303 @@ msgid "Examples"
msgstr "Жишээ"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Стандарт"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Налуу"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Бүдүүн"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "хар"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "цэнхэр"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "ногоон"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
#, fuzzy
msgctxt "STR_RED"
msgid "red"
msgstr "улаан"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "Цэнхэр"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "Ягаан"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Саарал"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Цаг"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "Шар"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "далдлалт"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "Хэмжээ"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "фонт"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "зүүн"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "төв"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "баруун"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Тушаал"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Томьёо"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Баримтыг хадгалж байна..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Томьёо"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "АЛДАА :"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Өөр тэмдэгт шаардлагатай"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' шаардлагатай"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' шаардлагатай"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' шаардлагатай"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' шаардлагатай"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' шаардлагатай"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Өнгө шаардлагатай"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' шаардлагатай"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Агуулга"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Гарчиг"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Томьёон дахь бичвэр"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Хүрээ"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Хэмжээ"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Жинхэнэ хэмжээ"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Хуудсанд тааруулах"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1958,6 +1983,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "элемент"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/mn/svtools/messages.po b/source/mn/svtools/messages.po
index f612b670534..0059fd7b45c 100644
--- a/source/mn/svtools/messages.po
+++ b/source/mn/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1546 +16,1548 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195723.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Буцаах:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Сэргээх:"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Давтах:"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Хэлбэржүүлээгүй бичвэр"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx Internal холбоосын төлөвийн мэдээлэл"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape Тэмдэглэгээ"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star Сервер хэлбэржүүлэлт"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star Объект хэлбэржүүлэлт"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Апплет объект"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Плаг-ин объект"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 объект"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 объект"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 объект"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 объект"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 объект"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 объект"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 4.0 объект"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw объект"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 объект"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 объект"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 объект"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc объект"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 объект"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 объект"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart объект"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 объект"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 объект"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage объект"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 объект"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 объект"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath объект"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 объект"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 объект"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint объект"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Силк (Sylk)"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word объект"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet объект"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office document объект"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Тэмдэглэл баримтын мэдээлэл"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx баримт"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 объект"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "График объект"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
#, fuzzy
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Эх баримт"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
#, fuzzy
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Дүрслэл"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
#, fuzzy
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Диаграмм"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
#, fuzzy
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Эх баримт"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows метафайл"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Өгөгдлийн эх объект"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Өгөгдлийн эх хүснэгт"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL асуулга"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
#, fuzzy
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 Дүрслэл"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Холбоос"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML хэлбэржүүлэлт ямар нэгэн тайлбаргүй"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% объектыг оруулах боломжгүй."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% файлаас объектыг оруулах боломжгүй."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Нэмэлт объектууд"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Үл мэдэгдэх эх"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Нэр"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Хэмжээ"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Өөрчлөгдсөн огноо"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Төрөл"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Байтууд"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "КБ"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MБ"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ГБ"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Мөр: %1, Багана: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ",Төрөл: %1, Хаяг (URL): %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Хавтас"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Файл"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Хоосон талбар"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Үсэг тоон"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Энгийн"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Тэмдэгтийн олонлог"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Толь бичиг"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Ханзны буулгалт"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Зураас"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Радикал"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Юникод"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Жуин"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Утасны дэвтэр"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Авиа зүй (Үсэг тоо эхэнд)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Авиа зүй (Үсэг тоо эцэст)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Үсэг тоон"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Толь бичиг"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Ханз буулгалт"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Радикал"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Зураас"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Жуин"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Авиа зүй (үсэг тоо эхэндээ, үеэр бүлэглэгдэнэ)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Авиа зүй (үсэг тоо эхэндээ, гийгүүлэгчээр бүлэглэгдэнэ)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Авиа зүй (үсэг тоо эцэстээ, үеэр бүлэглэгдэнэ)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Авиа зүй (үсэгтоо эцэстээ, гийгүүлэгчээр бүлэглэгдэнэ)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Өнөөдөр"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Байхгүй"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Хөнгөн"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Хөнгөн налуу"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Хэвийн"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Налуу"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Бүдүүн"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Бүдүүн налуу"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Хар"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Хар налуу"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Ном"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Нарийсгалт"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "хугас бүдүүн"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Таны дэлгэц ба хэвлэгч дээр адилхан фонт ашиглагдах болно."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Энэ бол хэвлэгчийн фонт. Дэлгэцийн зураг дээр өөрчлөгдөж магадгүй."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Энэ фонтын хэлбэр төстэй болно эсвэл хамгийн төстэй хэлбэр ашиглагдана."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Энэ фонт суугаагүй байна. Боломжит хамгийн төстэй фонт ашиглагдана."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Гүйлгэн үзэх..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Цувааг доош зөөх"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Зүүн тийш шилжүүлэх"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Баруун тийш шилжүүлэх"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Доош шилжүүл"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Нэмж оруулах"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Хэвтээ гадагш"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Босоо шугам"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 Бит хязгаар"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 Бит солигдмол"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 Бит саарал"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 Бит саарал"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 Бит жинхэнэ өнгөт"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Үнэ"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Эрэмбэлэх"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Завсарлага"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Бэлэн байдалд оруулж байна..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Хүлээлт"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "хэвлэж байгаа"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Алдаа"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "~Хуудас устгах"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Санах ой хангалтгүй."
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Өгөгдмөл хэвлэгч"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d баримтууд"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Дуусгах"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Үргэлжлүүлэх>"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<<~Буцах"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Алхмууд"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<байхгүй>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Компани"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Салбар"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Нэр"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Овог"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Гудамж"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Улс"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ЗИП код"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Хот"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Гарчиг"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Байрлал"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Хаягийн хэлбэр"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Нэрийн эхний үсэг"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Захидал эхлэх үгс"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Утас: Гэр"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Утас: Ажил"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "Хаяг (URL)"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Тэмдэглэл"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Хэрэглэгч 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Хэрэглэгч 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Хэрэглэгч 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Хэрэглэгч 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Муж"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Утас: Офис"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Пэйжир"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Гар утас"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Утас: бусад"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Цаглабар"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Урих"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE шаардлагатай"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE-г сонго"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE эвдэрсэн байна"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Эх код"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Тэмдэглэгээ файл"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "График"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Тохиргооны файл"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Програм"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Өгөгдлийн сангийн хүснэгт"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Системийн файл"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word баримт"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Тусламж файл"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML баримт"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Архив файл"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Протокол файл"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 Хэв"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 мастер баримт"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 Хэв"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Бичвэр файл "
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Холбоос"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 Хэв"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel баримт"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel хэв"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch файл"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Файл"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Хавтас"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Бичвэр баримт"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Хүснэгт баримт"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Үзүүлэн"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Дүрслэл"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML баримт"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Мастер баримт"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Томьёо"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Өгөгдлийн сан"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 Хүснэгтийн эх загварын хэв"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 Дүрслэлийн эх загварын хэв"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 Үзүүлэнгийн эх загварын хэв"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 Бичвэр баримтийн эх загварын хэв"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Локал хөтлөгч"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Диск драйвер"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM драйвер"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Сүлжээний холболт"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint баримт"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint хэв"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint үзүүлэн"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 Томьёо"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Диаграмм"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Дүрслэл"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Хүснэгт баримт бичиг"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 Үзүүлэн"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Бичвэр баримт бичиг"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 Эх баримт"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML баримт"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument өгөгдлийн сан"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument дүрслэл"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument томьёо"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument мастер баримт"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument үзүүлэн"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument хүснэгт баримт"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument бичвэр"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument хүснэгт баримтын Хэв"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument дүрслэлийн хэв"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument үзүүлэнгийн хэв"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument бичвэрийн хэв"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME өргөтгөл"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/mn/svx/messages.po b/source/mn/svx/messages.po
index c765d69147f..f003ba5696e 100644
--- a/source/mn/svx/messages.po
+++ b/source/mn/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8069,6 +8069,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12623,87 +12628,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Хүрээ засварлагч"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Хэрэглэх"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Ажлын талбар"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Сонгох"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Тэгш өнцөгт"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Эллипс"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Олон өнцөгт"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Цэг засах"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Цэгүүдийг шилжүүлэх"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Цэгүүд оруулах"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Цэгүүдийг устгах"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Автомат Хүрээлэлт"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Буцаах"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Улаан"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13039,122 +13049,116 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Хөл"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Газрын зурган засварлагч"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Хэрэглэх"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Нээх..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Хадгалах..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Хаах"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Сонгох"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Тэгш өнцөгт"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Эллипс"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Олон өнцөгт"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Чөлөөтэй олон өнцөгт"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Цэг засах"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Цэгүүдийг шилжүүлэх"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Цэгүүд оруулах"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Цэгүүдийг устгах"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Буцаах"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Улаан"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Идэвхжүүлсэн"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Макро..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Тодруулга:"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Хаяг:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Блок"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/mn/sw/messages.po b/source/mn/sw/messages.po
index 06949c13fc8..a22ea339be9 100644
--- a/source/mn/sw/messages.po
+++ b/source/mn/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mn\n"
@@ -3219,7 +3219,7 @@ msgid "Change object title of $1"
msgstr "Объектийн гарчиг $1 өөрчлөх"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12776,147 +12776,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12926,152 +12926,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14196,7 +14196,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17771,51 +17771,51 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Нягтлан харах"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Нягтлан харах"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Төрөл"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "~Бичлэг"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Загварууд"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
#, fuzzy
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Багана"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Дэвсгэр"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Нягтлан харах"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Төвшин"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -18059,326 +18059,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Засах..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Гарчиг"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Төрөл"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Агуулгын хүснэгт"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Хэрэглэгч-тодорхойлсон"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Ном зүй 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Маягт"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~Бүтэн баримт"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Бүлэг"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Гадаад шугам"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
#, fuzzy
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Хүснэгт"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Бичвэрийн блок"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "График"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "ОЛЕ Объектууд"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Нөхцөлт загварууд"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Загварууд"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Тохируулга"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Объектын нэр"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Ангилал "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Үзүүлэх"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Хамаарал"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Ангилал ба дугаар"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Тэмдэглэгээний бичвэр"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Х~аалт"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[none]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Файл"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
#, fuzzy
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Тохируулга"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Хэл"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Товчлуурын төрөл"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Эрэмбэлэх"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Төвшин"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(Параграфын хэлбэр: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Үндсэн өгөгдмөл"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Засах"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/mni/cui/messages.po b/source/mni/cui/messages.po
index e0bdd0cd854..669127dfcac 100644
--- a/source/mni/cui/messages.po
+++ b/source/mni/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1705,107 +1705,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "মমি লৈতে"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1848,7 +1843,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1968,7 +1963,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2208,7 +2203,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2463,12 +2458,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2538,7 +2533,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2618,7 +2613,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2859,7 +2854,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3487,68 +3482,73 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME গী মরমদা"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ঐগী ৱেবসাইত"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME API"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3673,19 +3673,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "~শিন্দোকপা"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "~শিন্দোকপা"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "অপাকপা"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4564,6 +4564,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "খ্বাইদগী তেনবা ৱাহৈ"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5732,29 +5892,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "প্রোপর্তিশিং"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ফিবান:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "মিং"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9539,85 +9699,85 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "মতেং"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "দোকুমেন্ত মিং\tফিবম"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "অমসুং"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "সেস্তেম হৌগত্পা মতমদা %PRODUCTNAME লোদ তৌবা"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "থুনা হৌবা সিসত্রে ঙমদবা"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11579,24 +11739,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12247,102 +12392,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -13422,27 +13471,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/mni/extensions/messages.po b/source/mni/extensions/messages.po
index 3b039466eec..ea92c83cbb9 100644
--- a/source/mni/extensions/messages.po
+++ b/source/mni/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3255,191 +3255,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr " %1তেবলগী কলম অউত্পা"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "অতেনবা মিং"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "লেখক(বোৰ)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "অফোংবা"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "তাঙ্কক"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "অফোংবা(খোমজিন তাশিল্লিবা)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "মখল"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "চহী"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "মিংথোল"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "লৈফম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "লমাই(শিং)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "খুতনম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "কিতাপৰ শিৰোনাম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "ভোলুম"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "ফোংবগী মওং"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "সংস্থান"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "লোয়শং"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "বিশ্ববিদ্যালয়(মহৈকোল)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "রিপোৰ্তকী মখল"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "থা"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "জর্নেল(চেফোং)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "মশিং"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "মথং-মনাও"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "শন্দোকনা তাকপা"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "খংজিনগদবা"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "শক্তাক্লবা শিজিন্নরিবা ফিল্দ 1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "শক্তাক্লবা শিজিন্নরিবা ফিল্দ 2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "শক্তাক্লবা শিজিন্নরিবা ফিল্দ 3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "শক্তাক্লবা শিজিন্নরিবা ফিল্দ 4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "শক্তাক্লবা শিজিন্নরিবা ফিল্দ 5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3624,19 +3624,19 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "মরী লৈন্নবা ফিল্দশিং"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "পাউতাক পীবা"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
@@ -3645,13 +3645,13 @@ msgstr ""
" শিজিন্নবা যাগনি. মসি তৌনবগীদমক্তা সবফোর্মদা করম্বা কলমশিংনা মাস্তর ফোৰ্মগী \n"
" করম্বা কলমদা চান্নবগে হাযবদু অদোম্না মশক তাকপা তাই."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "লেবেল"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po
index 3599c098751..0c80b095daf 100644
--- a/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23774,6 +23774,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26134,6 +26143,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26152,6 +26170,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/mni/sc/messages.po b/source/mni/sc/messages.po
index fe3a94cf482..5551901602a 100644
--- a/source/mni/sc/messages.po
+++ b/source/mni/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15714,6 +15714,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
#, fuzzy
msgctxt "subtotalgrppage|liststore1"
@@ -16290,12 +16295,12 @@ msgstr "ফিবমগী ওইবা ফোরমেত তৌবা"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17601,90 +17606,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "লোইশিনবা (~C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "অনৌবা রেকোৰ্দ"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "অনৌবা"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "মুত্থত্পা"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "হন্না তুংশিনবা"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "মমাংগী রেকোৰ্দ"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "মথংগী রেকোৰ্দ"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "লোইশিনবা (~C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ব্রাউজ..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "দতাবেজগী থাকশিং"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19504,37 +19466,42 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "দাতা"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "কলম"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "পরেং"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "না কাংলুপ শেমলে: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "তংখাই চনবা"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "পেরামিতরশিং"
@@ -19685,167 +19652,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22490,17 +22459,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24484,112 +24463,117 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~ৱিন্দো"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Colour"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "উত্পা"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "লোত্পা"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "লমাইগী অহাংবা"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "চার্তশিং"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "অয়েকপা পোত্শকশিং"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "উত্পা"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "লোত্পা"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "উত্পা"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "লোত্পা"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "উত্পা"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "লোত্পা"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "পোত্শকশিং"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "জুম"
diff --git a/source/mni/scp2/source/ooo.po b/source/mni/scp2/source/ooo.po
index 805075487e0..e857b5df9c4 100644
--- a/source/mni/scp2/source/ooo.po
+++ b/source/mni/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "অহাংবা দোকুমেন্ত "
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/mni/scp2/source/winexplorerext.po b/source/mni/scp2/source/winexplorerext.po
index 8e116ba043c..00fc15db53f 100644
--- a/source/mni/scp2/source/winexplorerext.po
+++ b/source/mni/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 13:51+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2014-09-30 14:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1412086714.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "মাইক্ৰোসোফত ৱিন্দোজ এক্সপ্লোররনা %PRODUCTNAME দোকুমেন্তশিংগগী মরমদা ঈ-পাউ তথ্য উতনবা ঙমহল্লে, থম্বনেইল মমাংগী শক্তমগুম্না."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/mni/sd/messages.po b/source/mni/sd/messages.po
index 6fb016b0171..2c043032096 100644
--- a/source/mni/sd/messages.po
+++ b/source/mni/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2657,6 +2657,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3136,164 +3141,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML দিজাইন মমিং থোল্লো"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4782,160 +4972,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/mni/sfx2/messages.po b/source/mni/sfx2/messages.po
index 85179fb4667..adf3c899da4 100644
--- a/source/mni/sfx2/messages.po
+++ b/source/mni/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -927,39 +927,34 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ফাইলদু হান্না লৈরে. ওভর্রাইত তৌবা পাম্বরা?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~হন্না শেম্বা"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "মিংসি হান্না শিজিন্নরে."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "মসিগী স্তাইল অসি লৈতে."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -969,7 +964,7 @@ msgstr ""
"মসিগী মওংসি য়ুমফমগী মওং অমা ওইনা শিজিন্নবা য়াদে,\n"
"মরমদি মসিনা অমুক হন্না মমাংগী রিফরেন্স থোকহল্লক্কনি."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -978,7 +973,7 @@ msgstr ""
"দিফোল্ত মওংগুম্না মমিংসি হান্না লৈরে.\n"
"চানবিদুনা অতোপ্পা মমিং অমা খনবিয়ু."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -986,97 +981,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "নেভিগেতর"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "অরানবা পাসৱর্দাকী অরেপা খঙবা"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "থাবা"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ফোন্ত"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "ভর্সনগী মোত হাপচিনবা"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "মথং-মনাও নাইবা"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ফোর্মেত মখল মেনশিনবা"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "খনগত্পদগী অনৌবা মওং"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "মওং অপদেত তৌবা"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "অদোম্না তশেংনা রেকোর্দিংদু ককথত্পা পাম্বিবরা? হৌজিকফাওবদা রেকোর্দ তৌখ্রবা খোঙথাং খুদিংমক মাংলগনি."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "রেকোর্দিং ককথত্পা"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "অহানবা ওইনা শিজিন্ননবগীদমক নোমুনাশিং অহৌবা ওইহল্লে."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1085,7 +1080,7 @@ msgstr ""
"দিফোল্ত প্রিনেতর থীবা ফংদ্রে.\n"
"চানবিদুনা প্রিন্তর অমা খনবিয়ু অমশুং অমুক হন্না হোতনবিয়ু."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1094,17 +1089,17 @@ msgstr ""
"নম্নবা খুতলায় থবক হৌবা ঙমদ্রে.\n"
" চানবিদুনা অদোমগী প্রিন্তর কনফিগুরেশন য়েংশিনবিয়ু."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "নম্নবা খুতলায় চিল্লি"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(পানবখক)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"শিজিন্নবা য়ারিবা দোকুমেন্ততা \n"
"অদোম্না অনৌবা সেতিংসশিং সেভ তৌবা পাম্বিবরা?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1126,7 +1121,7 @@ msgstr ""
"শিজিন্নবা য়ারিবা দোকুমেন্ততা\n"
"অনৌবা সেতিংসশিং সেভ তৌগদ্রা?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1137,7 +1132,7 @@ msgstr ""
"শিজিন্নবা য়ারিবা দোকুমেন্ততা \n"
"অদোম্না অনৌবা সেতিংসশিং সেভ তৌবা পাম্বিবরা?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1147,7 +1142,7 @@ msgstr ""
"ছপা নম্বগী থবক চত্থরিবা মরমনা\n"
"দোকুমেন্ততু লোয়শিনবা য়াদ্রে."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1155,7 +1150,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1163,18 +1158,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ইশিনবা য়াবগী হক মাংখিবনা মরম ওইদুনা ওইবা য়াই মসিগী দোকুমেন্তসি শেমদোক-শাদোকপা য়াররোয়. অদোম্না দোকুমেন্ততুগী কোপি অমা শেমদোক-শাদোকপা পাম্বিবরা?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1182,353 +1177,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "অমুক হন্না শেমজিল্লবা দোকুমেন্ত"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "দোকুমেন্ত শেমদোক্লো"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ফাইল দোকুমেন্ত"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "মথং-মনাও শেম্বগী অপাম্বশিং"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Customisation"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "লৌথোকপা"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1886,32 +1891,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "ভর্সনগী মোত"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "মমিং"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "মখল"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "_വില"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "মখল"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "হোয"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "নত্তে"
@@ -1921,17 +1911,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "মমিং"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "মখল"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "_വില"
@@ -2072,19 +2062,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "লৈফম:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "মখল:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "পাসৱাৰ্দ হোংদোকপা"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2096,28 +2086,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "মসিগী প্রোপর্তিশিং"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "জেনরেল"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "শন্দোকনা তাকপা"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "সেক্য়ুরিতি"
@@ -2342,6 +2332,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/mni/shell/messages.po b/source/mni/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/mni/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/mni/starmath/messages.po b/source/mni/starmath/messages.po
index 23aad65935c..b0024175dd4 100644
--- a/source/mni/starmath/messages.po
+++ b/source/mni/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1646,273 +1646,298 @@ msgid "Examples"
msgstr "খুদম"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "স্তেন্দর্দ"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "অপৈবা"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "অচৌবা"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "অমুবা"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "হীগোক"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "অশংবা"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "অঙাংবা"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "শংবান্নবা হীগোক"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "শৌগ্রি মপাল মচু"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "উত মচু"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "মতম"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "নাপু মচু"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "লোত্পা"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "মচাও-মরাক"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "ফোন্ত"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ওই"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "মযাই"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "যেৎ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "থৌদাৱাশিং"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "ফোর্মুলা"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "দোকুমেন্ত সেভ তৌরি..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION ফোর্মুলা"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR :"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "থাজদবা ময়েক"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' ওইবা য়াবা"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' ওইবা য়াবা"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' ওইবা য়াবা"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' ওইবা য়াবা"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' ওইবা য়াবা"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "দরকার ওইবা মচু"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' ওইবা য়াবা"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME API"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "হীরম"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "মিংথোল"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ফোর্মুলা তেক্স"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "ফিবানশিং"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "অচৌ-অপিক"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "মশাগী অশেংবা মচাও-মরাক"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~লমায়দা চাশিনহনবা"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1988,6 +2013,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "এলিমেন্ত"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/mni/svtools/messages.po b/source/mni/svtools/messages.po
index dcb01062443..d8e1b5462b3 100644
--- a/source/mni/svtools/messages.po
+++ b/source/mni/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1540 +15,1542 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195730.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "তৌদবা:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "হন্না তৌবা:"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~অমুক হনবা: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "ফোর্মেত তৌদবা তেক্সত"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx ইন্তরনেত মরীদগী ফিভমগী ঈ-পাউ"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "নেতস্কেপ বুকমার্ক"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "স্তার সৰ্ভর ফোর্মেত "
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "স্তার ওবজেক্ত ফোর্মেত"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "এপলেত ওবজেক্ত"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "প্লগ-ইন ওবজেক্ত"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "স্তাররাইতর 3.0 পোত্শক"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "স্তাররাইতর 4.0 পোত্শক"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "স্তাররাইতর 5.0 পোত্শক"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "স্তাররাইতর/ৱেব 4.0পোত্শক"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "স্তাররাইতর/ৱেব 5.0 পোত্শক"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "স্তাররাইতর/মাস্তর 4.0 পোত্শক"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "স্তাররাইতর/মাস্তর 5.0 পোত্শক"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "স্তারদ্রো পোত্শক"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "স্তারদ্রো 4.0 পোত্শক"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "স্তারইম্প্ৰেস 5.0 পোত্শক"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "স্তারদ্রো 5.0 পোত্শক"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "স্তারকেলক বস্তু"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "স্তারকেলক 4.0 পোত্শক"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "স্তারকেলক 5.0 পোত্শক"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "স্তারচার্ত পোত্শক"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "স্তারচার্ত 4.0 পোত্শক"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "স্তারচার্ত পোত্শক"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "স্তারইমেজ পোত্শক"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "স্তারইমেজ 4.0 পোত্শক"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "স্তারইমেজ 5.0 পোত্শক"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "স্তারমেথ পোত্শক"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "স্তারমেথ 4.0 পোত্শক"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "স্তারমেথ 5.0 পোত্শক"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "স্তারওবজেক্ত পেইন্ত পোত্শক"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "সিল্ক"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "মাইক্ৰোসোফত ৱৰ্দ পোত্শক"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "স্তারফ্ৰেমসেত পোত্শক"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ওফিস দোকুমেন্ত পোত্শক"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "খংজিনগদবশিংগী দোকুমেন্তকী ঈ-পাউ"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx দোকুমেন্ত"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "স্তারচার্ত পোত্শক"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "গ্রাফিক পোত্শক"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "ৱিন্দোজ মেতাফাইল"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "দতা হৌফমগী পোত্শক"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "দতা হৌফমগী তেবল"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL ৱাহং"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "মরী"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "মোতশিং য়াওদনা HTML ফোর্মেত"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% পোত্শক হাপচিনবা ঙমদ্রে."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% ফাইলদগী পোত্শক হাপচিনবা ঙমদ্রে ."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "অহেনবা পোত্শকশিং"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "শকখংদবা হৌফম"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "মমিং"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "অচৌ-অপিক"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "শেমদোক্লবা তারিখ"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "মখল"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "বাইতস"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "পরিং: %1, কলম: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ",মখল: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ফোল্দর"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ফাইল"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "অহাংবা ফিল্দ "
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "অলফানিউমরিক"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "ময়েক্কী সেত"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ময়েক্কী সেত"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "দিক্সনারী"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "পিনয়িন"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "স্ত্রোক"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "মরুওইবা(মরু ফংবা)"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ইউনিকোদ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "জ্যুয়িন"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ফোন বুক"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "খোলহায়গী (অহানবা অলফানিউমরিক)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "খোলহায়গী(অরোয়বা অলফানিউমরিক)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "অলফানিউমরিক"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "দিক্সনারী"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "পিনয়িন"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "মরুওইবা(মরু ফংবা)"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "স্ত্রোক"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "জ্যুয়িন"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "খোলহায়গী (অহানবা অলফানিউমরিক, সিলেবলশিংনা শেম্বা কাংলুপ)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "খোলহায়গী (অহানবা অলফানিউমরিক, ব্যঞ্জন ময়েকশিংনা শেম্বা কাংলুপ)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "খোলহায়গী (অরোয়বা অলফানিউমরিক, সিলেবলশিংনা শেম্বা কাংলুপ )"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "খোলহায়গী (অরোয়বা অলফানিউমরিক, ব্যঞ্জন ময়েকশিংনা শেম্বা কাংলুপ)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ঙসি"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "অমত্তা নত্তে"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "অপাবা"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "অপাবা ইটালিক"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "চাং নাইবা"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ইটালিক"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "অচৌবা"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "অচৌবা ইটালীক"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "অমুবা"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "অমুবা ইটালীক"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "লাইরিক"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "তেনশল্লবা"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "তঙ্খাই ওইনা চাওবা"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "অদোমগী প্রিন্তর অমশুং ফিজং অনীমক্তা চপ মান্নবা ময়েক শিজিন্নগনি."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "মসি প্রিন্তরগী ময়েকনি. ফিজংগী মমি তোঙানবা য়াই."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "মসিগী ময়েক স্তাইল মান্নবা শারগনি নত্ত্রগা খ্বাইদগী নকনবা চান্নবা স্তাইল শিজিন্নরগনি."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "মসিগী ময়েকসি ইনস্তোল তৌদ্রি. খ্বাইদগী নকনবা চান্নবা অফংবা ময়েক শিজিন্নরগনি."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ব্রাউজ..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ফ্রেমগী মফম হোংউ"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ওইরোমদা চত্থোকপা"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "য়েতলোমদা চত্থোকপা"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "মখাদা কুমথবা"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "হাপচিনবা"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr " মরাখ ওইবা মপান"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "মযুং ওইবা রুলর"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 বিত থ্রেসহোল্দ"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 বিত দিথার্দ"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 বিত গ্রেস্কেল"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 বিত গ্রেস্কেল"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 বিত অশেংবা মচু"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "মমল"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "মথং-মনাও শেম্বা"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "লেপহনবা"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ইনিসিয়েলাইজিং..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "ঙাইরিবা"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "নমথোকপা"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
#, fuzzy
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "অশোয়বা"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "লমায় মুত্থত্পা"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "মপুংফাদবা নিংশিংবা"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "দিফোল্ত প্রিন্তর"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "ৱাহৈ দোকুমেন্তশিং"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~লোয়শিনবা"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "মথং > (~N)"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<<মতুং"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "খোংথাংশিং"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<অমত্তা নত্তে>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "কমপেনী"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "লোয়শং"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "অহানবা মিং"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "অন্তিম নাম"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "অরোয়বা মিং"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "লৈবাক"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Zip কোদ"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "সহর"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "মিংথোল"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "মফম"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "এদ্রেস ফোর্ম"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "ইনিসিয়েলস"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "তরাম-তরামবা লোয়শিনবা"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "তেলিফোন: য়ুম"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "তেলিফোন: থবক"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "খংজিনগদবা"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "শিজিন্নরিবা 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "শিজিন্নরিবা 2 "
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "শিজিন্নরিবা 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "শিজিন্নরিবা 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "রাজ্য"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "তেলিফোন: লোয়শং"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "পেজর"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "তেলিফোন (মোবাইল)"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "তেলিফোন: অতোপ্পা"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "কেলেন্দর"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "বার্তন"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE দরকার ওইরবা"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE খল্লু"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE শোয়রে"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "হৌরকফম কোদ"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "বুকমার্ক ফাইল "
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "গ্রাফিক্স"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "কনফিগ্যুরেসন ফাইল"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "শিজিন্নবা"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "দাতাবেজগী তেবল"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "সিস্তেম ফাইল "
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS ৱাৰ্দ দোকুমেন্ত"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "তেংবাং ফাইল"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML দোকুমেন্ত"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "আর্কাইভ ফাইল"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "লোগ ফাইল "
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "স্তারওফিস 5.0 নোমুনা"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "স্তাররাইতর 4.0 / 5.0 মাস্তর দোকুমেন্ত"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "স্তারওফিস 5.0 নোমুনা"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "তেক্স ফাইল"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "মরি"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "স্তারওফিস 5.0 নোমুনা"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS-এক্সেল দোকুমেন্ত"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS-এক্সেল নোমুনা"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "বেতচ ফাইল"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ফাইল"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ফোল্দর"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "তেক্স দোকুমেন্ত"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "স্প্ৰেদশীত"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "মফোংদোক"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "অয়েকপা"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML দোকুমেন্ত"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "মাস্তর দোকুমেন্ত"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "ফোর্মুলা"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "দাতাবেজ"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "লোকেল দ্রাইভ"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "দিস্ক দ্রাইভ"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM দ্রাইভ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "নেতৱার্ক শম্নবা"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS-পৱারপোইন্ত দোকুমেন্ত"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS-পৱারপোইন্ত নোমুনা"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS-পৱারপোইন্ত উতলু"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "মেথML দোকুমেন্ত"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ওপনদোকুমেন্ত দাতাবেজ"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ওপনদোকুমেন্ত অয়েকপা "
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ওপনদোকুমেন্ত ফোর্মুলা"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ওপনদোকুমেন্ত মাস্তর দোকুমেন্ত"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ওপনদোকুমেন্ত মফোংদোক"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ওপনদোকুমেন্ত স্প্ৰেদশীত"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ওপনদোকুমেন্ত তেক্স "
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ওপনদোকুমেন্ত স্প্ৰেদশীত নোমুনা "
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ওপনদোকুমেন্ত অয়েকপা নোমুনা"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ওপনদোকুমেন্ত অউত্পা নোমুনা "
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ওপনদোকুমেন্ত তেক্স নোমুনা "
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME শন্দোকপা"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/mni/svx/messages.po b/source/mni/svx/messages.po
index a5bc15b0336..7e4238ca400 100644
--- a/source/mni/svx/messages.po
+++ b/source/mni/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8095,6 +8095,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12620,87 +12625,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "কন্তোর ইদিতর"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "শিজিন্নবা"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "থবক্কী মফম"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "খনবা"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "রেক্তেঙ্গল"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ইলিপস"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "পোলিগোন"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "বিন্দুশিং শেমদোক-শাদোকপা"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "বিন্দুশিং মফম হোংবা"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "বিন্দুশিং হাপচিনবা"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "বিন্দুশিং মুথত্পা"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "মথন্তা চুমথোকপা"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "তৌদবা"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "অঙাংবা"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13040,123 +13050,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "ফুতর"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ইমেজমেপ ইদিতর"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "শিজিন্নবা"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "হাংঙো..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "সেভ তৌরো..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "লোনশিনবা"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "খনবা"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "রেক্তেঙ্গল"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ইলিপস"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "পোলিগোন"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "ফ্রিফোর্ম পোলিগোন"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "বিন্দুশিং শেমদোক-শাদোকপা"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "বিন্দুশিং মফম হোংবা"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "বিন্দুশিং হাপচিনবা"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "বিন্দুশিং মুথত্পা"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "তৌদবা"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "অঙাংবা"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "শিনবাংলিবা"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "মেক্রো..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "মগুনশিং:"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "লৈফম:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ফ্রেম"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/mni/sw/messages.po b/source/mni/sw/messages.po
index e3961f21986..5d69094f37a 100644
--- a/source/mni/sw/messages.po
+++ b/source/mni/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mni\n"
@@ -3229,7 +3229,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12772,147 +12772,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12922,152 +12922,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14185,7 +14185,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17754,49 +17754,49 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "অহনবা মীতয়েং"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "অহনবা মীতয়েং"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "মখল"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "এন্ত্রিশিং"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "মওংশিং"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "কলমশিং"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "হৌরকফম"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "অহনবা মীতয়েং"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "থাক"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -18049,325 +18049,325 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "শেমদোক-শাদোক তৌবা..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "মিংথোল:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "মখল"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "তেবলগী হীরম "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "শিজিন্নরিবা শন্দোক্না তাক্লে"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "বিব্লিওগ্রাফি 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ফোৰ্ম"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~দোকুমেন্ত পুম্নমক"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "তাঙ্কক"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "মপান্থোংগী ওইবা শক্তম"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "তেবলশিং"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "তেক্সতফোৰ্ম"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "গ্ৰাফিক্স"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE পোত্শকশিং"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "ফিবমগী ওইবা মওংশিং"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "মওংশিং"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "অপাম্বশিং"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "পোত্শক্কী মিং"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "কাংলুপ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "ফোঙদোকপা"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "মরী-মখোংশিং"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "কাংলুপ অমশুং মশিং"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "কেপসন তেক্সত"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "~ব্রেকেতশিং"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[অমত্তা নত্তে]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ফাইল"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "অপাম্বশিং"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "লোল"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "মথং-মনাও শেম্বা"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "থাক"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(পেরেগ্ৰাফ স্তাইল: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "দিফোল্ত"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "শেমদোক-শাদোকপা"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/mr/cui/messages.po b/source/mr/cui/messages.po
index cf7b529101d..084a83bf6cf 100644
--- a/source/mr/cui/messages.po
+++ b/source/mr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1653,107 +1653,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "किनार सेट करू नका"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "फक्त बाहेरची किनार सेट करा"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "बाहेरची किनार व आडव्या ओळी सेट करा"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "बाहेरची किनार व सर्व आंतरीक ओळी सेट करा"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "आंतरीक ओळी न बदलवता बाहेरची किनार सेट करा"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "फक्त कर्णरेषा सेट करा"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "सर्व चार किनारी सेट करा"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "फक्त डावे व उजवे किनार सेट करा"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "फक्त शीर्ष व तळ किनार सेट करा"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "फक्त डावे किनार सेट करा"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "शीर्ष व तळ किनार, व सर्व आंतरीक ओळी सेट करा"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "डावे व उजवे किनार, व सर्व आंतरीक ओळी सेट करा"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "छाया आढळली नाही"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "तळाच्या उजव्या बाजूस छाया दाखवा"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "शीर्षच्या उजव्या बाजूस छाया दाखवा"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "तळाच्या डाव्या बाजूस छाया दाखवा"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "शीर्षच्या डाव्या बाजूस छाया दाखवा"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1796,7 +1791,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1916,7 +1911,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2156,7 +2151,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2411,12 +2406,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2486,7 +2481,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2566,7 +2561,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2807,7 +2802,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3435,66 +3430,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME च्याविषयी"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "संदीप शेडमाके, २०१३ (_d)"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "संकेतस्थळ (_W)"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "बिल्ड ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME हे शब्द विश्लेषण, स्प्रेडशीटस्, प्रस्तुतिकरण व अधिककरीता आधुनिक, वापरण्यास सोपी, ओपन सोअर्स् प्रोडक्टिविटि संच आहे."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice हे OpenOffice.org वर आधारित आहे."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME हे LibreOffice पासून प्राप्त आहे जे OpenOffice.org यावर आधारित आहे."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "हे प्रकाशन %OOOVENDOR तर्फे पुरवले आहे."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3613,17 +3613,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "बदल करा (_R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "बदला (_c)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "याच्यासह (_W):"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "फक्त पाठ्य (_T)"
@@ -4490,6 +4490,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "किमान शब्दाची लांबी"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5645,30 +5805,30 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "गुणधर्म"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
#, fuzzy
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "URL (_U)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "फ्रेम (_r)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "नाव (_N):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
#, fuzzy
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "वैकल्पिक मजकूर (_t)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9376,84 +9536,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मदत"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME संवादचा वापर करा (_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "संवाद उघडा/साठवा"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME संवादचा वापर करा (_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "छपाई संवाद"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "छपाई \"document modified\" स्थिती सेट करते (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "दस्तऐवज स्थिती"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "अंतर्गत वर्षांचे विश्लेषण करा (_I) "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "आणि "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "वर्ष (दोन अंक)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "प्रणाली स्टार्ट-अपवेळी %PRODUCTNAME लोड करा"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray क्वीकस्टार्टर कार्यक्षम करा"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME क्वीकस्टार्टर"
@@ -11414,25 +11574,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "स्वयं रंग रूप"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox रंग रूप"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -12080,102 +12225,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "सुरक्षा पर्याय"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -13223,27 +13272,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/mr/extensions/messages.po b/source/mr/extensions/messages.po
index 93c7230f2bf..6cb29237a2a 100644
--- a/source/mr/extensions/messages.po
+++ b/source/mr/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3244,189 +3244,189 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "कोष्टक %1 साठी स्तंभ मांडणी"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "छोटे नाव"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "लेखक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "प्रकाशक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "धडा"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "संपादक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "प्रकार (_T)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "वर्षे (_Y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "शीर्षक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "पत्ता"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN (~I)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "पान(पाने) (~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "आवृत्ती (~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "पुस्तकाचे शीर्षक (~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "प्रमाण"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "प्रकाशन प्रकार (~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "संघटना (~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "संस्था (~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "विद्यापीठ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "अहवाल प्रकार (~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "महिना (_M)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "जर्नल"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "संख्या"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "श्रृंखला (~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "टिपण (~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "टीप"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "वापरकर्ता-व्याख्यित क्षेत्र 1 (~1)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "वापरकर्ता-व्याख्यित क्षेत्र 2 (~2)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "वापरकर्ता-व्याख्यित क्षेत्र 3 (~3)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "वापरकर्ता-व्याख्यित क्षेत्र 4 (~4)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "वापरकर्ता-व्याख्यित क्षेत्र 5 (~5)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3611,30 +3611,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "नवीन डाटा प्रकारकरिता नाव टाइप करा:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "क्षेत्रांना जोडा"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "सूचवा"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "प्रधान नमुन्यातील वर्तमान नोंदींच्या संदर्भांचा तपशीलवार डाटा प्रदर्शनासाठी उपनमुन्यांचा उपयोग करता येतो. असे करण्यासाठी, उपनमुन्यांतील कोणते स्तंभ प्रधान नमुन्यांतील स्तंभांना अनुरूप आहेत हे आपण निर्दिष्ट करू शकता."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "लेबल"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "लेबल"
diff --git a/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po
index b54d72e7d6b..51c2ad40dc3 100644
--- a/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mr/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -23739,6 +23739,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26079,6 +26088,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26097,6 +26115,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/mr/sc/messages.po b/source/mr/sc/messages.po
index 77e50b651f3..735c6065f02 100644
--- a/source/mr/sc/messages.po
+++ b/source/mr/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15588,6 +15588,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(निवडक प्रवेश)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16158,12 +16163,12 @@ msgstr "सशर्तींचे स्वरूपण"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17449,85 +17454,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "डाटा फॉर्म"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "बंद करा (_C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "नवा नोंद"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "नवीन (_N)"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "नष्ट करा (_D)"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "पूर्वस्थितीत आणा (_R)"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "मागील रेकॉर्ड (_P)"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "पुढील रेकॉर्ड (_x)"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "बंद करा (_C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "लाइव्ह डाटा स्ट्रिम्स"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-#, fuzzy
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "स्थानीय फाइल प्रणाली किंवा इंटरनेटमध्ये स्रोत दस्तऐवजाचे URL द्या."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "चाळणी करा (_B)..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "डाटाबेस व्याप्ति"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-#, fuzzy
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "सोअर्स स्ट्रिम"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19294,34 +19255,39 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "परिणामस्वरूपी"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "डाटा (_D)"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "स्तंभ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "ओळी"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "यानुरूप गट"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "अवधी"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "बाबी"
@@ -19475,167 +19441,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22253,17 +22221,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "परिणाम शोधा"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24195,109 +24173,114 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "रूपरेषा चिन्ह (_O)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "पटल"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "ग्रीड ओळी (_G):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "रंग (_C):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "दाखवा"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "रंगीत कप्पे असल्यास दाखवा"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "छुपे करा"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "पृष्ठ खंडन (_P)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "स्थानांतरनवेळी मदत ओळी (_w)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
#, fuzzy
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "दृश्यास्पद मदत"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
#, fuzzy
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "ऑब्जेक्ट्स किंवा प्रतिमा (_j):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "कोष्टक (_r):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "ऑब्जेक्ट्स्चे रेखाटन (_D):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "दाखवा"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "छुपे करा"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "दाखवा"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "छुपे करा"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "दाखवा"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "छुपे करा"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "ऑब्जेक्ट्स"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "पृष्ठांचे ताळमेळ करा (_y)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "मोठे करा"
diff --git a/source/mr/scp2/source/ooo.po b/source/mr/scp2/source/ooo.po
index 9d00564c1d7..cf0bfc7f7a4 100644
--- a/source/mr/scp2/source/ooo.po
+++ b/source/mr/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -35,6 +35,14 @@ msgstr "दस्तऐवज उघडा"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/mr/scp2/source/winexplorerext.po b/source/mr/scp2/source/winexplorerext.po
index cf126ba2fc1..6763feec7cb 100644
--- a/source/mr/scp2/source/winexplorerext.po
+++ b/source/mr/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 00:39+0200\n"
-"Last-Translator: Sandeep <sandeep.shedmake@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:11+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: mr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369354292.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "%PRODUCTNAME दस्तऐवजां बद्दल मायक्रोसॉफ्ट विंडोज एक्सप्लोररला माहिती दाखवायला सक्षम करतो, उदाहरणार्थ संक्षिप्त रूपात पूर्वदृश्य."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/mr/sd/messages.po b/source/mr/sd/messages.po
index 32a7d61322f..9703770e2b6 100644
--- a/source/mr/sd/messages.po
+++ b/source/mr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2650,6 +2650,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3116,164 +3121,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML रचनेला नाव द्या"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4740,160 +4930,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "बदल दाखवा"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/mr/sfx2/messages.po b/source/mr/sfx2/messages.po
index 312de9d4b8e..4cc3b9371ef 100644
--- a/source/mr/sfx2/messages.po
+++ b/source/mr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "गुणधर्म काढूण टाका"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -933,28 +928,28 @@ msgstr ""
"प्रविष्ट केलेले मुल्य निश्चित प्रकाराशी जुळत नाही.\n"
"मुल्य पाठ्य नुरूप संचयीत केले जाईल."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "फाइल आधीपासूनच अस्तित्वात आहे. खोडून पुन्हा लिहायचे?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "पूर्वनिर्धारितत आणा (~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "नाव आधीपासूनच वापरात आहे."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ही शैली अस्तित्वात नाही."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -964,7 +959,7 @@ msgstr ""
"ह्या शैलीचा उपयोग पाया शैलीच्या रूपात करता येणार नाही\n"
"कारण त्याचा परिणाम प्रत्यावर्ती संदर्भात होऊ शकेल."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -973,7 +968,7 @@ msgstr ""
"नाव आधीपासूनच नित्यस्थिती शैलीत आहे. \n"
"कृपया दुसरे नाव निवडा."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,95 +976,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "वापरातील शैली: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "दिशादर्शक"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "सदोष पासवर्डची खात्री"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "पाठवा"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "फाँट"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "आवृत्ती टिप्पणी दृश्य"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "स्टाइल सूची"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "श्रेणी"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "स्वरूपण अवस्था भरा"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "निवड केलेल्यातून नवी शैली"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "शैली अद्ययावत करा (~U)"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "आपल्याला नोंदणी केलेले रद्द करायचे आहे? आतापर्यंत नोंदणी केलेले सर्व क्रम रद्द होतील."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "नोंदणी केलेले रद्द करा"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "पहिल्या वापरासाठी नमुन्यांना सुरु केले जात आहे."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1078,7 +1073,7 @@ msgstr ""
"कोणताही मूळस्थितीचा मुद्रक सापडला नाही.\n"
"कृपया मुद्रक निवडा व परत प्रयत्न करा."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1087,17 +1082,17 @@ msgstr ""
"मुद्रक सुरु करू शकत नाही.\n"
"कृपया आपली मुद्रकाची अंतर्गत रचना तपासा."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "मुद्रक व्यस्त आहे"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (केवळ-वाचनीय)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1108,7 +1103,7 @@ msgstr ""
"आपणांस सक्रिय दस्तऐवजात नवीन\n"
"नियंत्रणाना साठवायचे?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1119,7 +1114,7 @@ msgstr ""
"नवीन नियंत्रणाना सक्रिय\n"
"दस्तऐवजात साठवायचे?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1130,7 +1125,7 @@ msgstr ""
"आपणांस सक्रिय दस्तऐवजात नवीन\n"
"नियंत्रणाना साठवायचे?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1140,7 +1135,7 @@ msgstr ""
"दस्तऐवज बंद करता येत नाही a\n"
"कारण छपाई काम चालू आहे."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1148,7 +1143,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1156,18 +1151,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "प्रवेश अधिकार अनुपस्थित असल्या कारणाने, हे दस्तऐवज संपादित केले जाऊ शकत नाही. आपणांस दस्तऐवजाची प्रत संपादित करायची आहे का?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1175,356 +1170,366 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (दुरुस्ती केलेले दस्तऐवज)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "सर्व्हरवर दस्तऐवज चेकआउट केले नाही"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "कंट्रोल्स कळवा"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "चेक-आउट"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "दस्तऐवज संपादित करा"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "दस्तऐवजाची स्वाक्षरी करा..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "डॉक करा"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "डॉक अशक्य करा"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "आणखी पर्याय"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "बाजूचीपट्टी डेक बंद करा"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "पसंतीकरण"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "पूर्वनिर्धारित पूर्वस्थितीत आणा"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "काढून टाका"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1899,32 +1904,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "आवृत्तीची टिपण्णी"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "नाव"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "प्रकार"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "मूल्य"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "प्रकार"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "होय"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "नाही"
@@ -1934,17 +1924,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "नाव"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "प्रकार"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "मूल्य"
@@ -2079,17 +2069,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ठिकाण (_L):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "प्रकार (_T):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "पासवर्ड बदला (_P)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "साचा:"
@@ -2100,27 +2090,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "याचे गुणधर्म "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "सर्वसाधारण "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "वर्णन"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "इच्छिक गुणधर्म"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS गुणधर्म"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "सुरक्षा"
@@ -2348,6 +2338,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/mr/shell/messages.po b/source/mr/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/mr/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/mr/starmath/messages.po b/source/mr/starmath/messages.po
index 3bbfc854ebd..661154fcf10 100644
--- a/source/mr/starmath/messages.po
+++ b/source/mr/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1667,274 +1667,299 @@ msgid "Examples"
msgstr "उदाहरण"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "ठराविक"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "तिरके"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ठळक"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "काळा"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "निळा"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "हिरवा"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "लाल"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "सियान"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "मॅजेन्टा"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ग्रे"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "वेळ"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "मरून"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "नेव्हि"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ऑलिव्ह"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "जांभळा"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "चंदेरी"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "टिअल"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "पिवळा"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "छुपे करा"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "आकार"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "फाँट"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "डावा"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "मध्य"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "उजवा"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "आदेश"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "सूत्र"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "दस्तऐवज जतन करत आहे..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION सूत्र"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "अनपेक्षीत अक्षर"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' अपेक्षीत"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' अपेक्षीत"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' अपेक्षीत"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' अपेक्षीत"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' अपेक्षीत"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "रंग आवश्यक"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' अपेक्षीत"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "अंतर्भूत माहिती"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "शिर्षक"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "सूत्र मजकूर"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "सीमारेखा"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "आकार"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "मूळ आकार"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "पानांत बसवा"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2002,6 +2027,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "घटक"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/mr/svtools/messages.po b/source/mr/svtools/messages.po
index d36cc8c16c1..83996af9949 100644
--- a/source/mr/svtools/messages.po
+++ b/source/mr/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1538 +16,1540 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195738.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "पूर्ववत् करा: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "पुन्हा करा (~d): "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "पुनः करा (~R): "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "अस्वरूपित मजकूर"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx अंतर्गत जुळणीपासून वस्तुस्थिति माहिती"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "नेटस्केप पुस्तकखुण"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टार सर्व्हर रूपण"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टार वस्तु रूपण"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "एप्लेट वस्तु"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लग-ईन वस्तु"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "स्टार रायटर 3.0 वस्तु"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "स्टार रायटर 4.0 वस्तु"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "स्टार रायटर 5.0 वस्तु"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "स्टाररायटर/वेब 4.0 वस्तु"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "स्टाररायटर/वेब 5.0 वस्तु"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "स्टाररायटर/प्रधान 4.0 वस्तु"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "स्टाररायटर/प्रधान 5.0 वस्तु"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "स्टारड्रॉ वस्तु"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "स्टारड्रॉ 4.0 वस्तु"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "स्टारइंप्रेस 5.0 वस्तु"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "स्टारड्रॉ 5.0 वस्तु"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "स्टारकॅल्क वस्तु"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "स्टारकॅल्क 4.0 वस्तु"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "स्टारकॅल्क 5.0 वस्तु"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "स्टारकोष्टक वस्तु"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "स्टारकोष्टक 4.0 वस्तु"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 वस्तु"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "स्टारप्रतिमा वस्तु"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "स्टारप्रतिमा 4.0 वस्तु"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "स्टारप्रतिमा 5.0 वस्तु"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "स्टारगणित वस्तु"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "स्टारगणित 4.0 वस्तु"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "स्टारगणित 5.0 वस्तु"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "स्टारवस्तु पेंटवस्तु"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "मायक्रोसॉफ्ट वर्ड वस्तु"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "स्टार चौकट संच वस्तु"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "कार्यालय दस्तऍवज वस्तु"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "टीपा दस्तऍवज माहिती"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx दस्तऍवज"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 वस्तु"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "चित्रालेख वस्तु"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
#, fuzzy
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 मास्टर दस्तऐवज"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
#, fuzzy
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 रेखाचित्र"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
#, fuzzy
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 मास्टर दस्तऐवज"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "विंडोज मेटाधारिका"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "डाटा स्रोत वस्तु"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "डाटा स्रोत तक्ता"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL शंका"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
#, fuzzy
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 रेखाचित्र"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "कडी"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "अपवाद शिवाय HTMLस्वरूपण"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "% वस्तु अंतर्भुत करता येत नाही."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% धारिकामधील वस्तु अंतर्भुत करता येत नाही."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "अधिक वस्तु"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "अज्ञात स्रोत"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "नाव"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "आकार"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "सुधारणा दिनांक"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "प्रकार"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बाइट्स"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "पंक्ति: %1,स्तंभ : %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", प्रकार: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "फोल्डर"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "धारिका"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "रिक्त क्षेत्र"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "अल्फान्युमेरीक"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "सर्वसाधारण"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "अक्षर संच"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोष"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिनयीन"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक्"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "रॅडीकल्"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "यूनीकोड"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "झूयीन"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "दूरध्वनी पुस्तक"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "उच्चारानुरूप (अल्फान्यूमेरीक पहिले)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "उच्चारानुरूप (अल्फान्यूमेरीक शेवट)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "अल्फान्युमेरीक"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोष"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिनयीन"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "रॅडीकल्"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक्"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "झूयीन"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "उच्चारानुरूप (आल्फान्यूमरिक पहिले, अभ्यासक्रमानुसार गट केले)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "उच्चारानुरूप (आल्फान्यूमरिक पहिले, व्यंजनदर्शक वर्णानुसार गट केले)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "उच्चारानुरूप (आल्फान्यूमरिक शेवट, अभ्यासक्रमानुसार गट केले)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "उच्चारानुरूप (आल्फान्यूमरिक शेवट, व्यंजनदर्शक वर्णानुसार गट केले)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "आज"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "कोणी नाही"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "हलके"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "हलके तिरके"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "नियमित"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "तिरके"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ठळक"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ठळक तिरके"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "काळा"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "काळे तिरके"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "पुस्तक"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "आंकुचीत"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "अर्धा ठळक"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "आपल्या मुद्रकावर आणि स्क्रिनवर एकच फाँट् वापरला जाईल."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "हा मुद्रक फाँट् आहे. स्क्रीनवरील प्रतिमा वेगळी असू शकेल."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "या फाँट् शैलीची नक्कल केली जाईल किंवा निकटच्या अनुरूप शैलीचा उपयोग केला जाईल."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "हा फाँट् स्थापित केलेला नाही. निकटचा उपलब्ध फाँट् वापरला जाईल."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ब्राऊज..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "होमकडे हलवा"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "डावीकडे हलवा"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "उजवीकडे हलवा"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "एंडकडे हलवा"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "समाविष्ट करा"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "आडवी रूलर (_z)"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "लंबरूप फूट पट्टी"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 बिट थ्रेशोल्ड"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 बिट डिथर्ड"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 बिट ग्रेस्केल"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 बिट रंग"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 बिट ग्रेस्केल"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 बिट रंग"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 बिट खरे रंग"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "चित्र यांस अंदाजे %1 KB स्मृती आवश्यक आहे."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "चित्र यांस अंदाजे %1 KB मेमरि आवश्यक आहे, फाइल आकार %2 KB आहे."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "फाइल आकार %1 KB आहे."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "किंमत"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "क्रमवारित लावा"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "तयार"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "थांबलेले"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "अनिर्णित मिटाव"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "कार्यमग्न"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "सुरु करणे"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "प्रतीक्षेत आहे"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "तयारीत"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "कार्यवाही"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "छपाई"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "प्रवाहाबाहेर"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "दोष"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "अज्ञात सर्वर"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "कागद अडकला"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "कागद पुरेसा नाही"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "मॅन्यूअल फीड"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "कागद समस्या"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O सक्रिय"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "उत्पन्नपेटी भरलेली"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "कमी टोनर"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "टोनर नाही"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "पृष्ठ हटवा"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "वापरकर्त्याचा हस्तक्षेप आवश्यक आहे"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "अपर्याप्त मेमरी"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "झाकण उघडा"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "संचित करण्याचा पॉवर प्रकार"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "पूर्वनिर्धारित छपाईयंत्र"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d दस्तऍवज"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "समाप्त (~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "पुढचा > (~N)"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< मागे (~k)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "पद्धती"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<कोणी नाही>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "कंपनी"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "विभाग"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "पहिले नाव"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "अंतिम नाव"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "रस्ता"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "देश"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "झिप कोड"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "शहर"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "शीर्षक"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "स्थिती"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "पत्ता प्रपत्र"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "आद्याक्षरे"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "मानार्थ बंद करा"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "दूरध्वनी(घर)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "दूरध्वनी (काम)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "टीप"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "वापरकर्ता 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "वापरकर्ता 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "वापरकर्ता 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "वापरकर्ता 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ओळखचिह्न (ID)"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "राज्य"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "दूरध्वनी (कार्यालय)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजर"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मोबाईल"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "दूरध्वनी: इतर"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "दिनदर्शिका"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "निमंत्रण देणे"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ला हे कार्य पूर्ण करण्यासाठी Java रंटाइम एंवार्यंमेंट (JRE) आवश्यक आहे. कृपया JRE प्रतिष्ठापीत करा व %PRODUCTNAME पुन्हा सुरू करा."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME संरचना बदलली आहे. %PRODUCTNAME - पसंती - %PRODUCTNAME - प्रगत अंतर्गत, %PRODUCTNAME तर्फे वापरण्याजोगी जावा रनटाइम वातावरण निवडा."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "%PRODUCTNAME संरचना बदलली आहे. साधने - पर्याय - %PRODUCTNAME - प्रगत अंतर्गत, %PRODUCTNAME तर्फे वापरण्याजोगी जावा रनटाइम वातावरण निवडा."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ला हे कार्य पूर्ण करण्यासाठी जावा रंटाइम एंवार्यंमेंट (JRE) आवश्यक आहे. निवडलेले JRE सदोषीत आहे. कृपया इतर आवृत्ती निवडा किंवा नवीन JRE इंस्टॉल करा व त्यास %PRODUCTNAME - पसंती - %PRODUCTNAME - प्रगत अंतर्गत निवडा."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ला हे कार्य पूर्ण करण्यासाठी जावा रंटाइम एंवार्यंमेंट (JRE) आवश्यक आहे. निवडलेले JRE सदोषीत आहे. कृपया इतर आवृत्ती निवडा किंवा नविन JRE प्रतिष्ठापीत करा व त्यास साधने - पर्याय - %PRODUCTNAME - प्रगत अंतर्गत निवडा."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE आवश्यक"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE निवडा"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE सदोषीत आहे"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "स्त्रोत कोड"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "पुस्तकखुण फाइल"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "चित्रालेख"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "संरचना फाइल"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "अनुप्रयोग"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "माहितीकोष तक्ता"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "सिस्टम फाइल"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word दस्तऐवज"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "मदत फाइल"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML दस्तऐवज"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "आर्किव फाइल"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लॉग फाइल"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice डाटाबेस"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 मास्टर दस्तऐवज"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice ईमेज"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "मजकूर फाइल"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "लिंक"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 टेम्पलेट"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel दस्तऐवज"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel साचा"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "बॅच्च् फाइल"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "फाइल"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "फोल्डर"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "मजकूर दस्तऐवज"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रेडशीट"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रस्तुति"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "रेखांकन"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML दस्तऐवज"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "मास्टर दस्तऐवज"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "सूत्र"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "माहितीकोष"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 स्प्रेडशीट साचा"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 रेखाचित्र साचा"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 प्रस्तुतिकरण साचा"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 मजकूर दस्तऐवज साचा"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "स्थानिक ड्राइव्ह"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "डिस्क ड्राइव्ह"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ड्राइव्ह"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "नेटवर्क जुळणी"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "मायक्रोसॉफ्ट पॉवरपॉइंट दस्तऐवज"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "मायक्रोसॉफ्ट पॉवरपॉइंट साचा"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "मायक्रोसॉफ्ट पॉवरपॉइंट प्रदर्शन"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 सूत्र"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
#, fuzzy
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 रेखाचित्र"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 रेखाचित्र"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 स्प्रेडशीट"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 प्रस्तुतिकरण"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 मजकूर दस्तऐवज"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 मास्टर दस्तऐवज"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML दस्तऐवज"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument माहितीकोष"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument रेखांकन"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument सूत्र"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument मास्टर दस्तऐवज"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument प्रस्तुति"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument स्प्रेडशीट"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument मजकूर"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument स्प्रेडशीट साचा"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument रेखांकन साचा"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument प्रस्तुती साचा"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument मजकूर साचा"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME वाढ"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/mr/svx/messages.po b/source/mr/svx/messages.po
index f3d82ea0bfc..d8ee651d7f4 100644
--- a/source/mr/svx/messages.po
+++ b/source/mr/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8020,6 +8020,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12557,88 +12562,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "वलय संपादक"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "लागू करा"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "कार्यस्थान"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "निवडा"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "चौकट"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "एलिप्स"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "बहुकोन"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिंदूचे संपादन करा"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिंदू हलवा"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिंदू अंतर्भूत करा"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिंदूना नष्ट करा"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "स्व वलय"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "पूर्ववत करा "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "लाल"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "पिपेट्"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12968,122 +12978,116 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "चरणओळ"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "प्रतिमा नकाशा संपादक"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "लागू करा"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "उघडा..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "साठवा..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "बंद करा"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "निवडा"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "चौकट"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "एलिप्स"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "बहुकोन"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "मुक्त रचित बहुकोन"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिंदूचे संपादन करा"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिंदू हलवा"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिंदू अंतर्भूत करा"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिंदूना नष्ट करा"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "पूर्ववत करा "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "लाल"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "सक्रीय"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "मॅक्रो..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "गुणधर्म: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "पत्ता:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "चौकट"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/mr/sw/messages.po b/source/mr/sw/messages.po
index 3a82656f6dd..f729703a30f 100644
--- a/source/mr/sw/messages.po
+++ b/source/mr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3182,9 +3182,9 @@ msgid "Change object title of $1"
msgstr "$1 चे वस्तू शीर्षक बदला"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 चे वस्तू वर्णन बदला"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12482,147 +12482,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12632,152 +12632,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13881,7 +13881,7 @@ msgstr "परिच्छेद अंतर्गत स्वहस्ते
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17295,48 +17295,48 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "पूर्वावलोकन"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-#, fuzzy
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "पूर्वदृष्य"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "प्रकार"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "नोंदण्या"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "शैली"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "स्तंभ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "पार्श्वभूमी"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+#, fuzzy
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "पूर्वदृष्य"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "स्तर (_L)"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "प्रकार (_T)"
@@ -17583,316 +17583,316 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "संपादित करा (_E)..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "शीर्षक (_T)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "प्रकार:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "अंतर्भुत माहिती तक्ता"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "अक्षरिय इंडेक्स"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "तक्त्यांचे इंडेक्स"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "वापरकर्ता निर्देशीत"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "ऑब्जेक्ट्सचा तक्ता"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "संदर्भग्रंथ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "स्वहस्ते बदलांच्या विरूद्ध सुरक्षित केले जाते"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
#, fuzzy
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "प्रकार आणि शीर्षक"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "फॉर्म"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "संपूर्ण दस्तऐवज"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "धडा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
#, fuzzy
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "स्तरापर्यंत विश्लेषीत करा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "रूपरेषा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "इंडेक्स चिन्हे (_x)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "तक्ते"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "मजकूर चौकटी (_x)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ग्राफिक्स"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE ऑब्जेक्ट्स"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "सोअर्स धड्यापासून स्तराचा वापर करा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "अगाऊ शैली (_A)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "शैली (_e)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "शैलीचे वाटप करा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "कॅपशन्स"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "ऑब्जेक्ट नावे"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "विभाग"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "प्रदर्शन"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "संदर्भ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "प्रवर्ग आणि क्रमांक"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "कॅप्शन मजकूर"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
#, fuzzy
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "पासून निर्माण करा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
#, fuzzy
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "खालील ऑब्जेक्ट्सपासून निर्माण करा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "ब्रॅकेट्स (_B)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "संख्या नोंदण्या (_N)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[काहिही नाही]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
#, fuzzy
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "नोंदणींचे रूपण"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "हुबेहुब नोंदण्या एकत्रीत करा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "p किंवा pp सह हुबेहुब नोंदण्या एकत्रीत करा (_p)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "यासह एकत्र करा -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "आकार संवेदनशील"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "AutoCapitalize नोंदण्या"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "वेगळ्या नोंदण्या स्वरूपातील किज"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "काँकोर्डंस फाइल (_C)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "फाइल (_F)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "पर्याय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "भाषा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "कळ प्रकार"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "क्रमवारित लावा"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "स्तर (_L)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "परिच्छेद शैली (_S)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "पूर्वनिर्धारित (_D)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "संपादित करा (_E)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "लागूकरण"
diff --git a/source/my/cui/messages.po b/source/my/cui/messages.po
index e328e7cfeac..835f131de2b 100644
--- a/source/my/cui/messages.po
+++ b/source/my/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1654,107 +1654,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "ဘောင်များမထားပါနှင့်"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "ပြင်ပဘောင်ကိုသာထားရှိပါ"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "ပြင်ပဘောင်နှင့်ရေပြင်ညီမျဉ်းများထားရှိပါ"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "ပြင်ပဘောင်နှင့်အတွင်းမျဉ်းများအားလုံးထားရှိပါ"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "အတွင်းမျဉ်းများ ပြောင်းလဲမှုမရှိဘဲ ပြင်ပဘောင်များ နေရာချထားပါ"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "ထောင့်ဖြတ်မျဉ်းများသာ ထားရှိပါ"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "ဘောင်လေးခုစလုံး ထားရှိပါ"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "ဘယ်ဖက်နှင့် ညာဖက် ဘောင်များသာ ထားရှိပါ"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "ထိပ်ဖက်နှင့် အောက်ခြေဖက် ဘောင်များသာ ထားရှိပါ"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "ဘယ်ဖက်ဘောင်သာ ထားရှိပါ"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "ထိပ်ဖက်၊ အောက်ဖက် ဘောင်များနှင့် အတွင်းမျဉ်းများအားလုံး နေရာချထားပါ"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "ဘယ်ဘက်၊ ညာဘက်ဘောင်နှင့် အတွင်းမျဉ်းများအားလုံး နေရာချထားပါ"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "အရိပ် မရှိပါ"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ညာဖက် အောက်ခြေသို့ အရိပ်ကျစေပါ"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ညာဖက် ထိပ်သို့ အရိပ်ကျစေပါ"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ဘယ်ဖက် အောက်ခြေသို့ အရိပ်ကျစေပါ"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ဘယ်ဖက် ထိပ်သို့ အရိပ်ကျစေပါ"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1797,7 +1792,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1917,7 +1912,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2157,7 +2152,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2412,12 +2407,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2487,7 +2482,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2567,7 +2562,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2808,7 +2803,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3436,67 +3431,72 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME အကြောင်း"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ကွန်ယက်နေရာ"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3617,17 +3617,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_အစားထိုးပါ"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "အစား_ထိုးပါ"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_နှင့်အတူ -"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_စာသား သာလျှင်"
@@ -4496,6 +4496,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5655,29 +5815,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "ပိုင်ဆိုင်မှု"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ဘောင်-"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_အမည်"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9428,84 +9588,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ကူညီပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_%PRODUCTNAME ဒိုင်ယာလော့ဒ် အသုံးပြုပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ဖွင့်/သိမ်း ဒိုင်ယာလော့ဒ်"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME _ဒိုင်ယာလော့ဒ် သုံးပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ဒိုင်ယာလော့ဒ် ပရင့်ထုတ်ပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_‘‘မှတ်တမ်းမှတ်ရာ အထူးပြုအခြေအနေ’’ကို ပရင့်ထုတ်ရန်ထားရှိသည်"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "မှတ်တမ်းမှတ်ရာ အခြေအနေ"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "နှင့်"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "နှစ် (ဂဏန်နှစ်လုံးဖြင့်)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "ကွန်ပျူတာစနစ် စတင်ချိန်တွင် %PRODUCTNAME အလုပ်လုပ်ပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "စနစ်ဗန်းလျင်မြန်စွာစတင်လုပ်ဆောင်ပါ"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME လျှင်မြန်စွာ စတင်သူ"
@@ -11465,24 +11625,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12146,102 +12291,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "ရွေးပိုင်ခွင့်များလုံခြုံမှု"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13310,27 +13359,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/my/extensions/messages.po b/source/my/extensions/messages.po
index bc2b29a1bfd..bc9739a1ffa 100644
--- a/source/my/extensions/messages.po
+++ b/source/my/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3241,191 +3241,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "ဇယား%၁အတွက် ကော်လံအပြင်အဆင်"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "အမည်တို"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "စာရေးဆရာ(များ)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "ထုတ်ဝေသူ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "အခန်းကြီး"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "တည်းဖြတ်သူ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "ရိုက်ပါ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "နှစ်"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "ခေါင်းစဉ်"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "လိပ်စာ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "စာ~မျက်နှာ(များ)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "ပြင်ဆင်~တည်းဖြတ်မှု"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~စာအုပ်ခေါင်းစဉ်"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "အတွဲ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "ပုံနှိပ်ထုတ်ဝေမှု~အမျိုးအစား"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "အဖွဲ့~အစည်း"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "ဖွဲ့စည်းတည်ထောင်ခြင်း"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "တက္ကသိုလ်"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "အစီရင်ခံစာအမျိုး~အစား"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "လ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "ဂျာနယ်"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "နံပါတ်"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "အတွဲ~လိုက်"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "မှတ်~သားချက်"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "မှတ်ချက်"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "အသုံးပြုသူသတ်မှတ်ထားသည့်နေရာကွက်-၁"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "အသုံးပြုသူသတ်မှတ်ထားသည့်နေရာကွက်-၂"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "အသုံးပြုသူသတ်မှတ်ထားသည့်နေရာကွက်-၂"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "အသုံးပြုသူသတ်မှတ်ထားသည့်နေရာကွက်-၄"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "အသုံးပြုသူသတ်မှတ်ထားသည့်နေရာကွက်-၅"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3612,31 +3612,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "နေရာကွက်များချိတ်ဆက်မှု"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "အကြံပြုချက်"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "လက်ရှိပင်မပုံစံ၏ မှတ်တမ်းမှတ်ရာများအကြောင်းအသေးစိတ်ပြသရန် ပုံစံအခွဲများကို အသုံးပြုနိုင်သည်။ သင်ပြုလုပ်ရန်မှာ မည်သည့်ကော်လံသည် ပင်မပုံစံနှင့် ကိုက်ညီမှုရှိသည်၊ မည်သည့်ကော်လံသည် ပုံစံအခွဲများနှင့် ကိုက်ညီမှုရှိသည်ကို ခွဲခြားပေးရန် ဖြစ်သည်။ "
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "အညွှန်း"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/my/officecfg/registry/data/org/openoffice/Office/UI.po b/source/my/officecfg/registry/data/org/openoffice/Office/UI.po
index 3fb758cfdbe..3acdbe0c21c 100644
--- a/source/my/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/my/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23709,6 +23709,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26063,6 +26072,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26081,6 +26099,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/my/sc/messages.po b/source/my/sc/messages.po
index bb77905b8b4..9cd1809c293 100644
--- a/source/my/sc/messages.po
+++ b/source/my/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15719,6 +15719,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ထုတ်ပယ်ခွင့်ရသည်)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16298,12 +16303,12 @@ msgstr "အခြေအနေအရဖြစ်သောစီစဉ်ဖွဲ
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17593,86 +17598,44 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_ပိတ်ပါ"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "မှတ်တမ်းအသစ်"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "အသစ်"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_ဖျက်ပါ"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "ပြန်လည်သိုမှီးပါ"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "ယခင်မှတ်တမ်း"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "မှတ်တမ်းအသစ်"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_ပိတ်ပါ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_ဝင်ရောက်ကြည့်ရှုရှာဖွေရန်..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ဒေတာဘေ့စ်ကန့်သတ်ချက်"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19464,37 +19427,42 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "ရက်စွဲ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "ကော်လံ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "အတန်း"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "အားဖြင့် အုပ်စု-"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "အတွင်းပိုင်း"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19642,167 +19610,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22445,17 +22415,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24426,118 +24406,123 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~ဝင်းဒိုး"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "ဂရစ်မျဉ်းများ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "အရောင်"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "ပြပါ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
#, fuzzy
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "ဖျောက်ထားပါ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "စာမျက်နှာ ပြတ်တောက်သည်"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "ပုံစံကားချပ်များ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_အရာဝတ္ထုများရေးဆွဲခြင်း"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "ပြပါ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
#, fuzzy
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "ဖျောက်ထားပါ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "ပြပါ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
#, fuzzy
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "ဖျောက်ထားပါ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "ပြပါ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
#, fuzzy
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "ဖျောက်ထားပါ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
#, fuzzy
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "_အရာဝတ္ထုများ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/my/scp2/source/ooo.po b/source/my/scp2/source/ooo.po
index 8438e0211cb..018c6e0e979 100644
--- a/source/my/scp2/source/ooo.po
+++ b/source/my/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "မှတ်တမ်းမှတ်ရာ ဖွင့်ပါ"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/my/scp2/source/winexplorerext.po b/source/my/scp2/source/winexplorerext.po
index 6ca159f4be4..c35395390fe 100644
--- a/source/my/scp2/source/winexplorerext.po
+++ b/source/my/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 13:54+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369354760.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "%PRODUCTNAME သတင်းအချက်အလက် မှတ်တမ်းမှတ်ရာများအကြောင်း ပြသရန် Microsoft Windows Explorer မှလုပ်ဆောင်မှုပြုသည်။အကျဉ်းချုပ် အစမ်းကြည့်ခြင်းများကဲ့သို့"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/my/sd/messages.po b/source/my/sd/messages.po
index 34898307625..68c1dcef72f 100644
--- a/source/my/sd/messages.po
+++ b/source/my/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2637,6 +2637,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3115,164 +3120,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4751,160 +4941,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/my/sfx2/messages.po b/source/my/sfx2/messages.po
index b77a3ca27f6..62b5f846eb5 100644
--- a/source/my/sfx2/messages.po
+++ b/source/my/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -908,11 +908,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "ဂုဏ်သတ္တိများဖယ်ရှားပါ"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -922,28 +917,28 @@ msgstr ""
"အထူးပြုရွေးချယ်ထားသည့်ပုံစံနှင့် ဝင်ရောက်ထားသည့်တန်ဖိုး ကိုက်ညီမှုမရှိပါ။\n"
"တန်ဖိုးကို စာသားအဖြစ် သိမ်းဆည်းမှုပြုလိမ့်မည်။"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ဖိုင်ရှိပြီးဖြစ်သည်။ ရှိပြီးဖိုင်ကိုဖျက်ပြီးအသစ်တစ်ခုဖြင့် အစားထိုးလိုပါသလား။"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~ပြန်လည်စတင်ပါ"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ဤအမည်သုံးထားပြီးဖြစ်သည်။"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ဤပုံစံမတည်ရှိပါ။"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -953,7 +948,7 @@ msgstr ""
"ဤပုံစံကို အခြေခံပုံစံတစ်ခုအနေဖြင့် အသုံးမပြု နိုင်ပါ\n"
"အကြောင်းမှာ ရည်ညွှန်းချက်တစ်ခုတွင် ၎င်း၏အဖြေရှိနေသောကြောင့်ဖြစ်သည်။"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -962,7 +957,7 @@ msgstr ""
"နဂိုမူလစတိုင်လ်တစ်ခုအနေဖြင့် အမည်တည်ရှိပြီးဖြစ်သည် \n"
"အခြားအမည်ရွေးပေးပါ။"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -970,95 +965,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "လမ်းညွှန်ကိရိယာ"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "အမှား စကားဝှက် အတည်ပြုချက်"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "ပေးပို့ပါ"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ဖောင့်"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "ဗားရှင်း ထင်မြင်သုံးသပ်ချက်များ ထည့်ပါ"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "အဆင့်လိုက်တည်ရှိမှု"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ဖိုင်စီစဉ်ဖွဲ့စည်းမှုပုံစံနည်းလမ်း"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "ရွေးချယ်မှုမှပုံစံအသစ်"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "~နောက်ဆုံးပေါ်ပုံစံများ"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "မှတ်တမ်းတင်မှု ကို ရုတ်သိမ်းရန် အမှန်တကယ် ဆန္ဒရှိပါသလား။ အဆင့်အသီးသီးအတွက် မှတ်တမ်းတင်ထားမှုများ ပျောက်ဆုံးလိမ့်မည်။"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "မှတ်တမ်းတင်မှု ရုတ်သိမ်းပါ"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ပထမဆုံးအကြိမ် အသုံးပြုခြင်းအတွက် ပုံစံပြားများ အစပျိုးထားသည်။"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1067,7 +1062,7 @@ msgstr ""
"နဂိုမူလပရင်တာ ရှာမတွေ့ပါ။ \n"
"ပရင်တာတစ်ခု နောက်ထပ်ရွေးချယ်ကြိုးစားပေးပါ။"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1076,17 +1071,17 @@ msgstr ""
"ပရင်တာ မစတင်နိုင်ပါ။ \n"
"သင့် ပရင်တာ အစိတ်အပိုင်းများ ဖွဲ့စည်းမှု ကိုစစ်ဆေးပေးပါ။"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "ပရင်တာအလုပ်များနေသည်"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ဖတ်ရန်သာ)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1097,7 +1092,7 @@ msgstr ""
"လက်ရှိအသုံးပြုနေသည့် မှတ်တမ်းမှတ်ရာများတွင် ပြင်ဆင်ဖွဲ့စည်းမှုပုံစံအသစ်များဖြင့်\n"
"သိမ်းဆည်းလိုပါသလား"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1108,7 +1103,7 @@ msgstr ""
"လက်ရှိအသုံးပြုနေသည့် မှတ်တမ်းမှတ်ရာများတွင် ပြင်ဆင်ဖွဲ့စည်းမှုပုံစံအသစ်များဖြင့်\n"
"သိမ်းဆည်းလိုပါသလား"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1119,7 +1114,7 @@ msgstr ""
"လက်ရှိအသုံးပြုနေသည့် မှတ်တမ်းမှတ်ရာများတွင် ပြင်ဆင်ဖွဲ့စည်းမှုပုံစံအသစ်များဖြင့်\n"
"သိမ်းဆည်းလိုပါသလား"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1129,7 +1124,7 @@ msgstr ""
"ပရင့်ထုတ်နေခြင်းကြောင့် မှတ်တမ်းမှတ်ရာအား\n"
"ပိတ်နိုင်လိမ့်မည် မဟုတ်ပါ။"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1137,7 +1132,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,18 +1140,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ဤမှတ်တမ်းမှတ်ရာအား ပြင်ဆင်မတည်းဖြတ်နိုင်ပါ။ ရယူခွင့် အခွင့်အရေးမှားယွင်းမှုကြောင့် ဖြစ်နိုင်သည်။ မှတ်တမ်းမှတ်ရာကို ကူးယူ၍ ပြင်ဆင်တည်းဖြတ်မှုများပြု လိုပါသလား။"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1164,353 +1159,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (ပြန်လည်ပြုပြင်ထားသည့် မှတ်တမ်းမှတ်ရာ)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "မှတ်တမ်းမှတ်ရာ တည်းဖြတ်ပါ"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "မှတ်တမ်းမှတ်ရာဖိုင်"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "ပိုများသော~ရွေးပိုင်ခွင့်များ"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "စိတ်ကြိုက် သက်ဝင်လှုပ်ရှားမှုများ"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ဖယ်ရှားပါ"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1886,33 +1891,18 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "ဗားရှင်းထင်မြင်သုံးသပ်ချက်များ "
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "အမည်"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "ပုံစံ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "သိမ်းထားသော ကိန်းသေတန်ဖိုးတစ်ခု"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "ပုံစံ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
#, fuzzy
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "ဟုတ်သည်"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
#, fuzzy
msgctxt "cmisline|no"
msgid "No"
@@ -1923,17 +1913,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "အမည်"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "ပုံစံ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "သိမ်းထားသော ကိန်းသေတန်ဖိုးတစ်ခု"
@@ -2074,19 +2064,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "တည်နေရာ- "
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "အမျိုးအစား-"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "စကားဝှက်~ပြောင်းပါ..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ပုံစံပြား -"
@@ -2097,28 +2087,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "၏ ဂုဏ်သတ္တိများ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "အထွေထွေ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "ဖော်ပြချက်"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "စိတ်ကြိုက်အရည်အသွေးများ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "လုံခြုံရေး"
@@ -2346,6 +2336,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/my/shell/messages.po b/source/my/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/my/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/my/starmath/messages.po b/source/my/starmath/messages.po
index 7b85bd2e43c..0b8878b600e 100644
--- a/source/my/starmath/messages.po
+++ b/source/my/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1665,274 +1665,299 @@ msgid "Examples"
msgstr "ဥပမာ"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "စံ"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "စာလုံးစောင်း"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "စာလုံးမဲ"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "အနက်"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "အပြာရောင်"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "အစိမ်းရောင်"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "စိမ်းပြာ"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "မရမ်း"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "မီးခိုးရောင်"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "အချိန်"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "အဝါ"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ဖျောက်ထားပါ"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "အရွယ်အစား"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "စာလုံး"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ဘယ်ဖက်"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "အလည်"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ညာဖက်"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "ညွှန်ကြားချက်များ"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "ဖော်မြူလာ"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "မှတ်တမ်းမှတ်ရာ သိမ်းဆည်းနေသည်"
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION ပုံသေနည်း"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "အမှား -"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "မျှော်လင့်မထားသည့်အက္ခရာများ"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' မျှော်လင့်ခဲ့သည်"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'{' မျှော်လင့်ခဲ့သည်"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' မျှော်လင့်ခဲ့သည်"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "'(' မျှော်လင့်ခဲ့သည်"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#'မျှော်လင့်ခဲ့သည်"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "အရောင်လိုအပ်သည်"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "‘ညာဖက်’ မျှော်လင့်သည်"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Calc"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "မာတိကာများ"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ခေါင်းစဉ်"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~ပုံသေနည်းစာသား"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "နယ်နိမိတ်များ"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "အရွယ်အစား"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "မူလအရွယ်အစား"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~စာရွက်နှင့်အံဝင်ခွင်ကျဖြစ်စေပါ"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2002,6 +2027,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "အစုဝင်"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/my/svtools/messages.po b/source/my/svtools/messages.po
index c7ae35af126..06f9bd2d101 100644
--- a/source/my/svtools/messages.po
+++ b/source/my/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1526 +15,1528 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195751.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ပြန်ခေါ်ပါ -"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "နောက်ဆုံးလုပ်ဆောင်ချက်များသို့ပြန်သွားပါ"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~ထပ်တလဲလဲ-"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "စီစဉ်ဖွဲ့စည်းမှုပုံစံမရှိသောစာသား"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svxအတွင်းပိုင်းချိတ်ဆက်မှုမှသတင်းအချက်အလက်အခြေအနေ"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape စာညှပ်"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "ကြယ်ပုံစံဆာဗာချိတ်ဆက်ခြင်းစီစဉ်ဖွဲ့စည်းမှုပုံစံ"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "ကြယ်အရာဝတ္ထုစီစဉ်ဖွဲ့စည်းမှုပုံစံ"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet အရာဝတ္ထု"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "အရာဝတ္ထုထည့်သွင်းခြင်း"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw အရာဝတ္ထု"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc အရာဝတ္ထု"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart အရာဝတ္ထု"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage အရာဝတ္ထု"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath အရာဝတ္ထု"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint အရာဝတ္ထု"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word အရာဝတ္ထု"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet အရာဝတ္ထု"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ရုံး၊ဌာနဆိုင်ရာမှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "သတင်းအချက်အလက်မှတ်တမ်းမှတ်ရာမှတ်စုများ"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx မှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 အရာဝတ္ထု"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ပန်းချီဒီဇိုင်းအရာဝတ္ထု "
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "ဝင်းဒိုးများ၏မီတာဖိုင်"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "အချက်အလက်မူရင်းအရာ၀တ္ထု"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "အချက်အလက်မူရင်းဇယား"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL ကွာရီ"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "ချိတ်ဆက်မှု"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "ထင်မြင်သုံးသပ်ချက်များ မပါသည့် HTML စီစဉ်ဖွဲ့စည်းမှုပုံစံ"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "အရာဝတ္ထု % မထည့်သွင်းနိုင်ပါ။"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "% ဖိုင်မှ အရာဝတ္ထု မထည့်သွင်းနိုင်ပါ။"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "အရာဝတ္ထုများ"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "မသိသောအချက်အလက်မူရင်း"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "အမည်"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "အရွယ်အစား"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "အချက်အလက်များအထူးပြုခြင်း"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "အမျိုးအစား"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ဘိုက်များ"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ကီလိုဘိုက်"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "မီကာဘိုက်"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "ဂစ်ဂါဘိုက်"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "အတန်း %၁၊ ကော်လံ %၂"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", အမျိုးအစာ: %၁, URL: %၂"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ဖိုင်တွဲ"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ဖိုင်"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "နေရာကွက်အလွတ်"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "အက္ခရာနံပါတ်စဉ်"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "သာမာန်"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "အက္ခရာအစု"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "စာလုံးပေါင်းသတ်ပုံကျမ်း"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "မျဉ်းကြောင်း"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "အခြေခံကျသော"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ယူနီကုတ်"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ဖုန်းစာအုပ်"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "အသံထွက်သင်္ကေတ(ပထမဆုံးအက္ခရာနံပါတ်စဉ်)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "အသံထွက်သင်္ကေတ(ပထမဆုံးအက္ခရာနံပါတ်စဉ်)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "အက္ခရာနံပါတ်စဉ်"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "စာလုံးပေါင်းသတ်ပုံကျမ်း"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "အခြေခံကျသော"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "မျဉ်းကြောင်း"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "အသံထွက်သင်္ကေတ(အသံထွက်စာလုံးအားဖြင့်ပထမဆုံးအက္ခရာနံပါတ်စဉ်၊အုပ်စုဖွဲ့သည်)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "အသံထွက်သင်္ကေတ(ဗျည်းအက္ခရာများအားဖြင့်ပထမဆုံးအက္ခရာနံပါတ်စဉ်၊အုပ်စုဖွဲ့သည်)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "အသံထွက်သင်္ကေတ(အသံထွက်စာလုံးအားဖြင့်နောက်ဆုံးအက္ခရာနံပါတ်စဉ်၊အုပ်စုဖွဲ့သည်)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "အသံထွက်သင်္ကေတ(ဗျည်းအက္ခရာများအားဖြင့်နောက်ဆုံးအက္ခရာနံပါတ်စဉ်၊အုပ်စုဖွဲ့သည်)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ယနေ့"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "ဘာမျှမရှိပါ"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "အလင်း"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "လင်းသော စာလုံးစောင်း"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "ပုံမှန်"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "စာလုံးစောင်း"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "စာလုံးမဲ"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "စာလုံးစောင်းအမဲ"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "အနက်ရောင်"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "အနက်ရောင်စာလုံးစောင်း"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "စာအုပ်"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "ချုံ့စေသည်"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "တဝက်မဲ"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "သင့်ပရင်တာနှင့်ကွန်ပျူတာတွင်တူညီသောစာလုံးသုံးရလိမ့်မည်။"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "ဤစာလုံးသည်ပရင်တာစာလုံးတစ်ခုဖြစ်သည်။ဖန်သားမျက်နှာပြင်တွင် ပေါ်လာသောပုံရိပ်နှင့်ခြားနားလိမ့်မည်။"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "ဤစာလုံးပုံစံဖြစ်ဟန်ရှိသည်(သို့)အနီးစပ်ဆုံးကိုက်ညီမှုရှိသည့်ပုံစံကိုသုံးလိမ့်မည်။"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ဤစာလုံး‌မထည့်သွင်းနိုင်ပါ။အနီးစပ်ဆုံးစာလုံးကိုအသုံးပြုရလိမ့်မည်။"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ဝင်ရောက်ကြည့်ရှုရှာဖွေရန်နေရာ.."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ထင်မြင်သုံးသပ်ချက်ပြောင်းရွှေ့ပါ"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ဘယ်ဖက်သို့ရွှေ့ပါ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ညာဖက်သို့ရွှေ့ပါ"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ပေါင်းထည့်ပါ"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "ရေပြင်ညီ ပေတံ"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ဒေါင်လိုက်ပေတံ"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "၁ ဘစ် အတိုင်းအတာ သတ်မှတ်အဆင့်"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "၁ ဘစ် အရောင်ပြေသွားရန် ဖြေပေးသည်"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "၄ ဘစ် မီးခိုးရောင် စကေးများ"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "၄ ဘစ် မီးခိုးရောင် စကေးများ"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "၂၄ ဘစ် အရောင်မှန်"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ကုန်ကျစရိတ်"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "စနစ်တကျစီထားပါ"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "အဆင်သင့်"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ခေတ္တရပ်နားသည်"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "ပယ်ဖျက်ခြင်းမတိုင်မီအတောအတွင်း"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "အလုပ်များသော"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "အစပျိုးပြင်ဆင်သည်"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "စောင့်နေသည်"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "နှိုးပေးထားပါ"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "လုပ်ဆောင်နေသည်"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "ပရင့်ထုတ်နေသည်"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ဆက်သွယ်မှုမရှိပါ"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "အမှား"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "မသိသောဆာဗာ"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "စာရွက်ညပ်သည်"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "စာရွက်မလုံလောက်ပါ"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "လက်ဖြင့်ဖြည့်သွင်းရေးသားချက်"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "စာရွက်ပြဿနာ"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O အလုပ်လုပ်နေသည်"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "အချက်အလက်များထုတ်သည့်အမှိုက်ပုံးပြည့်သည်"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "တိုနာနည်းနေသည်"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "တိုနာမရှိပါ"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "စာမျက်နှာဖျက်ပါ"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ကြားဝင်အသုံးပြုသူလိုအပ်သည်"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "မှတ်ဉာဏ်လုံလောက်မှုမရှိ"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "အဖုံးဖွင့်ပါ"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "သိမ်းဆည်းမှုနည်းလမ်း"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "နဂိုမူလထားရှိမည့် ပရင်တာ"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d မှတ်တမ်းမှတ်ရာများ"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~ပြီးစီးသည်"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "နောက်ထပ် >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<<အနောက်"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "အဆင့်များ"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ဘာမျှမရှိပါ>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ကုမ္ပဏီ"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "ဌာန"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "ပထမဆုံးအမည်"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "နောက်ဆုံးအမည်"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "လမ်း"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "နိုင်ငံ"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "စာပို့သင်္ကေတ"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "မြို့"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "ခေါင်းစဉ်"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "တည်နေရာ"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Addr. ပုံစံ"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "လက်မှတ်တိုများ"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "အပိတ်နှုတ်ဆက်စကား"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "တယ်လီဖုန်း-အိမ်"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "တယ်လီဖုန်း-အလုပ်"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "မှတ်ချက်"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "အသုံးပြုသူ ၁"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "အသုံးပြုသူ ၂"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "အသုံးပြုသူ ၃"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "အသုံးပြုသူ ၄"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ပြည်နယ်"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "တယ်လီဖုန်း-ရုံး"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "ပေဂျာ"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "မိုဘိုင်း"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "တယ်လီဖုန်း-အခြား"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ပြက္ခဒိန်"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "ဖိတ်ခေါ်သည်"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAMEအနေဖြင့်လုပ်ငန်းများဆောင်ရွက်နိုင်ရန် ဂျာဗားလုပ်ဆောင်မှုဝန်းကျင်(JRE)ကိုလိုအပ်သည်။ JREကိုထည့်သွင်းပြီး %PRODUCTNAME ပြန်လည်စတင်ပေးပါ။"
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE လိုအပ်သည်"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JREကိုရွေးချယ်ပါ"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ချွတ်ယွင်းသည်"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "မူရင်းကုဒ်"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "စာညှပ်ဖိုင် "
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ရုပ်ပုံဒီဇိုင်း"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ဖိုင်အစိတ်အပိုင်းများဖွဲ့စည်းပုံ"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "အသုံးပြုပရိုဂရမ်"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ဒေတာဘေ့စ်ဇယား"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "စနစ်ဖိုင်"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word မှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "အကူဖိုင်"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML မှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ဖိသိပ်သိုလှောင်ထားသည့်ဖိုင်"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ကွန်ပျူတာမှတ်တမ်းဖိုင်"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 ပုံစံပြား"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 ပင်မ မှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 ပုံစံပြား"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "စာသားဖိုင်"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "ကွင်းဆက်"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 ပုံစံပြား"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel မှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel ပုံစံပြား"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "အစီအစဉ်လိုက်ဆောင်ရွက်ပေးသောအစုဖိုင်"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ဖိုင်"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ဖိုင်တွဲ"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "မှတ်တမ်းမှတ်ရာ စာသား"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "စာရွက်အချပ်လွှာ"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "တင်ဆက်မှုပုံစံ"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ပုံဆွဲခြင်း"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML မှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ပင်မ မှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "ပုံသေနည်း"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ဒေတာဘေ့စ်"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "အတွင်းရှိဒရိုက်"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ဒစ်ခ်ဒရိုက်"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "စီဒီရွမ်ဒရိုက်"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "ကွန်ရက်စနစ် ချိတ်ဆက်မှု"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint မှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint ပုံစံပြား"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint ပြသည်"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML မှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument ဒေတာဘေ့စ်"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument ပုံဆွဲခြင်း"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument ပုံသေနည်း"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument ပင်မ မှတ်တမ်းမှတ်ရာ"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument တင်ဆက်မှုပုံစံ"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument စာရွက်အချပ်လွှာ"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument စာသား"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument စာရွက်အချပ်လွှာ ပုံစံပြား"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument ပုံဆွဲခြင်း ပုံစံပြား"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument တင်ဆက်မှု ပုံစံပြား"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument စာသား ပုံစံပြား"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME တိုးချဲ့မှု"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/my/svx/messages.po b/source/my/svx/messages.po
index 649fcc92819..70015491575 100644
--- a/source/my/svx/messages.po
+++ b/source/my/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8014,6 +8014,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12540,87 +12545,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "ကွန်တိုမျဉ်း တည်းဖြတ်နိုင်သော အကွက်"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "အသုံးချပါ"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "အလုပ်နေရာလပ်"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "ရွေးချယ်ပါ"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "ထောင့်မှန်စတုဂံ"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ဘဲဥပုံ"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "ဗဟုဂံ"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "အမှတ်များတည်းဖြတ်ပါ"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "အမှတ်များရွှေ့ပြောင်းပါ"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "အမှတ်များထပ်ထည့်ပါ"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "အမှတ်များဖျက်ပါ"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "အလိုလို ကွန်တိုမျဉ်း"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "ပြန်ခေါ်ပါ"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "အနီရောင်"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12949,123 +12959,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "စာမျက်နှာအောက်"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ပေါ်လာသော ဂရပ်ဖစ်ပုံ တည်းဖြတ်နိုင်သည့် အကွက်"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "အသုံးချပါ"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "ဖွင့်ပါ..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "သိမ်းပါ..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "ပိတ်ပါ"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "ရွေးချယ်ပါ"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "ထောင့်မှန်စတုဂံ"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ဘဲဥပုံ"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "ဗဟုဂံ"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "လွတ်လပ်သော ပုံစံ ဗဟုဂံ "
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "အမှတ်များတည်းဖြတ်ပါ"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "အမှတ်များရွှေ့ပြောင်းပါ"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "အမှတ်များထပ်ထည့်ပါ"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "အမှတ်များဖျက်ပါ"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "ပြန်ခေါ်ပါ"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "အနီရောင်"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "လုပ်ဆောင်နေခြင်း"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "မက်ခရို.."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "ဂုဏ်သတ္တိများ-"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "ကွန်ရက်လိပ်စာ-"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ဘောင်"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/my/sw/messages.po b/source/my/sw/messages.po
index 7629b711250..2d911238a9c 100644
--- a/source/my/sw/messages.po
+++ b/source/my/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: my\n"
@@ -3179,9 +3179,9 @@ msgid "Change object title of $1"
msgstr "$1၏အရာ၀တ္ထုခေါင်းစဉ်ကိုပြောင်းလဲပါ"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1၏အရာ၀တ္ထုဖော်ပြချက်ကိုပြောင်းလဲပါ"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12593,147 +12593,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12743,152 +12743,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13990,7 +13990,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17464,50 +17464,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "အစမ်းကြည့်ပါ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "အစမ်းကြည့်ပါ"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
#, fuzzy
msgctxt "tocdialog|index"
msgid "Type"
msgstr "အမျိုးအစား"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "အဝင်များ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "စတိုင်လ်များ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "ကော်လံအကန့်များ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "နောက်ခံ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "အစမ်းကြည့်ပါ"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "အဆင့်"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17749,325 +17749,325 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "တည်းဖြတ်ပါ..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_ခေါင်းစဉ်"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "အမျိုးအစား"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "ဇယား မာတိကာများ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "အသုံးပြုသူသတ်မှတ်ချက်"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ကိုးကားချက်စာရင်း ၁"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ပုံစံ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "မှတ်တမ်းမှတ်ရာ တစ်ခုလုံး"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "အခန်းကြီး"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "အပြင်လိုင်း"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "ဇယားများ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "စာသား ဘောင်များ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ရုပ်ပုံဒီဇိုင်း"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE အရာဝတ္ထုများ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "အခြေအနေစတိုင်လ်များ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "စတိုင်လ်များ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "စာတန်း"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "အရာဝတ္ထုအမည်"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "အမျိုးအစား"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "ပြသပါ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "ရည်ညွှန်းချက်များ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "အမျိုးအစားနှင့် နံပါတ်"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "စာတန်း စာသား"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "~ကွင်းများ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[None]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
#, fuzzy
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "ကိစ္စရပ်ပေါ်တွင်အမှားအယွင်းမခံနိုင်မှု"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ဖိုင်"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "ရွေးပိုင်ခွင့်များ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ဘာသာစကား"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "သော့ပုံစံ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "စနစ်တကျစီထားပါ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "အဆင့်"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(စာပိုဒ်ပုံစံ- "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "နဂိုမူလ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "တည်းဖြတ်ပါ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/nb/cui/messages.po b/source/nb/cui/messages.po
index c8d8c63931f..e3c5be27f4c 100644
--- a/source/nb/cui/messages.po
+++ b/source/nb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-05-02 16:23+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Vennligst skriv inn en gyldig temaadresse eller et søkeord."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "Mozilla Themes API er for tiden ikke tilgjengelige."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Velg ingen kantlinjer"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Velg bare ytre kantlinje"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Velg ytre kantlinje og vannrett linjer"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Velg ytre kantlinje og alle indre linjer"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Velg ytre kantlinje uten å endre de indre linjene"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Velg bare skrålinjer"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Velg alle fire kantlinjene"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Velg bare venstre og høyre kantlinje"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Velg bare øvre og nedre kantlinje"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Velg bare venstre kantlinje"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Velg øvre og nedre kantlinje og alle indre linjer"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Velg venstre og høyre kantlinje og alle indre linjer"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Ingen skygge"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Kast skygge ned til høyre"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Kast skygge opp til høyre"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Kast skygge ned til venstre"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Kast skygge opp til høyre"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Signert av: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Alle filer"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Registrerte databaser"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Om %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "_Bidragsytere"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Nettsted"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Bygg-ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "språk: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Språk for brukergrensesnitt: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Se Logg: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME er en moderne og brukervennlig åpen kildekode-produktivitetspakke for tekstbehandling, regneark, presentasjoner, og mer."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Opphavsrett © 2000 - 2019 LibreOffice (bidragsyterne)."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice er basert på OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME stammer fra LibreOffice, som ble basert på OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Dette produktet ble utgitt av %OOOVENDOR"
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "http://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Erstatt"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Erstatt"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Med:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Bare tekst"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minste ordlengde"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Egenskaper"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Ramme:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Navn:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternativ _tekst:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Beskrivelse:"
@@ -9019,80 +9179,80 @@ msgstr "Vis \"Ingen frakoblet hjelpefunksjon er installert\" sprett opp vindu"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hjelp"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Bruk dialogvinduene til %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogvinduer for åpning og lagring"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Bruk _dialogvinduene til %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialogvinduer for utskrift"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Utskrift skal anses som endring av dokumentet"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Tolk som år i mellom"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "og "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "År (to siffer)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Samle inn bruksdata og send de til The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Hjelp til med å gjøre %PRODUCTNAME bedre"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Last inn %PRODUCTNAME ved oppstart"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Slå på Hurtigstarter i systemkurven"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Hurtigstarter"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Forinstallert tema"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Eget tema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Last inn Firefox tema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Eller velg fra tema installert via utvidelser:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox Temaer"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Sikkerhetsinnstillinger"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Velg Firefox-tema"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Søketem eller adesse"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Kategori"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstrakt"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Årsaker"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Mote"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film og TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Fri"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musikk"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natur"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Annet"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Landskap"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Sesongmessig"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Ensfarget"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Nettsted"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Funksjoner"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/nb/extensions/messages.po b/source/nb/extensions/messages.po
index ce23a0d9f10..d9b538b0260 100644
--- a/source/nb/extensions/messages.po
+++ b/source/nb/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-10 18:10+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@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: 1554919830.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Kolonneoppsetting for tabellen %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Kortnavn"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Forfatter(e)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Utgiver"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Kapittel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Forfatter"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_År"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tittel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Adresse"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Side(r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Utgave"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Boktittel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Utgave"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "_Publikasjonstype"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organisasjon"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Institusjon"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Universitet"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Rapporttype"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Måned"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Journal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Tall"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Serier"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Merknader"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Merknad"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Bruker definert felt_1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Brukerdefinert felt_2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Brukerdefinert felt_3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Brukerdefinert felt_4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Brukerdefinert felt_5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Kolonnenavn"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Skriv inn et navn på den nye datatypen:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Koble sammen felt"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Forslag"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Delskjemaer kan brukes til å vise detaljerte data om den valgte posten i hovedskjemaet. Du kan sette opp skjemaet ved å velge hvilke kolonner i delskjemaet som tilsvarer kolonnene i hovedskjemaet."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etikett"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etikett"
diff --git a/source/nb/helpcontent2/source/auxiliary.po b/source/nb/helpcontent2/source/auxiliary.po
index 9d8a531b06f..a1520f274f1 100644
--- a/source/nb/helpcontent2/source/auxiliary.po
+++ b/source/nb/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-10 19:37+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@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: 1554925064.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Generell informasjon"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Presentasjoner og tegning (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Verktøylinjer"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Tegninger (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menyer"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Verktøylinjer"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objekter, grafikk og punktbilder"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupper og lag"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Tekst i presentasjoner og tegninger"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/sbasic/guide.po b/source/nb/helpcontent2/source/text/sbasic/guide.po
index 90ea71674a7..c2d7cc92564 100644
--- a/source/nb/helpcontent2/source/text/sbasic/guide.po
+++ b/source/nb/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-24 09:22+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Sammenlign Access2Base med MSAccess VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Åpne et dialogvindu med makrokode"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>modul/dialogskift</bookmark_value><bookmark_value>dialoger; bruk av programkode for å vise (eksempel)</bookmark_value><bookmark_value>eksempel; vis en dialog gjennom å bruke programkode</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/sbasic/python.po b/source/nb/helpcontent2/source/text/sbasic/python.po
index 82a07d371af..850c6e10e92 100644
--- a/source/nb/helpcontent2/source/text/sbasic/python.po
+++ b/source/nb/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-17 14:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: Åpner en dialog"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,8 +93,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
-msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Åpner en dialog i Phyton</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value> plattform; erLinux </bookmark_value> <bookmark_value> plattform; erMacOsX </bookmark_value> <bookmark_value> plattform; erWindows </bookmark_value> <bookmark_value> plattform; datamaskin </bookmark_value> <bookmark_value> plattform; OSNAME </bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "%PRODUCTNAME Basic mangler Mac OS X innfødt anerkjennelse mens ComputerName-egenskapen er utelukkende tilgjengelig for Windows. Grunnleggende anrop til Python-makroer bidrar til å overvinne slike begrensninger."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr "Bruker en Basic klassemodul:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/nb/helpcontent2/source/text/sbasic/shared.po b/source/nb/helpcontent2/source/text/sbasic/shared.po
index 67b77710736..6c303be1fd5 100644
--- a/source/nb/helpcontent2/source/text/sbasic/shared.po
+++ b/source/nb/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-28 13:44+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,7 +36197,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/nb/helpcontent2/source/text/sbasic/shared/03.po b/source/nb/helpcontent2/source/text/sbasic/shared/03.po
index 7c80903fdf2..b184d6d0a40 100644
--- a/source/nb/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/nb/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-16 14:13+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@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: 1547647999.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Funksjoner og subrutiner for modulkontroll."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/nb/helpcontent2/source/text/scalc/01.po b/source/nb/helpcontent2/source/text/scalc/01.po
index b64dd350012..c140ab1a04a 100644
--- a/source/nb/helpcontent2/source/text/scalc/01.po
+++ b/source/nb/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-02-28 13:53+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Finn filen som inneholder de dataene som du vil sette inn.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Velg tabellen eller dataområdet som du vil sette inn.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Angi celleområdet som du vil slå sammen med celleområdene som er vist i <emph>sammenslåingsområde</emph>-boksen. Merk et celleområde i et ark og velg <emph>Legg til</emph>. Du kan også velge et navn på en celle som allerede er angitt i lista over <emph>Kildedataområder</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/schart/00.po b/source/nb/helpcontent2/source/text/schart/00.po
index ebb1dc75b7f..dc80867a803 100644
--- a/source/nb/helpcontent2/source/text/schart/00.po
+++ b/source/nb/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-22 20:39+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@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: 1548189548.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Velg «Myk» i dialogvinduet «Diagramtype» for et linjediagram eller XY-diagram (spreidningsdiagram) og klikk på knappen «Egenskaper».</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">I dialogvinduet for diagramtype for et linjediagram eller XY-diagram (spreidningsdiagram) som viser linjer, kan du velge Stegvis i nedtrekkslisten Linjetype og deretter klikke på knappen Egenskaper.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/nb/helpcontent2/source/text/shared/00.po b/source/nb/helpcontent2/source/text/shared/00.po
index 0a217aa0b46..238954be1e8 100644
--- a/source/nb/helpcontent2/source/text/shared/00.po
+++ b/source/nb/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-10 19:59+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Velg <switchinline select=\"sys\"><caseinline
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Velg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME → Innstillinger</emph></caseinline><defaultinline><emph>Verktøy → Innstillinger</emph></defaultinline></switchinline><emph> → $[officename] → Personlig tilpassing</emph></variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/nb/helpcontent2/source/text/shared/01.po b/source/nb/helpcontent2/source/text/shared/01.po
index 81d33f061c7..b93d9651cd6 100644
--- a/source/nb/helpcontent2/source/text/shared/01.po
+++ b/source/nb/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-17 15:23+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@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: 1555514602.000000\n"
#: 01010000.xhp
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/nb/helpcontent2/source/text/shared/02.po b/source/nb/helpcontent2/source/text/shared/02.po
index b10412f2e2e..4163c4888b8 100644
--- a/source/nb/helpcontent2/source/text/shared/02.po
+++ b/source/nb/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-23 14:39+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@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: 1548254342.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Velg om et tekstutvalg eller kontrollelement fortsatt skal være valgt etter at fokus ikke lenger er på noe kontrollelement.</ahelp> Hvis du setter <emph>Skjul utvalg</emph> til «Nei», vil den valgte teksten fortsatt være valgt etter at fokus er flyttet fra kontrollelementet som inneholder teksten."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared/guide.po b/source/nb/helpcontent2/source/text/shared/guide.po
index c1b0a7859b2..7e191afdb36 100644
--- a/source/nb/helpcontent2/source/text/shared/guide.po
+++ b/source/nb/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-17 16:32+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/nb/helpcontent2/source/text/shared/optionen.po b/source/nb/helpcontent2/source/text/shared/optionen.po
index c0f8e13d387..d2af9bd0a11 100644
--- a/source/nb/helpcontent2/source/text/shared/optionen.po
+++ b/source/nb/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-17 16:53+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@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: 1555519996.000000\n"
#: 01000000.xhp
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/nb/helpcontent2/source/text/simpress/01.po b/source/nb/helpcontent2/source/text/simpress/01.po
index 01e5ca08822..467e44b6b17 100644
--- a/source/nb/helpcontent2/source/text/simpress/01.po
+++ b/source/nb/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-10 19:41+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/nb/helpcontent2/source/text/swriter/guide.po b/source/nb/helpcontent2/source/text/swriter/guide.po
index dbcab115edc..08f59e6e8b8 100644
--- a/source/nb/helpcontent2/source/text/swriter/guide.po
+++ b/source/nb/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-23 14:49+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "På verktøylinja <emph>Standard</emph>, klikk på knappen <emph> Datastruktur</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Ikon</alt></image> for å åpne <emph>Datastrukturen</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "I <emph>Datastruktur</emph>, klikk på ikonet <emph>Innholdsvisning</emph>ikon<image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Klikk på overskrifta i <emph>Datastrukturen</emph>, klikk deretter på <emph>Kapittel opp</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Ikon</alt></image> or <emph>Kapittel ned</emph> ikon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Ikon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Klikk på <emph>Flytt nivå opp</emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Ikon</alt></image> eller <emph>Flytt nivå ned</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Ikon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Klikk på knappen <emph>Vis overskriftsnivåer</emph>ikon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, og velg et nummer fra lista."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
index 66f601d4e44..1922012d03c 100644
--- a/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-02 07:23+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Flere felt"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Fliker"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Gruppertlinje"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/nb/sc/messages.po b/source/nb/sc/messages.po
index bc4d368dfa5..da17aa63110 100644
--- a/source/nb/sc/messages.po
+++ b/source/nb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-02 16:20+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(alenetilgang)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,12 +15775,12 @@ msgstr "Behandle vilkårsformatering"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Dataskjema"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Lukk"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Ny post"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Ny"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Slett"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Gjenopprett"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Forrige oppføring"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Ne_ste oppføring"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Lukk"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Datastrømmer («Live»)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Oppgi URL-en til kildedokumentet i det lokale filsystemet eller på Internett."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Bla gjennom..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Databaseområde:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Datatilbyder:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Søkestreng"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Kildestrøm"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultatene til:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolonner"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rader"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Gruppert etter"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervall:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametre"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Hjelp"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "Fil"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Angi kantlinjene for de valgte cellene."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Øk innrykk"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Minsk innrykk"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hjem"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "Hjem"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Felt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Sett inn"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Sett inn"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "Utforming"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Rett inn objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Utforming"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "Statistikk"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Gjennomsyn"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Gjennomgang"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bilde"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bilde"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Draw"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Daw"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Skriv ut"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Skriv ut"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Skjema"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Skjema"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Verktøy"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Verktøy"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Søkeresultater"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Ark"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Celle"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Innehold"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Disposisjonssymbol"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Vindu"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Rutenettlinjer:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Farge:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Vis i fargede celler"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Skjul"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Sidebryting"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "_Hjelpelinjer ved flytting"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Visuell hjelp"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Objekter/bilder:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Diagrammer:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Tegneobjekter:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Skjul"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Skjul"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Skjul"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekter"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "_Synkroniser ark"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Forstørr"
diff --git a/source/nb/scp2/source/ooo.po b/source/nb/scp2/source/ooo.po
index e46bfa35da2..74ff43e5a73 100644
--- a/source/nb/scp2/source/ooo.po
+++ b/source/nb/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-10 18:05+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@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: 1554919531.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Åpne dokument"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/nb/scp2/source/winexplorerext.po b/source/nb/scp2/source/winexplorerext.po
index 338b57705d3..66721cb4916 100644
--- a/source/nb/scp2/source/winexplorerext.po
+++ b/source/nb/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 11:11+0200\n"
-"Last-Translator: Olav <odahlum@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-12-11 11:30+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1386761400.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Gjør utforskeren i Microsoft Windows i stand til å vise informasjon om %PRODUCTNAME-dokumenter, som for eksempel forhåndsvisning av miniatyrbilder."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/nb/sd/messages.po b/source/nb/sd/messages.po
index f7e9f030586..41c287e344a 100644
--- a/source/nb/sd/messages.po
+++ b/source/nb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-10 18:16+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "klikk for å åpne hyperlenke:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Gi navn til HTML-utforming"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "Fil"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Hjelp"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "Fil"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hjem"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Hjem"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Felt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Sett inn"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Sett inn"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "Side"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "Side"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Se igjennom"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Gjennomgang"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vis"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "Vis"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "Tekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "Tekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tabell"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "Tabell"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverter"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bilde"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bilde"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Draw"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Draw"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Skjema"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Skjema"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Verktøy"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Verktøy"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Vis figurer"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "Fil"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Hjelp"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "Fil"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hjem"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Hjem"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Felt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Sett inn"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Sett inn"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "Lysbilde"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "Lysbilde"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Lysbildeframvisning"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Lysbildevisning"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Gjennomgang"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Gjennomgang"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vis"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "Vis"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tabell"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Tabell"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverter"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Bilde"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bilde"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Draw"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Draw"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Skjema"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Skjema"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Verktøy"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Verktøy"
diff --git a/source/nb/sfx2/messages.po b/source/nb/sfx2/messages.po
index 0ea1a8631d9..50bea16e309 100644
--- a/source/nb/sfx2/messages.po
+++ b/source/nb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-10 18:05+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@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: 1554919520.000000\n"
#: include/sfx2/strings.hrc:25
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Fjern egenskap"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Den innskrevne verdien samsvarer ikke med den angitte typen.\n"
"Verdien ble lagret som tekst."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Stilen eksisterer. Overskrive?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Nu~llstill"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Navnet er allerede i bruk."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Denne stilen finnes ikke."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Denne stilen kan ikke brukes som en grunnstil,\n"
"fordi det vil resultere i en tilbakevendende referanse."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Navnet er allerede i bruk på en standardstil.\n"
"Velg et annet navn."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Hvis du fjerner disse stilene, vil teksten bli tilbakeført til foreldrestilen.\n"
"Vil du likevel slette disse stilene?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stiler i bruk: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Dokumentstruktur"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Feil ved passordbekreftelse"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Send"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Skrift"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Vis forhåndsvisninger"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Vis versjonskommentar"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(ingen navn satt)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Stiler"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarkisk"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Fyllformatmodus"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Ny stil fra markeringen"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Stilhandlinger"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Oppdater stil"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Vil du virkelig avbryte opptaket? Alt som er tatt opp til nå vil gå tapt."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Avbryt opptaket"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Disse malene klargjøres for første gangs bruk."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Fant ingen standardskriver.\n"
"Velg en skriver og prøv igjen."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Klarte ikke å starte skriveren.\n"
"Sjekk skriveroppsettet."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Skriveren er opptatt"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (skrivebeskyttet)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Vil du lagre de nye innstillingene i det \n"
"gjeldende dokumentet?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Vil du lagre de nye innstillingene\n"
"i det gjeldende dokumentet?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Vil du lagre de nye innstillingene i det \n"
"gjeldende dokumentet?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Dokumentet kan ikke lukkes fordi\n"
"en utskriftsjobb ikke er ferdig."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Sjekk oppsettet til %PRODUCTNAME eller innstillingene i e-postprogrammet ditt."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Feilkoden er $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Feil ved sending av e-post."
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Dette dokumentet kan ikke redigeres fordi du sannsynligvis mangler tilgangsrettigheter. Vil du redigere en kopi av dokumentet?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Du kan også prøve å ignorere låsningen og åpne dokumentet for redigering."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Åpne kopi"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "Åpne"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (reparert dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Dokumentet er ikke sjekket ut på tjeneren."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Hjelp oss med å gjøre %PRODUCTNAME enda bedre!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Involver deg"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Dine donasjoner støtter vårt verdensomspennende fellesskap."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Doner"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dokumentet er åpnet i skrivebeskyttet modus."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Denne PDF filen er åpnet i \"read-only\" for å kunne tillate signering av filen."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Klassifikajsonsetiketten for dette dokumentet er %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Dokumentet må klassifiseres før inneholdet i utklippstavla kan limes inn"
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Dokumentet har lavere klassifiseringsnivå enn utklippstavla"
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Nivå"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nasjonell sikkerhet"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Eksport kontrol:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Sjekk ut"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Rediger dokument"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Signer dokumentet"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dette dokumentet har en ugyldig sgnatur."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Signaturen var gyldig, men dokumentet har blitt endret"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Signaturen er i orden, men sertifikatet kunne ikke sjekkes."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Signaturen er OK, men dokumentet er bare delvis signert."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Sertifikatet kunne ikke verifiseres og dokumentet er bare delvis signert."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dette dokumentet er signert digitalt og signaturen er gyldig."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Vis signaturer"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Lukk panel"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Fest"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Løsne"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Flere valg"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Lukk sidepanel"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Innstillinger for sidepanelet"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Tilpassing:"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Gjenopprett standardverdier"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Lukk sidelinje"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Biebol"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blå kurve"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Arkitekttegninger"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Lyseblå"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klassisk rød"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Skogsfugl"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasjon"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lys"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Frisk grønn"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropol"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Midnattsblå"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natur illustrasjon"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Blyant"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portefølje"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Fremgang"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solnedgang"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Årgang"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Rik"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Fortsett"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modere forretnigsbrev sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne forretningsbrev serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visittkort med logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Fjern"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tøm alle"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Passordlengde"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Passordet du skrev inn skaper kompatibilitetsproblem. Skriv inn et passord med mindre enn 52 bytes eller mer enn 55 bytes."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Versjonsmerknad:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Navn"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Type"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Verdi"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ja"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nei"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Legg til _egenskap"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Navn"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Verdi"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Plassering:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Type:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Endre _passord"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Mal:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Egenskaper for “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Generelt "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Beskrivelse"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Selvvalgte egenskaper"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS-egenskaper"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Sikkerhet"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Dette produktet er laget av %OOOVENDOR, basert på OpenOffice.org som er underlagt opphavsrett 2000, 2011 Oracle og/eller partnere. %OOOVENDOR vedkjenner seg alle medlemmer av fellesskapet, se http://www.libreoffice.org/ for flere detaljer."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/nb/shell/messages.po b/source/nb/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/nb/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/nb/starmath/messages.po b/source/nb/starmath/messages.po
index 09a681d4a32..51687ff660a 100644
--- a/source/nb/starmath/messages.po
+++ b/source/nb/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-04-10 17:50+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@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: 1554918616.000000\n"
#: starmath/inc/smmod.hrc:16
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Eksempler"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiv"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Halvfet"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "svart"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blå"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "grønn"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "rød"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyanblå"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magentarød"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Grå"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "Lime"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "Rødbrun"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "Marineblå"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olivengrønn"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lilla"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "sølv"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "blågrønn"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "gul"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "skjul"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "størrelse"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "skrift"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "venstre"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "midtstilt"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "høyre"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Kommandoer"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formel"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Lagrer dokumentet …"
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION-formel"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FEIL: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Uventet tegn"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Uventet symbol"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "«{» forventet"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "«}» forventet"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "«(» forventet"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "«)» forventet"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Venstre og høyre symbol passer ikke sammen"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Ventet «fixed», «sans». eller «serif»"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Tegnet etter «size» er uventet"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dobbel justering er ikke lov"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dobbel hevet/senket skrift er ikke lov"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "«#» forventet"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Trenger farger"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "«HØYRE» forventet"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Innhold"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Tittel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formeltekst"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~rekkefølge"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Størrelse"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "O~rginal størrelse"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Tilpass til side"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalering"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementer"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/nb/svtools/messages.po b/source/nb/svtools/messages.po
index af1c59595b5..b10f6342d14 100644
--- a/source/nb/svtools/messages.po
+++ b/source/nb/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-10 18:14+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554920066.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Angre: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "G~jør om: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "G~jenta: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Uformatert tekst"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Unformatert Tekst (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Punktbilde (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rik tekst-format (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rik tekst-format (RTF)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME tegneformat"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView punktgrafikk/animasjon (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statusinformasjon fra en lokal svx-lenke"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Lenke (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-bokmerke"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star-tjenerformat"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star-objektformat"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Miniprogram-objekt"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Programtillegg"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0-objekt"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0-objekt"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0-objekt"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0-objekt"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0-objekt"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/hoved 4.0-objekt"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/hoved 5.0-objekt"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-objekt"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4-objekt"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0-objekt"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0-objekt"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-objekt"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0-objekt"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0-objekt"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-objekt"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0-objekt"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objekt"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-objekt"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0-objekt"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0-objekt"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-objekt"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0-objekt"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0-objekt"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint-objekt"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Enkel HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamisk Data Utveksling (DDE lenke)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word-objekt"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet-objekt"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-dokumentobjekt"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-dokumentinfo"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokument"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objekt"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Bildeobjekt"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer-objekt"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web-objekt"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer-/hovedobjekt"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw-objekt"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress-objekt"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc-objekt"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart-objekt"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math-objekt"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-metafil"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datakildeobjekt"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datakildetabell"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-spørring"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 Dialog"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Lenke"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-format uten merknader"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Klarte ikke å sette inn objektet %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Klarte ikke å sette inn objekt fra fila %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Flere objekter"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Ukjent kilde"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Navn"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Størrelse"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Sist endret"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Type"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "byte"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Rad: %1, kolonne: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", type: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Mappe"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fil"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Tomt felt"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerisk"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normalt"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Tegnsett"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Ordbok"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Strøk"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonliste"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetisk (alfanumerisk først)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetisk (alfanumerisk sist)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerisk"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Ordbok"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Strøk"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetisk (alfanumerisk først, gruppert etter stavelser)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetisk (alfanumerisk først, gruppert etter konsonanter)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetisk (alfanumerisk sist, gruppert etter stavelser)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetisk (alfanumerisk sist, gruppert etter konsonanter)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "I dag"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Ingen"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lett"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Lett kursiv"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Vanlig"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiv"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Halvfet"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Halvfet kursiv"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Svart"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Svart kursiv"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Bok"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Fet skrå"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Smal "
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Smal fet"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Smal Fet Skråstilt"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Smal Fet Skrå"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Smal Skråstilt"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Smal Skrå"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ekstra lys"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstra lys skråstilt"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Skrå"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Halvfet"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Halvfet skråstilt"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Den samme skrifta vil bli brukt både på utskrifta og på skjermen."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Dette er en skrift for skrivere. Utseendet på skjermen kan være forskjellig."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Denne skriftstilen vil bli simulert, eller den nærmeste, tilsvarende stilen vil bli brukt."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Denne skrifta er ikke installert. Den nærmeste tilgjengelige skrifta vil bli brukt i stedet."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Bla gjennom …"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Flytt til begynnelsen"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Flytt til venstre"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Flytt til høyre"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Flytt til slutten"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Legg til"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vannrett linjal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Loddrett linjal"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bits grense"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bits fargeutjevning"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bits gråtoner"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bits farge"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bits gråtone"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bits farge"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bits naturlig farge"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Dette bildet krever omtrent %1 KB minne."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Dette bildet krever omtrent %1 KB minne. Filstørrelsen er %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Filstørrelsen er %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "vert"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Øvrige CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Klar"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Satt på pause"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Venter på sletting"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Opptatt"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Klargjør"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Venter"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Starter"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Behandler"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Utskrift"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Frakoblet"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Feil"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Ukjent tjener"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papirstopp"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ikke nok papir"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuell papirmating"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papirproblemer"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Inn/ut-aktiv"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Ikke plass til flere utskrifter"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Lite toner"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Tom for toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Slett side"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Trenger informasjon fra brukeren"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "For lite minne"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Åpent lokk"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energisparemodus"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standardskriver"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokumenter"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Fullfør"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Neste >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Tilbake"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Steg"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ingen>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Firma"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Avdeling"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Fornavn"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Etternavn"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Gate"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postnummer"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Poststed"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Overskrift"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posisjon"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adresseskjema"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Forbokstaver"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Høflig hilsen"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tlf: Hjemme"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tlf: Arbeid"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-post"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Merknad"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Bruker 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Bruker 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Bruker 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Bruker 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Delstat/region"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tlf: Kontor"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Personsøker"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tlf: Annen"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Inviter"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME trenger et Java-kjøremiljø (JRE) for å utføre denne oppgaven. Installer et Java-kjøremiljø og start %PRODUCTNAME på nytt."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME trenger et %BITNESS-bit kjøremiljø Java (JRE) for å utføre denne oppgaven. Installer Java og start om %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME krever Oracle's Java Development Kit (JDK) på Mac OS X 10.10 eller nyere for å kunne kjøre denne oppgaven. Vennligst installer den korrekte versjonen og start %PRODUCTNAME på nytt."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Innstillingene i %PRODUCTNAME er endret. Gå til «%PRODUCTNAME → Innstillinger → %PRODUCTNAME → Avansert» og velg kjøremiljøet som skal brukes i %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Innstillingene i %PRODUCTNAME er endret. Gå til «Verktøy → Innstillinger → %PRODUCTNAME → Avansert» og velg kjøremiljøet som skal brukes i %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME trenger et Java-kjøremiljø (JRE) for å utføre denne oppgaven, men det valgte virker ikke. Velg en annen versjon eller installer en ny. Velg deretter denne i %PRODUCTNAME → Innstillinger → %PRODUCTNAME - Avansert."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME trenger et Java-kjøremiljø (JRE) for å utføre denne oppgaven, men det valget virker ikke. Velg en annen versjon eller installer en ny. Velg deretter denne i Verktøy - Innstillinger - %PRODUCTNAME - Avansert."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Krever et Java-kjøremiljø (JRE)"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Velg Java-kjøremiljø"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Java-kjøremiljøet virker ikke"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Kildekode"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Bokmerkefil"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Bilder"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Oppsettsfil"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Program"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Databasetabell"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systemfil"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-dokument"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Hjelpefil"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Internett-dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arkivfil"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Loggfil"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice-database"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0/5.0-hoveddokument"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice-bilde"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstfil"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Lenke"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0/5.0-mal"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-dokument"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-mal"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Satsvis fil"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fil"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Mappe"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstdokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Regneark"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentasjon"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tegning"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Internett-dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Hoveddokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formel"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Database"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 reknearkmal"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 tegnemal"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 presentasjonsmal"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 tekstdokumentmal"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokal stasjon"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskstasjon"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-stasjon"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Nettverksforbindelse"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-dokument"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-mal"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-framvisning"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 formel"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 diagram"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 tegning"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 rekneark"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 presentasjon"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 tekstdokument"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 hoveddokument"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-database"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-tegning"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-formel"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-hoveddokument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-presentasjon"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-regneark"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-tekst"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-regnearkmal"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-tegningsmal"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-presentasjonsmal"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekstmal"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-utvidelse"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell stavekontroll"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen orddeler"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes synonymordbok"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Liste over ignorerte ord"
diff --git a/source/nb/svx/messages.po b/source/nb/svx/messages.po
index f584407e2a5..6b71f3c8a33 100644
--- a/source/nb/svx/messages.po
+++ b/source/nb/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-02 16:20+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Venstre til høyre (loddrett)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Angi den vertikale forskyvningprosenten fra sentrum for gradient skyggeleggingsstil. 50% er den vertikale sentrum."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Omrissredigering"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Bruk"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Arbeidsområde"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Velg"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rektangel"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Rediger punkter"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Flytt punkter"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Sett inn punkter"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Slett punkter"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Autoomriss"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Angre"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Gjenta"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipette"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Fargetoleranse"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Bunntekst"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Bildekartredigering"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Bruk"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Åpne..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Lagre …"
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Lukk"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Velg"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rektangel"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polygon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Frihåndsmangekant"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Rediger punkter"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Flytt punkter"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Sett inn punkter"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Slett punkter"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Angre"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Gjenta"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktiv"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro …"
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Egenskaper..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresse:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Ramme:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekst:"
diff --git a/source/nb/sw/messages.po b/source/nb/sw/messages.po
index 74560f35a01..6cb71ebbbed 100644
--- a/source/nb/sw/messages.po
+++ b/source/nb/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nb\n"
@@ -3102,9 +3102,9 @@ msgid "Change object title of $1"
msgstr "Endre tittelen på objektet $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Endre beskrivelsen på objektet $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -11994,147 +11994,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Hjelp"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "Fil"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Hjem"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Hjem"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Sett inn"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Sett inn"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Utforming"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Utforming"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referanser"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referanser"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "Gjennomgang"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Gjennomgang"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Vis"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "Vis"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Tabell"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Tabell"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Bilde"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Bilde"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Draw"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Draw"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Skriv ut"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Skriv ut"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Skjema"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Skjema"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Verktøy"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Verktøy"
@@ -12144,152 +12144,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "Fil"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "Hjem"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Sett inn"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Bryt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Utforming"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referanser"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Kontroller"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "Vis"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Tabell"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Bilde"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Tegne"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Skriv ut"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Verktøy"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13356,8 +13356,8 @@ msgstr "Større mellomrom mellom orda på linjer med manuelt linjeskift i blokkj
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Beskytt skjema"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16637,47 +16637,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Innholdsfortegnelse, Indeks eller litteraturliste"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Forhåndsvisning"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Forhåndsvisning"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Type"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Oppføringer"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stiler"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Spalter"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Bakgrunn"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Forhåndsvisning"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Nivå"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Type"
@@ -16907,302 +16907,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Rediger …"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Tittel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Type:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Innholdsliste"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Alfabetisk register"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Figurliste"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Tabelliste"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Selvvalgt"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektliste"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Litteraturhenvisning"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Beskyttet mot manuelle endringer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Type og tittel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "For:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Hele dokumentet"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Kapittel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evaluer opp til nivå:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Lag register eller innholdsfortegnelse"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Disposisjon"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Innholdsliste_merke"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabeller"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Tekst_rammer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafikk"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objekter"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Bruk nivå frå kildekapittelet"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Tilleggsstiler"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Stil_er"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Tildel stiler …"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Bildetekster"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektnavn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategori:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Visning:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referanser"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategori og nummer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Bildetekst"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Opprett fra"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Opprett fra disse objektene"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Parenteser:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Nummerer oppføringene"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[none]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatering av oppføringene"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Slå sammen like oppføringer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Slå sammen like oppføringer med _f eller ff"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Slå sammen med -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Skill mellom STORE og små bokstaver"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Skriv automatisk med stor bokstav"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Nøkler som egne oppføringer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Stikkordfil"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Fil"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Valg"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Språk:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Nøkkeltype:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sorter"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Nivåer"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Avsnittstiler"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Standard"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Rediger"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Tildeling"
diff --git a/source/ne/cui/messages.po b/source/ne/cui/messages.po
index 546b3db4159..450abbf33cf 100644
--- a/source/ne/cui/messages.po
+++ b/source/ne/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1647,107 +1647,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "छायाँ होइन"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1790,7 +1785,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1910,7 +1905,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2150,7 +2145,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2405,12 +2400,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2480,7 +2475,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2560,7 +2555,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2801,7 +2796,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3414,67 +3409,72 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME को बारेमा"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "मेरो वेबसाइट"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3594,19 +3594,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "बदल्नुहोस्"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "प्रतिस्थापन गर्नुहोस्"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "चौडाइ:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "पाठ मात्र"
@@ -4465,6 +4465,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5633,29 +5793,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "गुणहरू"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "फ्रेम:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "नाम"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9379,84 +9539,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "मद्दत"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME संवादहरू"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME संवादहरू"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "कागजात स्थिती"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "and "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "प्रणाली स्टार्ट-अपको अवधिमा %PRODUCTNAME लोड गर्नुहोस्"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "प्रणाली ट्रे क्विकस्टाटर अक्षम पार्नुहोस्"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11388,24 +11548,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12068,102 +12213,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13234,27 +13283,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ne/extensions/messages.po b/source/ne/extensions/messages.po
index dc7986a90fd..19792ac8395 100644
--- a/source/ne/extensions/messages.po
+++ b/source/ne/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3233,191 +3233,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "तालिका %1 का लागि स्तम्भ सजावट"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "छोटो नाम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "लेखक(हरू)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "प्रकाशक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "अध्याय"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "सम्पादक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "प्रकार"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "वर्ष"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "शीर्षक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "ठेगाना"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "पृष्ठ(हरू)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "संस्करण"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "पुस्तक शीर्षक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "भोल्युम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "प्रकाशन प्रकार"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "सङ्गठन"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "संस्था"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "विश्वविद्यालय"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "प्रतिवेदनेको प्रकार"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "महिना"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "बहीखाता"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "नम्बर"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "शृंङ्खलाहरू"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "टिप्पणी"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "द्रष्टव्य"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "प्रयोगकर्ता परिभाषित फाँट १"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "प्रयोगकर्ता परिभाषित फाँट २"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "प्रयोगकर्ता परिभाषित फाँट ३"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "प्रयोगकर्ता परिभाषित फाँट ४"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "प्रयोगकर्ता परिभाषित फाँट ५"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3602,31 +3602,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "लिङ्क फाँटहरू"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "सुझाव"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "मुख्य फारमको हालको रेकर्ड बारेमा विस्तृत बिवरण प्रदर्शन गर्नलाई सहायक फारमहरू प्रयोग गरिन्छ । यो कार्य गर्नलाई, तपाईँले सहायक फारमको कुन स्तम्भ मुख्य फारमको कुन स्तम्भसँग मिल्दछ भन्ने कुरा तोक्न सक्नुहुन्छ ।"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "लेबुल"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/ne/helpcontent2/source/auxiliary.po b/source/ne/helpcontent2/source/auxiliary.po
index 2daf5addf85..6883aadf82e 100644
--- a/source/ne/helpcontent2/source/auxiliary.po
+++ b/source/ne/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "साधारण जानकारी"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "उपकरणपट्टीहरू"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "चित्रहरू (%PRODUCTNAME ड्र)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "मेनुहरू"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "उपकरणपट्टीहरू"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "वस्तुहरू, ग्राफिक्स र बिटम
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "समूहहरू र तहहरू"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "प्रस्तुतिहरू र चित्रहरूको पाठ"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/sbasic/guide.po b/source/ne/helpcontent2/source/text/sbasic/guide.po
index 5a84dbc26dc..c98c82e804d 100644
--- a/source/ne/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ne/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-05-10 18:54+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "कार्यक्रम सङ्केतसँग एउटा संवाद खोल्दा"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>मोड्युलहरू र संवादहरू; टगल</bookmark_value><bookmark_value>संवादहरू; (उदाहरण) देखाउनका लागि कार्यक्रम सङ्केत प्रयो गर्दै</bookmark_value><bookmark_value>उदाहरणहरू; कार्यक्रम सङ्केतले प्रयोग गरेको संवाद प्रर्दशन</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/sbasic/python.po b/source/ne/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/ne/helpcontent2/source/text/sbasic/python.po
+++ b/source/ne/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/ne/helpcontent2/source/text/sbasic/shared.po b/source/ne/helpcontent2/source/text/sbasic/shared.po
index 75467f531c2..eb8c5e8eb40 100644
--- a/source/ne/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ne/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-03-31 03:24+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME आधारभूत मद्दत</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/sbasic/shared/03.po b/source/ne/helpcontent2/source/text/sbasic/shared/03.po
index bc464fe5413..02a3f247161 100644
--- a/source/ne/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ne/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/ne/helpcontent2/source/text/scalc/01.po b/source/ne/helpcontent2/source/text/scalc/01.po
index 481b34b5df6..f2123562fbb 100644
--- a/source/ne/helpcontent2/source/text/scalc/01.po
+++ b/source/ne/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">तपाईँंले घुसाउन चाहेको डेटा समावेश फाइल स्थान तोक्दछ ।</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">तालिका वा डेटा दायरा चयन गर्नु होस् जसलाई तपाईँं घुसाउन चाहनुहुन्छ ।</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">कक्ष दायरा निर्दिष् गर्द छ जसमा तपाईँं <emph>समायोजन दायराहरू </emph>बाकसमा सूचीत कक्ष दायरा सहित समायोजन गर्न चाहनुहुन्छ । पानामा कक्ष दायरा चयन गर्नुहोस् र त्यस पछि <emph>थप्नुहोस्</emph>क्लिक गर्नुहोस् । तपाईँं <emph>स्रोत डेटा दायरा </emph>सूची </ahelp>बाट पूर्वपरिभाषित कक्षको नाम चयन गर्न पानि सक्नुहुन्छ ।"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/schart/00.po b/source/ne/helpcontent2/source/text/schart/00.po
index 4b4fbb54f43..57f238cc386 100644
--- a/source/ne/helpcontent2/source/text/schart/00.po
+++ b/source/ne/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/ne/helpcontent2/source/text/shared/00.po b/source/ne/helpcontent2/source/text/shared/00.po
index 88e60c28572..9e3daac1950 100644
--- a/source/ne/helpcontent2/source/text/shared/00.po
+++ b/source/ne/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/ne/helpcontent2/source/text/shared/01.po b/source/ne/helpcontent2/source/text/shared/01.po
index 3439e6afb9e..fad352ed7c7 100644
--- a/source/ne/helpcontent2/source/text/shared/01.po
+++ b/source/ne/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/ne/helpcontent2/source/text/shared/02.po b/source/ne/helpcontent2/source/text/shared/02.po
index 79918a8c1c3..cacc68244e5 100644
--- a/source/ne/helpcontent2/source/text/shared/02.po
+++ b/source/ne/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/ne/helpcontent2/source/text/shared/guide.po b/source/ne/helpcontent2/source/text/shared/guide.po
index d6a1a3fd3f8..a71d89b87e8 100644
--- a/source/ne/helpcontent2/source/text/shared/guide.po
+++ b/source/ne/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/ne/helpcontent2/source/text/shared/optionen.po b/source/ne/helpcontent2/source/text/shared/optionen.po
index b985729f180..4ecac16ff51 100644
--- a/source/ne/helpcontent2/source/text/shared/optionen.po
+++ b/source/ne/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/ne/helpcontent2/source/text/simpress/01.po b/source/ne/helpcontent2/source/text/simpress/01.po
index daaed955132..6c05315ce3f 100644
--- a/source/ne/helpcontent2/source/text/simpress/01.po
+++ b/source/ne/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/ne/helpcontent2/source/text/swriter/guide.po b/source/ne/helpcontent2/source/text/swriter/guide.po
index a9f2d9a1ff5..c52774dfbef 100644
--- a/source/ne/helpcontent2/source/text/swriter/guide.po
+++ b/source/ne/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "<emph>मानक पट्टीमा</emph>,<emph> नेभिगेटर</emph> प्रतिमा खोल्नका लागि<image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">प्रतिमा</alt></image> नेभिगेटर <emph> क्लिक गर्नुहोस्</emph>।"
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po
index 1f3c29b5dbc..209b0a08acf 100644
--- a/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23685,6 +23685,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26033,6 +26042,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26051,6 +26069,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ne/sc/messages.po b/source/ne/sc/messages.po
index 6bb0a93b597..2abbe221ee5 100644
--- a/source/ne/sc/messages.po
+++ b/source/ne/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15498,6 +15498,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16074,12 +16079,12 @@ msgstr "ससर्त ढाँचा"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17356,86 +17361,44 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "बन्द गर्नुहोस्"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "नयाँ रेकर्ड"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "नयाँ"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "मेट्नुहोस"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "पूर्वावस्थामा ल्याउनुहोस्"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "अघिल्लो रेकर्ड"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "नयाँ रेकर्ड"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "बन्द गर्नुहोस्"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ब्राउज गर्नुहोस्"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "डाटाबेस दायराहरू"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19221,37 +19184,42 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "मिति"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "स्तम्भ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "पङ्क्ति"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "द्वारा समूहबद्ध: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "अन्तराल"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19399,167 +19367,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22181,17 +22151,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24157,112 +24137,117 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "सञ्झ्याल"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_रङ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "देखाउनुहोस्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "लुकाउनुहोस्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "पृष्ठ विच्छेद"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "चित्रपटहरू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "रेखाचित्र वस्तुहरू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "देखाउनुहोस्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "लुकाउनुहोस्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "देखाउनुहोस्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "लुकाउनुहोस्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "देखाउनुहोस्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "लुकाउनुहोस्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "वस्तुहरू"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/ne/scp2/source/ooo.po b/source/ne/scp2/source/ooo.po
index b0403e93cb8..d8af715dcad 100644
--- a/source/ne/scp2/source/ooo.po
+++ b/source/ne/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "खुल्ला कागजात"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ne/scp2/source/winexplorerext.po b/source/ne/scp2/source/winexplorerext.po
index 6be9516175d..05a7949faa0 100644
--- a/source/ne/scp2/source/winexplorerext.po
+++ b/source/ne/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2012-01-08 06:50+0200\n"
-"Last-Translator: Saaz <saaz.rai@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:22+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369347754.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows Explorer %PRODUCTNAME का बारेमा सूचना देखाउन कागजातहरू, थम्बनेल पूर्वावलोकनलाई सक्षम पार्छ ।"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ne/sd/messages.po b/source/ne/sd/messages.po
index 64f6b97d0cc..ba998e9d1de 100644
--- a/source/ne/sd/messages.po
+++ b/source/ne/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2633,6 +2633,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3114,164 +3119,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4744,160 +4934,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ne/sfx2/messages.po b/source/ne/sfx2/messages.po
index 67200c6be7d..2c23c8f622c 100644
--- a/source/ne/sfx2/messages.po
+++ b/source/ne/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -909,11 +909,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -922,28 +917,28 @@ msgstr ""
"खुलाइएको विशेष प्रकारसँग मान मेल खाँदैन ।\n"
"मानलाई पाठको रूपमा संग्रह गरिने छ।"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "फाइल पहिले नै अवस्थित छ । अधिलेखन गर्नुहुन्छ ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "रिसेट गर्नुहोस्"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "यो नाम पहिल्यै प्रयोगमा छ"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "यो शैली अस्तित्वमा छैन"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -953,7 +948,7 @@ msgstr ""
"यो शैली आधार शैलीको रूपमा प्रयोग गर्न सकिँदैन,\n"
"किनभने यसको परिणाम रिकर्सिभ सन्दर्भमा आउनेछ ।"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -962,7 +957,7 @@ msgstr ""
"नाम पहिल्यै एउटा पूर्वनिर्धारित शैलीको रूपमा अवस्थित छ ।\n"
"कृपया अन्य नाम रोज्नुहोस् ।"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -970,95 +965,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "नेभिगेटर"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "दोषपुर्ण पासवर्ड यकीन"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "पठाउनुहोस्"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "फन्ट"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "संस्करण टिप्पणी घुसाउनुहोस्"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "सोपानक्रमिक"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "भर्ने ढाँचा मोड"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "चयनबाट नयाँ शैली"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "अद्यावधिक शैली"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "के तपाईँ वास्तवमै अभिलेखन रद्द गर्न चाहनुहुन्छ ? यो बिन्दुसम्म अभिलेख राखिएको कुनै पनि चरणहरू हराउनेछ ।"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "अभिलेखन रद्द गर्नुहोस्"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "पहिलो-पटक प्रयोगका लागि टेम्प्लेटहरू थालनी गरिँदै छ ।"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1067,7 +1062,7 @@ msgstr ""
"कुनै पूर्वनिर्धारित कागजात फेला परेन ।\n"
"कृपया एउटा मुद्रक रोज्नुहोस र फेरि प्रयास गर्नुहोस ।"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1076,17 +1071,17 @@ msgstr ""
"मुद्रक सुरु गर्न सकेन ।\n"
"कृपया तपाईँको मुद्रक समायोजन जाँच गर्नुहोस ।"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "मुद्रक व्यस्त"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (पढ्नका लागि मात्र)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1097,7 +1092,7 @@ msgstr ""
"के तपाईँ सक्रिया कागजातमा\n"
"नयाँ सेटिङहरू बचत गर्न चाहनुहुन्छ ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1108,7 +1103,7 @@ msgstr ""
"के नयाँ सेटिङहरू सक्रिय कागजातमा बचत\n"
"गरिनुपर्दछ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1119,7 +1114,7 @@ msgstr ""
"के तपाईँ सक्रिया कागजातमा\n"
"नयाँ सेटिङहरू बचत गर्न चाहनुहुन्छ ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1129,7 +1124,7 @@ msgstr ""
"कागजात बन्द गर्न सकिँदैन किनभने एउटा\n"
"मुद्रण कार्य हुँदैछ ।"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1137,7 +1132,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,18 +1140,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "यो कागजात सम्भवत: हराइरहेको पहुँच अधिकारहरूले गर्दा सम्पादन गर्न सकिँदैन । के तपाईँ कागजातको एउटा प्रति सम्पादन गर्न चाहनुहुन्छ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1164,353 +1159,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (मर्मत गरिएको कागजात)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "कागजात सम्पादन गर्नुहोस्"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "फाइल कागजात"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "विकल्प क्रमबद्ध गर्नुहोस"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "अनुकूल एनिमेसन..."
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "हटाउनुहोस्"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1884,32 +1889,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "संस्करण टिप्पणी"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "नाम"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "प्रकार"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "मान"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "प्रकार"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "हो"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "होइन"
@@ -1919,17 +1909,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "नाम"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "प्रकार"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "मान"
@@ -2070,19 +2060,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "स्थान:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "प्रकार:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "पासवर्ड परिवर्तन गर्नुहोस्..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "टेम्प्लेट:"
@@ -2092,28 +2082,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "“%1” को गुणहरू"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "साधारण"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "वर्णन"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "सुरक्षा"
@@ -2339,6 +2329,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ne/shell/messages.po b/source/ne/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ne/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ne/starmath/messages.po b/source/ne/starmath/messages.po
index 5e084dd7894..a84b48492ff 100644
--- a/source/ne/starmath/messages.po
+++ b/source/ne/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1659,271 +1659,296 @@ msgid "Examples"
msgstr "उदाहरण"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "मानक"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "छड्के"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "बाक्लो"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "कालो"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "नीलो"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "हरियो"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "म्याजेन्टा"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "खैरो"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "समय"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "पहेलो"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "लुकाउनुहोस्"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "साइज"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "फन्ट"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "बायाँ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "केन्द्र"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "दायाँ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "आदेशहरू"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "सूत्र"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "कागजात बचत गर्दैछ..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION सूत्र"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "त्रुटि : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "अनपेक्षित क्यारेक्टर"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' अपेक्षित"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' अपेक्षित"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' अपेक्षित"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' अपेक्षित"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' अपेक्षित"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "रङ आवश्यक"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'दायाँ' अपेक्षित"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "सामग्रीहरू"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "शीर्षक"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "सूत्र पाठ"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "किनाराहरू"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "साइज"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "मौलिक साइज"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "पृष्ठमा ठीक पार्नुहोस्"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1994,6 +2019,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "तत्व"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/ne/svtools/messages.po b/source/ne/svtools/messages.po
index 48bcae17d55..67c0f6d78d2 100644
--- a/source/ne/svtools/messages.po
+++ b/source/ne/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1525 +16,1527 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195771.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "पूर्वस्थितिमा फर्काउनुहोस्: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "रिडू गर्नुहोस्: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "दोहोर्याउनुहोस्: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "ढाँचाबद्ध नगरिएको पाठ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "एसभिएक्स आन्तरिक लिङ्कबाट वस्तुस्थिति सूचना"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "नेटस्केप पुस्तकचिनो"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टार सर्भर ढाँचा"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टार वस्तु ढाँचा"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "एप्लेट वस्तु"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लग-इन वस्तु"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "स्टारराइटर ३.० वस्तु"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "स्टारराइटर ४.० वस्तु"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "स्टारराइटर ५.० वस्तु"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "स्टारराइटर/वेब ४.० वस्तु"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "स्टारराइटर/वेब ५.० वस्तु"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "स्टारराइटर/मुख्य ४.० वस्तु"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "स्टारराइटर/मुख्य ५.० वस्तु"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "स्टारड्र वस्तु"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "स्टारड्र ४.० वस्तु"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "स्टारइम्प्रेस ५.० वस्तु"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "स्टारड्र ५.० वस्तु"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "स्टारक्याल्क वस्तु"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "स्टारक्याल्क ४.० वस्तु"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "स्टारक्याल्क ५.० वस्तु"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "स्टारचित्रपट वस्तु"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "स्टारचित्रपट ४.० वस्तु"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "स्टारचित्रपट ५.० वस्तु"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "स्टारइमेज वस्तु"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "स्टारइमेज ४.० वस्तु"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "स्टारइमेज ५.० वस्तु"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "स्टारम्याथ वस्तु"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "स्टारम्याथ ४.० वस्तु"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "स्टारम्याथ ५.० वस्तु"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "स्टारअब्जेक्ट पेन्ट वस्तु"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "साइल्क"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word वस्तु"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "स्टारफ्रेमसेट वस्तु"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "कार्यालय कागजात वस्तु"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "द्रष्टव्यहरू कागजात सूचना"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx कागजात"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "स्टारचित्रपट ५.० वस्तु"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ग्राफिक वस्तु"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "सञ्झ्यालहरू मेटाफाइल"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "डेटा स्रोत वस्तु"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "डेटा स्रोत तालिका"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL क्वेरी"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "लिङ्क"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "टिप्पणीहरू बिना HTML ढाँचा"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "वस्तु % घुसाउन सकिएन ।"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "फाइल % बाट वस्तु घुसाउन सकिएन ।"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "अरू वस्तुहरू"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "अज्ञात स्रोत"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "नाम"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "साइज"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "मिति परिमार्जित"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "प्रकार"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बाइटहरू"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "पङक्ति: %1, स्तम्भ: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", प्रकार: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "फोल्डर"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "फाइल"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "खाली फाँट"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "अल्फान्यूमेरिक"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "सामान्य"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "क्यारेक्टर सेट"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "रेडिकल"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "युनिकोड"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "हुइन"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "फोन पुस्तक"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "फोनेटिक (अल्फान्युमेरिक पहिलो)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "फोनेटिक (अल्फान्युमेरिक अन्तिम)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "अल्फान्यूमेरिक"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोश"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिनयिन"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "रेडिकल"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "हुइन"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "फोनेटिक (अल्फान्युमेरिक पहिलो, शब्दांशहरूद्वारा समूहबद्ध)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "फोनेटिक (अल्फान्युमेरिक पहिलो, अचलहरूद्वारा समूहबद्ध)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "फोनेटिक (अल्फान्युमेरिक अन्तिम, शब्दांशहरूद्वारा समूहबद्ध)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "फोनेटिक (अल्फान्युमेरिक अन्तिम, अचलहरूद्वारा समूहबद्ध)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "आज"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "कुनै पनि होइन"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "हल्का"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "हल्का छड्के"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "नियमित"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "छड्के"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "बाक्लो"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "बाक्लो छड्के"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "कालो"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "कालो छड्के"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "पुस्तक"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "संघनित"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "उही फन्ट तपाईँंको मुद्रक र तपाईँंको स्क्रिन दुवैमा प्रयोग गरिनेछ ।"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "यो एउटा मुद्रक फन्ट हो । पर्दा छवि फरक पर्न सक्छ ।"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "यो फन्ट शैलीको अनुशरण गरिनेछ अथवा सबैभन्दा मिल्दो जोडा मिल्ने शैली प्रयोग गरिनेछ ।"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "यो फन्ट स्थापना गरिएको छैन । सबैभन्दा मिल्दो उपलब्ध फन्ट प्रयोग गरिनेछ ।"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ब्राउज गर्नुहोस..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "गृहमा सार्नुहोस्"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "बायाँ सार्नुहोस्"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "दायाँ सार्नुहोस्"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "अन्त्यमा सार्नुहोस् "
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "थप्नुहोस्"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "तेर्सो रुलर"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ठाडो रुलर"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "१ बिट थ्रेसहोल्ड"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "१ बिट डिथर्ड"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "४ बिट ग्रेस्केल"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "४ बिट रङ"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "८ बिट ग्रेस्केल"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "८ बिट रङ"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "२४ बिट सच्चा रङ"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "यो छविलाई %1 KB स्मृति चाहिन्छ।"
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "यो छविलाई %1 KB स्मृति चाहिन्छ,यो फाइलको आकार %2 KB छ।"
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "फाइल आकार %1 KB छ।"
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "मुल्य"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "क्रमबद्ध गर्नुहोस्"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "तयार"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "पज गरिएको"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "विचाराधिन मेटाइ"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "व्यस्त"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "थालनी गर्दै"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "प्रतिक्षा गर्दै"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "तयारी गर्दै"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "प्रक्रिया गर्दै"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "मुद्रण गर्दैछ"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "अफलाइन"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "त्रुटि"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "अज्ञात सर्भर"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "कागज रोकावट"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "पर्याप्त कागज छैन"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "म्यानुअल फीड"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "कागज समस्या"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "आगत/निर्गात सक्रिय"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "निर्गत भाँडा पूरा छाछ"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "कम टोनर"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "टोनर छैन"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "पृष्ठ मेट्नुहोस्"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "प्रयोगकर्ता अवरोध आवश्यक्य"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "अपर्याप्त स्मृति"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "आवरण खोल्नुहोस्"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "पावर बचत मोड"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "पूर्वनिर्धारित मुद्रक"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d कागजातहरू"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "समाप्त गर्नुहोस्"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "अगाडि >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< पछाडि"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "चरणहरू"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<कुनै पनि होइन>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "कम्पनी"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "विभाग"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "पहिलो नाम"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "अन्तिम नाम"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "गल्ली"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "देश"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "जिप सङ्केत"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "शहर"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "शीर्षक"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "स्थिति"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ठेगाना. फाराम"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "प्रथमाक्षर"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "स्तुतिमय बन्द"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "टेलिफोन: गृह"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "टेलिफोन: कार्य"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "द्रष्टव्य"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "प्रयोगकर्ता १"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "प्रयोगकर्ता २"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "प्रयोगकर्ता ३"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "प्रयोगकर्ता ४"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "आईडी"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "राज्य"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "टेलिफोन: कार्यालय"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजर"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मोबाइल"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "टेलिफोन: अन्य"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "पात्रो"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "निमन्त्रण गर्नुहोस्"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME लाई यो कार्य सम्पादन गर्नका लागि एउटा Java runtime environment (JRE) को आवश्यक पर्दछ। कृपया JRE स्थापना गर्नुहोस् र %PRODUCTNAME पुन: सुरु गर्नुहोस् ।"
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE आवश्यक छ"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE चयन गर्नुहोस्"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE दोषयुक्त छ"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "स्रोत सङ्केत"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "पुस्तकचिनो फाइल"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ग्राफिक्स"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "कम्फिगरेसन फाइल"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "अनुप्रयोग"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "डाटाबेस तालिका"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "प्रणाली फाइल"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "माइक्रोसफ्ट वर्ड कागजात"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "मद्दत फाइल"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML कागजात"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "सङ्ग्रह फाइल"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लग फाइल"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "स्टारअफिस ५.० टेम्प्लेट"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "स्टारराइटर ४.० /५.० मुख्य कागजात"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "स्टारअफिस ५.० टेम्प्लेट"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "पाठ फाइल"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "लिङ्क"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 टेम्प्लेट"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "माइक्रोसफ्ट एक्सेल कागजात"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel टेम्प्लेट"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "समूह फाइल"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "फाइल"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "फोल्डर"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "पाठ कागजात"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रेडशीट"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रस्तुति"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "रेखाचित्र"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML कागजात"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "मुख्य कागजात"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "सूत्र"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "डाटाबेस"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "स्थानीय ड्राइभ"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "डिस्क ड्राइभ"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ड्राइभ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "सञ्जाल जडान"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "माइक्रोसफ्ट पावरप्वाइन्ट कागजात"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint टेम्प्लेट"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "माइक्रोसफ्ट पावरप्वाइन्ट प्रदर्शन"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML कागजात"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument डाटाबेस"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument रेखाचित्र"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument सूत्र"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument मुख्य कागजात"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument प्रस्तुतिकरण"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument स्प्रेडसिट"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument पाठ"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument स्प्रेडसीट टेम्प्लेट"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument रेखाचित्र टेम्प्लेट"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument प्रस्तुति टेम्प्लेट"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument पाठ टेम्प्लेट"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME विस्तार"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ne/svx/messages.po b/source/ne/svx/messages.po
index 0d4fb01fb78..2005732a1a2 100644
--- a/source/ne/svx/messages.po
+++ b/source/ne/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7999,6 +7999,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12503,88 +12508,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "रूपरेखा सम्पादक"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "लागू गर्नुहोस्"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "कार्यस्थान"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "चयन गर्नुहोस्"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "आयात"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "दीर्घवृत्त्त"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुज"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिन्दु सम्पादन गर्नुहोस्"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिन्दुहरू सार्नुहोस्"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिन्दुहरू घुसाउनुहोस्"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिन्दुहरू मेट्नुहोस्"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "स्वत:रूपरेखा"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "पूर्ववस्थामा फर्काउनुहोस्"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "रातो"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "प्यालेटहरू"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12909,124 +12919,118 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "फुटर"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "छवि मानचित्र सम्पादक"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "लागू गर्नुहोस्"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "खोल्नुहोस्...."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "बचत गर्नुहोस्..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "बन्द गर्नुस्"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "चयन गर्नुहोस्"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "आयात"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "दीर्घवृत्त्त"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुज"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "स्वतन्त्र बहुभुज"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिन्दु सम्पादन गर्नुहोस्"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिन्दुहरू सार्नुहोस्"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिन्दुहरू घुसाउनुहोस्"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिन्दुहरू मेट्नुहोस्"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "पूर्ववस्थामा फर्काउनुहोस्"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "रातो"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "सक्रिय"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "म्याक्रो..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "गुणहरू: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "ठेगाना:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "फ्रेम"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/ne/sw/messages.po b/source/ne/sw/messages.po
index 16bae79613f..744e16b0eb8 100644
--- a/source/ne/sw/messages.po
+++ b/source/ne/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -3174,7 +3174,7 @@ msgid "Change object title of $1"
msgstr "$1 को वस्तु क्रम परिवर्तन गर्नुहोस्"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12549,147 +12549,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12699,152 +12699,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13953,7 +13953,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17408,49 +17408,49 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "पूर्ववलोकन"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "पूर्ववलोकन"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "प्रकार"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "प्रविष्टिहरू"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "शैलीहरू"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "स्तम्भहरू"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "पूर्ववलोकन"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "स्तर"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17692,323 +17692,323 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "सम्पादन गर्नुहोस्..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "शीर्षक"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "प्रकार"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "तालिका सामग्रीहरू"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "प्रयोगकर्ता परिभाषित"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "सन्दर्भ सूची १"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "फर्म"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "सम्पूर्ण कागजात"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "अध्याय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "रूपरेखा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "तालिकाहरू"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "पाठ फ्रेम"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ग्राफिक्स्"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE वस्तुहरू"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "सशर्त शैलीहरू"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "शैलीहरू"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "क्याप्सन"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "वस्तु नाम"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "वर्ग"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "प्रदर्शन गर्नुहोस्"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "सन्दर्भहरू"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "वर्ग र सङ्ख्या"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "क्यापसन पाठ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "कोष्ठकहरू"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[none]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
#, fuzzy
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "संवेदनशिल केस"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "फाइल"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "विकल्प"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "भाषा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "कुञ्जी प्रकार"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "क्रमबद्ध गर्नुहोस्"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "स्तर"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(अनुच्छेद शैली: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "पूर्वनिर्धारित"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "सम्पादन गर्नुहोस्"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/nl/cui/messages.po b/source/nl/cui/messages.po
index 5ea4dcbc089..95135ee1263 100644
--- a/source/nl/cui/messages.po
+++ b/source/nl/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-04-30 13:44+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-30 06:15+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\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: 1556631873.000000\n"
+"X-POOTLE-MTIME: 1559196921.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Voer een geldig adres in voor een thema of een zoekcriterium."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "De Mozilla Themes API is momenteel niet beschikbaar."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Geen randen instellen"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Stel alleen de buitenste rand in"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Stel de buitenste rand en horizontale lijnen in"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Stel de buitenste rand en alle binnenste lijnen in"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Stel buitenste rand in zonder de binnenste lijnen te wijzigen"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Stel alleen diagonale lijnen in"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Stel alle vier de randen in"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Stel alleen linker- en rechterranden in"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Stel alleen de boven- en onderrand in"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Stel alleen de linkerrand in"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Stel boven en onder randen in en ook alle binnenste lijnen"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Stel de linker- en rechterranden en alle binnenste randen in"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Geen schaduw"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Schaduw rechtsonder laten vallen"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Schaduw rechtsboven laten vallen"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Schaduw linksonder laten vallen"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Schaduw linksboven laten vallen"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Ondertekend door: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Alle bestanden"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Geregistreerde databases"
@@ -1746,241 +1741,241 @@ msgstr "Geregistreerde databases"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME kan bestanden, die met CMIS zijn opgeslagen op externe servers, openen en opslaan."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr ""
+msgstr "Extra > AutoCorrect > AutoCorrectie-opties ...> Vervangen geeft een lijst met veel voorkomende vervangingen. Neem een kijkje en vul aan met uw eigen vervangingen."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can handle styles conditionally: paragraph styles that have different properties depending on the context."
-msgstr ""
+msgstr "Writer kan opmaakprofielen voorwaardelijk hanteren: alinea-opmaakprofielen die verschillende eigenschappen hebben, afhankelijk van de context."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/05130100.html
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With File > Versions you can store multiple versions of the document in the same file. You can also open, delete, and compare previous versions."
-msgstr ""
+msgstr "Met Bestand > Versies kunt u meerdere versies van het document in hetzelfde bestand opslaan. U kunt ook eerdere versies openen, verwijderen en vergelijken."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/01190000.html
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
-msgstr ""
+msgstr "U kunt een illustratie-index maken van objectnamen, niet alleen van onderschriften."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/05190000.html
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To temporarily starts with a fresh user profile or to restore a non-working %PRODUCTNAME instance start Help > Restart in Safe Mode."
-msgstr ""
+msgstr "Als u tijdelijk met een nieuw gebruikersprofiel wilt beginnen of een niet-werkende %PRODUCTNAME-instantie wilt herstellen, kiest u Help > Opnieuw opstarten in veilige modus."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
-msgstr ""
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
+msgstr "Wijzig de standaardlettertypen voor de vooraf gedefinieerde sjabloon of het huidige document via Extra > Opties > %PRODUCTNAME Writer > Standaardlettertypen."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr ""
+msgstr "Definieer teksten die u vaak gebruikt als AutoTekst. U kunt ze invoegen op naam, snelkoppeling of werkbalk in elk Writer-document."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/autotext.html
#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools > Options > %PRODUCTNAME Writer > AutoCaption."
-msgstr ""
+msgstr "%PRODUCTNAME kan automatisch een genummerd bijschrift toevoegen wanneer u objecten invoegt. Zie Extra > Opties> %PRODUCTNAME Writer> Automatische bijschriften."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01041100.html
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr ""
+msgstr "U kunt alinea's of tabelrijen alfabetisch of numeriek sorteren via Extra > Sorteren."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sections in %PRODUCTNAME Writer to protect part of a text, show/hide text, reuse parts from other documents, use different column layout."
-msgstr ""
+msgstr "Gebruik Secties in %PRODUCTNAME Writer om delen van tekst beschermen, tekst weergeven/verbergen, delen uit andere documenten hergebruiken, verschillende kolommen gebruiken"
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/04020100.html
#: cui/inc/tipoftheday.hrc:56
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet > Fill Cells > Random Number to generate a random series based on various distributions."
-msgstr ""
+msgstr "Gebruik Blad > Cellen vullen > Willekeurig getal, om een willekeurige reeks te genereren op basis van verschillende distributies."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/02140700.html
#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Conditional Formatting > Manage in Calc to find out which cells have been defined with conditional formatting."
-msgstr ""
+msgstr "Gebruik Opmaak > Voorwaardelijk > Beheer in Calc om te achterhalen welke cellen zijn gedefinieerd met voorwaardelijke opmaak."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/05120000.html
#: cui/inc/tipoftheday.hrc:58
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
-msgstr ""
+msgstr "Naast de inhoudsopgave kan %PRODUCTNAME ook alfabetisch, illustratie, tabellen, objecten, bibliografie en door de gebruiker gedefinieerde indexen maken."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/indices_toc.html
#: cui/inc/tipoftheday.hrc:59
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
-msgstr ""
+msgstr "Wilt u een reeks sorteren in %PRODUCTNAME Calc, zoals A1, A2, A3, A11, A15, niet in alfabetische volgorde maar op het getal? Schakel natuurlijke sortering in op het tabblad Opties."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/12030200.html
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools > Options > OpenCL."
-msgstr ""
+msgstr "Schakel enorme parallelle berekeningen van formulecellen in via de optie Extra > Opties > OpenCL."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/opencl.html
#: cui/inc/tipoftheday.hrc:61
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
-msgstr ""
+msgstr "%PRODUCTNAME ondersteunt vier macrobeveiligingsniveaus (van laag tot zeer hoog) en vertrouwde bronnen."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:63
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
-msgstr ""
+msgstr "Wilt u de geldige parameters van de opdrachtregel kennen? Start soffice met --help of -h of -?"
#. local help missing
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr ""
+msgstr "Wilt u de presentatie van hyperlinks in een spreadsheet beheren? Plaats ze met de HYPERLINK-functie."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Can not get what you want with VLOOKUP? With INDEX and MATCH you can do everything!"
-msgstr ""
+msgstr "Krijgt u niet wat je wilt met VERT.ZOEKEN? Met INDEX en VERGELIJKEN kunt u alles doen!"
#. local help missing
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "U kunt bestaande PDF-bestanden ondertekenen en ook die handtekeningen verifiëren."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
-msgstr ""
+msgstr "Writer bevat LibreLogo: eenvoudige logo-achtige programmeeromgeving met turtle vectorafbeeldingen, DTP en grafisch ontwerp."
#. local help missing
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr ""
+msgstr "U kunt cellen beveiligen met Opmaak> Cellen > Celbeveiliging. Gebruik Extra > Blad beveiligen om invoegen, verwijderen, hernoemen, verplaatsen / kopiëren van bladen te voorkomen."
#. local help missing
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr ""
+msgstr "Wilt u x maanden aan een datum toevoegen? Gebruik =ZELFDE.DAG(Begindatum;Maanden)."
#. local help missing
#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependants (Shift+F5) (or use Tools > Detective). For each hit you go one more step in the chain."
-msgstr ""
+msgstr "Traceer cellen die worden gebruikt in een formule, voorgangers (Shift+F9) of afhankelijkheden (Shift+F5) (of gebruik Extra > Detective). Bij elke hit gaat u een stap verder in de keten."
#. local help missing
#: cui/inc/tipoftheday.hrc:71
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a serie? Select the cell range and Sheet > Fill Cells > Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Moet u een serie vullen? Selecteer het celbereik en ga naar Blad > Cellen vullen > Reeks en kies tussen Lineair, Exponentieel, Datum en Autovullen."
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
-msgstr ""
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
+msgstr "Met %PRODUCTNAME kunt u uw gmail-account gebruiken om een standaardbrief toe te passen. Vul Extra > Opties> %PRODUCTNAME Writer > Standaardbrief E-mail in."
#. local help missing
#: cui/inc/tipoftheday.hrc:73
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Data > Validity allows you to create drop-down lists where the user selects a value instead of typing."
-msgstr ""
+msgstr "Met Gegevens > Geldigheid kunt u keuzelijsten maken waarin de gebruiker een waarde selecteert in plaats van te typen."
#. local help missing
#: cui/inc/tipoftheday.hrc:74
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use View > Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background."
-msgstr ""
+msgstr "Gebruik Beeld > Waardenmarkering om celinhoud in kleuren weer te geven: tekst / zwart, formules / groen, cijfers / blauw, beschermde cellen / grijze achtergrond."
#. local help missing
#: cui/inc/tipoftheday.hrc:75
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
-msgstr ""
+msgstr "Vreemde foutcode in Calc, Fout: gevolgd door een cijfer? Deze pagina geeft de uitleg:"
#. local help missing
#: cui/inc/tipoftheday.hrc:76
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit > Find & Replace > Other options > Attributes > Font weight."
-msgstr ""
+msgstr "Wilt u de vetgedrukte woorden in een Writer-document vinden? Bewerken > Zoeken en vervangen > Andere opties > Attributen > Tekendikte."
#. local help missing
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit > Find & Replace: Search = [<|>], Replace = blank and check ‘Regular expressions’ under Other options."
-msgstr ""
+msgstr "Wilt u alle <> in één keer verwijderen en de tekst binnen houden? Bewerken > Zoeken en vervangen: Zoeken = [<|>], Vervangen = leeg en vink 'Reguliere expressie' aan onder Andere opties."
#. local help missing
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > Detective > Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
-msgstr ""
+msgstr "Extra > Detective > Ongeldige gegevens markeren, markeert alle cellen in het blad die waarden bevatten die buiten de validatieregels vallen."
#. local help missing
#: cui/inc/tipoftheday.hrc:79
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to allow changes to parts of a read-only document in Writer? Insert frames or sections that can authorize changes."
-msgstr ""
+msgstr "Wilt u wijzigingen in delen van een alleen-lezen document toestaan in Writer? Voeg frames of secties in die wijzigingen kunnen toestaan."
#. local help missing
#: cui/inc/tipoftheday.hrc:80
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writing a book? %PRODUCTNAME master document lets you manage large documents as a container for individual %PRODUCTNAME Writer files."
-msgstr ""
+msgstr "Schrijft u een boek? Met het %PRODUCTNAME-hoofddocument kunt u grote documenten beheren als een container voor afzonderlijke %PRODUCTNAME Writer-bestanden."
#. local help missing
#: cui/inc/tipoftheday.hrc:81
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
-msgstr ""
+msgstr "Gebruik in Calc GETRIMD.GEM() om het gemiddelde van een gegevensset te retourneren met uitzondering van de hoogste en laagste waarden."
#. local help missing
#: cui/inc/tipoftheday.hrc:82
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
-msgstr ""
+msgstr "Bereken met Calc terugbetalingen van leningen: bijv. RMB (2%/12;36;2500) rentepercentage per betaalperiode 2%/12, 36 maanden, geleende bedrag 2500."
#. local help missing
#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
-msgstr ""
+msgstr "Gebruik uw Android of iPhone om uw Impress-presentatie op afstand te bedienen."
#. local help missing
#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
-msgstr ""
+msgstr "Presenter-console is een geweldige functie bij het presenteren met %PRODUCTNAME Impress. Heeft u dit al bekeken?"
#. local help missing
#: cui/inc/tipoftheday.hrc:85
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
-msgstr ""
+msgstr "Automatisch alfabetische indexvermeldingen markeren met behulp van een concordantiebestand."
#. local help missing
#: cui/inc/tipoftheday.hrc:86
@@ -1992,142 +1987,142 @@ msgstr "Frames kunnen worden gekoppeld, zodat de tekst van de ene naar de andere
#: cui/inc/tipoftheday.hrc:88
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get help from the community via the Ask portal."
-msgstr ""
+msgstr "Krijg hulp van de gemeenschap via het Ask-portaal."
#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has great extensions to increase your productivity, check them out."
-msgstr ""
+msgstr "%PRODUCTNAME heeft geweldige extensies om uw productiviteit te verhogen, bekijk ze eens."
#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents, check it out."
-msgstr ""
+msgstr "%PRODUCTNAME heeft een sjablooncentrum om mooie documenten te maken, bekijk het eens."
#: cui/inc/tipoftheday.hrc:91
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by clicking on F1, if you've installed it. Otherwise check online at:"
-msgstr ""
+msgstr "Ingesloten hulp is beschikbaar door op F1 te klikken, als u het heeft geïnstalleerd. Controleer anders online op:"
#: cui/inc/tipoftheday.hrc:92
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
-msgstr ""
+msgstr "Krijg %PRODUCTNAME-documentatie en gratis gebruikershandleidingen bij:"
#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Uw donaties ondersteunen onze wereldwijde gemeenschap."
#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as an extension."
-msgstr ""
+msgstr "Met %PRODUCTNAME is het heel eenvoudig om een nieuw woordenboek te installeren: ze worden als een extensie geleverd."
#: cui/inc/tipoftheday.hrc:95
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
-msgstr ""
+msgstr "%PRODUCTNAME is ontwikkeld door een vriendelijke gemeenschap, die bestaat uit honderden bijdragers over de hele wereld. Doe mee met uw vaardigheden, ook anders dan coderen."
#: cui/inc/tipoftheday.hrc:96
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
-msgstr ""
+msgstr "%PRODUCTNAME heeft een draagbare versie die u mobiliteit biedt. Zelfs zonder beheerdersrechten op uw computer kunt u %PRODUCTNAME Portable ook op uw harde schijf installeren."
#: cui/inc/tipoftheday.hrc:97
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
-msgstr ""
+msgstr "Met %PRODUCTNAME kunt u hulpmiddelen gebruiken, zoals externe schermlezers, brailleleesapparaten of invoerapparatuur voor spraakherkenning."
#: cui/inc/tipoftheday.hrc:98
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "Maak bewerkbare hybride PDF's met %PRODUCTNAME."
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management ? Use a 3rd party extension."
-msgstr ""
+msgstr "Citatiebeheer? Gebruik een extensie van derden."
#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You plan to change the computer and want to recover your customizations? See:"
-msgstr ""
+msgstr "U bent van plan om de computer te vervangen en wilt u uw aanpassingen terughalen? Zie:"
#: cui/inc/tipoftheday.hrc:101
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
-msgstr ""
+msgstr "%PRODUCTNAME ondersteunt meer dan 150 talen."
#: cui/inc/tipoftheday.hrc:102
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
-msgstr ""
+msgstr "Wilt u een ambassadeur van %PRODUCTNAME worden? Er zijn certificeringen voor ontwikkelaars, beheerders en trainers."
#: cui/inc/tipoftheday.hrc:103
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
+msgstr "%PRODUCTNAME wil van toepassing zijn als een organisatie voor Google Summer of Code (GSoC) zie:"
#: cui/inc/tipoftheday.hrc:104
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create fillable form documents (even PDF's) with %PRODUCTNAME."
-msgstr ""
+msgstr "Maak invulbare formulierdocumenten (zelfs PDF's) met %PRODUCTNAME."
#: cui/inc/tipoftheday.hrc:105
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
-msgstr ""
+msgstr "Voer %PRODUCTNAME uit in elke browser via rollApp."
#: cui/inc/tipoftheday.hrc:106
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and xml filters?"
-msgstr ""
+msgstr "Nieuwe XSLT- en XML-filters ontwikkelen?"
#: cui/inc/tipoftheday.hrc:108
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
-msgstr ""
+msgstr "Documenten eenvoudig naar PDF converteren, met één klik door op het PDF-pictogram op de werkbalk te klikken."
#: cui/inc/tipoftheday.hrc:109
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select a different icon set from Tools > Options > %PRODUCTNAME > View > User Interface > Icon size and style."
-msgstr ""
+msgstr "Selecteer de nieuwe Sifr-pictogramset via Extra> Opties > %PRODUCTNAME > Beeld > Gebruikersinterface> Pictogramgrootte en -stijl."
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File > Properties > Font."
-msgstr ""
+msgstr "Gebruik het inbedden van lettertypen voor betere interoperabiliteit met andere kantoorpakketten via Bestand > Eigenschappen > Lettertype."
#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Generate fully customized PDF documents with the exact format, image compression, comments, access rights, password, etc., via File > Export as PDF."
-msgstr ""
+msgstr "Genereer volledig aangepaste PDF-documenten met de exacte pdf-indeling, de beeldcompressie, opmerkingen, toegangsrechten en wachtwoord definiëren via Bestand > Exporteren als PDF"
#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data > Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
-msgstr ""
+msgstr "Gebruik Gegevens > Statistieken voor steekproefneming, beschrijvende statistieken, variatieanalyse, correlatie en nog veel meer in %PRODUCTNAME Calc."
#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select 'Selection count' to display the number of selected cells."
-msgstr ""
+msgstr "Klik met rechts in de statusbalk in %PRODUCTNAME Calc en selecteer 'Selectietelling' om het aantal geselecteerde cellen weer te geven."
#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress use Insert > Media > Photo Album to create a slideshow from a series of pictures with the 'Photo Album' feature."
-msgstr ""
+msgstr "Gebruik, in %PRODUCTNAME Impress, Invoegen > Afbeelding > Fotoalbum om diavoorstellingen van een reeks afbeeldingen te maken met de functie 'Fotoalbum'."
#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use shortcut Ctrl+Alt+C for it."
-msgstr ""
+msgstr "Wist u dat u opmerkingen aan delen van tekst kunt toevoegen? Gebruik hiervoor de sneltoets Ctrl+Alt+C."
#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to insert the date in a spreadsheet cell? Type Ctrl+; or Shift+Ctrl+; to insert the time."
-msgstr ""
+msgstr "De datum in een cel invoegen? Typ Ctrl+; (Shift+Ctrl+; om de tijd in te voegen)"
#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2137,42 +2132,42 @@ msgstr "Moet u één of meer alinea's verplaatsen? Knippen en plakken is niet no
#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File > Wizards > Document converter."
-msgstr ""
+msgstr "Batch converteer uw MS Office-documenten naar OpenDocument-indeling met het conversieprogramma voor documenten via het menu Bestand > Assistenten > Conversieprogramma voor documenten."
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
-msgstr ""
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgstr "Schakel het selectievakje Extra > Opties > %PRODUCTNAME Calc > Beeld > Inzoomen: 'Synchroniseer werkbladen' uit, zodat elk blad in Calc een eigen zoomfactor heeft."
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet > Sheet from file."
-msgstr ""
+msgstr "Gebruik Blad > Blad uit bestand invoegen om een CSV-bestand als nieuw blad in de huidige spreadsheet te openen."
#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table > Select > Table and Insert > Frame… and move where you want."
-msgstr ""
+msgstr "Wilt u een Writer-tabel verplaatsen? Tabel > Selecteren > Tabel en dan Invoegen > Frame > Frame ... en verplaats naar waar u wilt."
#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
-msgstr ""
+msgstr "Sleep in %PRODUCTNAME Draw, om het 0-punt van de linialen te wijzigen, de kruising van de twee linialen in de linkerbovenhoek naar de werkruimte"
#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Hold down Ctrl and turn the mouse wheel to change the zoom factor."
-msgstr ""
+msgstr "Houd Ctrl ingedrukt en draai aan het muiswiel om de zoomfactor te wijzigen."
#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit > Find & Replace lets you insert special characters directly: right click in input fields or press Shift+Ctrl+S."
-msgstr ""
+msgstr "Met Zoeken & vervangen kunt u speciale tekens rechtstreeks invoegen: klik met rechts in de invoegvelden of druk op (Ctrl+Shift+S)."
#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
-msgstr ""
+msgstr "Gebruik geen tabbladen om items in een Writer-document te plaatsen. Afhankelijk van wat u probeert te doen, kan een randloze tabel een betere keuze zijn."
#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2182,187 +2177,187 @@ msgstr "Sleep een opgemaakt object naar het paneel Opmaakprofielen van de Zijbal
#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the 'leading zeroes' cell format option or format the cell as text before entering the number."
-msgstr ""
+msgstr "Behoudt nullen vóór een getal door de opmaakoptie 'Voorloopnullen' te gebruiken of door de cel op als tekst op te maken voor het invoeren van het getal."
#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except ‘Comments’ in dialog. Use Operations ‘Add’ to not override existing content."
-msgstr ""
+msgstr "Als u een opmerking wilt kopiëren zonder de inhoud van de doelcel te verliezen, moet u Plakken speciaal gebruiken en alles uitschakelen, behalve 'Opmerkingen' in het dialoogvenster. Gebruik Bewerkingen 'Optellen' om bestaande inhoud niet te overschrijven."
#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
-msgstr ""
+msgstr "Selecteer een object op de achtergrond van het document via het hulpmiddel Selecteren op de werkbalk Tekenen om het te selecteren object te markeren."
#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apply Heading paragraph styles in Writer with shortcut keys: Ctrl+1 applies Heading 1, Ctrl+2 applies Heading 2, etc."
-msgstr ""
+msgstr "Pas alinea-opmaakprofielen voor koppen in Writer toe met sneltoetsen: Ctrl+1 past Kop 1 toe, Ctrl+2 past Kop 2 toe, etc."
#: cui/inc/tipoftheday.hrc:131
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
-msgstr ""
+msgstr "Mix portret- en landschapsoriëntaties in een Calc-werkblad door verschillende pagina-opmaakprofielen op bladen toe te passen."
#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create different master pages in a presentation template: View > Master Slide and Slide > New Master (or per toolbar or right click in slide pane)."
-msgstr ""
+msgstr "Maak verschillende hoofdpagina's in een presentatiesjabloon: Beeld > Diamodel > Nieuwe dia (of de werkbalk of klik met rechts in het Diavenster)."
#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Page > 'Fit object to paper format' in Draw/Impress to resize the objects so that they fit on your chosen paper format."
-msgstr ""
+msgstr "Gebruik Pagina > Eigenschappen > 'Object aanpassen aan papierformaat' in Draw/Impress om de grootte van de objecten te wijzigen, zodat ze passen op het door u gekozen papierformaat."
#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
-msgstr ""
+msgstr "Als u een AutoPlay-presentatie wilt wijzigen, opent u deze en klikt u met de rechtermuisknop en selecteert u Bewerken in het contextmenu."
#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define 'Go to page' interactions and to have a summary more explicit than Slide1, Slide2…"
-msgstr ""
+msgstr "Hernoem uw dia's in Impress om u te helpen de interacties 'Ga naar pagina' te definiëren en een samenvatting te krijgen die explicieter is dan Dia1, Dia2 ..."
#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the ‘Apply to All Slides’ button."
-msgstr ""
+msgstr "Muziek in een diavoorstelling afspelen, door het geluid toe te wijzen aan de eerste dia-overgang zonder op de knop Toepassen op alle dia's te klikken"
#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With ‘Slide Show > Custom Slide Show’, reorder and pick slides to fit a slideshow to the needs of your public."
-msgstr ""
+msgstr "Met 'Presentatie > Aangepaste presentatie' kunt u de volgorde van de dia's aanpassen en dia's kiezen die passen bij een diavoorstelling, die voldoet aan de behoeften van uw publiek."
#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
-msgstr ""
+msgstr "Voeg een alinea toe die geen titel is in de inhoudsopgave door Overzicht en Nummering in de alinea-instellingen te wijzigen naar een overzichtsniveau."
#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
-msgstr ""
+msgstr "Gebruik het hulpmiddel Verbinding op de werkbalk Tekenen in Draw/Impress om mooie stroomdiagrammen te maken en desgewenst het object in Writer te kopiëren/plakken."
#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the ‘Printable’ flag is not set (right click on the tab and ‘Modify Layer’)."
-msgstr ""
+msgstr "Wilt u een object in Draw zien, maar niet afdrukken? Teken het op een laag waarvoor de vlag 'Afdrukbaar' niet is ingesteld (klik met de rechtermuisknop op het tabblad en kies 'Laag wijzigen')."
#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File > Print and select 2 at ‘Pages per sheet’."
-msgstr ""
+msgstr "Wilt u twee staande pagina's afdrukken op een liggende (verkleinen van A4 naar A5)? Bestand > Afdrukken en selecteer 2 bij 'Pagina's per blad' op het tabblad Paginalay-out."
#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the ‘Vertical Text’ tool in the Drawing toolbar, check Tools > Options > Language Settings > Languages > Default languages > Asian (and make the button visible with right click)."
-msgstr ""
+msgstr "Om het hulpmiddel 'Verticale tekst' op de werkbalk Tekenen te krijgen, vinkt u Extra > Opties > Taalinstellingen > Talen > Standaardtalen voor documenten > Aziatische aan (en maakt u de knop zichtbaar door met rechts te klikken)."
#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to add many shapes in Draw/Impress? Double-click a tool in the drawing toolbar to use it for repeated tasks."
-msgstr ""
+msgstr "Wilt u veel vormen toevoegen in Draw/Impress? Dubbelklik op een hulpmiddel op de werkbalk Tekenen om het voor herhaalde taken te gebruiken."
#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data > AutoFilter, click the drop-down arrow, and chose ‘Top10’."
-msgstr ""
+msgstr "Wilt u alleen de hoogste waarden in een werkblad weergeven? Selecteer menu Gegevens > AutoFilter, klik op de keuzepijl en kies 'Top10'."
#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
-msgstr ""
+msgstr "Kunt u een aangepaste celopmaakprofiel niet wijzigen of verwijderen? Controleer alle bladen, geen enkele mag zijn beveiligd."
#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
-msgstr ""
+msgstr "Wilt u weten hoeveel dagen er zijn in de huidige maand? Gebruik de functie Wil je weten hoeveel dagen er zijn in de huidige maand? Gebruik de functie DAGENINMAAND (VANDAAG())."
#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert > Image or drag a background from the Gallery, then Format > Arrange > To Background."
-msgstr ""
+msgstr "Voeg achtergrondafbeeldingen toe aan werkbladen via Invoegen> Afbeelding of sleep een achtergrond vanuit de Galerij en vervolgens Opmaken > Schikken > Naar achtergrond."
#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert > Object > Formula to convert the text."
-msgstr ""
+msgstr "Als u snel een wiskundig object in Writer wilt, typt u uw formule, markeert u deze en gebruikt u Invoegen > Object > Formule om de tekst te converteren."
#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check ‘Print automatically inserted blank pages’ in the print dialog’s Writer tab."
-msgstr ""
+msgstr "%PRODUCTNAME Writer kan een lege pagina invoegen tussen twee oneven (even) pagina's. Vink 'Automatisch ingevoegde lege pagina's afdrukken' aan op het tabblad LibreOffice Writer van de dialoogvenster Afdrukken."
#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
-msgstr ""
+msgstr "De 4e optionele parameter van de functie VERT.ZOEKEN van Calc geeft aan of de eerste kolom met gegevens is gesorteerd. Als dit niet het geval is, voert u ONWAAR of nul in."
#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format > Columns > Show."
-msgstr ""
+msgstr "Wilt u verborgen kolom A weergeven? Klik op een cel in kolom B, druk op de linkermuisknop, beweeg de muis naar links, laat los. Schakel het vervolgens in via Opmaak > Kolommen > Weergeven."
#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File > Save a Copy you create a new document continuing to work on the original."
-msgstr ""
+msgstr "Writer helpt u bij het maken van back-ups: met Bestand > Kopie opslaan maakt u een nieuw document en blijft u werken aan het origineel."
#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File > Send > Outline to Presentation automatically creates a slideshow from the outline."
-msgstr ""
+msgstr "Moet u een rapport indienen dat is geschreven met Writer? Bestand > Verzenden > Overzicht naar presentatie maakt automatisch een diavoorstelling van het overzicht."
#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
-msgstr ""
+msgstr "Slepen en neerzetten van cellen van Calc naar de normale weergave van een dia maakt een tabel; in de overzichtsweergave maakt elke cel een regel in het overzicht."
#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
-msgstr ""
+msgstr "Gebruik Opmaak > Uitlijnen (of het contextmenu) voor een nauwkeurige positionering van objecten in Draw/Impress: het centreert op de pagina als een object is geselecteerd of werkt op de groep."
#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Repeat the heading on a subsequent page when a table spans over more than one page with Table > Table Properties > Text Flow > Repeat heading."
-msgstr ""
+msgstr "Herhaal de kop op een volgende pagina wanneer een tabel meer dan één pagina overspant met Tabel > Eigenschappen > Tekstverloop > Kop herhalen."
#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, ‘Time’ and ‘KM’, use =Time/KM to get minutes per kilometer."
-msgstr ""
+msgstr "Gebruik kolom- of rijlabels in formules. Als u bijvoorbeeld twee kolommen hebt, 'Tijd' en 'KM', gebruikt u =Tijd/KM om minuten per kilometer te krijgen."
#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break > Insert and enter the number."
-msgstr ""
+msgstr "Als u het nummer van een pagina in Writer wilt wijzigen, gaat u naar de eigenschappen van de eerste alinea en vinkt u op het tabblad Tekstverloop onder Regeleinden, Invoegen aan en voert u het nummer in."
#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
-msgstr ""
+msgstr "Wilt u dat de cursor naar de cel rechts gaat, nadat u een waarde in Calc hebt ingevoerd? Gebruik de Tab-toets in plaats van Enter."
#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Show or hide comments in Writer by clicking the comment toggle button in the ruler."
-msgstr ""
+msgstr "Toon of verberg opmerkingen in Writer door op de schakelknop Notities, rechts op de liniaal, te klikken."
#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format > Page > Sheet Tab > Scaling Mode."
-msgstr ""
+msgstr "Pas uw werkblad of afdrukbereiken aan op een pagina met Opmaak > Pagina > (tabblad) Blad > Schaalmodus."
#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View > Freeze Cells > Freeze First Row."
-msgstr ""
+msgstr "Houd kolomkoppen van een blad zichtbaar wanneer u lijnen schuift via Beeld > Cellen vastzetten > Eerste rij vastzetten."
#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) > Text Flow > Breaks and check Insert > Page > Before."
-msgstr ""
+msgstr "Wilt u dat uw hoofdstuktitels altijd een pagina beginnen? Bewerk Kop1 (alinea-opmaakprofiel) > Tekstverloop > Regeleinden en schakel Invoegen > Pagina > Ervoor in."
#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2763,7 +2758,7 @@ msgstr ""
#, c-format
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Creating a Style based on another, you can enter a percentage value or a point value (e.g. 110% or -2pt or +5pt)."
-msgstr ""
+msgstr "Als u een opmaakprofiel maakt dat op een ander opmaakprofiel is gebaseerd, kunt u een percentagewaarde of een puntwaarde invoeren (bijvoorbeeld 110% of -2pt of +5pt)."
#: cui/inc/tipoftheday.hrc:244
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -2853,12 +2848,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:263
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
-msgstr ""
+msgstr "Help voor %PRODUCTNAME"
#: cui/inc/tipoftheday.hrc:264
msgctxt "STR_MORE_LINK"
msgid "More info"
-msgstr ""
+msgstr "Meer informatie"
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Over %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "_Dankbetuiging"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Website"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Locale: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "UI-taal: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Zie Log: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME is een moderne, makkelijk te gebruiken, open source productiviteitssuite voor tekstverwerking, rekenbladen, presentaties en meer."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000 - 2019 LibreOffice bijdragers."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice is gebaseerd op OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME is afgeleid van LibreOffice dat is gebaseerd op OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Deze uitgave werd geleverd door %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Vervangen"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Vervan_gen"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Door:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Alleen tekst"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimale woordlengte"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Eigenschappen"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "F_rame:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Naam:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternatieve _tekst:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Beschrijving:"
@@ -9019,80 +9179,80 @@ msgstr "Toon het venster \"Geen off-line hulp\" geïnstalleerd"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Help"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME dialoogvensters _gebruiken"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialoogvensters Openen/Opslaan"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME _dialoogvensters gebruiken"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialoogvensters Afdrukken"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Afdrukken zet de status op \"document gewijzigd\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Documentstatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpreteren als jaren tussen "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "en "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Jaar (twee cijfers)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Informatie over gebruiken van de functies verzamelen en naar The Document Foundation sturen"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Help %PRODUCTNAME te verbeteren"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "%PRODUCTNAME laden tijdens systeemstart"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "SnelStarter op systeembalk inschakelen"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME SnelStarter"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Voorgeïnstalleerd thema"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Eigen persona"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Firefox-Thema laden"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Of, selecteer van de thema's die via extensies geïnstalleerd zijn:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox personas"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Beveiligingsopties"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Selecteer Firefox personas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Zoekopdracht of adres"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ca_tegorie:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstract"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Oorzaken"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Mode"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film en TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Vakantie"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musiek"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natuur"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Andere"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Landschap"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Seizoensgebonden"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Massief"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Websites"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Uitgelicht"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr "Tip van de dag"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
-msgstr ""
+msgstr "_Tips tijdens opstarten weergeven"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
-msgstr ""
+msgstr "Open het dialoogvenster opnieuw via Extra > Opties > LibreOffice > Algemeen"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "_Volgende tip"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Wist u dat?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Koppeling"
diff --git a/source/nl/extensions/messages.po b/source/nl/extensions/messages.po
index 6cca166ac84..718eefe79a5 100644
--- a/source/nl/extensions/messages.po
+++ b/source/nl/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-21 06:53+0000\n"
"Last-Translator: kees538 <kees538@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: 1555829622.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Kolomlay-out voor tabel “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Beknopte aanduiding"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Auteur(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Uitgever"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Hoofdstuk"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Jaar"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tite_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dres"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pa_gina(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Uitga_ve"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Boektitel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Deel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Publicatie_vorm"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zatie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Inste_lling"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versiteit"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Ra_pporttype"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Maand"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Dag_boek"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Aanta_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_ries"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "N_otitie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Notitie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Gebruikersveld _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Gebruikersveld _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Gebruikersveld _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Gebruikersveld _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Gebruikersveld _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Kolomnamen"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Voer een naam in voor het nieuwe gegevenstype:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Velden koppelen"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suggestie"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Subformulieren kunnen worden gebruikt om details te tonen over het huidige record van het hoofdformulier. U kunt dit doen door te aan te geven welke kolommen in het subformulier en het hoofdformulier overeenkomen."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "label"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "label"
diff --git a/source/nl/helpcontent2/source/auxiliary.po b/source/nl/helpcontent2/source/auxiliary.po
index 2df504b30b1..a388e03c6af 100644
--- a/source/nl/helpcontent2/source/auxiliary.po
+++ b/source/nl/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-24 06:04+0000\n"
"Last-Translator: kees538 <kees538@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: 1556085844.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Algemene informatie"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Presentaties en tekeningen (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Werkbalken"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Tekeningen (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menu's"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Werkbalken"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objecten, grafische afbeeldingen en bitmaps"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Groepen en lagen"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Tekst in Presentaties en Tekeningen"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/sbasic/guide.po b/source/nl/helpcontent2/source/text/sbasic/guide.po
index af479b0d600..02c2fb692ee 100644
--- a/source/nl/helpcontent2/source/text/sbasic/guide.po
+++ b/source/nl/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-27 12:25+0000\n"
"Last-Translator: kees538 <kees538@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: 1556367917.000000\n"
#: access2base.xhp
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Vergelijk Access2Base met Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Een dialoogvenster openen met programmacode"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>module/dialoogvenster schakelaar</bookmark_value><bookmark_value>dialoogvensters;gebruik programmacode om weer te geven (voorbeeld)</bookmark_value><bookmark_value>voorbeelden; een dialoogvenster weergeven met behulp van programmacode</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/sbasic/python.po b/source/nl/helpcontent2/source/text/sbasic/python.po
index f5f7fc6f28a..4220435dd91 100644
--- a/source/nl/helpcontent2/source/text/sbasic/python.po
+++ b/source/nl/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-27 12:27+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: Dialoogvenster openen"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,8 +93,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
-msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Een dialoogvenster in Python openen</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;Computernaam</bookmark_value> <bookmark_value>Platform;OSNaam</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "%PRODUCTNAME Basic mist de inheemse herkenning van Mac OS X terwijl de eigenschap Computernaam alleen beschikbaar is voor Windows. Standaardoproepen naar Python-macro's helpen dergelijke beperkingen te overwinnen."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/nl/helpcontent2/source/text/sbasic/shared.po b/source/nl/helpcontent2/source/text/sbasic/shared.po
index 36c256bf6e0..e60e35307fe 100644
--- a/source/nl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/nl/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-24 08:10+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Help van $[officename] Basic\">Help van %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/sbasic/shared/03.po b/source/nl/helpcontent2/source/text/sbasic/shared/03.po
index 94fc8b80cf4..c4ee084f93b 100644
--- a/source/nl/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/nl/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-21 07:21+0000\n"
"Last-Translator: kees538 <kees538@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: 1548055268.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Functies en subroutines voor modulebesturing."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/nl/helpcontent2/source/text/scalc/01.po b/source/nl/helpcontent2/source/text/scalc/01.po
index 8562ef22cd1..10d0274c3d0 100644
--- a/source/nl/helpcontent2/source/text/scalc/01.po
+++ b/source/nl/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-04-24 08:14+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Zoek het bestand met de gegevens die u wilt invoegen.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Voer de naam in van de URL die de gegevens bevat die u wilt invoegen en druk dan op Enter.</ahelp> Alleen dan zal de URL vanuit het netwerk of bestandssysteem worden aangeroepen."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Selecteer de tabel of het gegevensbereik die/dat u wilt invoegen.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specificeert het celbereik dat u wilt consolideren met de celbereiken in het vak <emph>Consolideringsbereiken</emph>. Selecteer een celbereik in een blad en klik dan op <emph>Toevoegen</emph>. U kunt ook de naam van een vooraf gedefinieerde cel in de lijst <emph>Brongegevensbereik</emph> selecteren.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/schart/00.po b/source/nl/helpcontent2/source/text/schart/00.po
index c54ab3008af..e470779b379 100644
--- a/source/nl/helpcontent2/source/text/schart/00.po
+++ b/source/nl/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-21 07:37+0000\n"
"Last-Translator: kees538 <kees538@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: 1548056253.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">In het dialoogvenster Diagramtype van een lijndiagram of een XY-diagram dat lijnen weergeeft, kiest Vloeiende lijnen, klik vervolgens op de knop Eigenschappen.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">In het dialoogvenster Diagramtype van een lijndiagram of een XY-diagram dat lijnen weergeeft, kiest Gestapelde reeksen, klik vervolgens op de knop Eigenschappen.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/nl/helpcontent2/source/text/sdraw/00.po b/source/nl/helpcontent2/source/text/sdraw/00.po
index 196002188f9..4770c7470f7 100644
--- a/source/nl/helpcontent2/source/text/sdraw/00.po
+++ b/source/nl/helpcontent2/source/text/sdraw/00.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-10 05:40+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-14 08:43+0000\n"
+"Last-Translator: vpanter <leo.moons@telenet.be>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494394810.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557823415.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Menu"
-msgstr ""
+msgstr "Menu Pagina"
#: page_menu.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Kies <emph>Pagina - Eigenschappen</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Kies <emph>Pagina - Eigenschappen</emph> en klik op de tab <emph>Pagina</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Kies <emph>Pagina - Eigenschappen</emph> en klik op de tab <emph>Achtergrond</emph></variable>"
#: page_menu.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/shared/00.po b/source/nl/helpcontent2/source/text/shared/00.po
index 07802f74503..82b52f662ff 100644
--- a/source/nl/helpcontent2/source/text/shared/00.po
+++ b/source/nl/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-31 08:34+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Kies <switchinline select=\"sys\"><caseinline
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Kies <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Voorkeuren</emph></caseinline><defaultinline><emph>Extra - Opties</emph></defaultinline></switchinline><emph> - $[officename] - Persoonlijke voorkeuren aanpassen</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/nl/helpcontent2/source/text/shared/01.po b/source/nl/helpcontent2/source/text/shared/01.po
index 467b9f2b520..3d3973612a3 100644
--- a/source/nl/helpcontent2/source/text/shared/01.po
+++ b/source/nl/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-29 08:48+0000\n"
"Last-Translator: kees538 <kees538@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: 1556527688.000000\n"
#: 01010000.xhp
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/nl/helpcontent2/source/text/shared/02.po b/source/nl/helpcontent2/source/text/shared/02.po
index 71f0d2eff63..9c8083f8452 100644
--- a/source/nl/helpcontent2/source/text/shared/02.po
+++ b/source/nl/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-03 07:26+0000\n"
"Last-Translator: kees538 <kees538@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: 1551598005.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Hiermee geeft u op of tekst op een besturingselement geselecteerd moet blijven wanneer het besturingselement niet langer de focus heeft.</ahelp> Als u <emph>Selectie verbergen</emph> op ‘Nee’ instelt, blijft de geselecteerde tekst geselecteerd wanneer de focus niet langer op het besturingselement met de tekst rust."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/shared/guide.po b/source/nl/helpcontent2/source/text/shared/guide.po
index 0ceff48e187..48202ab6ef0 100644
--- a/source/nl/helpcontent2/source/text/shared/guide.po
+++ b/source/nl/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-10 08:26+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/nl/helpcontent2/source/text/shared/optionen.po b/source/nl/helpcontent2/source/text/shared/optionen.po
index d02397e9a79..b0af82a8633 100644
--- a/source/nl/helpcontent2/source/text/shared/optionen.po
+++ b/source/nl/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-06 09:34+0000\n"
"Last-Translator: kees538 <kees538@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: 1551864889.000000\n"
#: 01000000.xhp
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "voor meer informatie over OpenCL, bezoek <link href=\"https://www.khronos.org/opencl/\">de OpenCL pagina</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Persoonlijke voorkeur"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>thema's;opties instellen</bookmark_value> <bookmark_value>opties instellen;thema's</bookmark_value> <bookmark_value>persoonlijke voorkeur;Mozilla Firefox thema's</bookmark_value> <bookmark_value>persona;persoonlijke voorkeur</bookmark_value> <bookmark_value>persoonlijke voorkeur;persona</bookmark_value> <bookmark_value>Mozilla Firefox thema's;persoonlijke voorkeur</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "U kunt de persoonlijke voorkeuren van %PRODUCTNAME instellen met dezelfde thema's als Mozilla Firefox. De Menubalk, bovenste werkbalken en onderste werkbalken zullen de gekozen thema's in hun achtergrond weergeven."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Mozilla Firefox-thema's zijn beschikbaar op de website van Mozilla op het volgende adres: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Elk Firefox-thema zal werken voor %PRODUCTNAME. Hoewel niet elk thema goede visuele effecten zullen geven -- als de afbeelding te druk is, kan het de leesbaarheid van de pictogrammen en de menu's verstoren."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Firefox personas:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "De volgende opties zijn beschikbaar:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Standaard weergave, zonder gebruik van Personas"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">De achtergrond van werkbalken neemt de instellingen van het schermbeheer van uw bureaublad over.</ahelp> Dit is standaard voor %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Voorgeïnstalleerd thema"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Kies deze optie om één van de vooraf geïnstalleerde thema's te gebruiken.</ahelp> Naast de standaardopties heeft uw systeembeheerder mogelijk een aangepast thema toegevoegd tijdens de installatie van %PRODUCTNAME. Deze optie zal dit weergeven."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Eigen persona"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Kies deze optie om het dialoogvenster Selecteer Firefox personas te openen voor meer keuzes voor thema's.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Dialoogvenster Selecteer Firefox personas"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Met dit dialoogvenster kunt u een bepaald thema installeren of u een blik geven op andere spannende thema's op de Mozilla Firefox thema-website."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Zoeken"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Geef een zoekterm op om naar thema's op de Mozilla-add-on-site te zoeken of plak een thema-adres in om een specifiek thema rechtstreeks op te halen.</ahelp> Gebruik het adres van uw browser om naar de webpagina van het thema te gaan en de URL weergegeven in de adresbalk. Plak deze vervolgens in het zoekvak van het dialoogvenster. Klik op<item type=\"menuitem\">Zoeken</item> of druk op <item type=\"keycode\">Enter</item> om %PRODUCTNAME te downloaden en installeren."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Thema's per categorie zoeken"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Toont een willekeurige keuze van 9 thema's, gebaseerd op de categorieën die in de knoppen worden weergegeven.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Klik op één van de 5 knoppen in het afbeeldingsgebied onder, om een willekeurige keuze van negen thema's weer te geven, gelabeld door de categorieknop."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Klik op een afbeelding en klik op<item type=\"menuitem\">OK</item> om één van de getoonde thema's te selecteren."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/nl/helpcontent2/source/text/simpress/01.po b/source/nl/helpcontent2/source/text/simpress/01.po
index dc9c46ee6d4..d6b3fb05000 100644
--- a/source/nl/helpcontent2/source/text/simpress/01.po
+++ b/source/nl/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-03-06 09:38+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/nl/helpcontent2/source/text/swriter/guide.po b/source/nl/helpcontent2/source/text/swriter/guide.po
index e5afb837dd6..79a155bd4f2 100644
--- a/source/nl/helpcontent2/source/text/swriter/guide.po
+++ b/source/nl/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-03-03 08:25+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Op de werkbalk <emph>Standaard</emph> klikt u op het pictogram <emph>Navigator</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Pictogram</alt></image> om de <emph>Navigator</emph> te openen."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "Klik, in de <emph>Navigator</emph>, op het pictogram <emph>Inhoud weergeven</emph><image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Pictogram</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Klik op een kop in de lijst <emph>Navigator</emph> en dan op het pictogram <emph>Hoofdstuk hoger</emph><image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Pictogram</alt></image> of <emph>Hoofdstuk lager</emph>pictogram <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Pictogram</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Klik op het pictogram <emph>Hoger niveau</emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\"></alt></image> of <emph>Lager niveau</emph>pictogram <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Pictogram</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Klik op het pictogram <emph>Weergegeven kopregelniveaus</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Pictogram</alt></image> en selecteer vervolgens een getal in de lijst."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
index c886079549e..7c6cd64a7e9 100644
--- a/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nl/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-30 08:55+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-18 06:28+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\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: 1556614500.000000\n"
+"X-POOTLE-MTIME: 1558160892.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -4316,7 +4316,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bad Cell Style"
-msgstr ""
+msgstr "Verkeerd celopmaakprofiel"
#: CalcCommands.xcu
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Error"
-msgstr ""
+msgstr "Fout"
#: CalcCommands.xcu
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Error Cell Style"
-msgstr ""
+msgstr "Fout in celopmaakprofiel"
#: CalcCommands.xcu
msgctxt ""
@@ -4361,7 +4361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Good"
-msgstr ""
+msgstr "Goed"
#: CalcCommands.xcu
msgctxt ""
@@ -4370,7 +4370,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Good Cell Style"
-msgstr ""
+msgstr "Goed celopmaakprofiel"
#: CalcCommands.xcu
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Neutral"
-msgstr ""
+msgstr "Neutraal"
#: CalcCommands.xcu
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Neutral Cell Style"
-msgstr ""
+msgstr "Neutrale celopmaakprofiel"
#: CalcCommands.xcu
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Warning"
-msgstr ""
+msgstr "Waarschuwing"
#: CalcCommands.xcu
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Warning Cell Style"
-msgstr ""
+msgstr "Waarschuwing celopmaakprofiel"
#: CalcCommands.xcu
msgctxt ""
@@ -4442,7 +4442,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Footnote"
-msgstr ""
+msgstr "Voetnoot"
#: CalcCommands.xcu
msgctxt ""
@@ -4451,7 +4451,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Footnote Cell Style"
-msgstr ""
+msgstr "Celopmaakprofiel voor voetnoot"
#: CalcCommands.xcu
msgctxt ""
@@ -4469,7 +4469,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Note"
-msgstr ""
+msgstr "Opmerking"
#: CalcCommands.xcu
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Note Cell Style"
-msgstr ""
+msgstr "Celopmaakprofiel voor opmerking"
#: CalcWindowState.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Tabelopmaakprofielen"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Meer velden"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25297,7 +25306,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Lists"
-msgstr ""
+msgstr "Lijsten"
#: Sidebar.xcu
msgctxt ""
@@ -25689,6 +25698,15 @@ msgstr "Tabblad"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Groeperen"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Selecteer zin"
#: WriterCommands.xcu
msgctxt ""
@@ -30013,7 +30040,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal ~Line"
-msgstr ""
+msgstr "Horizontale ~lijn"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/nl/sc/messages.po b/source/nl/sc/messages.po
index 84f163c1f52..ce38af69402 100644
--- a/source/nl/sc/messages.po
+++ b/source/nl/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-21 07:24+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 07:36+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\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: 1555831452.000000\n"
+"X-POOTLE-MTIME: 1559028993.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -14348,7 +14348,7 @@ msgstr "Annuleren"
#: sc/inc/strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Autosum"
-msgstr ""
+msgstr "AutoSom"
#: sc/inc/strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(exclusieve toegang)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15570,27 +15575,27 @@ msgstr "Opmaak"
#: sc/uiconfig/scalc/ui/autosum.ui:12
msgctxt "autosum|sum"
msgid "Sum"
-msgstr ""
+msgstr "Som"
#: sc/uiconfig/scalc/ui/autosum.ui:20
msgctxt "autosum|average"
msgid "Average"
-msgstr ""
+msgstr "Gemiddelde"
#: sc/uiconfig/scalc/ui/autosum.ui:28
msgctxt "autosum|min"
msgid "Min"
-msgstr ""
+msgstr "Min"
#: sc/uiconfig/scalc/ui/autosum.ui:36
msgctxt "autosum|max"
msgid "Max"
-msgstr ""
+msgstr "Max"
#: sc/uiconfig/scalc/ui/autosum.ui:44
msgctxt "autosum|count"
msgid "Count"
-msgstr ""
+msgstr "Aantal"
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:35
msgctxt "cellprotectionpage|checkProtected"
@@ -15770,13 +15775,13 @@ msgstr "Voorwaardelijke opmaak beheren"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Bereik"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
-msgstr ""
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Eerste voorwaarde"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16341,22 +16346,22 @@ msgstr "Er bestaan conflicterende wijzigingen in dit gedeelde werkblad. Conflict
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:147
msgctxt "conflictsdialog|conflict"
msgid "Conflict"
-msgstr ""
+msgstr "Conflict"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:161
msgctxt "conflictsdialog|author"
msgid "Author"
-msgstr ""
+msgstr "Auteur"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:175
msgctxt "conflictsdialog|date"
msgid "Date"
-msgstr ""
+msgstr "Datum"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:189
msgctxt "conflictsdialog|changes-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Wijzigingen"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:207
msgctxt "conflictsdialog|keepmine"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Dataformulier"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Sluiten"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nieuw record"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nieuw"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Verwijderen"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Herstellen"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Vorig record"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Vol_gend record"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Sluiten"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Live Data Streams"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Voer de URL van het brondocument in het lokale bestandssysteem of internet hier in."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Verkennen..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Databasebereik:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Gegevensverstrekker:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Zoektekst:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Bron gegevensstroom"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -17986,7 +17951,7 @@ msgstr "Resultaten naar:"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:187
msgctxt "fourieranalysisdialog|withlabels-check"
msgid "Input range has label"
-msgstr ""
+msgstr "Invoerbereik heeft een label"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:211
msgctxt "fourieranalysisdialog|label1"
@@ -18016,12 +17981,12 @@ msgstr "Geïnverteerd"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:331
msgctxt "fourieranalysisdialog|polar-check"
msgid "Output in polar form"
-msgstr ""
+msgstr "Uitvoer in poolcoördinaten"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:352
msgctxt "fourieranalysisdialog|label4"
msgid "Minimum magnitude for polar form output (in dB)"
-msgstr ""
+msgstr "Minimale grootte voor uitvoer van poolcoördinaten (in dB)"
#: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:386
msgctxt "fourieranalysisdialog|label3"
@@ -18596,17 +18561,17 @@ msgstr "Namen beheren"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:127
msgctxt "managenamesdialog|name"
msgid "Name"
-msgstr ""
+msgstr "Naam"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:140
msgctxt "managenamesdialog|expression"
msgid "Range or formula expression"
-msgstr ""
+msgstr "Bereik of formule-expressie"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:153
msgctxt "managenamesdialog|scope"
msgid "Scope"
-msgstr ""
+msgstr "Bereik"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:183
msgctxt "managenamesdialog|info"
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultaten naar:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Gegevens"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolommen"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rijen"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Gegroepeerd op"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parameters"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Bestand"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Kies randen voor de geselecteerde cellen."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Inspringing verkleinen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Inspringing verkleinen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Start"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Vel_d"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Invoegen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Invoegen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Lay-out"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Object-uitlijning"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Lay-out"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistieken"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Gegevens"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Gegevens"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Beoordelen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Beoordelen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Beel_d"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "Beel~d"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Afbeeldin_g"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Afbeeldin_g"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "T_ekenen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "T~ekenen"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Object"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Object"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Af_drukken"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Afdru~kken"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "F_ormulier"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "E_xtra"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "E~xta"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Zoekresultaat"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Blad"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Cel"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Inhoud"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Overzichtstekens"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Venster"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Rasterlijnen:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Kleur:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Tonen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Toon op gekleurde cellen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Verberg"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Pagina-einden"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Hulplijnen tijdens _verplaatsten"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Visuele hulpmiddelen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jecten/Afbeelding:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diag_rammen:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Tekenobjecten:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Tonen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Verbergen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Tonen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Verbergen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Tonen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Verbergen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objecten"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_ynchroniseer werkbladen"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Inzoomen"
diff --git a/source/nl/scp2/source/ooo.po b/source/nl/scp2/source/ooo.po
index aa343b34cf1..d05ad17d2b6 100644
--- a/source/nl/scp2/source/ooo.po
+++ b/source/nl/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-21 07:24+0000\n"
"Last-Translator: kees538 <kees538@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: 1555831455.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Document openen"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/nl/scp2/source/winexplorerext.po b/source/nl/scp2/source/winexplorerext.po
index e5d44d6a171..0228f142ee3 100644
--- a/source/nl/scp2/source/winexplorerext.po
+++ b/source/nl/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 00:53+0200\n"
-"Last-Translator: Pjotr <>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:22+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369354954.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Met behulp hiervan kan Microsoft Windows Verkenner informatie over %PRODUCTNAME-documenten weergeven, zoals miniatuurweergaven."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/nl/sd/messages.po b/source/nl/sd/messages.po
index cb44b214fbc..6b3122aa79d 100644
--- a/source/nl/sd/messages.po
+++ b/source/nl/sd/messages.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-21 07:26+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-18 06:29+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\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: 1555831585.000000\n"
+"X-POOTLE-MTIME: 1558160966.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -2385,7 +2385,7 @@ msgstr "Animatiepaden: %1"
#: sd/inc/strings.hrc:445
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
-msgstr ""
+msgstr "Diversen: %1"
#: sd/inc/strings.hrc:446
msgctxt "STR_SLIDETRANSITION_NONE"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Klik om de hyperlink te openen: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Naam HTML-ontwerp"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Bestand"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Bestand"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Vel_d"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Invoegen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Invoegen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Pagina"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Pagina"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Beoordelen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Beoordelen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Beel_d"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "Beel~d"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "_Tekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "~Tekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Omvormen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Afbeeldin_g"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Afbeeldin_g"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "T_ekenen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "T~ekenen"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Object"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Object"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "F_ormulier"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "E_xtra"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "E~xtra"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Vormen weergeven"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Bestand"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Bestand"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Vel_d"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Invoegen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Invoegen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "D_ia"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "~Dia"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Presentatie"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Presentatie"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Beoordelen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Beoordelen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Beel_d"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "Beel~d"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converteren"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Afbeeldin_g"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Afbeeldin_g"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "T_ekenen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "T~ekenen"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Object"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Object"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "F_ormulier"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "E_xtra"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "E~xtra"
diff --git a/source/nl/sfx2/messages.po b/source/nl/sfx2/messages.po
index 7f55d0ed50a..0709ff034ec 100644
--- a/source/nl/sfx2/messages.po
+++ b/source/nl/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-21 07:26+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 07:36+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\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: 1555831588.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559029015.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " J: %1 M: %2 D: %3 U: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Eigenschap verwijderen"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"De ingevoerde waarde komt niet overeen met het gespecificeerde type.\n"
"De waarde zal als tekst worden opgeslagen."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Opmaakprofiel bestaat reeds. Overschrijven?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Her~stellen"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Deze naam wordt al gebruikt."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Dit opmaakprofiel bestaat niet."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Dit opmaakprofiel kan niet als basisopmaakprofiel worden gebruikt,\n"
" omdat er dan een kringverwijzing zou ontstaan."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Naam wordt al voor een standaardopmaakprofiel gebruikt.\n"
"Kies een andere naam."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Wanneer u deze opmaakprofielen verwijdert, zal de tekst het standaard opmaakprofiel krijgen?\n"
"Wilt u deze opmaakprofielen toch verwijderen?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Opmaakprofielen in gebruik: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Foutieve bevestiging van wachtwoord"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Verzenden"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Lettertype"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Voorbeeld weergeven"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Versie-opmerking bekijken"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(geen naam ingesteld)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lijst opmaakprofielen"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hiërarchisch"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Gietermodus"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nieuw opmaakprofiel uit selectie"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Opmaakprofielacties"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Opmaakprofiel bijwerken"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Wilt u het opnemen werkelijk annuleren? Alle stappen, die tot nu toe zijn opgenomen, zullen verloren gaan."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Opnemen annuleren"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "De sjablonen worden nu geïnitialiseerd voor het eerste gebruik."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Geen standaardprinter gevonden.\n"
"Kies een printer en probeer het nogmaals."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Printer kan niet worden gestart.\n"
"Controleer de configuratie van uw printer."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Printer bezig"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (alleen-lezen)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Wilt u de nieuwe instellingen overnemen\n"
"in het actieve document?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Wilt u de nieuwe instellingen\n"
"overnemen in het document?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Wilt u de nieuwe instellingen overnemen\n"
"in het actieve document?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Het document kan momenteel niet worden gesloten,\n"
" omdat er nog een afdrukopdracht wordt uitgevoerd."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Controleer de instellingen van %PRODUCTNAME of die van uw e-mailprogramma."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Foutcode is $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Fout bij verzenden van e-mail."
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Het document kan niet geopend worden om te bewerken, mogelijk vanwege ontbrekende rechten. Wilt u een kopie van het document bewerken?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"U kunt ook proberen de vergrendeling te negeren en het bestand te openen om te bewerken."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "~Kopie openen"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Openen"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (gerepareerd document)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Het document is niet afgemeld van de server."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Help ons %PRODUCTNAME nog beter te maken!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Doe mee"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Uw donaties ondersteunen onze wereldwijde gemeenschap."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Doneren"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Versie-uitgaven"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Document is in de modus alleen-lezen geopend."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Deze PDF is geopend in alleen-lezen-modus, zodat het bestaande bestand ondertekend kan worden."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "De rubricering van dit document is %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Dit document moet gecassificeerd worden voordat het klembord kan worden geplakt."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Dit document heeft een lagere rubricering dan de inhoud van het klembord."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Niveau"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nationale veiligheid:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Besturingselement exporteren:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Afsluiten"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Document bewerken"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Documenten ondertekenen"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dit document heeft een ongeldige ondertekening."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "De handtekening is geldig, maar het document is gewijzigd"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "De ondertekening is in orde, maar het certificaat kon niet geverifieerd worden."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "De ondertekening is in orde, maar het document is maar gedeeltelijk ondertekend."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Het certificaat kon niet worden gevalideerd en het document is slechts gedeeltelijk ondertekend."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Het document is digitaal ondertekend en de handtekening is geldig."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Ondertekening tonen"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Deelvenster sluiten"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Vastzetten"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Losmaken"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Meer opties"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Sluit zijbalk"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Instellingen van de Zijbalk"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Aanpassen"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Standaard herstellen"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Zijbalk sluiten"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bijenkorf"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blauwe kromme"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blueprint Plannen"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Helblauw"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Stijlvol rood"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Vogel van het woud"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiratie"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lichten"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Weelderig groen"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Nachtblauw"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natuur illustratie"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Potlood"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Voortgang"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Zonsondergang"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Helder"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Samenvatting"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standaard"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne zakelijke brief sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne zakelijke brief sans-serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visitekaartje met logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Verwijderen"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alles wissen"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wachtwoordlengte"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Het wachtwoord dat u hebt ingevoerd, veroorzaakt interoperabiliteitsproblemen. Voer een wachtwoord in dat korter is dan 52 bytes of langer dan 55 bytes."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Versie-opmerking:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Naam"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Type"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Waarde"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ja"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nee"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Eigenscha_p toevoegen"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Naam"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Waarde"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Locatie:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Soort:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Wijzig _Wachtwoord"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Sjabloon:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Eigenschappen van \"%1\""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Algemeen "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Beschrijving"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Gebruikergedefinieerde eigenschappen"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS Eigenschappen"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Beveiliging"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Dit product is gemaakt door %OOOVENDOR, gebaseerd op OpenOffice.org, dat is Copyright 2000, 2011 Oracle en/of haar dochterondernemingen. %OOOVENDOR is erkentelijk voor alle leden van de gemeenschap, zie http://www.libreoffice.org/ voor meer informatie."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/nl/shell/messages.po b/source/nl/shell/messages.po
new file mode 100644
index 00000000000..9c74a6e397e
--- /dev/null
+++ b/source/nl/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-28 07:38+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: nl\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559029113.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Document openen"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"U opent het document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Wilt u het openen om het te bekijken of te bewerken?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Weergave"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Bewerken"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Annuleren"
diff --git a/source/nl/starmath/messages.po b/source/nl/starmath/messages.po
index cde211c0c31..1ca5232f292 100644
--- a/source/nl/starmath/messages.po
+++ b/source/nl/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Voorbeelden"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Normaal"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursief"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Vet"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "zwart"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blauw"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "groen"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "rood"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyaan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grijs"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "citroengeel"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "kastanjebruin"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "marineblauw"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olijfgroen"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "paars"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "zilver"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "groenblauw|blauwgroen"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "geel"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "verbergen"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "grootte"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "lettertype"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "links"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centreren"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "rechts"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Opdrachten"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formule"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Document wordt opgeslagen..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formule"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FOUT : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Onverwacht teken"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Onverwacht teken"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' verwacht"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' verwacht"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' verwacht"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' verwacht"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Linker en rechter symbolen komen niet overeen"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "'fixed', 'sans' of 'serif' verwacht"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' gevolgt door een onverwacht teken"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dubbelle uitlijning is niet toegestaan"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dubbele sub/superscript is niet toegestaan"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' verwacht"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Kleur verwacht"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' verwacht"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Inhoud"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formuletekst"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "R~anden"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Grootte"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Oo~rspronkelijke grootte"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Aan ~pagina aanpassen"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Schaling"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementen"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/nl/svtools/messages.po b/source/nl/svtools/messages.po
index 8cd2f868cbf..b216af8cffc 100644
--- a/source/nl/svtools/messages.po
+++ b/source/nl/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-21 07:26+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-16 08:54+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555831594.000000\n"
+"X-POOTLE-MTIME: 1557996846.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Ongedaan maken: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Opnieuw: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Herhalen: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Tekst zonder opmaak"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Tekst zonder opmaak [TSV-Calc]"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Bitmap-afbeelding (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface-metabestand (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME tekeningindeling"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmap/animation (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Status Info van Svx Internal Link"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-bladwijzer"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star server-indeling"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star object-indeling"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet object"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Invoegtoepassingsobject"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0-object"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0-object"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0-object"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0-object"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0-object"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0-object"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0-object"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-object"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0-object"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0-object"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0-object"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-object"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0-object"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0-object"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-object"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0-object"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-object"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-object"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0-object"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0-object"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-object"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0-object"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0-object"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint-object"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word-object"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet object"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-documentobject"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notities documentinfo"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-document"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-object"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Afbeeldingsobject"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer object"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web object"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master object"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw object"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress object"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc object"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Chart object"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math object"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-metabestand"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Gegevensbronnenobject"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Gegevensbronnentabel"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-query"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 dialoog"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Koppeling"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-indeling zonder opmerkingen"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Object % kan niet worden ingevoegd."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Object uit bestand % kan niet worden ingevoegd."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Overige objecten"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Onbekende bron"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Naam"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Grootte"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Gewijzigd op"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Type"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Rij: %1, Kolom: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Type: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Map"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Bestand"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Leeg veld"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeriek"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normaal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Tekenset"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Woordenlijst"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radicaal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefoonboek"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetisch (alfanumeriek eerst)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetisch (alfanumeriek laatst)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeriek"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Woordenlijst"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radicaal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Stroke"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetisch (alfanumeriek eerst, gegroepeerd op lettergrepen)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetisch (alfanumeriek eerst, gegroepeerd op medeklinkers)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetisch (alfanumeriek laatst, gegroepeerd op lettergrepen)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetisch (alfanumeriek laatst, gegroepeerd op medeklinkers)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Vandaag"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Geen"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Licht"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Licht Cursief"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Standaard"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursief"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Vet"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Vet cursief"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Zwart"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Zwart cursief"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Boek"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Vet schuin"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Slank"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Slank vet"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Slank vet cursief"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Slank vet schuin"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Slank cursief"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Slank schuin"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extra licht"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extra licht cursief"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Schuin"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semivet"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semivet cursief"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Dit lettertype wordt voor zowel de printer als het scherm gebruikt."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Dit is een printerlettertype. De weergave op het scherm kan iets afwijken."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Deze tekenstijl wordt nagebootst of het meest overeenkomende beschikbare stijl wordt gebruikt."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Dit lettertype is niet geïnstalleerd. Het meest overeenkomende beschikbare type wordt gebruikt."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Bladeren..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Verplaats naar Begin"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Naar links verplaatsen"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Naar rechts verplaatsen"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Naar einde verplaatsen"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Toevoegen"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Horizontale lineaal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Verticale liniaal"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bits drempelwaarde"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bit gerasterd"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bits grijswaardenpalet"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 bits kleur"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bits grijswaardenpalet"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 bits kleur"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bits ware kleur"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "De afbeelding gebruikt ongeveer %1 KB geheugen."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "De afbeelding gebruikt ongeveer %1 KB geheugen en de bestandsgrootte is %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Bestandsgrootte is %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "poort"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Andere CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Klaar"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Onderbroken"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Verwijderen verwacht"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Bezig"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialiseren"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Wachten"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Beginnen"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Verwerken"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Afdrukken"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Off line"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Fout"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Onbekende server"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papieropstopping"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Geen papier"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Handmatige papiertoevoer"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papierprobleem"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O actief"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Postvak Uit is vol"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Lage tonerstand"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Geen toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Pagina's uitzonderen"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Ingrijpen door gebruiker noodzakelijk"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Onvoldoende geheugen"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Afdekking boven"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Energiespaarmodus"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standaardprinter"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documenten"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Voltooien"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Volgende >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Vorige"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Stappen"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<geen>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Bedrijf"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Afdeling"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Voornaam"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Achternaam"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Straat"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postcode"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Plaats"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titel"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Functie"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Aanhef"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Initialen"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Slotformule"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefoon privé"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefoon werk"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notitie"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Gebruiker 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Gebruiker 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Gebruiker 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Gebruiker 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Provincie"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefoon kantoor"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobiele telefoon"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Andere telefoon"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Agenda"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Uitnodigen"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME vereist een Java runtime environment (JRE) om deze taak uit te voeren. Installeer een JRE en herstart %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME vereist een %BITNESS-bit Java runtime environment (JRE) om deze taak uit te voeren. Installeer een JRE, en herstart %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME vereist Oracle's Java Development Kit (JDK) op Mac OS X 10.10 of hoger om deze taak uit te voeren. Installeer deze en start %PRODUCTNAME opnieuw."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "De %PRODUCTNAME configuratie is gewijzigd. Onder %PRODUCTNAME - Opties- %PRODUCTNAME - Geavanceerd, selecteert u de Java runtime environment u wilt laten gebruiken door %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "De configuratie van %PRODUCTNAME is gewijzigd. Onder Extra - Opties - %PRODUCTNAME - Geavanceerd kunt u de Java runtime environment selecteren die u door %PRODUCTNAME wilt laten gebruiken."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vereist een Java Runtime Environment (JRE) om deze taak uit te voeren. De geselecteerde JRE is defect. Selecteer een andere versie of installeer een nieuwe JRE en selecteert u deze onder %PRODUCTNAME - Voorkeuren - %PRODUCTNAME - Geavanceerd."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME vereist een Java runtime environment (JRE) om deze taak uit te voeren. De geselecteerde JRE is defect. Kies of installeer een andere versie van JRE via Extra - Opties - %PRODUCTNAME - Geavanceerd."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE vereist"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE selecteren"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Defecte JRE"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Broncode"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Bladwijzerbestand"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Afbeeldingen"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Configuratiebestand"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Toepassing"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Databasetabel"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systeembestand"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-document"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Help-bestand"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML document"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Archiefbestand"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Logboekbestand"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice-Gegevensbank"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Hoofddocument"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice Beeld"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstbestand"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Koppeling"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 Sjabloon"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-document"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-sjabloon"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batchbestand"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Bestand"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Map"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstdocument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Werkblad"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentatie"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Tekening"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML document"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Hoofddocument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formule"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Gegevensbron"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 Werkblad-sjabloon"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 Tekening-sjabloon"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 Presentatie-sjabloon"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 Tekst document sjabloon"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokaal station"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskettestation"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Cd-rom station"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Netwerkverbinding"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-document"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-sjabloon"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-presentatie"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 Formule"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 Diagram"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 Tekening"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 Werkblad"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 Presentatie"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 Tekst document"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 Master document"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-document"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-database"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Tekening"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formule"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-hoofddocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-presentatie"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-werkblad"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-tekst"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-werkbladsjabloon"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-tekensjabloon"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-presentatiesjabloon"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekstsjabloon"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Extensie"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell spellingscontrole"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen koppelteken"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes synoniemenlijst"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lijst met genegeerde woorden"
@@ -4127,7 +4129,7 @@ msgstr "Iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Engels (Zambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
@@ -4672,7 +4674,7 @@ msgstr ""
#: svtools/uiconfig/ui/restartdialog.ui:265
msgctxt "restartdialog|reason_mscompatible_formsmenu"
msgid "For restructuring the Forms menu, %PRODUCTNAME must be restarted."
-msgstr ""
+msgstr "Voor de herstructurering van het menu Forms, moet %PRODUCTNAME herstart worden."
#: svtools/uiconfig/ui/restartdialog.ui:280
msgctxt "restartdialog|label"
diff --git a/source/nl/svx/messages.po b/source/nl/svx/messages.po
index f5e1d5d829a..ac17276b1a9 100644
--- a/source/nl/svx/messages.po
+++ b/source/nl/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-21 07:26+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 07:39+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\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: 1555831613.000000\n"
+"X-POOTLE-MTIME: 1559029196.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Van links naar rechts (verticaal)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Onder-naar-boven, links-naar-rechts (verticaal)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Onderdeelnummer:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Deeltekst:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Lichtbron 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Kleur van licht 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Kleur van licht 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Kleur van licht 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Kleur van licht 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Kleur van licht 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Kleur van licht 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Kleur van licht 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Kleur van licht 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -11880,7 +11885,7 @@ msgstr "%PRODUCTNAME %PRODUCTVERSION-documentherstel"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:76
msgctxt "docrecoverysavedialog|label1"
msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "Door een fout crashte %PRODUCTNAME. Alle bestanden waaraan u werkte zullen nu worden opgeslagen. De volgende keer dat %PRODUCTNAME wordt opgestart zullen uw bestanden automatisch worden hersteld."
#: svx/uiconfig/ui/docrecoverysavedialog.ui:98
msgctxt "docrecoverysavedialog|label2"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Selecteer het percentage voor het verticale schaduwverloop, vanuit het midden. 50% is het verticale midden."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Contouren-editor"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Toepassen"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Werkruimte"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Selecteren"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rechthoek"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ovaal"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Veelhoek"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Punten bewerken"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Punten verplaatsen"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Punten invoegen"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Punten verwijderen"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoOmtrek"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Ongedaan maken "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Herhalen"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipet"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Kleurtolerantie"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Voettekst"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ImageMap-editor"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Toepassen"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Openen..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Opslaan..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Sluiten"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Selecteren"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rechthoek"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ovaal"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Veelhoek"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Vrije-handveelhoek"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Punten bewerken"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Punten verplaatsen"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Punten invoegen"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Punten verwijderen"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Ongedaan maken "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Opnieuw uitvoeren"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Actief"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Eigenschappen..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adres:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Frame:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekst:"
@@ -13368,12 +13373,12 @@ msgstr "Opmerking"
#: svx/uiconfig/ui/redlineviewpage.ui:146
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Wijzigingen"
#: svx/uiconfig/ui/redlineviewpage.ui:245
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Wijzigingen"
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME wordt nu uitgevoerd in de veilige modus, waardoor uw gebruikersconfiguratie en -extensies tijdelijk worden uitgeschakeld.\n"
+"\n"
+"U kunt één of meer van de volgende wijzigingen in uw gebruikersprofiel aanbrengen om %PRODUCTNAME weer werkend te krijgen."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
@@ -14011,7 +14019,7 @@ msgstr "Kapstijl"
#: svx/uiconfig/ui/sidebarlists.ui:22
msgctxt "sidebarlists|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Opsommingtekens en nummering"
#: svx/uiconfig/ui/sidebarparagraph.ui:26
msgctxt "sidebarparagraph|numberbullet|tooltip_text"
diff --git a/source/nl/sw/messages.po b/source/nl/sw/messages.po
index b23dbf7086a..8d253010b60 100644
--- a/source/nl/sw/messages.po
+++ b/source/nl/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-21 07:33+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-28 07:41+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\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: 1555831993.000000\n"
+"X-POOTLE-MTIME: 1559029305.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,7 +3118,7 @@ msgid "Change object title of $1"
msgstr "Titel van object $1 wijzigen"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Beschrijving van object $1 wijzigen"
@@ -3145,7 +3145,7 @@ msgstr "Tabel verwijderen"
#: sw/inc/strings.hrc:549
msgctxt "STR_UNDO_INSERT_FORM_FIELD"
msgid "Insert form field"
-msgstr ""
+msgstr "Formulierveld ingevoegd"
#: sw/inc/strings.hrc:551
msgctxt "STR_ACCESS_DOC_NAME"
@@ -7679,7 +7679,7 @@ msgstr "Teken"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Standaard"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -9898,7 +9898,7 @@ msgstr "Op even pagina's _spiegelen"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Binnen de tekstgrenzen houden"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|label11"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Help"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Bestand"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Start"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Invoegen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Invoegen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Lay-08t"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Lay-out"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Verwij_zingen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Verwij~zingen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Beoordelen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Beoordelen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Beel_d"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "Beel~d"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Afbeeldin_g"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Afbeeldin_g"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "T_ekenen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "T~ekenen"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Object"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Object"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Af_drukken"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Afdru~kken"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "F_ormulier"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulier"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "E_xtra"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Extra"
@@ -12160,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Bestand"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Bestand"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Home"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Start"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Invoegen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Invoegen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Omloop"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Lay-out"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Lay-out"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Verwij_zingen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Verwij~zingen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Beoor_delen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Beoordelen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "Beel_d"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Beeld"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abel"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tabel"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Afbeelding"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Afbeeldin_g"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Te_kenen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Tekenen"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Object"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Object"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Afdrukken"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "Af~drukken"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "F_ormulier"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmulier"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "E_xtra"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "E~xtra"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12449,7 +12449,7 @@ msgstr "_Object"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "F_rame"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12659,7 +12659,7 @@ msgstr "_Media"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Object"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13372,8 +13372,8 @@ msgstr "Vergroot de woordruimte in regels met handmatige regeleinden in uitgevul
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Formulier beveiligen"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13413,7 +13413,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:184
msgctxt "optcompatpage|label2"
msgid "Global compatibility options"
-msgstr ""
+msgstr "Wereldwijde compatibiliteitsopties"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Inhoudsopgave, index of woordenlijst"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Voorbeeld"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Voorbeeld"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Type"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Inhoud regels"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Opmaakprofielen"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Kolommen"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Achtergrond"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Voorbeeld"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "N_iveau"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Type"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Be_werken..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Type:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Inhoudsopgave"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Alfabetische index"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Inhoudsopgave van afbeeldingen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Tabellenregister"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Gebruikergedefinieerd"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tabel met objecten"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Literatuurlijst"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Beveiligd tegen handmatig wijzigen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Soort en titel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Voor:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Gehele document"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Hoofdstuk"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Gebruik tot niveau:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Index of inhoudsopgave maken"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Overzicht"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Indexmarkeringen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabellen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Tek_stkaders"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Afbeeldingen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objecten"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Niveau uit oorspronkelijk hoofdstuk gebruiken"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Extr_a opmaakprofielen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Opmaak_profielen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Opmaakprofielen toewijzen..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Bijschriften"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objectnamen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categorie:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Weergeven:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Verwijzingen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categorie en nummer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Bijschrift"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Samenstellen uit"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Uit de volgende objecten samenstellen"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Haakjes:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Items _nummeren"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[geen]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Items opmaken"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Combineren van identieke items"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Combineren van identieke items met _e.v."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Samenvoegen met -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Hoofdlettergevoelig"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Items automatisch met hoofdletter"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Sleutel als extra item"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Concordantiebestand"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Bestand"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opties"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Taal:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Sleuteltype:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sorteren"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "N_iveaus"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Alinea-op_maakprofiel"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Standaard"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Be_werken"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Toewijzing"
diff --git a/source/nl/wizards/messages.po b/source/nl/wizards/messages.po
index b7d5639d336..ab6372cce92 100644
--- a/source/nl/wizards/messages.po
+++ b/source/nl/wizards/messages.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-02-13 07:11+0000\n"
+"PO-Revision-Date: 2019-05-16 09:01+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1550041869.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557997304.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -1085,7 +1085,7 @@ msgstr "Mijn agenda-sjabloon"
#: wizards/com/sun/star/wizards/common/strings.hrc:264
msgctxt "RID_AGENDAWIZARDDIALOG_START_43"
msgid "An error occurred while saving the agenda template."
-msgstr ""
+msgstr "Bij het opslaan van de agendasjabloon is een fout opgetreden."
#: wizards/com/sun/star/wizards/common/strings.hrc:265
msgctxt "RID_AGENDAWIZARDDIALOG_START_44"
@@ -1145,7 +1145,7 @@ msgstr "Naam en locatie"
#: wizards/com/sun/star/wizards/common/strings.hrc:276
msgctxt "RID_AGENDAWIZARDDIALOG_START_56"
msgid "An error occurred while opening the agenda template."
-msgstr ""
+msgstr "Bij het openen van de agendasjabloon is een fout opgetreden."
#: wizards/com/sun/star/wizards/common/strings.hrc:277
msgctxt "RID_AGENDAWIZARDDIALOG_START_57"
diff --git a/source/nl/wizards/source/resources.po b/source/nl/wizards/source/resources.po
index 2db805286f0..cfe06c3a2dc 100644
--- a/source/nl/wizards/source/resources.po
+++ b/source/nl/wizards/source/resources.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2017-12-15 06:04+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"PO-Revision-Date: 2019-05-16 09:01+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513317841.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557997314.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -4206,7 +4206,7 @@ msgctxt ""
"RTErrorDesc\n"
"property.text"
msgid "An error has occurred in the wizard."
-msgstr ""
+msgstr "Er is een fout opgetreden in de Assistent."
#: resources_en_US.properties
msgctxt ""
diff --git a/source/nn/cui/messages.po b/source/nn/cui/messages.po
index 550b3709250..65a56945c1a 100644
--- a/source/nn/cui/messages.po
+++ b/source/nn/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-12 09:42+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-29 19:56+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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: 1557654167.000000\n"
+"X-POOTLE-MTIME: 1559159771.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Skriv inn ei gyldig temaadresse eller eit søkjeuttrykk."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "Mozilla Themes API er for tida ikkje tilgjengelege."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Vel ingen kantlinjer"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Vel berre ytre kantlinje"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Vel ytre kantlinje og vassrette linjer"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Vel ytre kantlinje og alle indre linjer"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Vel ytre kantlinje utan å endra dei indre linjene"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Vel berre skrålinjer"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Vel alle fire kantlinjene"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Vel berre venstre og høgre kantlinje"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Vel berre øvre og nedre kantlinje"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Vel berre venstre kantlinje"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Vel øvre og nedre kantlinje og alle indre linjer"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Vel venstre og høgre kantlinje og alle indre linjer"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Ingen skugge"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Kast skugge ned til høgre"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Kast skugge opp til høgre"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Kast skugge ned til venstre"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Kast skugge opp til venstre"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Signert av: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Alle filer"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Registrerte databasar"
@@ -1746,67 +1741,67 @@ msgstr "Registrerte databasar"
#: cui/inc/tipoftheday.hrc:45
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can open and save files stored on remote servers per CMIS."
-msgstr ""
+msgstr "%PRODUCTNAME kan opna og lagra filer som er lagra på eksterne tenarar med CMIS."
#. https://help.libreoffice.org/6.2/en-US/text/shared/guide/cmis-remote-files.html
#: cui/inc/tipoftheday.hrc:46
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > AutoCorrect > AutoCorrect Options… > Replace provides a list of common substitutions. Take a look and complete with your own replacements."
-msgstr ""
+msgstr "«Verktøy → Autoretting → Innstillingar for autoretting … → Byt ut» tilbyr ei liste over vanlege utbyttingar. Sjå på denne og eventuelt fyll ut lista med eigne utbyttingar."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/06040100.html
#: cui/inc/tipoftheday.hrc:47
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can handle styles conditionally: paragraph styles that have different properties depending on the context."
-msgstr ""
+msgstr "Writer kan handsama stilar etter vilkår slik at avsnittsstilar har ulike eigenskapar avhengig av innhaldet."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/05130100.html
#: cui/inc/tipoftheday.hrc:48
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With File > Versions you can store multiple versions of the document in the same file. You can also open, delete, and compare previous versions."
-msgstr ""
+msgstr "Med «Fil → Versjonar» kan du lagra fleire versjonar av eit dokument i den same fila. Du kan også opna, sletta og samanlikna tidlegare versjonar."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/01190000.html
#: cui/inc/tipoftheday.hrc:49
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can create an illustration index from object names, not only from captions."
-msgstr ""
+msgstr "Du kan laga ei innhaldsliste over illustrasjonar ut frå objektnamna, ikkje berre bilettekstane."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/05190000.html
#: cui/inc/tipoftheday.hrc:50
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To temporarily starts with a fresh user profile or to restore a non-working %PRODUCTNAME instance start Help > Restart in Safe Mode."
-msgstr ""
+msgstr "Bruk «Hjelp → Start på nytt i sikker modus» for å opna %PRODUCTNAME med ein ny brukarprofil eller for å starta %PRODUCTNAME på nytt når programmet ikkje verkar som det skal."
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
-msgstr ""
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
+msgstr "Du kan endra skrifttypen for ein førehandsdefinert mal eller for den gjeldande malen med «Verktøy → Innstillingar → %PRODUCTNAME Writer → Grunnleggjande skrifttypar»."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr ""
+msgstr "Definere tekstar du ofte brukar som autotekst. Du kan setja dei inn i kva Writer-dokument som helst ved hjelp av namnet på teksten, ein snarveg eller frå verktøylinja. "
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/autotext.html
#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools > Options > %PRODUCTNAME Writer > AutoCaption."
-msgstr ""
+msgstr "%PRODUCTNAME kan leggja til nummererte bilettekstar automatisk når du set inn objekt. Sjå «Verktøy → Innstillingar → %PRODUCTNAME Writer > Automatisk bilettekst»."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01041100.html
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr ""
+msgstr "Du kan sortera avsnitt eller tabellrader alfabetisk eller nummerisk frå «Verktøy → Sorter»."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sections in %PRODUCTNAME Writer to protect part of a text, show/hide text, reuse parts from other documents, use different column layout."
-msgstr ""
+msgstr "Bruk bolkar i %PRODUCTNAME Writer for å verna delar av ein tekst, visa og gøyma tekst, bruka delar frå andre dokument eller å bruka ulik utforming på spaltene."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/04020100.html
#: cui/inc/tipoftheday.hrc:56
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -1986,53 +1981,53 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:86
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
-msgstr ""
+msgstr "Rammer kan lenkjast saman slik at teksten kan flyta frå den eine tilden andre på same måten som i datatrykkeprogram (desktop publishing)."
#. local help missing
#: cui/inc/tipoftheday.hrc:88
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get help from the community via the Ask portal."
-msgstr ""
+msgstr "Frå hjelp (på engelsk) frå fellesskapet via Ask-portalen."
#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has great extensions to increase your productivity, check them out."
-msgstr ""
+msgstr "%PRODUCTNAME har mange utvidingar som hjelper deg til å vere effektiv. Prøv dei ut."
#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents, check it out."
-msgstr ""
+msgstr "%PRODUCTNAME har eit malsenter for å laga dokument med god utsjånad. Prøv det ut."
#: cui/inc/tipoftheday.hrc:91
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by clicking on F1, if you've installed it. Otherwise check online at:"
-msgstr ""
+msgstr "Du kan få innebygd hjelp ved å trykkja F1 dersom dette er installert, elles kan du bruka nettbasert hjelp på"
#: cui/inc/tipoftheday.hrc:92
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
-msgstr ""
+msgstr "Få dokumentasjonen for %PRODUCTNAME og gratis brukarrettleiing på"
#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Gåva di hjelper vår verdsomspennande fellesskap."
#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as an extension."
-msgstr ""
+msgstr "Det er enkelt å installera nye ordbøker i %PRODUCTNAME. Dei kan lastast ned som utvidingar."
#: cui/inc/tipoftheday.hrc:95
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
-msgstr ""
+msgstr "%PRODUCTNAME vert utvikla av eit venleg fellesskap av hundrevis av frivillige rundt om i verda. Bli gjerne med i fellesskapet med det du måtte kunne bidra med."
#: cui/inc/tipoftheday.hrc:96
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
-msgstr ""
+msgstr "%PRODUCTNAME har også ein portabel versjon som gjev deg fridom. Sjølv utan administratorrettar kan du installera %PRODUCTNAME Portable på datamaskinen din."
#: cui/inc/tipoftheday.hrc:97
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2042,7 +2037,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:98
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "Lag redigerbar hybrid-PDF med %PRODUCTNAME."
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2057,7 +2052,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:101
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
-msgstr ""
+msgstr "%PRODUCTNAME finst på over 150 språk."
#: cui/inc/tipoftheday.hrc:102
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2722,7 +2717,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:235
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To remove the page number from your table of contents go to Insert > Table of Contents (or right-click and Edit the previously inserted index). At the Entries tab delete the page number (#) from Structure line."
-msgstr ""
+msgstr "Du kan fjerna eit sidenummer frå innhaldslista ved å gå til Set inn > Innhaldsliste (eller høgreklikka og redigera den tidleghare innsette oppføringa). Slett sidenummeret (#) frå strukturlinja ved innskrivingsfana."
#: cui/inc/tipoftheday.hrc:236
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -2848,17 +2843,17 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:260
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can change the look of %PRODUCTNAME at Tools > Options > View > User Interface."
-msgstr ""
+msgstr "Du kan endra utsjånaden på %PRODUCTNAME frå Verktøy → Innstillingar → Vis → Brukargrensesnitt.."
#: cui/inc/tipoftheday.hrc:263
msgctxt "STR_HELP_LINK"
msgid "%PRODUCTNAME Help"
-msgstr ""
+msgstr "Hjelp for %PRODUCTNAME"
#: cui/inc/tipoftheday.hrc:264
msgctxt "STR_MORE_LINK"
msgid "More info"
-msgstr ""
+msgstr "Meir informasjon"
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -3008,17 +3003,17 @@ msgstr "Rutenett"
#: cui/inc/treeopt.hrc:71
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (Western)"
-msgstr "Enkle skrifttypar (vestleg)"
+msgstr "Grunnleggjande skrifttypar (vestleg)"
#: cui/inc/treeopt.hrc:72
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (Asian)"
-msgstr "Enkle skrifttypar (asiatisk)"
+msgstr "Grunnleggjande skrifttypar (asiatisk)"
#: cui/inc/treeopt.hrc:73
msgctxt "SID_SW_EDITOPTIONS_RES"
msgid "Basic Fonts (CTL)"
-msgstr "Enkle skrifttypar (CTL)"
+msgstr "Grunnleggjande skrifttypar (CTL)"
#: cui/inc/treeopt.hrc:74
msgctxt "SID_SW_EDITOPTIONS_RES"
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Om %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "_Bidragsytarar"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Nettstad"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Lokale: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Språk for brukargrensesnittet: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Sjå logfila: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME er ei moderne og brukarvenleg produktivitetspakke for tekstbehandling, rekneark, presentasjonar og meir. Programmet brukar open kjeldekode."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 LibreOffice contributors."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice var basert på OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME er avleidd frå LibreOffice som var basert på OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Denne utgjevinga er levert av %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Byt ut"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Erstatt"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Med:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "B_erre tekst"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minste ordlengd"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Eigenskapar"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_Nettadresse:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Ramme:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Namn:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Alternativ _tekst:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Skildring:"
@@ -9019,80 +9179,80 @@ msgstr "Vis oppsprettvindauget «Hjelp i fråkopla tilstand er ikkje installert
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Hjelp"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Bruk dialogvindauga til %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogvindauge for opning og lagring"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Bruk _dialogvindauga til %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialogvindauge for utskrift"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Utskriving set status for «dokumentet er endra»"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Dokumentstatus"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Tolk som år mellom"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "og "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "År (to siffer)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Samla inn bruksdata og send dei til The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Hjelp til med å gjere %PRODUCTNAME betre"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Last inn %PRODUCTNAME ved oppstart"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Slå på snøggstartaren i oppgåvelinja"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Snøggstartar"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Førehandsinstallert tema"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Eige tema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Last inn Firefox tema"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Eller vel frå tema installerte via utvidingar:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox-tema"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Tryggleiksinnstillingar"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Vel Firefox-tema"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Søkjeord eller adresse"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "K_ategori:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Samandrag"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Årsaker"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Mote"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film og TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Helg"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musikk"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natur"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Anna"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Landskap"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Sesongavhengig"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Massiv"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sport"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Nettstadar"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Utheva"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12710,32 +12759,32 @@ msgstr "Byt ut med:"
#: cui/uiconfig/ui/tipofthedaydialog.ui:8
msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
-msgstr ""
+msgstr "Dagens tips"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
-msgstr ""
+msgstr "_Vis dagens tips"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
-msgstr ""
+msgstr ">D>u kan slå på dialogvindauget igjen frå Verktøy → Innstillingar → Generelt"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
-msgstr ""
+msgstr "_Neste tips"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
-msgstr ""
+msgstr "Visste du?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
-msgstr ""
+msgstr "Lenkje"
#: cui/uiconfig/ui/transparencytabpage.ui:77
msgctxt "transparencytabpage|RBT_TRANS_OFF"
diff --git a/source/nn/dbaccess/messages.po b/source/nn/dbaccess/messages.po
index 0de3c0bd103..73232dc7e58 100644
--- a/source/nn/dbaccess/messages.po
+++ b/source/nn/dbaccess/messages.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: 2019-04-24 18:25+0200\n"
-"PO-Revision-Date: 2019-01-19 16:47+0000\n"
+"PO-Revision-Date: 2019-05-14 19:25+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1547916452.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557861924.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1597,7 +1597,7 @@ msgstr "Feil ved oppretting"
#: dbaccess/inc/strings.hrc:341
msgctxt "STR_UNEXPECTED_ERROR"
msgid "An error occurred. The operation could not be performed."
-msgstr ""
+msgstr "Det oppstod ein feil. Klarte ikkje utføra handlinga."
#: dbaccess/inc/strings.hrc:342
msgctxt "STR_COULDNOTOPEN_LINKEDDOC"
diff --git a/source/nn/extensions/messages.po b/source/nn/extensions/messages.po
index 161fe95f846..83026f91597 100644
--- a/source/nn/extensions/messages.po
+++ b/source/nn/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-24 12:10+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1556107818.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Kolonneoppsett for tabellen «%1»"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Kortnamn"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Forfattar(ar)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Utgjevar"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Kapittel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Forfattar"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_År"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "_Tittel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "_Adresse"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "_Side(r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "_Utgåve"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "_Boktittel"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Band"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "_Publikasjonstype"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_sasjon"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_usjon"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "_Universitet"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "_Rapporttype"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Månad"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Set"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "_Tal på"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "_Seriar"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "_Merknadar"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Merknad"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Anna felt _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Anna felt _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Anna felt _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Anna felt _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Anna felt _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Kolonnenamn"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Skriv inn eit namn på den nye datatypen:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Kopla saman felt"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Forslag"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Underskjema kan brukast til å visa detaljerte data om den valde posten i hovudskjemaet. Du kan setja opp skjemaet ved å velja kva for kolonnar i underskjemaet som svarar til kolonnane i hovudskjemaet."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etikett"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etikett"
diff --git a/source/nn/helpcontent2/source/auxiliary.po b/source/nn/helpcontent2/source/auxiliary.po
index f625f0d7e9d..556b7509dd3 100644
--- a/source/nn/helpcontent2/source/auxiliary.po
+++ b/source/nn/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-21 10:06+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1555841203.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Generell informasjon"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Presentasjonar og teikning (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Verktøylinjer"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Teikningar (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menyar"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Verktøylinjer"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objekt, bilete og punktbilete"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupper og lag"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Tekst i presentasjonar og teikningar"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/sbasic/guide.po b/source/nn/helpcontent2/source/text/sbasic/guide.po
index 61657485b83..10874973bf3 100644
--- a/source/nn/helpcontent2/source/text/sbasic/guide.po
+++ b/source/nn/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-07 17:53+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1557251634.000000\n"
#: access2base.xhp
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Samanlikn Access2Base med Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Opna eit dialogvindauge med programkode"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>modul/dialogskift</bookmark_value><bookmark_value>dialogar; bruka programkode til å visa (eksempel)</bookmark_value><bookmark_value>eksempel; visa ein dialog ved å bruka programkode</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/sbasic/python.po b/source/nn/helpcontent2/source/text/sbasic/python.po
index 2cc9f73a8c8..e1212c93663 100644
--- a/source/nn/helpcontent2/source/text/sbasic/python.po
+++ b/source/nn/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-04-24 10:59+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-14 19:02+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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: 1556103554.000000\n"
+"X-POOTLE-MTIME: 1557860558.000000\n"
#: main0000.xhp
msgctxt ""
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: Opna eit dialogvindauge"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,8 +93,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
-msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opnar eit dialogvindauge i Phyton</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -158,14 +158,14 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Python : Monitoring Document Events"
-msgstr ""
+msgstr "Python: Overvåk dokumenthendingar"
#: python_document_events.xhp
msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -174,7 +174,7 @@ msgctxt ""
"N0527\n"
"help.text"
msgid "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Monitoring Document Events</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pythonmonitor\"><link href=\"text/sbasic/python/python_document_events.xhp\" name=\"Monitoring Document Events\">Overvåking av dokumenthendingar</link></variable>"
#: python_document_events.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"N0528\n"
"help.text"
msgid "Next to <link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigning macros to events\">assigning macros to events</link>, one can monitor events raised by %PRODUCTNAME documents. Application Programming Interface (API) broadcasters are responsible for calling event scripts. Unlike listeners that require to define all supported methods, even if unused, document monitors require only two methods next to hooked event scripts."
-msgstr ""
+msgstr "I tillegg til å <link href=\"text/sbasic/shared/01040000.xhp\" name=\"assigning macros to events\">knytte makroar til hendingar</link> kan ein overvåke hendingar iverksett frå %PRODUCTNAME-dokument. API (Application Programming Interface)-sendarane er ansvarløege for å kalla opp hendings-skript. I motsetning til lyarane som skal definer alle støtta metoder, også ubrukte, krev dokumentovervåkarane berre to metodar ved sida av skript for hekta hendingar."
#: python_document_events.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"N0529\n"
"help.text"
msgid "Listening to Document Events"
-msgstr ""
+msgstr "Lytting til dokumenthendingar"
#: python_document_events.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"N0530\n"
"help.text"
msgid "Monitoring is illustrated herewith for Basic and Python languages using object-oriented programming. Assigning <literal>OnLoad</literal> script, to the <literal>Open Document</literal> event, suffices to initiate and terminate document event monitoring. <menuitem>Tools – Customise...</menuitem> menu <menuitem>Events</menuitem> tab is used to assign either scripts."
-msgstr ""
+msgstr "Overvåkinga vert vist her for språka Basic og Python med objektorientert programmering. Tildeling av skriptet <literal>OnLoad</literal> til hendinga <literal>Open Document</literal> er nok for å byrja og avslutta overvåkinga. Fana <menuitem>Hendingar</menuitem> i menyen <menuitem>Verktøy → Tilpass</menuitem> vert brukt for å ta i bruk begge skripta."
#: python_document_events.xhp
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"N0531\n"
"help.text"
msgid "Intercepting events helps setting scripts pre- and post-conditions such as loading and unloading libraries or track script processing in the background. <literal>Access2Base Trace</literal> module usage is illustrating that second context."
-msgstr ""
+msgstr "Innhenting av hendingar gjer det enklare å setja skript før og etter vilkåra, for eksempel inn- og utlesing av bibliotek eller sporing av skripthandsaming i bakgrunnen. Bruken av modulen <literal> Access2Base Trace </literal> viser denne sistnemnde samanhengen."
#: python_document_events.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"N0532\n"
"help.text"
msgid "With Python"
-msgstr ""
+msgstr "Med Python"
#: python_document_events.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"N0533\n"
"help.text"
msgid "Events monitoring starts from object instantiation and ultimately stops when Python releases the object. Raised events are reported using <literal>Access2Base</literal> console."
-msgstr ""
+msgstr "Overvåkinga av hendingar byrjar med opprettinga av objekt og sluttar når Python gjev objektet fri. Hendingar som er registrerte, vert rapporterte ved hjelp av <literal> Access2Base </literal>-konsollen."
#: python_document_events.xhp
msgctxt ""
@@ -230,7 +230,7 @@ msgctxt ""
"N0534\n"
"help.text"
msgid "<literal>OnLoad</literal> and <literal>OnUnload</literal> events can be used to respectively set and unset Python programs path. They are described as <literal>Open document</literal> and <literal>Document closed</literal>."
-msgstr ""
+msgstr "Hendingane <literal>OnLoad</literal> og <literal>OnUnload</literal> kan brukast til å setja og oppheva programstien for Python. Dei er omtalte som <literal>Open document</literal> og <literal>Document closed</literal>."
#: python_document_events.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"N0543\n"
"help.text"
msgid "class UiDocument(unohelper.Base, AdapterPattern):"
-msgstr ""
+msgstr "class UiDocument(unohelper.Base, AdapterPattern):"
#: python_document_events.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"N0544\n"
"help.text"
msgid "\"\"\" Monitor document events \"\"\""
-msgstr ""
+msgstr "\"\"\" Overvåk dokumenthendingar \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"N0546\n"
"help.text"
msgid "adapted from 'Python script to monitor OnSave event' at"
-msgstr ""
+msgstr "omforma frå «Python-script til å overvåke OnSave-hendingar» på"
#: python_document_events.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"N0550\n"
"help.text"
msgid "\"\"\" Document events monitor \"\"\""
-msgstr ""
+msgstr "\"\"\" Overvåking av dokumenthendingar \"\"\""
#: python_document_events.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"N0551\n"
"help.text"
msgid "''' report using Access2Base.Trace console OR"
-msgstr ""
+msgstr "''' rapporter med Access2Base.Trace-konsollen ELLER"
#: python_document_events.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"N0552\n"
"help.text"
msgid "report in 1st sheet, 1st column for Calc docs '''"
-msgstr ""
+msgstr "rapporter på Ark 1, første kolonne for Calc-dokument '''"
#: python_document_events.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"N0558\n"
"help.text"
msgid "#self.row = 0 # uncomment for Calc documents only"
-msgstr ""
+msgstr "#self.row = 0 # avkommenterer berre for Calc-dokument"
#: python_document_events.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"N0560\n"
"help.text"
msgid "self.listen() # Start monitoring doc. events"
-msgstr ""
+msgstr "self.listen() # Start overvåking av doc.-hendingar"
#: python_document_events.xhp
msgctxt ""
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "%PRODUCTNAME Basic manglar den innebygde Mac OS X-gjenkjenninga, medan funksjonen ComputerName berre er tilgjengeleg i Windows. Basic kallar opp Python for å omgå desse avgrensingane."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr "Bruka ein Basic klassemodul:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/nn/helpcontent2/source/text/sbasic/shared.po b/source/nn/helpcontent2/source/text/sbasic/shared.po
index b250ed8de05..f724502d78d 100644
--- a/source/nn/helpcontent2/source/text/sbasic/shared.po
+++ b/source/nn/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-07 20:41+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">Hjelp for %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/sbasic/shared/03.po b/source/nn/helpcontent2/source/text/sbasic/shared/03.po
index 2c767a5b099..809a8e451fc 100644
--- a/source/nn/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/nn/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-07 17:53+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1557251603.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Funksjonar og subrutinar for modulkontroll."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/nn/helpcontent2/source/text/scalc/01.po b/source/nn/helpcontent2/source/text/scalc/01.po
index 66ae2c72577..0c6d6aef462 100644
--- a/source/nn/helpcontent2/source/text/scalc/01.po
+++ b/source/nn/helpcontent2/source/text/scalc/01.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-01-14 17:20+0000\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
+"PO-Revision-Date: 2019-05-29 19:19+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1547486406.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559157578.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3155959\n"
"help.text"
msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph>+Shift+Enter</emph> command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces: <emph>{ }</emph>."
-msgstr ""
+msgstr "Valet <emph>Matrix</emph> er det same som kommandoen <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Cmd</emph></caseinline><defaultinline><emph>Ctrl</emph></defaultinline></switchinline><emph> + Skift + Enter</emph> som vert brukt for å laga og bekrefta formlar i arket. Formelen vert sett inn som ein matriseformel vist ved at han vert sett mellom to krøllparentesar <emph>{ }</emph>."
#: 04060000.xhp
msgctxt ""
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">I denne lista kan du velja kva for makrotypar du vil integrera.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Skriv inn adressa eller filnanet som inneheld dataane som skal setjast inn. Trykk så Enter.</ahelp> Berre på denne måten vert adressa kalla opp frå nettverket eller filsystemet."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Vel tabellen eller dataområdet som du vil setja inn.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Oppgjev celleområdet som du vil sameina med celleområda oppgjevne i boksen for <emph>sameiningsområde</emph>. Vel eit celleområde i eit ark og trykk <emph>Legg til</emph>. Du kan også velja eit namn frå ei førehandsdefinert celle frå lista over <emph>kjeldedataområde</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/schart/00.po b/source/nn/helpcontent2/source/text/schart/00.po
index 7c963f9bc7f..0125670915f 100644
--- a/source/nn/helpcontent2/source/text/schart/00.po
+++ b/source/nn/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-17 20:44+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1547757898.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">Vel «Mjuk» i dialogvindauget «Diagramtype» for eit linjediagram eller XY-diagram (spreiingsdiagram) og klikk på knappen «Eigenskapar».</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">I dialogvindauget for diagramtype for eit linjediagram eller XY-diagram (spreiingsdiagram) som viser linjer, kan du velja <emph>Stegvis</emph> i nedtrekkslista <emph>Linjetype</emph> og deretter klikka på knappen <emph>Eigenskapar</emph>.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/nn/helpcontent2/source/text/shared/00.po b/source/nn/helpcontent2/source/text/shared/00.po
index e706b0307d8..d6b0221f976 100644
--- a/source/nn/helpcontent2/source/text/shared/00.po
+++ b/source/nn/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-09 14:42+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1557412949.000000\n"
#: 00000001.xhp
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Vel <switchinline select=\"sys\"><caseinline s
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Vel <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME → Innstillingar</emph></caseinline><defaultinline><emph>Verktøy → Innstillingar</emph></defaultinline></switchinline><emph> → $[officename] → Personleg tilpassing</emph></variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/nn/helpcontent2/source/text/shared/01.po b/source/nn/helpcontent2/source/text/shared/01.po
index 22959258ec7..04ea3ea02d3 100644
--- a/source/nn/helpcontent2/source/text/shared/01.po
+++ b/source/nn/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-09 14:59+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1557413987.000000\n"
#: 01010000.xhp
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/nn/helpcontent2/source/text/shared/02.po b/source/nn/helpcontent2/source/text/shared/02.po
index ab7832c54b5..b681169e798 100644
--- a/source/nn/helpcontent2/source/text/shared/02.po
+++ b/source/nn/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-18 15:57+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1547827073.000000\n"
#: 01110000.xhp
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Bestemmerl om eit tekstutval eller eit kontrollelement framleis skal vera markert etter at fokus ikkje er på noko kontrollelement.</ahelp> Viss du set <emph>Gøym utval</emph> til «Nei», vil den markerte teksten framleis vera markert etter at fokus er flytt frå kontrollelementet som inneheld teksten."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/nn/helpcontent2/source/text/shared/guide.po b/source/nn/helpcontent2/source/text/shared/guide.po
index f109a5e86d0..347f34debcd 100644
--- a/source/nn/helpcontent2/source/text/shared/guide.po
+++ b/source/nn/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-09 15:06+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-16 20:36+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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: 1557414362.000000\n"
+"X-POOTLE-MTIME: 1558038970.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3054,7 +3054,7 @@ msgctxt ""
"hd_id771554399002497\n"
"help.text"
msgid "<link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">File Conversion Filter Names</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/convertfilters.xhp\" name=\"conversion filter names\">Filkonvertering filternamn</link>"
#: convertfilters.xhp
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"par_id581554399002498\n"
"help.text"
msgid "<variable id=\"variable name\"><ahelp hid=\".\">Tables with filter names for command line document conversion.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"variable name\"><ahelp hid=\".\">Tabellar med filternamn for dokumentkonvertering frå kommandolinja.</ahelp></variable>"
#: convertfilters.xhp
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"par_id00tablehead\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\"><variable visibility=\"hidden\" id=\"filtername\">Filter name</variable><variable visibility=\"hidden\" id=\"mediatype\">Media type</variable><variable visibility=\"hidden\" id=\"fileextensions\">File name extensions</variable></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\"><variable visibility=\"hidden\" id=\"filtername\">Filternamn</variable><variable visibility=\"hidden\" id=\"mediatype\">Mediatype</variable><variable visibility=\"hidden\" id=\"fileextensions\">Filnamnutvidingar</variable></ahelp>"
#: convertfilters.xhp
msgctxt ""
@@ -3078,7 +3078,7 @@ msgctxt ""
"bm_000writer\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for WRITER</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentkonvertering frå kommandolinja; filter for WRITER</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -3086,7 +3086,7 @@ msgctxt ""
"hd_000writer\n"
"help.text"
msgid "Filters for WRITER"
-msgstr ""
+msgstr "Filter for WRITER"
#: convertfilters.xhp
msgctxt ""
@@ -3094,15 +3094,7 @@ msgctxt ""
"par_writer0\n"
"help.text"
msgid "AbiWord Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
+msgstr "AbiWord-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3110,15 +3102,7 @@ msgctxt ""
"par_writer3\n"
"help.text"
msgid "Apple Pages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
+msgstr "Apple Pages"
#: convertfilters.xhp
msgctxt ""
@@ -3126,15 +3110,7 @@ msgctxt ""
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
+msgstr "BroadBand eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3142,15 +3118,7 @@ msgctxt ""
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks Document"
#: convertfilters.xhp
msgctxt ""
@@ -3158,15 +3126,7 @@ msgctxt ""
"par_writer12\n"
"help.text"
msgid "EPUB Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
+msgstr "EPUB-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3174,15 +3134,7 @@ msgctxt ""
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
+msgstr "FictionBook 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -3190,15 +3142,7 @@ msgctxt ""
"par_writer18\n"
"help.text"
msgid "HTML Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
+msgstr "HTML-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3206,15 +3150,7 @@ msgctxt ""
"par_writer21\n"
"help.text"
msgid "HTML Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
+msgstr "HTML-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3222,15 +3158,7 @@ msgctxt ""
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
+msgstr "Hangul WP 97"
#: convertfilters.xhp
msgctxt ""
@@ -3238,7 +3166,7 @@ msgctxt ""
"par_writer27\n"
"help.text"
msgid "Help content"
-msgstr ""
+msgstr "Hjelpinnhald"
#: convertfilters.xhp
msgctxt ""
@@ -3246,7 +3174,7 @@ msgctxt ""
"par_writer28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -3254,7 +3182,7 @@ msgctxt ""
"par_writer30\n"
"help.text"
msgid "Legacy Mac Text Document"
-msgstr ""
+msgstr "Eldre Mac tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3262,7 +3190,7 @@ msgctxt ""
"par_writer31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -3270,7 +3198,7 @@ msgctxt ""
"par_writer33\n"
"help.text"
msgid "Legacy StarOffice Text Document"
-msgstr ""
+msgstr "Gammalt StarOffice tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3278,7 +3206,7 @@ msgctxt ""
"par_writer34\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -3286,15 +3214,7 @@ msgctxt ""
"par_writer36\n"
"help.text"
msgid "LotusWordPro Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
+msgstr "LotusWordPro-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3302,15 +3222,7 @@ msgctxt ""
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "MS Word 95-mal"
#: convertfilters.xhp
msgctxt ""
@@ -3318,15 +3230,7 @@ msgctxt ""
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
+msgstr "MacWrite-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3334,7 +3238,7 @@ msgctxt ""
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
-msgstr ""
+msgstr "Mariner Write Mac Classic v1.6 - v3.5"
#: convertfilters.xhp
msgctxt ""
@@ -3342,15 +3246,7 @@ msgctxt ""
"par_writer48\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -3358,15 +3254,7 @@ msgctxt ""
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -3374,15 +3262,7 @@ msgctxt ""
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -3390,15 +3270,7 @@ msgctxt ""
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft WinWord 1/2/5"
#: convertfilters.xhp
msgctxt ""
@@ -3406,15 +3278,7 @@ msgctxt ""
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3422,15 +3286,7 @@ msgctxt ""
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word 95"
#: convertfilters.xhp
msgctxt ""
@@ -3438,7 +3294,7 @@ msgctxt ""
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
-msgstr ""
+msgstr "Microsoft Word for DOS"
#: convertfilters.xhp
msgctxt ""
@@ -3446,7 +3302,7 @@ msgctxt ""
"par_writer67\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -3454,15 +3310,7 @@ msgctxt ""
"par_writer69\n"
"help.text"
msgid "Microsoft Word for Mac (v1 - v5)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Microsoft Word for Mac (v1 - v5)"
#: convertfilters.xhp
msgctxt ""
@@ -3470,15 +3318,7 @@ msgctxt ""
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3486,15 +3326,7 @@ msgctxt ""
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works for Mac dokument (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -3502,15 +3334,7 @@ msgctxt ""
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
+msgstr "Microsoft Write"
#: convertfilters.xhp
msgctxt ""
@@ -3518,15 +3342,7 @@ msgctxt ""
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
+msgstr "Office Open XML-tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3534,15 +3350,7 @@ msgctxt ""
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
+msgstr "Office Open XML-tekstmal"
#: convertfilters.xhp
msgctxt ""
@@ -3550,15 +3358,7 @@ msgctxt ""
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
+msgstr "OpenDocument-tekst (flat XML)"
#: convertfilters.xhp
msgctxt ""
@@ -3566,15 +3366,7 @@ msgctxt ""
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0 tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3582,15 +3374,7 @@ msgctxt ""
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0 tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3598,15 +3382,7 @@ msgctxt ""
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
+msgstr "OpenOffice.org 1.0 tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3614,15 +3390,7 @@ msgctxt ""
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3630,15 +3398,7 @@ msgctxt ""
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3646,15 +3406,7 @@ msgctxt ""
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -3662,15 +3414,7 @@ msgctxt ""
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
+msgstr "Palm-tekstdokument"
#: convertfilters.xhp
msgctxt ""
@@ -3678,15 +3422,7 @@ msgctxt ""
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
+msgstr "PalmDoc eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3694,15 +3430,7 @@ msgctxt ""
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
+msgstr "Plucker eBook"
#: convertfilters.xhp
msgctxt ""
@@ -3710,15 +3438,7 @@ msgctxt ""
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Rikt tekstformat"
#: convertfilters.xhp
msgctxt ""
@@ -3726,15 +3446,7 @@ msgctxt ""
"par_writer120\n"
"help.text"
msgid "T602 Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
+msgstr "T602-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3742,7 +3454,7 @@ msgctxt ""
"par_writer123\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: convertfilters.xhp
msgctxt ""
@@ -3750,7 +3462,7 @@ msgctxt ""
"par_writer124\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3758,7 +3470,7 @@ msgctxt ""
"par_writer126\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: convertfilters.xhp
msgctxt ""
@@ -3766,7 +3478,7 @@ msgctxt ""
"par_writer127\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3774,7 +3486,7 @@ msgctxt ""
"par_writer129\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: convertfilters.xhp
msgctxt ""
@@ -3782,7 +3494,7 @@ msgctxt ""
"par_writer130\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -3790,15 +3502,7 @@ msgctxt ""
"par_writer132\n"
"help.text"
msgid "Word 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -3806,15 +3510,7 @@ msgctxt ""
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007–2019-mal"
#: convertfilters.xhp
msgctxt ""
@@ -3822,15 +3518,7 @@ msgctxt ""
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
@@ -3838,15 +3526,7 @@ msgctxt ""
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 97–2000 mal"
#: convertfilters.xhp
msgctxt ""
@@ -3854,15 +3534,7 @@ msgctxt ""
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
+msgstr "Word 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -3870,15 +3542,7 @@ msgctxt ""
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
+msgstr "WordPerfect-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3886,7 +3550,7 @@ msgctxt ""
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
-msgstr ""
+msgstr "WriteNow-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -3894,15 +3558,7 @@ msgctxt ""
"par_writer153\n"
"help.text"
msgid "Writer 6.0 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
+msgstr "Writer 6.0 hovudfokument"
#: convertfilters.xhp
msgctxt ""
@@ -3910,15 +3566,7 @@ msgctxt ""
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
+msgstr "Writer 6.0 mal"
#: convertfilters.xhp
msgctxt ""
@@ -3926,15 +3574,7 @@ msgctxt ""
"par_writer159\n"
"help.text"
msgid "Writer 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
+msgstr "Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3942,15 +3582,7 @@ msgctxt ""
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
+msgstr "Writer 8-hovuddokument"
#: convertfilters.xhp
msgctxt ""
@@ -3958,15 +3590,7 @@ msgctxt ""
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
+msgstr "Writer 8-mal for hovuddokument"
#: convertfilters.xhp
msgctxt ""
@@ -3974,15 +3598,7 @@ msgctxt ""
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
+msgstr "Writer 8-mal"
#: convertfilters.xhp
msgctxt ""
@@ -4006,15 +3622,7 @@ msgctxt ""
"par_writer174\n"
"help.text"
msgid "Writer/Web 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
+msgstr "Writer/Web 6-mal"
#: convertfilters.xhp
msgctxt ""
@@ -4022,15 +3630,7 @@ msgctxt ""
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
+msgstr "Writer/Web 8-mal"
#: convertfilters.xhp
msgctxt ""
@@ -4038,7 +3638,7 @@ msgctxt ""
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentkonvertering frå kommandolinja; filter for CALC</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -4046,7 +3646,7 @@ msgctxt ""
"hd_000calc\n"
"help.text"
msgid "Filters for CALC"
-msgstr ""
+msgstr "Filter for CALC"
#: convertfilters.xhp
msgctxt ""
@@ -4054,15 +3654,7 @@ msgctxt ""
"par_calc0\n"
"help.text"
msgid "Apple Numbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
+msgstr "Apple Numbers"
#: convertfilters.xhp
msgctxt ""
@@ -4070,15 +3662,7 @@ msgctxt ""
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
+msgstr "Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4086,15 +3670,7 @@ msgctxt ""
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
+msgstr "Calc 6.0 mal"
#: convertfilters.xhp
msgctxt ""
@@ -4102,15 +3678,7 @@ msgctxt ""
"par_calc9\n"
"help.text"
msgid "Calc 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
+msgstr "Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -4118,15 +3686,7 @@ msgctxt ""
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
+msgstr "Calc 8-mal"
#: convertfilters.xhp
msgctxt ""
@@ -4134,15 +3694,7 @@ msgctxt ""
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisResolve-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -4150,15 +3702,7 @@ msgctxt ""
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks dokument"
#: convertfilters.xhp
msgctxt ""
@@ -4166,7 +3710,7 @@ msgctxt ""
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
-msgstr ""
+msgstr "Data Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -4174,7 +3718,7 @@ msgctxt ""
"par_calc22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4182,15 +3726,7 @@ msgctxt ""
"par_calc24\n"
"help.text"
msgid "Excel 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Excel 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4198,15 +3734,7 @@ msgctxt ""
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Excel 2007–2019-mal"
#: convertfilters.xhp
msgctxt ""
@@ -4214,15 +3742,7 @@ msgctxt ""
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Excel 97–2000 mal"
#: convertfilters.xhp
msgctxt ""
@@ -4230,15 +3750,7 @@ msgctxt ""
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Excel 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -4246,15 +3758,7 @@ msgctxt ""
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
+msgstr "Gnumeric-rekneark"
#: convertfilters.xhp
msgctxt ""
@@ -4262,7 +3766,7 @@ msgctxt ""
"par_calc39\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "HTML-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -4270,7 +3774,7 @@ msgctxt ""
"par_calc40\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4278,7 +3782,7 @@ msgctxt ""
"par_calc42\n"
"help.text"
msgid "HTML Table"
-msgstr ""
+msgstr "HTML-tabell"
#: convertfilters.xhp
msgctxt ""
@@ -4286,7 +3790,7 @@ msgctxt ""
"par_calc43\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4294,7 +3798,7 @@ msgctxt ""
"par_calc45\n"
"help.text"
msgid "Legacy Mac Database"
-msgstr ""
+msgstr "Eldre Mac database"
#: convertfilters.xhp
msgctxt ""
@@ -4302,7 +3806,7 @@ msgctxt ""
"par_calc46\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4310,7 +3814,7 @@ msgctxt ""
"par_calc48\n"
"help.text"
msgid "Legacy Mac Spreadsheet"
-msgstr ""
+msgstr "Eldre Mac rekneark"
#: convertfilters.xhp
msgctxt ""
@@ -4318,7 +3822,7 @@ msgctxt ""
"par_calc49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4326,7 +3830,7 @@ msgctxt ""
"par_calc51\n"
"help.text"
msgid "Legacy StarOffice Spreadsheet"
-msgstr ""
+msgstr "Gammalt StarOffice rekneark"
#: convertfilters.xhp
msgctxt ""
@@ -4334,7 +3838,7 @@ msgctxt ""
"par_calc52\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4342,15 +3846,7 @@ msgctxt ""
"par_calc54\n"
"help.text"
msgid "Lotus"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
+msgstr "Lotus"
#: convertfilters.xhp
msgctxt ""
@@ -4358,7 +3854,7 @@ msgctxt ""
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
-msgstr ""
+msgstr "Lotus Wk1-Wk3"
#: convertfilters.xhp
msgctxt ""
@@ -4366,7 +3862,7 @@ msgctxt ""
"par_calc58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4374,15 +3870,7 @@ msgctxt ""
"par_calc60\n"
"help.text"
msgid "MS Excel 4.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "MS Excel 4.0 mal"
#: convertfilters.xhp
msgctxt ""
@@ -4390,15 +3878,7 @@ msgctxt ""
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "MS Excel 5.0 mal"
#: convertfilters.xhp
msgctxt ""
@@ -4406,15 +3886,7 @@ msgctxt ""
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "MS Excel 95-mal"
#: convertfilters.xhp
msgctxt ""
@@ -4422,7 +3894,7 @@ msgctxt ""
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr ""
+msgstr "Microsoft Excel 2007-binær"
#: convertfilters.xhp
msgctxt ""
@@ -4430,7 +3902,7 @@ msgctxt ""
"par_calc70\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4438,15 +3910,7 @@ msgctxt ""
"par_calc72\n"
"help.text"
msgid "Microsoft Excel 2007-2016 VBA XML"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
+msgstr "Microsoft Excel 2007-2016 VBA XML"
#: convertfilters.xhp
msgctxt ""
@@ -4454,15 +3918,7 @@ msgctxt ""
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -4470,15 +3926,7 @@ msgctxt ""
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -4486,15 +3934,7 @@ msgctxt ""
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -4502,7 +3942,7 @@ msgctxt ""
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: convertfilters.xhp
msgctxt ""
@@ -4510,7 +3950,7 @@ msgctxt ""
"par_calc85\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4518,7 +3958,7 @@ msgctxt ""
"par_calc87\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Microsoft Works-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -4526,7 +3966,7 @@ msgctxt ""
"par_calc88\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4534,15 +3974,7 @@ msgctxt ""
"par_calc90\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works for Mac dokument (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -4550,15 +3982,7 @@ msgctxt ""
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Office Open XML-rekneark"
#: convertfilters.xhp
msgctxt ""
@@ -4566,15 +3990,7 @@ msgctxt ""
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Office Open XML-reknearksmal"
#: convertfilters.xhp
msgctxt ""
@@ -4582,15 +3998,7 @@ msgctxt ""
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
+msgstr "OpenDocument-rekneark (flat-XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4598,15 +4006,7 @@ msgctxt ""
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4614,7 +4014,7 @@ msgctxt ""
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
-msgstr ""
+msgstr "Quattro Pro 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4622,7 +4022,7 @@ msgctxt ""
"par_calc106\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4630,7 +4030,7 @@ msgctxt ""
"par_calc108\n"
"help.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "QuattroPro-dokument"
#: convertfilters.xhp
msgctxt ""
@@ -4638,7 +4038,7 @@ msgctxt ""
"par_calc109\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4646,15 +4046,7 @@ msgctxt ""
"par_calc111\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Rikt tekstformat"
#: convertfilters.xhp
msgctxt ""
@@ -4662,7 +4054,7 @@ msgctxt ""
"par_calc114\n"
"help.text"
msgid "SYLK"
-msgstr ""
+msgstr "SYLK"
#: convertfilters.xhp
msgctxt ""
@@ -4670,7 +4062,7 @@ msgctxt ""
"par_calc115\n"
"help.text"
msgid "text/spreadsheet"
-msgstr ""
+msgstr "text/spreadsheet"
#: convertfilters.xhp
msgctxt ""
@@ -4678,7 +4070,7 @@ msgctxt ""
"par_calc117\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: convertfilters.xhp
msgctxt ""
@@ -4686,7 +4078,7 @@ msgctxt ""
"par_calc118\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -4694,7 +4086,7 @@ msgctxt ""
"par_calc120\n"
"help.text"
msgid "dBASE"
-msgstr ""
+msgstr "dBASE"
#: convertfilters.xhp
msgctxt ""
@@ -4702,7 +4094,7 @@ msgctxt ""
"par_calc121\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4710,7 +4102,7 @@ msgctxt ""
"bm_000impress\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for IMPRESS</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentkonvertering frå kommandolinja; filter for IMPRESS</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -4718,7 +4110,7 @@ msgctxt ""
"hd_000impress\n"
"help.text"
msgid "Filters for IMPRESS"
-msgstr ""
+msgstr "Filter for IMPRESS"
#: convertfilters.xhp
msgctxt ""
@@ -4726,15 +4118,7 @@ msgctxt ""
"par_impress0\n"
"help.text"
msgid "Apple Keynote"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
+msgstr "Apple Keynote"
#: convertfilters.xhp
msgctxt ""
@@ -4742,15 +4126,7 @@ msgctxt ""
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks-presentasjon"
#: convertfilters.xhp
msgctxt ""
@@ -4758,15 +4134,7 @@ msgctxt ""
"par_impress6\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4774,15 +4142,7 @@ msgctxt ""
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
+msgstr "Impress 6.0 mal"
#: convertfilters.xhp
msgctxt ""
@@ -4790,15 +4150,7 @@ msgctxt ""
"par_impress12\n"
"help.text"
msgid "Impress 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
+msgstr "Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4806,15 +4158,7 @@ msgctxt ""
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
+msgstr "Impress 8-mal"
#: convertfilters.xhp
msgctxt ""
@@ -4822,7 +4166,7 @@ msgctxt ""
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
-msgstr ""
+msgstr "Eldre Mac-presentasjon"
#: convertfilters.xhp
msgctxt ""
@@ -4830,7 +4174,7 @@ msgctxt ""
"par_impress19\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4838,7 +4182,7 @@ msgctxt ""
"par_impress21\n"
"help.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Forelda StarOffice-presentasjon"
#: convertfilters.xhp
msgctxt ""
@@ -4846,7 +4190,7 @@ msgctxt ""
"par_impress22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4854,7 +4198,7 @@ msgctxt ""
"par_impress24\n"
"help.text"
msgid "Microsoft PowerPoint 1-4"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4"
#: convertfilters.xhp
msgctxt ""
@@ -4862,7 +4206,7 @@ msgctxt ""
"par_impress25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -4870,15 +4214,7 @@ msgctxt ""
"par_impress27\n"
"help.text"
msgid "Office Open XML Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "Office Open XML-presentasjon"
#: convertfilters.xhp
msgctxt ""
@@ -4886,15 +4222,7 @@ msgctxt ""
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "Office Open XML Presentation AutoPlay"
#: convertfilters.xhp
msgctxt ""
@@ -4902,15 +4230,7 @@ msgctxt ""
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "Office Open XML-presentasjonsmal"
#: convertfilters.xhp
msgctxt ""
@@ -4918,15 +4238,7 @@ msgctxt ""
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
+msgstr "OpenDocument-presentasjonsmal (flat XML)"
#: convertfilters.xhp
msgctxt ""
@@ -4934,15 +4246,7 @@ msgctxt ""
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "OpenOffice.org 1.0 teikning"
#: convertfilters.xhp
msgctxt ""
@@ -4950,15 +4254,7 @@ msgctxt ""
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
+msgstr "OpenOffice.org 1.0 presentasjon"
#: convertfilters.xhp
msgctxt ""
@@ -4966,15 +4262,7 @@ msgctxt ""
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4982,15 +4270,7 @@ msgctxt ""
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4998,15 +4278,7 @@ msgctxt ""
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -5014,15 +4286,7 @@ msgctxt ""
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "PowerPoint 2007–2019-mal"
#: convertfilters.xhp
msgctxt ""
@@ -5030,15 +4294,7 @@ msgctxt ""
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
+msgstr "PowerPoint 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
@@ -5046,15 +4302,7 @@ msgctxt ""
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2000 mal"
#: convertfilters.xhp
msgctxt ""
@@ -5062,15 +4310,7 @@ msgctxt ""
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -5078,15 +4318,7 @@ msgctxt ""
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -5094,7 +4326,7 @@ msgctxt ""
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentkonvertering på kommandolinja; filter for DRAW</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -5102,7 +4334,7 @@ msgctxt ""
"hd_000draw\n"
"help.text"
msgid "Filters for DRAW"
-msgstr ""
+msgstr "Filter for DRAW"
#: convertfilters.xhp
msgctxt ""
@@ -5110,15 +4342,7 @@ msgctxt ""
"par_draw0\n"
"help.text"
msgid "Adobe PageMaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
+msgstr "Adobe PageMaker"
#: convertfilters.xhp
msgctxt ""
@@ -5126,15 +4350,7 @@ msgctxt ""
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
+msgstr "Adobe/Macromedia Freehand"
#: convertfilters.xhp
msgctxt ""
@@ -5142,15 +4358,7 @@ msgctxt ""
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "ClarisWorks/AppleWorks dokument"
#: convertfilters.xhp
msgctxt ""
@@ -5158,15 +4366,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "Corel Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
+msgstr "Corel Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5174,15 +4374,7 @@ msgctxt ""
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
+msgstr "Corel Presentation Exchange"
#: convertfilters.xhp
msgctxt ""
@@ -5190,15 +4382,7 @@ msgctxt ""
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
+msgstr "Draw 6.0 mal"
#: convertfilters.xhp
msgctxt ""
@@ -5206,15 +4390,7 @@ msgctxt ""
"par_draw18\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -5222,15 +4398,7 @@ msgctxt ""
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
+msgstr "Draw 8-mal"
#: convertfilters.xhp
msgctxt ""
@@ -5238,7 +4406,7 @@ msgctxt ""
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
-msgstr ""
+msgstr "Eldre Mac punktbilete"
#: convertfilters.xhp
msgctxt ""
@@ -5246,7 +4414,7 @@ msgctxt ""
"par_draw25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -5254,7 +4422,7 @@ msgctxt ""
"par_draw27\n"
"help.text"
msgid "Legacy Mac Drawing"
-msgstr ""
+msgstr "Eldre Mac teikning"
#: convertfilters.xhp
msgctxt ""
@@ -5262,7 +4430,7 @@ msgctxt ""
"par_draw28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -5270,7 +4438,7 @@ msgctxt ""
"par_draw30\n"
"help.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Gammal StarOffice teikning"
#: convertfilters.xhp
msgctxt ""
@@ -5278,7 +4446,7 @@ msgctxt ""
"par_draw31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -5286,15 +4454,7 @@ msgctxt ""
"par_draw33\n"
"help.text"
msgid "Microsoft Publisher 2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
+msgstr "Microsoft Publisher 2003"
#: convertfilters.xhp
msgctxt ""
@@ -5302,15 +4462,7 @@ msgctxt ""
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
+msgstr "Microsoft Visio"
#: convertfilters.xhp
msgctxt ""
@@ -5318,15 +4470,7 @@ msgctxt ""
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
+msgstr "OpenDocument-teikning (flat XML)"
#: convertfilters.xhp
msgctxt ""
@@ -5334,15 +4478,7 @@ msgctxt ""
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "OpenOffice.org 1.0 teikning"
#: convertfilters.xhp
msgctxt ""
@@ -5350,15 +4486,7 @@ msgctxt ""
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -5366,7 +4494,7 @@ msgctxt ""
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
-msgstr ""
+msgstr "QuarkXPress"
#: convertfilters.xhp
msgctxt ""
@@ -5374,7 +4502,7 @@ msgctxt ""
"par_draw49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -5382,15 +4510,7 @@ msgctxt ""
"par_draw51\n"
"help.text"
msgid "WordPerfect Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
+msgstr "WordPerfect-grafikk"
#: convertfilters.xhp
msgctxt ""
@@ -5398,7 +4518,7 @@ msgctxt ""
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Teikning"
#: convertfilters.xhp
msgctxt ""
@@ -5406,7 +4526,7 @@ msgctxt ""
"par_draw55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -5414,7 +4534,7 @@ msgctxt ""
"bm_000math\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for MATH</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentkonvertering frå kommandolinja; filter for MATH</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -5422,7 +4542,7 @@ msgctxt ""
"hd_000math\n"
"help.text"
msgid "Filters for MATH"
-msgstr ""
+msgstr "Filter for MATH"
#: convertfilters.xhp
msgctxt ""
@@ -5430,15 +4550,7 @@ msgctxt ""
"par_math0\n"
"help.text"
msgid "Math 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
+msgstr "Math 8"
#: convertfilters.xhp
msgctxt ""
@@ -5446,15 +4558,7 @@ msgctxt ""
"par_math3\n"
"help.text"
msgid "MathML 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
+msgstr "MathML 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -5462,7 +4566,7 @@ msgctxt ""
"par_math6\n"
"help.text"
msgid "MathType3.x"
-msgstr ""
+msgstr "MathType3.x"
#: convertfilters.xhp
msgctxt ""
@@ -5470,7 +4574,7 @@ msgctxt ""
"par_math7\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -5478,15 +4582,7 @@ msgctxt ""
"par_math9\n"
"help.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
+msgstr "OpenOffice.org 1.0 Formel"
#: convertfilters.xhp
msgctxt ""
@@ -5494,15 +4590,7 @@ msgctxt ""
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF – Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -5510,7 +4598,7 @@ msgctxt ""
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentkonvertering frå kommandolinja; filter for BASE</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -5518,7 +4606,7 @@ msgctxt ""
"hd_000base\n"
"help.text"
msgid "Filters for BASE"
-msgstr ""
+msgstr "Filter for BASE"
#: convertfilters.xhp
msgctxt ""
@@ -5526,15 +4614,7 @@ msgctxt ""
"par_base0\n"
"help.text"
msgid "OpenDocument Database"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
+msgstr "OpenDocument-database"
#: convertfilters.xhp
msgctxt ""
@@ -5542,7 +4622,7 @@ msgctxt ""
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentkonvertering frå kommandolinja; filter for GRAPHICFILTER</bookmark_value>"
#: convertfilters.xhp
msgctxt ""
@@ -5550,7 +4630,7 @@ msgctxt ""
"hd_000graphicfilter\n"
"help.text"
msgid "Filters for GRAPHICFILTER"
-msgstr ""
+msgstr "Filter for GRAPHICFILTER"
#: convertfilters.xhp
msgctxt ""
@@ -5558,15 +4638,7 @@ msgctxt ""
"par_graphicfilter0\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP – Windows Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5574,15 +4646,7 @@ msgctxt ""
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP – Windows Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5590,15 +4654,7 @@ msgctxt ""
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
+msgstr "Computer Graphics Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5606,15 +4662,7 @@ msgctxt ""
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
+msgstr "DXF – AutoCAD Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -5622,15 +4670,7 @@ msgctxt ""
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF – Enhanced Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -5638,15 +4678,7 @@ msgctxt ""
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF – Enhanced Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -5654,15 +4686,7 @@ msgctxt ""
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS – Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5670,15 +4694,7 @@ msgctxt ""
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS – Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5686,15 +4702,7 @@ msgctxt ""
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -5702,15 +4710,7 @@ msgctxt ""
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -5718,7 +4718,7 @@ msgctxt ""
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5726,7 +4726,7 @@ msgctxt ""
"par_graphicfilter31\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -5734,7 +4734,7 @@ msgctxt ""
"par_graphicfilter33\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5742,7 +4742,7 @@ msgctxt ""
"par_graphicfilter34\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -5750,15 +4750,7 @@ msgctxt ""
"par_graphicfilter36\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG – Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5766,15 +4758,7 @@ msgctxt ""
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG – Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5782,15 +4766,7 @@ msgctxt ""
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG – Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5798,15 +4774,7 @@ msgctxt ""
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET – OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5814,15 +4782,7 @@ msgctxt ""
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET – OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5830,15 +4790,7 @@ msgctxt ""
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
+msgstr "MOV - QuickTime filformat"
#: convertfilters.xhp
msgctxt ""
@@ -5846,7 +4798,7 @@ msgctxt ""
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5854,7 +4806,7 @@ msgctxt ""
"par_graphicfilter55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -5862,7 +4814,7 @@ msgctxt ""
"par_graphicfilter57\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5870,7 +4822,7 @@ msgctxt ""
"par_graphicfilter58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Inga"
#: convertfilters.xhp
msgctxt ""
@@ -5878,15 +4830,7 @@ msgctxt ""
"par_graphicfilter60\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM – Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5894,15 +4838,7 @@ msgctxt ""
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM – Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5910,15 +4846,7 @@ msgctxt ""
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base"
#: convertfilters.xhp
msgctxt ""
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/nn/helpcontent2/source/text/shared/optionen.po b/source/nn/helpcontent2/source/text/shared/optionen.po
index 045907fa00f..de50e7b7e89 100644
--- a/source/nn/helpcontent2/source/text/shared/optionen.po
+++ b/source/nn/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-18 17:38+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "Du finn meir informasjon (på engelsk) om OpenCL på <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personleg tilpassing"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>tema;setja innstillingar</bookmark_value><bookmark_value>setja innstillingar;tema</bookmark_value><bookmark_value>personleg tilpassing;Mozilla Firefox Themes</bookmark_value><bookmark_value>personas;personleg tilpassing</bookmark_value><bookmark_value>personleg tilpassing;personas</bookmark_value><bookmark_value>Mozilla Firefox Themes;personleg tilpassing</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personleg tilpassing</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Du kan tilpassa %PRODUCTNAME med dei same tema som er tilgjengelege for Mozilla Firefox. Det valde temaet vert vist som bakgrunn i menylinja og verktøylinjer oppe og nede."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Mozilla Firefox-tema er tilgjengelege på nettsida <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Alle tema som kan brukast i Firefox kan også brukast i %PRODUCTNAME. Men ikkje alle tema gjev like gode resultat. Viss det skjer for mykje i biletet, kan dette gjere det vanskelegare å lese symbol og menyar."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Firefox-tema:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Desse vala er tilgjengelege:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Normal utsjånad, ikkje bruk tema"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Bakgrunnen for verktøylinjene arvar bakgrunnsinnstillingane frå skrivebordsmiljøet.</ahelp> Dette er standardinnstillinga for %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Førehandsinstallert tema"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Vel denne for å bruka eit av dei førehandsinstallerte temaa.</ahelp>Det kan hende systemadministratoren har lagt inn eit standardtema i tillegg til standardvala ved installeringa av %PRODUCTNAME. Dette vil i tilfelle vere synleg i lista."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Eige tema"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Bruk dette valet for å opna dialogvindauget for «Vel Firefox-tema» og vel ditt eige.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Vel dialogvindauget for Firefox-tema"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Dette dialogvindauget vert brukt for å installera bestemte tema og for eit raskt gjennomsyn av tema som finst på nettsida for Firefox-tema. "
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Søk"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Lag eit søkjeuttrykk for å søkja etter tema på Mozilla si side med programtillegg eller lim inn ei temaadresse for å søkja etter eit bestemt tema.</ahelp> Du kan finna adressa ved å leita opp nettsida for temaet og kopiera adressa som vert vist i adresselinja inn i søkjefeltet. Trykk på <item type=\"menuitem\">Søk</item> eller trykk <item type=\"keycode\">Enter</item> for å lasta ned temaet og installera det i %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Sjå gjennom tema etter kategori"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Viser ni tilfeldige tema basert på kategoriane vist på knappane.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Trykk på ein av dei fem knappane for å visa ni tilfeldige tema i biletområdet frå den kategorien knappen viser. "
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Du vel eitt av dei viste tema ved å klikka på biletet av det og trykke <item type=\"menuitem\">OK</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/nn/helpcontent2/source/text/simpress/01.po b/source/nn/helpcontent2/source/text/simpress/01.po
index 684fbff07f9..b522023d06b 100644
--- a/source/nn/helpcontent2/source/text/simpress/01.po
+++ b/source/nn/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-05-09 14:09+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/nn/helpcontent2/source/text/swriter/guide.po b/source/nn/helpcontent2/source/text/swriter/guide.po
index cfeaf774a09..f37b3361978 100644
--- a/source/nn/helpcontent2/source/text/swriter/guide.po
+++ b/source/nn/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-09 14:01+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1557410502.000000\n"
#: anchor_object.xhp
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Klikk på knappen <emph> Datastruktur</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Ikon</alt></image> på <emph>standardverktøylinja</emph> for å opna <emph>Datastruktur</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "I <emph>Datastruktur</emph>, klikk på ikonet <emph>Innhaldsvising</emph><image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Ikon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Klikk på overskrifta i <emph>Datastruktur</emph>, klikk deretter på <emph>Kapittel opp</emph><image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Ikon</alt></image> eller <emph>Kapittel ned</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Ikon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Klikk på <emph>Flytt nivå opp</emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Ikon</alt></image> eller <emph>Flytt nivå ned</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Ikon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Klikk på knappen <emph>Vis overskriftsnivå</emph><image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Ikon</alt></image> og vel eit nummer frå lista."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po
index 3c74f7face2..6f2b62f38bb 100644
--- a/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nn/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-24 14:49+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-14 19:13+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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: 1556117353.000000\n"
+"X-POOTLE-MTIME: 1557861210.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -4172,7 +4172,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 1"
-msgstr ""
+msgstr "Aksentteikn 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4181,7 +4181,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 1 Cell Style"
-msgstr ""
+msgstr "Aksentteikn 1 cellestil"
#: CalcCommands.xcu
msgctxt ""
@@ -4199,7 +4199,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 2"
-msgstr ""
+msgstr "Aksentteikn 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4208,7 +4208,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 2 Cell Style"
-msgstr ""
+msgstr "Aksentteikn 2 cellestil"
#: CalcCommands.xcu
msgctxt ""
@@ -4226,7 +4226,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Accent 3"
-msgstr ""
+msgstr "Aksentteikn 3"
#: CalcCommands.xcu
msgctxt ""
@@ -4235,7 +4235,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Accent 3 Cell Style"
-msgstr ""
+msgstr "Aksentteikn3 cellestil"
#: CalcCommands.xcu
msgctxt ""
@@ -4253,7 +4253,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 1"
-msgstr ""
+msgstr "Overskrift 1"
#: CalcCommands.xcu
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 1 Cell Style"
-msgstr ""
+msgstr "Overskrift 1 cellestil"
#: CalcCommands.xcu
msgctxt ""
@@ -4280,7 +4280,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Heading 2"
-msgstr ""
+msgstr "Overskrift 2"
#: CalcCommands.xcu
msgctxt ""
@@ -4289,7 +4289,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Heading 2 Cell Style"
-msgstr ""
+msgstr "Overskrift 2 cellestil"
#: CalcCommands.xcu
msgctxt ""
@@ -4307,7 +4307,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bad"
-msgstr ""
+msgstr "Dårleg"
#: CalcCommands.xcu
msgctxt ""
@@ -4316,7 +4316,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Bad Cell Style"
-msgstr ""
+msgstr "Dårleg cellestil"
#: CalcCommands.xcu
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Error"
-msgstr ""
+msgstr "Feil"
#: CalcCommands.xcu
msgctxt ""
@@ -4343,7 +4343,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Error Cell Style"
-msgstr ""
+msgstr "Feil cellestil"
#: CalcCommands.xcu
msgctxt ""
@@ -4361,7 +4361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Good"
-msgstr ""
+msgstr "God"
#: CalcCommands.xcu
msgctxt ""
@@ -4370,7 +4370,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Good Cell Style"
-msgstr ""
+msgstr "God cellestil"
#: CalcCommands.xcu
msgctxt ""
@@ -4388,7 +4388,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Neutral"
-msgstr ""
+msgstr "Nøytral"
#: CalcCommands.xcu
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Neutral Cell Style"
-msgstr ""
+msgstr "Nøytral cellestil"
#: CalcCommands.xcu
msgctxt ""
@@ -4415,7 +4415,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Warning"
-msgstr ""
+msgstr "Åtvaring"
#: CalcCommands.xcu
msgctxt ""
@@ -4424,7 +4424,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Warning Cell Style"
-msgstr ""
+msgstr "Åtvarsel cellestil"
#: CalcCommands.xcu
msgctxt ""
@@ -4442,7 +4442,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Footnote"
-msgstr ""
+msgstr "Fotnote"
#: CalcCommands.xcu
msgctxt ""
@@ -4451,7 +4451,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Footnote Cell Style"
-msgstr ""
+msgstr "Cellestil for fotnote"
#: CalcCommands.xcu
msgctxt ""
@@ -4469,7 +4469,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Note"
-msgstr ""
+msgstr "Merknad"
#: CalcCommands.xcu
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Note Cell Style"
-msgstr ""
+msgstr "Cellestil for merknad"
#: CalcWindowState.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Tabellstilar"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Fleire felt"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25297,7 +25306,7 @@ msgctxt ""
"Title\n"
"value.text"
msgid "Lists"
-msgstr ""
+msgstr "Lister"
#: Sidebar.xcu
msgctxt ""
@@ -25689,6 +25698,15 @@ msgstr "Faneark"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Gruppertlinje"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Vel setning"
#: WriterCommands.xcu
msgctxt ""
@@ -30013,7 +30040,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Horizontal ~Line"
-msgstr ""
+msgstr "~Vassrett linje"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/nn/sc/messages.po b/source/nn/sc/messages.po
index 45287b9b8a8..b327fb3b03d 100644
--- a/source/nn/sc/messages.po
+++ b/source/nn/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-24 15:13+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-27 21:02+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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: 1556118801.000000\n"
+"X-POOTLE-MTIME: 1558990970.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -14348,7 +14348,7 @@ msgstr "Avbryt"
#: sc/inc/strings.hrc:180
msgctxt "SCSTR_QHELP_BTNSUM"
msgid "Autosum"
-msgstr ""
+msgstr "Autosummering"
#: sc/inc/strings.hrc:181
msgctxt "SCSTR_QHELP_BTNEQUAL"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(eksklusiv tilgang)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "Det er ingen namngjevne område tilgjengelege i det merkte dokumentet"
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15570,27 +15575,27 @@ msgstr "Formatering"
#: sc/uiconfig/scalc/ui/autosum.ui:12
msgctxt "autosum|sum"
msgid "Sum"
-msgstr ""
+msgstr "Sum"
#: sc/uiconfig/scalc/ui/autosum.ui:20
msgctxt "autosum|average"
msgid "Average"
-msgstr ""
+msgstr "Gjennomsnitt"
#: sc/uiconfig/scalc/ui/autosum.ui:28
msgctxt "autosum|min"
msgid "Min"
-msgstr ""
+msgstr "Min"
#: sc/uiconfig/scalc/ui/autosum.ui:36
msgctxt "autosum|max"
msgid "Max"
-msgstr ""
+msgstr "Maks"
#: sc/uiconfig/scalc/ui/autosum.ui:44
msgctxt "autosum|count"
msgid "Count"
-msgstr ""
+msgstr "Tal på"
#: sc/uiconfig/scalc/ui/cellprotectionpage.ui:35
msgctxt "cellprotectionpage|checkProtected"
@@ -15770,13 +15775,13 @@ msgstr "Handsama vilkårsformatering"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Område"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
-msgstr ""
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Første vilkår"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16341,22 +16346,22 @@ msgstr "Nokre av endringane i dette delte reknearket er i konflikt. Før reknear
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:147
msgctxt "conflictsdialog|conflict"
msgid "Conflict"
-msgstr ""
+msgstr "Konflikt"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:161
msgctxt "conflictsdialog|author"
msgid "Author"
-msgstr ""
+msgstr "Forfattar"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:175
msgctxt "conflictsdialog|date"
msgid "Date"
-msgstr ""
+msgstr "Dato"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:189
msgctxt "conflictsdialog|changes-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Endringar"
#: sc/uiconfig/scalc/ui/conflictsdialog.ui:207
msgctxt "conflictsdialog|keepmine"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Dataskjema"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Lukk"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Ny post"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Ny"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Slett"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Gjenopprett"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Førre post"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "_Neste post"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Lukk"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Datastraumar («Live»)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Skriv inn adressa for kjeldedokumentet i det lokale filsystemet eller på Internett."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Bla gjennom …"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Databaseområde:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Datakjelde:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Søkjestreng:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Kjeldestraum"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18596,17 +18561,17 @@ msgstr "Handsam namn"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:127
msgctxt "managenamesdialog|name"
msgid "Name"
-msgstr ""
+msgstr "Namn"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:140
msgctxt "managenamesdialog|expression"
msgid "Range or formula expression"
-msgstr ""
+msgstr "Område- eller formeluttrykk"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:153
msgctxt "managenamesdialog|scope"
msgid "Scope"
-msgstr ""
+msgstr "Virkefelt"
#: sc/uiconfig/scalc/ui/managenamesdialog.ui:183
msgctxt "managenamesdialog|info"
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultata til:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Trim inddata-området til aktuelt data-indhald"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Data"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolonnar"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rader"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Gruppert etter"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervall:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametrar"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hjelp"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fil"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Definerer kantane på dei merkte cellene."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Auk innrykket"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Krymp innrykk"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Heim"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Heim"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Felt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Sett _inn"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Set inn"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Utforming"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Juster objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Utforming"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statistikk"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Data"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Sjå gjennom"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Sjå gjennom"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Bilete"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "_Bilete"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Teikna"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Teikna"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "S_kriv ut"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Skriv ut"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Skjema"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Skjema"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Verk_tøy"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Verktøy"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Søkeresultat"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "_Vis dette dialogvindauget"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ">D>u kan slå på dialogvindauget igjen frå Verktøy → Innstillingar → Calc"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Ark"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Celle"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Innhald"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Disposisjonssymbol"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "_Samandrag av søkjet"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Vindauge"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Rutenettlinjer:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Farge:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Vis i farga celler"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Gøym"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Sidebryting"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "_Hjelpelinjer under flytting"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Visuell hjelp"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Objekt/bilete:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Diagram:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Teikneobjekt:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Gøym"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Gøym"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Vis"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Gøym"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objekt"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "_Synkroniser ark"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Forstørr"
diff --git a/source/nn/scp2/source/ooo.po b/source/nn/scp2/source/ooo.po
index bf6f1f90dca..84c8b972626 100644
--- a/source/nn/scp2/source/ooo.po
+++ b/source/nn/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-24 15:13+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1556118809.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Opna dokument"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/nn/scp2/source/winexplorerext.po b/source/nn/scp2/source/winexplorerext.po
index 3bb78ff193a..d5889965d42 100644
--- a/source/nn/scp2/source/winexplorerext.po
+++ b/source/nn/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2015-06-23 10:16+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\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: 1435054600.000000\n"
#: module_winexplorerext.ulf
@@ -29,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Gjer utforskaren i Microsoft Windows i stand til å visa informasjon om %PRODUCTNAME-dokument, som for eksempel førehandsvising."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/nn/sd/messages.po b/source/nn/sd/messages.po
index dd956adfd67..02dfb43af69 100644
--- a/source/nn/sd/messages.po
+++ b/source/nn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-24 15:16+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Klikk for å opna hyperlenkja:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Gje namn til HTML-utforming"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fil"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hjelp"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fil"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Heim"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Heim"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Felt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Sett _inn"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Set inn"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "S_ide"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Side"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Sjå gjennom"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Sjå gjennom"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T~ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabell"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabell"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverter"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Bilete"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "_Bilete"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Teikna"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Teikna"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Skjema"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Skjema"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Verk_tøy"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Verktøy"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Vis former"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fil"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hjelp"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Fil"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Heim"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Heim"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Felt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Sett _inn"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Set inn"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "_Lysbilete"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "~Lysbilete"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "_Lysbiletframvising"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "~Lysbiletframvising"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Sjå gjennom"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Sjå gjennom"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabell"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabell"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konverter"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "_Bilete"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "_Bilete"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Teikna"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Tekna"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Skjema"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Skjema"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Verk_tøy"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "~Verktøy"
diff --git a/source/nn/sfx2/messages.po b/source/nn/sfx2/messages.po
index 782d7d472a7..c65b140c615 100644
--- a/source/nn/sfx2/messages.po
+++ b/source/nn/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-24 15:16+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-27 20:58+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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: 1556118990.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558990689.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -918,11 +918,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Fjern eigenskap"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -931,27 +926,27 @@ msgstr ""
"Verdien som vart skrive inn stemmer ikkje med den oppgjevne typen.\n"
"Verdien vert lagra som tekst."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Denne stilen finst frå før. Vil du skriva over han?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Nu~llstill"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Dette namnet er alt i bruk."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Denne stilen finst ikkje."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -960,7 +955,7 @@ msgstr ""
"Denne stilen kan ikkje brukast som grunnstil,\n"
"fordi han då vil byggja på seg sjølv."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -969,7 +964,7 @@ msgstr ""
"Namnet er alt i bruk på ein standardstil.\n"
"Vel eit anna namn."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -980,92 +975,92 @@ msgstr ""
"Viss du fjernar desse stilane, vert teksten tilbakeført til foreldrestilen.\n"
"Vil du likevel sletta desse stilane?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stilar i bruk: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Dokumentstruktur"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Feil ved passordstadfesting"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Send"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Skrift"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Vis førehandsvisingar"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Vis versjonskommentar"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(ingen namn sett)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Stilliste"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarkisk"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Fyllformatmodus"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Ny stil frå utval"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Stilhandlingar"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Oppdater stil"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Vil du verkeleg avbryta opptaket? Alt som er teke opp fram til no vert borte."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Avbryt opptaket"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Desse malane vert klargjorde for første gongs bruk."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1074,7 +1069,7 @@ msgstr ""
"Fann ingen standardskrivar.\n"
"Vel ein skrivar og prøv igjen."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1083,17 +1078,17 @@ msgstr ""
"Klarte ikkje starta skrivaren.\n"
"Sjekk skrivaroppsettet."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Skrivaren er oppteken"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (skriveverna)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1104,7 +1099,7 @@ msgstr ""
"Vil du lagra dei nye innstillingane i det \n"
"gjeldande dokumentet?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1115,7 +1110,7 @@ msgstr ""
"Vil du lagra dei nye innstillingane\n"
"i det gjeldande dokumentet?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1126,7 +1121,7 @@ msgstr ""
"Vil du lagra dei nye innstillingane i det \n"
"gjeldande dokumentet?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1135,7 +1130,7 @@ msgstr ""
"Dokumentet kan ikkje lukkast fordi\n"
"ein utskriftsjobb ikkje er ferdig."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,7 +1140,7 @@ msgstr ""
"Kontroller oppsettet for %PRODUCTNAME eller innstillingane i e-postprogrammet ditt."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1156,17 +1151,17 @@ msgstr ""
"\n"
"Feilkoden er $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Feil ved sending av e-post."
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Dette dokumentet kan ikkje redigerast, sannsynlegvis fordi du manglar tilgangsrett. Vil du redigera ein kopi av dokument?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1177,349 +1172,359 @@ msgstr ""
"\n"
"Du kan også prøva å sjå bort frå låsinga og opna dokumentet for redigering."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Opna ~kopi"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Opna"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (reparert dokument)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Dokumentet er ikkje sjekka ut på tenaren"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Hjelp oss med å laga %PRODUCTNAME endå betre!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Involver deg"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Gåva di hjelper vår verdsomspennande fellesskap."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Gjev"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Du køyrer versjon %PRODUCTVERSION af %PRODUCTNAME for første gong. Vil du vita kva som er nytt?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Utgjevingsnotat"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dokumentet er opna som skriveverna."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Denne PDF-en er opna som skriveverna for signering av eksisterande fil."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Klassifikajsonsetiketten for dette dokumentet er %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Dokumentet må klassifiserast før innhaldet i utklippstavla kan limast inn."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Dokumentet har lågare klassifiseringsnivå enn utklippstavla."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Nivå"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Nasjonal tryggleik:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Eksportkontroll:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Sjekk ut"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Rediger dokument"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Signer dokumentet"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Dette dokumentet har ein ugyldig signatur."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Signaturen er gyldig men dokumentet er endrea"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Signaturen er i orden, men kunne ikkje validera sertifikatet."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Signaturen er i orden, men dokumentet er berre delvis signert."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Kunne ikkje verifisera sertifikatet slik at dokumentet er berre delvis signert."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Dette dokumentet er signert digitalt med gyldig signatur."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Vis signaturar"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Lukk panelet"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Fest"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Løysne"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Fleire innstillingar"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Lukk sidepanel"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Innstillingar for sidepanel"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Tilpassing"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Tilbakestill til standard"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Lukk sidepanelet"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bikube"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blå kurve"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blåkopi planar"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Lys blå"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klassisk raud"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Skogsfugl"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasjon"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lys"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Frisk grøn"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropol"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Midnattblå"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Naturillustrasjon"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Blyant"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portefølje"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Framdrift"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solnedgang"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Årgang"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Livleg"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resyme"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne forretningsbrev sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne forretningsbrev serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visittkort med logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Fjern"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Fjern alt"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Passordlengd"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Passordet du skreiv inn skapar kompatibilitetsproblem. Skriv inn eit passord med mindre enn 52 bytes eller meir enn 55 bytes."
@@ -1864,32 +1869,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Versjonskommentar:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Skriv inn eit namn for objektet"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Type"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Verdi"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ja"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nei"
@@ -1899,17 +1889,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Legg til _eigenskap"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Skriv inn eit namn for objektet"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Type"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Verdi"
@@ -2039,17 +2029,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Plassering:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Type:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Byt _passord"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Mal:"
@@ -2059,27 +2049,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Eigenskapar for «%1»"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Generelt"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Skildring"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Tilpassa eigenskapar"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS-eigenskapar"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Tryggleik"
@@ -2302,6 +2292,26 @@ msgstr ""
"\n"
"Dette produktet er laga av %OOOVENDOR, basert på OpenOffice.org som er underlagt opphavsrett 2000, 2011 Oracle og/eller partnarane. %OOOVENDOR vedkjenner seg alle medlemmar av fellesskapet, sjå http://www.libreoffice.org/ for fleire detaljar."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/nn/shell/messages.po b/source/nn/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/nn/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/nn/starmath/messages.po b/source/nn/starmath/messages.po
index 0b498eaa25a..f01c08744d7 100644
--- a/source/nn/starmath/messages.po
+++ b/source/nn/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-01-16 16:49+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Eksempel"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursiv"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Halvfeit"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "svart"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blå"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "grøn"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "raud"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyanblå"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magentaraud"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "grå"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "grasgrøn"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "raudbrun"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "marineblå"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olivengrøn"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "lilla"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "sølv"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "grønblå"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "gul"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "gøym"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "storleik"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "skrift"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "venstre"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "midten"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "høgre"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Kommandoar"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formel"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Lagrar dokument …"
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION -formel"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "FEIL: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Uventa teikn"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Uventa symbol"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "«{» forventa"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "«}» forventa"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "«(» forventa"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "«)» forventa"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Venstre og høgre symbol passar ikkje saman"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Venta «fixed», «sans». eller «serif»"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Teiknet etter «size» er uventa"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Dobbel justering ikkje lov"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dobbel heva/senka skrift ikkje lov"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "«#» forventa"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Treng fargar"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "«HØGRE» forventa"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Innhald"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Tittel"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Formeltekst"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "~Kantlinjer"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Storleik"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Opphavleg storleik"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Tilpass til si~da"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalering"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Element"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/nn/svtools/messages.po b/source/nn/svtools/messages.po
index bacedc708a9..dea2b866c99 100644
--- a/source/nn/svtools/messages.po
+++ b/source/nn/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-24 15:19+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-14 19:24+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556119196.000000\n"
+"X-POOTLE-MTIME: 1557861887.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Angra: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "G~jer om: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Gj~enta: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Uformatert tekst"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Unformatert Tekst (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Punktbilete (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text-format (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text-format (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "%PRODUCTNAME teikneformat"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmap/animation (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Statusinformasjon frå ei lokal Svx-lenkje"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscape-bokmerke"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Star-tenarformat"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Star-objektformat"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Miniprogramobjekt"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Programtillegg"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0-objekt"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0-objekt"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0-objekt"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0-objekt"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0-objekt"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/hovud 5.0-objekt"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/hovud 5.0-objekt"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw-objekt"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4-objekt"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0-objekt"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0-objekt"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc-objekt"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0-objekt"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0-objekt"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart-objekt"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0-objekt"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objekt"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage-objekt"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0-objekt"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0-objekt"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath-objekt"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0-objekt"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0-objekt"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject Paint-objekt"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word-objekt"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet-objekt"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office-dokumentobjekt"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Notes-dokumentinfo"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx-dokument"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0-objekt"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Biletobjekt"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 writer-objekt"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/Web-objekt"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/Master-objekt"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 Draw-objekt"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 Impress-objekt"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 Calc-objekt"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 Diagram-objekt"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 Math-objekt"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows-metafil"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Datakjeldeobjekt"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Datakjeldetabell"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL-spørjing"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 Dialog"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Lenkje"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML-format utan kommentarar"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Klarte ikkje setja inn objektet %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Klarte ikkje setja inn objekt frå fila %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Fleire objekt"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Ukjend kjelde"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Namn"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Storleik"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Endringsdato"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Type"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "byte"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Rad: %1, kolonne: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", type: %1, nettadresse: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Mappe"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fil"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Tomt felt"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerisk"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normalt"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Teiknsett"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Ordliste"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Strøk"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Telefonliste"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetisk (alfanumerisk først)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetisk (alfanumerisk sist)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumerisk"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Ordliste"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radikal"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Strøk"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetisk (alfanumerisk først, gruppert etter stavingar)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetisk (alfanumerisk først, gruppert etter konsonantar)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetisk (alfanumerisk sist, gruppert etter stavingar)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetisk (alfanumerisk sist, gruppert etter konsonantar)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "I dag"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Ingen"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lett"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Lett kursiv"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Vanleg"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursiv"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Halvfeit"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Halvfeit kursiv"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Svart"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Svart kursiv"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Bok"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Halvfeit hellande"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Smal"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Smal halvfeit"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Smal halvfeit kursiv"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Smal halvfeit hellande"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Smal kursiv"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Smal hellande"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Ekstra mager"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstra mager kursiv"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Hellande"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Halvfeit"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Halvfeit kursiv"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Den same skrifta vert brukt både på utskrifta og på skjermen."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Dette er ei skrift for skrivarar. Utsjånaden på skjermen kan vera ulik."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Denne skriftstilen vert simulert, eller den næraste, tilsvarande stilen vert brukt."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Denne skrifta er ikkje installert. Den næraste tilgjengelege skrifta vert brukt i staden."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Bla gjennom …"
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Flytt til byrjinga"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Flytt til venstre"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Flytt til høgre"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Flytt til slutten"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Legg til"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Vassrett linjal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Loddrett linjal"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1-bits grense"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1-bits fargeutjamning"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bits gråtonar"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bits farge"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bits gråtonar"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bits farge"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24-bits sann farge"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Dette biletet krev omlag %1 KB minne."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Dette biletet krev omlag %1 KB minne. Filstorleiken er %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Flisstorleiken er %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "vert"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Andre CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Klar"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Sett på pause"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Ventar på sletting"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Oppteken"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Klargjer"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Ventande"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Startar"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Handsamar"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Utskrift"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Fråkopla"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Feil"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Ukjend tenar"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papirstopp"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Ikkje nok papir"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manuell papirmating"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Papirproblem"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/U-aktiv"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Full utkorg"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Lite tonar"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Ingen tonar"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Slett side"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Treng informasjon frå brukaren"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "For lite minne"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Ope lok"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Straumsparemodus"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Standardskrivar"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d dokument"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Fullfør"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Neste >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Tilbake"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Steg"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ingen>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Firma"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Avdeling"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Fornamn"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Etternamn"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Gate"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Land"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Postnummer"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Poststad"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Overskrift"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posisjon"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adresseskjema"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Forbokstavar"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Høfleg helsing"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tlf: Heime"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tlf: Arbeid"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-post"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Merknad"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Brukar 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Brukar 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Brukar 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Brukar 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Delstat/region"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tlf: Kontor"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Personsøkjar"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Mobil"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tlf: Annan"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalender"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Inviter"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME treng Java-køyremiljøet (JRE) for å utføra denne oppgåva. Installer Java og start %PRODUCTNAME om att."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME treng eit %BITNESS-bits Java-køyremiljø (JRE) for å utføra denne oppgåva. Installer Java og start %PRODUCTNAME på nytt."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME krev Oracle's Java Development Kit (JDK) på Mac OS X 10.10 eller nyare for å kunne køyre denne oppgåva. Installer det og start %PRODUCTNAME på nytt."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Innstillingane for %PRODUCTNAME er endra. Gå til %PRODUCTNAME → Innstillingar → %PRODUCTNAME → Avansert der du kan velja det Java køyretidsmiljøet som du ønskjer å bruka for %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Innstillingane for %PRODUCTNAME er endra. Gå til Verktøy → Innstillingar → %PRODUCTNAME → Avansert der du kan velja det Java køyretidsmiljøet som du ønskjer å bruka for %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME treng eit Java køyretidsmiljø (JRE) for å kunna utføra denne oppgåva. Den valde JRE er defekt. Vel ein annan versjon eller installer ein ny JRE. Du skiftar JRE frå menyen %PRODUCTNAME → Innstillingar → %PRODUCTNAME → Avansert."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME treng eit Java køyretidsmiljø (JRE) for å kunna utføra denne oppgåva. Den valde JRE er defekt. Vel ein annan versjon eller installer ein ny JRE. Du skiftar JRE frå menyen Verktøy → Innstillingar → %PRODUCTNAME → Avansert."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Krev Java-køyreminjø (JRE)"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Vel Java-køyremiljø"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Java-køyremiljøet verkar ikkje"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Kjeldekode"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Bokmerkefil"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Bilete"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Oppsettsfil"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Program"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Databasetabell"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Systemfil"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word-dokument"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Hjelpefil"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Internett-dokument"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arkivfil"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Loggfil"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice-database"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0/5.0-hovuddokument"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice-bilete"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Tekstfil"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Lenkje"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0/5.0-mal"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel-dokument"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel-mal"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Satsvis fil"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fil"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Mappe"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tekstdokument"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Rekneark"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentasjon"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Teikning"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Internett-dokument"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Hovuddokument"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formel"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Database"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 reknearkmal"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 teikningsmal"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 presentasjonsmal"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 tekstdokumentmal"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Lokal stasjon"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Diskstasjon"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM-stasjon"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Nettverkssamband"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint-dokument"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint-mal"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint-framvising"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 formel"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 diagram"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 teikning"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 rekneark"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 presentasjon"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 tekstdokument"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 hovuddokument"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML-dokument"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument-database"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument-teikning"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument-formel"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument-hovuddokument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument-presentasjon"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument-rekneark"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument-tekst"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument-reknearkmal"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument-teikningsmal"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument-presentasjonsmal"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument-tekstmal"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME-utviding"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Hunspell stavekontroll"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Libhyphen bindestrek"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "MyThes Thesaurus"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Liste over ignorerte ord"
@@ -4127,7 +4129,7 @@ msgstr "Iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Engelsk (Zambia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/nn/svx/messages.po b/source/nn/svx/messages.po
index faf718b8e1a..8229d4b4be8 100644
--- a/source/nn/svx/messages.po
+++ b/source/nn/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-24 15:20+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-27 20:56+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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: 1556119204.000000\n"
+"X-POOTLE-MTIME: 1558990596.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Venstre-til-høgre (loddrett)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "Nedst-til-øvst, venstre-til-høgre (loddrett)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Delnummer:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Tekstdel:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Lyskjelde 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Farge lys 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Farge lys 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Farge lys 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Farge lys 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Farge lys 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Farge lys 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Farge lys 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Farge lys 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -11880,7 +11885,7 @@ msgstr "%PRODUCTNAME %PRODUCTVERSION Dokumentgjenoppretting"
#: svx/uiconfig/ui/docrecoverysavedialog.ui:76
msgctxt "docrecoverysavedialog|label1"
msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically."
-msgstr ""
+msgstr "%PRODUCTNAME krasja etter ein feil. Alle filene du arbeidde med vert no lagra. Neste gong %PRODUCTNAME startar, vert filene gjenoppretta automatisk."
#: svx/uiconfig/ui/docrecoverysavedialog.ui:98
msgctxt "docrecoverysavedialog|label2"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Vel den loddrette prosentvise forskyvinga frå sentrum for fargeovergangen sin skyggestil. 50 % er det loddrette sentrumet."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Omrissredigering"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Bruk"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Arbeids­område"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Vel"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rektangel"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Mangekant"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Rediger punkt"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Flytt punkt"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Set inn punkt"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Slett punkt"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Autoomriss"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Angra "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Gjenta"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Dropeteljar"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Fargetoleranse"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Botntekst"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Biletkart-redigering"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Bruk"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Opna …"
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Lagra …"
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Lukk"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Vel"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rektangel"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Mangekant"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Frihandsmangekant"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Rediger punkt"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Flytt punkt"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Set inn punkt"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Slett punkt"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Angra "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Gjenta"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktiv"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro …"
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Eigenskapar …"
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresse:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Ramme:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekst:"
@@ -13368,12 +13373,12 @@ msgstr "Merknad"
#: svx/uiconfig/ui/redlineviewpage.ui:146
msgctxt "redlineviewpage|calcchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Endringar"
#: svx/uiconfig/ui/redlineviewpage.ui:245
msgctxt "redlineviewpage|writerchanges-atkobject"
msgid "Changes"
-msgstr ""
+msgstr "Endringar"
#: svx/uiconfig/ui/rowsmenu.ui:12
msgctxt "rowsmenu|delete"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"%PRODUCTNAME køyrer no i sikker modus. Brukarinnstillingane og utvidingane er mellombels kopla ut.\n"
+"\n"
+"Du kan gjera ein eller fleire av desse endringane i brukarprofilen for å gå tilbake til normal arbeidsmåte for %PRODUCTNAME."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
@@ -14011,7 +14019,7 @@ msgstr "Avsluttingsstil "
#: svx/uiconfig/ui/sidebarlists.ui:22
msgctxt "sidebarlists|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Punktmerking og nummerering"
#: svx/uiconfig/ui/sidebarparagraph.ui:26
msgctxt "sidebarparagraph|numberbullet|tooltip_text"
diff --git a/source/nn/sw/messages.po b/source/nn/sw/messages.po
index 843fc80ce99..a6fb6e132fd 100644
--- a/source/nn/sw/messages.po
+++ b/source/nn/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\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: 1556119721.000000\n"
+"X-POOTLE-MTIME: 1559159200.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3113,7 +3113,7 @@ msgid "Change object title of $1"
msgstr "Endra tittelen på objektet $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Endra skildringa av objektet $1"
@@ -7674,7 +7674,7 @@ msgstr "Teikn"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Standard"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -9893,7 +9893,7 @@ msgstr "Spegelvend på _like sider"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:698
msgctxt "frmtypepage|followtextflow"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Hald innføre tekstgrensene"
#: sw/uiconfig/swriter/ui/frmtypepage.ui:721
msgctxt "frmtypepage|label11"
@@ -12005,147 +12005,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Hjelp"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Fil"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Heim"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Heim"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Sett _inn"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Set inn"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Utforming"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Utforming:"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Referansar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "~Referansar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Sjå gjennom"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Sjå gjennom"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Vis"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabell"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabell"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "_Bilete"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "_Bilete"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Teikna"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Teikna"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "S_kriv ut"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Skriv ut"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "_Skjema"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "~Skjema"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Verk_tøy"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "~Verktøy"
@@ -12155,155 +12155,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Fil"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Fil"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Heim"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Heim"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Sett _inn"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Set inn"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Bryt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Utforming:"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Utforming"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "_Referansar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "~Referansar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Korrektur"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Vis"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Vis"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "_Tabell"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tabell"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Bilete"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "_Bilete"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "_Teikna"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Teikna"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Skriv ut"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Skriv ut"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "_Skjema"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "~Skjema"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Verk_tøy"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Verktøy"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12444,7 +12444,7 @@ msgstr "_Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "_Ramme"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12654,7 +12654,7 @@ msgstr "_Media"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13367,8 +13367,8 @@ msgstr "Større mellomrom mellom orda på linjer med manuelt linjeskift i blokkj
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Vern skjemaet"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13448,7 +13448,7 @@ msgstr "_Register:"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:314
msgctxt "optfonttabpage|label1"
msgid "Basic Fonts (%1)"
-msgstr "Grunnskrifter (%1)"
+msgstr "Grunnleggjande skrifttypar (%1)"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:338
msgctxt "optfonttabpage|standard"
@@ -16648,47 +16648,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Innhaldsliste, indeks eller litteraturliste"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Førehandsvising"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Førehandsvising"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Type"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Oppføringar"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stilar"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Spalter"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Bakgrunn"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Førehandsvising"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Nivå"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Type"
@@ -16918,302 +16918,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Rediger …"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Tittel:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Type:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Innhaldsliste"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Alfabetisk register"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Liste over figurar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Tabelliste"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Sjølvdefinert"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Objektliste"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Litteraturliste"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Verna mot manuelle endringar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Type og tittel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "For:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Heile dokumentet"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Kapittel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evaluer opp til nivå:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Lag register eller innhaldsliste"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Disposisjon"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Innhaldsliste_merke"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabellar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Tekst_rammer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Bilete"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE-objekt"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Bruk nivå frå kjeldekapittelet"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "_Tilleggsstilar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Stilar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Tildel stilar …"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Bilettekstar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Objektnamn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategori:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Vising:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referansar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategori og nummer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Bilettekst"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Opprett frå"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Opprett frå desse objekta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Parentesar:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Nummerer oppføringane"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[ingen]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatering av oppføringane"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Slå saman like oppføringar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Slå saman like oppføringar med _f eller ff"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Slå saman med -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Skil mellom STORE og små bokstavar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Skriv automatisk med stor bokstav"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Nøklar som eigne oppføringar"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "_Stikkordfil"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Fil"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Val"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Språk:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Nøkkeltype:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sorter"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Nivå"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Avsnittstil"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Standard"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Rediger"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Justering"
diff --git a/source/nn/wizards/messages.po b/source/nn/wizards/messages.po
index 86ce2d17423..4103bcdd772 100644
--- a/source/nn/wizards/messages.po
+++ b/source/nn/wizards/messages.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2019-02-23 16:53+0000\n"
+"PO-Revision-Date: 2019-05-14 19:14+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1550940787.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557861291.000000\n"
#: wizards/com/sun/star/wizards/common/strings.hrc:32
msgctxt "RID_COMMON_START_0"
@@ -1085,7 +1085,7 @@ msgstr "Møteplanmalen min"
#: wizards/com/sun/star/wizards/common/strings.hrc:264
msgctxt "RID_AGENDAWIZARDDIALOG_START_43"
msgid "An error occurred while saving the agenda template."
-msgstr ""
+msgstr "Det oppstod ein feil ved lagring av møteplanmalen."
#: wizards/com/sun/star/wizards/common/strings.hrc:265
msgctxt "RID_AGENDAWIZARDDIALOG_START_44"
@@ -1145,7 +1145,7 @@ msgstr "Namn og stad"
#: wizards/com/sun/star/wizards/common/strings.hrc:276
msgctxt "RID_AGENDAWIZARDDIALOG_START_56"
msgid "An error occurred while opening the agenda template."
-msgstr ""
+msgstr "Det oppstod ein feil ved opninga av møteplanmalen."
#: wizards/com/sun/star/wizards/common/strings.hrc:277
msgctxt "RID_AGENDAWIZARDDIALOG_START_57"
diff --git a/source/nn/wizards/source/resources.po b/source/nn/wizards/source/resources.po
index 1d987db27f7..9e111c37338 100644
--- a/source/nn/wizards/source/resources.po
+++ b/source/nn/wizards/source/resources.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: 2019-04-24 18:26+0200\n"
-"PO-Revision-Date: 2017-11-17 11:19+0000\n"
+"PO-Revision-Date: 2019-05-14 19:15+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nn\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510917550.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557861305.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -4209,7 +4209,7 @@ msgctxt ""
"RTErrorDesc\n"
"property.text"
msgid "An error has occurred in the wizard."
-msgstr ""
+msgstr "Det oppstod ein feil i vegvisaren."
#: resources_en_US.properties
msgctxt ""
diff --git a/source/nr/cui/messages.po b/source/nr/cui/messages.po
index c1bf509f73b..07482951914 100644
--- a/source/nr/cui/messages.po
+++ b/source/nr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1659,107 +1659,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Ungahleli Imikhawulo"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Hlela Umkhawulo Wangeqadi Kwaphela"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Hlela Umkhawulo Wangeqadi Nemida Ebuthabalala"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Hlela Umkhawulo Wangeqadi nayo yoke Imida Yangaphakathi"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Hlela Umkhawulo Wangeqadi Ngaphandle Kokutjhugulula yo yoke Imida Yangaphakathi"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Hlela Imida Ehlanganisa Amawugu Kwaphela"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Hlela Imikhawulo Yoke Yomine"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Hlela Imikhawulo Yangesinqeleni Neyangesidleni Kwaphela"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Hlela Imikhawulo Yangaphezulu Neyangaphasi Kwaphela"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Hlela Umkhawulo Wangesinqeleni Kwaphela"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Hlela Imikhawulo Yangaphezulu Neyangaphasi nemida Yangaphakathi Yoke"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Hlela Imikhawulo Yangesinqele Neyangesidleni Nemida Yangaphakathi yoke"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Akunasisitho"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Ukuya Komthunzi Phasi Ngesidleni"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Ukuya Komthunzi Phezulu Ngesidleni"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Ukuya Komthunzi Phasi Ngesinqeleni"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Ukuya Komthunzi Phezulu Ngesinqeleni"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1802,7 +1797,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1922,7 +1917,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2162,7 +2157,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2417,12 +2412,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2492,7 +2487,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2572,7 +2567,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2813,7 +2808,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3441,68 +3436,73 @@ msgid "About %PRODUCTNAME"
msgstr "Malungana nama-%PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "iWebhsayithiyami"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "I-%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3627,19 +3627,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Jamiselela"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Jamiselela"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Ububanzi"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4518,6 +4518,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5717,29 +5877,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Izinto"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Ifremu:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Amagama"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9542,84 +9702,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Siza"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME Amadayelokhu"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME Amadayelokhu"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "godu"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Zalisa %PRODUCTNAME Ngesikhathi sokuThoma"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11591,24 +11751,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12283,102 +12428,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13455,27 +13504,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/nr/extensions/messages.po b/source/nr/extensions/messages.po
index 521c9566755..9f144d5cfe4 100644
--- a/source/nr/extensions/messages.po
+++ b/source/nr/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3180,192 +3180,192 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Ubunjalo Bekholomu Bethebula %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Igama elifitjhani"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Abatloli"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Umvezi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "~Isahluko"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Umhleli"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Umhlobo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Nyaka"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Thayithili"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A~dresi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Amakha~si"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Umhlo~bo othileko wencwadi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~Ithayithili yencwadi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volomu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Umhlo~bo wencwadi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Hlanga~no"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Isikhu~ngo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Yunivesithi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Umhlobo wombi~ko"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Nyanga"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Jenali"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Inomboro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Umlande~lande"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Amanoti ~wokuhlathulula"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Inoti"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
#, fuzzy
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Iziko elihlathululwe ngokomsebenzisi ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Iziko elihathululwe ngokomsebenzisi ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Iziko elihlathululwe ngokomsebenzisi ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Iziko elihlathululwe ngokomsebenzisi ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Iziko elihlathululwe ngokomsebenzisi ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3551,30 +3551,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Thintanisa amaziko"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Yiba nombono"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Lebula"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po
index ef5a64c79e1..b44af3093dd 100644
--- a/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24049,6 +24049,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26436,6 +26445,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26454,6 +26472,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/nr/sc/messages.po b/source/nr/sc/messages.po
index 622279d7ae1..dd51232269d 100644
--- a/source/nr/sc/messages.po
+++ b/source/nr/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15966,6 +15966,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16542,12 +16547,12 @@ msgstr "Ukuhlela ngokuya kobujamo"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17848,90 +17853,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Vala"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Rekhodi eliTja"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "~Yitja"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Kusuliwe"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Buyisa"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Rekhodi eliDlulileko"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Rekhodi eliLandelako"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Vala"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Ukufunda ngethungelelwano..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Ukwehluka kwebuthelelo lekhompyutha"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19754,37 +19716,42 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Langa"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "~Amakholomu"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Umuda"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Faka eenqhemeni ngoku: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Ukuphumula"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19936,167 +19903,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22754,17 +22723,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24736,110 +24715,115 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Tjengisa"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Fihla"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Ukuquntwa kwekhasi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Amatjhati"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Izinto zokugwala"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Tjengisa"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Fihla"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Tjengisa"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Fihla"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Tjengisa"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Fihla"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Ama-obhjekthi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
#, fuzzy
msgctxt "tpviewpage|label3"
msgid "Zoom"
diff --git a/source/nr/scp2/source/ooo.po b/source/nr/scp2/source/ooo.po
index 333c5d28a06..8960fe7fa21 100644
--- a/source/nr/scp2/source/ooo.po
+++ b/source/nr/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "Vula Umtlolo"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/nr/scp2/source/winexplorerext.po b/source/nr/scp2/source/winexplorerext.po
index d5be182c256..e4f3d1e0bcc 100644
--- a/source/nr/scp2/source/winexplorerext.po
+++ b/source/nr/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 01:08+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nr\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369348060.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Ikghonakalisa i-Microsoft Windows Explorer ukuveza ilwazi mayelana nemitlolo ye-%PRODUCTNAME, afana namabonelophambili anehlathululo efitjhani."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/nr/sd/messages.po b/source/nr/sd/messages.po
index cf63b934378..448ed74126c 100644
--- a/source/nr/sd/messages.po
+++ b/source/nr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2651,6 +2651,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3143,164 +3148,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4780,160 +4970,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/nr/sfx2/messages.po b/source/nr/sfx2/messages.po
index b8772ba0487..e5d5f7f8d97 100644
--- a/source/nr/sfx2/messages.po
+++ b/source/nr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -896,53 +896,48 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Ifayili sele ikhona. Tlola phezu kwayo?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Thoma godu"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Igameli liyasetjenziswa."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Lendlela ayikho."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -950,97 +945,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Ihlelo lokuzuma ilwazi ku-inthanethi"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Ukuqinisekiswa kwephaswed yephoso"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "T~humela"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Ifonti"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Faka Umhlobo Wombono"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Ngokulandelana"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Zalisa indlela yokusebenzela"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Indlela etja Ekukhetheni"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Letha indlela Ebujameni banjesi"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Uyafuna ukucima ukurekhoda? Amanye namanye amagadango arekhodwe ukufika lapha azakulahleka."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Cima ukurekhoda"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Amathempleyiti abekwa ebujameni bokusebenza kokuthoma."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1049,7 +1044,7 @@ msgstr ""
"Akunasigadangisi esele sikhethwe yikhompyutha.\n"
"Sibawa ukhethe isigadangisi bewulinge godu."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1058,17 +1053,17 @@ msgstr ""
"Akhenge ikghone ukuthoma isigadangisi.\n"
"Sibawa uhlole ukuhlangana kwesigadangisi sakho nekhompyutha."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Isigadangisi siyasebenza"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (funda kuphela)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1076,7 +1071,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1087,7 +1082,7 @@ msgstr ""
"Ufuna izinga lokusebenza elitjha libulungwe\n"
" emtlolweni?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1095,7 +1090,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1105,7 +1100,7 @@ msgstr ""
"Umtlolo angeze wavulwa ngombana u\n"
"msebenzi wokugadangisa uyenziwa."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1113,7 +1108,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1121,18 +1116,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Lomtlolo angeze wahlelwa, ngebanga lokungabikhona kwamalungelo wofikeleleka. Ufuna ukuhlela ikhophi yomtlolo?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1140,352 +1135,362 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (umtlolo olungisiweko)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editha idokhumente"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Ifayili Lomtlolo"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Ukukhetha kokuhlela"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Susa"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1849,34 +1854,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Umbono womhlobo"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-#, fuzzy
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Igama"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Umhlobo"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-#, fuzzy
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Inani"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Umhlobo"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Iye"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Awa"
@@ -1886,18 +1874,18 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
#, fuzzy
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Igama"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Umhlobo"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
#, fuzzy
msgctxt "custominfopage|value"
msgid "Value"
@@ -2039,19 +2027,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Indawo:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Umhlobo:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Tjhugulula ~Inomboro yokungena..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2062,28 +2050,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Mazombe"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Ihlathululo"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2307,6 +2295,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/nr/shell/messages.po b/source/nr/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/nr/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/nr/starmath/messages.po b/source/nr/starmath/messages.po
index f6ffbbfec48..7ca2307fa92 100644
--- a/source/nr/starmath/messages.po
+++ b/source/nr/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1667,280 +1667,305 @@ msgid "Examples"
msgstr "Isibonelo"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Amukelekile"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Ithaliki"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Bholdi"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "nzima"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Hlaza sasibhakabhaka"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Hlaza satjani"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "Mthuthu"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "iMagentha"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Tshetlha"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Isikhathi"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "Tjheli"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Fihla"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "Ubukhulu:"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Ifonti"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ngesinceleni"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Phakathi"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ngesidleni"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Imilayo"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fomula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Bulunga umtlolo..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Fomula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "IPHOSO: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Itshwayo elingakalindelwa"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' lindelwe"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' lindelwe"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' lindelwe"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' lindelwe"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' lindelwe"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Umbala olindelweko"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'SIDLENI' lindelwe"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Umsebenzana"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
#, fuzzy
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "~Okungaphakathi"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Thayi~thili"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Iseli lefomula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Imikhawulo"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
#, fuzzy
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ubukhulu:"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Ubukhulu bokuthoma"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Linganisa ekhasini"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2015,6 +2040,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "isiquntu"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/nr/svtools/messages.po b/source/nr/svtools/messages.po
index 157e9836fa2..9e9a425172e 100644
--- a/source/nr/svtools/messages.po
+++ b/source/nr/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1546 +15,1548 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195801.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Ukwenzulula: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Yenza~butjha: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Buyelela: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Itheksti engakalungiswa"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Ilwazi lobujamo elibuya ekuThintaneni kwangaphakathi nge-Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "IsiBekisi seNcwadi se-Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Indlela yokusebenza kweseva ye-Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Indlea yokusebenza kwe-Star ilwazi ledatha"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "IIwazi le-Apleti"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Ilwazi ledatha eliplagwako"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Ilwazi ledatha le-StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Ilwazi ledatha le-StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Ilwazi ledatha le-StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Ilwazi ledatha le-StarWriter/Webh 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Ilwazi ledatha le-StarWriter/Webh 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Ilwazi ledatha le-StarWriter/Masta 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Ilwazi ledatha le-StarWriter/Masta 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Ilwazi ledatha le-StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Ilwazi ledatha le-StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Ilwazi ledatha le-StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Ilwazi ledatha leStarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Ilwazi ledatha le-StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Ilwazi ledatha le-StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Ilwazi ledatha le-StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Ilwazi ledatha le-StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Ilwazi ledatha le-StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
#, fuzzy
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Ilwazi ledatha le-StarChart 4.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Ilwazi ledatha le-StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Ilwazi ledatha le-StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Ilwazi ledatha le-StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Ilwazi ledatha le-StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Ilwazi ledatha le-StarMath 4.0 "
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Ilwazi ledatha le-StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Ilwazi ledatha le-Starilwazi ledatha Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Ilwazi ledatha le-Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Ilwazi ledatha le-StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Ilwazi ledatha lomtlolo we-ofisi"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Amanoti welwazi lomtlolo"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Umtlolo we-Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
#, fuzzy
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Ilwazi ledatha le-StarChart 4.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Into yomgwalo"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Ifayili elitjhugulula ubujamo le-Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Ilwazi lomsuka wedatha"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Ithebula yomsuka wedatha"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Umbuzo we-SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Ukuthintana"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Indlela ye-HTML enganamibono"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Into % akhenge ifakwe."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Izinto ezibuya efayilini % akhenge zifakwe."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Izinto ezinye"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Umsuka awaziwa"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Amagama"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Ubukhulu:"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Ilanga elitjhugululiweko"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Umhlobo"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Amabhayithi"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "I-KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "I-MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "I-GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Irhemo: %1, Ikholomu: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Umhlobo: %1, i-URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Ifolda"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Ifayili"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Ikundla Enganalitho"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Jayelekile"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Isethi yamatshwayo"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
#, fuzzy
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "IsiHlathululi-mezwi"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Ihlelo linye lemilayo yekhompyutha"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Incwadi yefoni"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Ifonetiki (iinomboro namaledere kokuthoma)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Ifonetiki (iinomboro namaledere kokugcina)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
#, fuzzy
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "IsiHlathululi-mezwi"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Ifonetiki (iinomboro namaledere kokuthoma, zibuthelelwe ngamasilabhuli)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Ifonetiki (iinomboro namaledere kokuthoma, zibuthelelwe bokamisa)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Ifonetiki (iinomboro namaledere kokugcina, zibuthelelwe ngamasilabhuli)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Ifonetiki (iinomboro namaledere kokugcina, zibuthelelwe bokamisa)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Namhlanjesi"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Ayikho"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lula"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "I-italiki elula"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Jayelekilel"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Italiki"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Dege"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "I-italiki edege"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Nzima"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "I-italiki enzima"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Incwadi"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Gandelelwe"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "darhe kancani"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Ifonti efanako izakusetjenziswa emtjhinini wakho wokugadangisa neskrinini."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Lefonti ngeyomtjhini wokugadangisa. Isithombe seskrini singehluka."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Lomhlobo wefonti uzakwenziwa butjha namkha oseduze nawo uzakusetjenziwa."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Lefonti ayikafakwa. Ifonti eseduze khulu izakusetjenziswa."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Ukufunda ngethungelelwano..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Tjhidisa isakhiwo"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Tjhidisela Ngesinceleni"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Tjhidisela Ngesidleni"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Yehlisela phasi"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Ngeza"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Buthabalala ngaphandle"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Irula Evundlileko"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Inomboro engaba ngu-1 namkha u-0"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 I-Bhithi inemibala engezelelweko"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 Bhithi zeenthunzi zomlotha"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 Bhithi zeenthunzi zomlotha"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 Bhithi zoMbala waMambala"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Posa"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Hlela"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Phumula"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Beka ebujameni bokuthoma ukusebenza..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Lindile"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Iphoso"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "S~ula Ikhasi"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Imitlolo ye-Word"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Qeda"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Landelako >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Emv~a"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Amagadango"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<akukho>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Ikampani"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "UmNyango"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Ibizo"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Isibongo"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Istrada"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Inarha"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Ikhodi ye-ZIP"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Idorobha"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Itahyithili"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Ubujamo"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Isikhala se-Adresi"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Ama-initjhiyali"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Ukuvalwa kokuzalisa"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Umtato: weKhaya"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Umtato: weMsebenzini"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "I-URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Inoti"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Umsebenzisi 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Umsebenzisi 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Umsebenzisi 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Umsebenzisi 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "I-ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Ubujamo"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Umtato: Ofisini"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "I-Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Umaliledinini"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Umtato: Omunye"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Ikhalenda"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Mema"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Khetha Irhemo"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Thungathako/funako"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Ikhodi yomsuka"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Ifayili ye-Iimbekisi zencwadi"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Imigwalo"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Ifayili yokuhlangana kwamhlelo wekhompyutha"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Ukusebenzisa"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Ithebula yebuthelelo lekhompyutha"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Irherho lefayili"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Umtlolo we-MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ifayili yerhelebho"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
#, fuzzy
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Umtlolo we-~HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Ifayili yebulungelo"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Ifayili ye-log"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Ithempleyiti le-StarOffice 5.0"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "UmTlolo omKhulu we-StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Ithempleyiti le-StarOffice 5.0"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Ifayili yetheksti"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Ithintwano"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Ithempleyiti le-StarOffice 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Umtlolo we-MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Ithempleyiti ye-MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Ifayili lemilayo"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Ifayili"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Ifolda"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Umtlolo wetheksti"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Ispredtjhiti"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Iphrizentheyitjhini"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Umgwalo"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Umtlolo we-~HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Umtlolo omkhulu"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Ifomula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Iziko ledatha"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "I-drive yendawo"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "I-disk drive"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "I-CD-ROM drive"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Ithintwano lethungelelwano"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Umtlolo we-MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Ithempelyiti ye-MS PowePoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Veza i-MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Umtlolo we-MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Ibuthelelo leOpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Umgwalo weOpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "IFomula yeOpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Umtlolo omKhulu weOpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Iphrizentheyitjhini yeOpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ISpredtjhiti seOpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Itheksti yeOpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "IThempleyiti yeSpredtjhiti yeOpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "IThempleyiti yeOpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Ithempleyiti yePhrizentheyitjhini yeOpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Ithempleyiti yeTheksti yeOpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/nr/svx/messages.po b/source/nr/svx/messages.po
index 8ccefeef7b2..b56c3bcd97b 100644
--- a/source/nr/svx/messages.po
+++ b/source/nr/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8126,6 +8126,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12623,88 +12628,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Umhleli welayini Yokuhlanganisa"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Sebenzisa"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Isikhala sokusebenzela"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
#, fuzzy
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Khetha"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Uhlangothine"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Isingaqanda"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Ipholigoni"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Tjhidisa Amachaphazi"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Faka Amachaphazi"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Cima Amachaphazi"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Ilayini Yokuhlanganisa Ezenzakalelako"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Ukwenzulula: "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Yenza godu"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13046,124 +13056,118 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Ifuta"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "I-editha Yemebhu Esitjengiso"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Sebenzisa"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Vula..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Bulunga..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Vala"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
#, fuzzy
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Khetha"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Uhlangothine"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Isingaqanda"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Ipholigoni"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Ifomu Yepholigoni Ekhululekileko"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Tjhidisa Amachaphazi"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Faka Amachaphazi"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Cima Amachaphazi"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Ukwenzulula: "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Yenza godu"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "sebenza"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Imakhro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Amatshwayo: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "I-adresi:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Iimfremu"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/nr/sw/messages.po b/source/nr/sw/messages.po
index dbf4453ae6f..067e7220d7e 100644
--- a/source/nr/sw/messages.po
+++ b/source/nr/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nr\n"
@@ -3213,7 +3213,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12817,147 +12817,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12967,152 +12967,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14240,7 +14240,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17838,49 +17838,49 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "~Qalela ngaphambili"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "~Qalela ngaphambili"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Umhlobo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Indlela:"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Amakholomu"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Isendlalelo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "~Qalela ngaphambili"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Ileveli"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -18132,327 +18132,327 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "~Editha..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Thayithili:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Umhlobo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Okungaphakathi kwethebula"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Umsebenzisi uhlathululiwe"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibhiliyografi 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Iforomo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~Umtlolo woke"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Isahluko"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
#, fuzzy
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Tlama"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Amathebula"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Isakhiwo somtlolo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
#, fuzzy
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "kwegrafu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Ilwazi ledatha le-OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Iindlela Zobujamo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Indlela:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr " Ukukhetha"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Isigaba"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Tjengisa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Amareferensi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Isigaba nenomboro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Ikheptjhini yetheksithi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "~Abobakaki"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Ayikho]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Ifayili"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
#, fuzzy
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr " Ukukhetha"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Ilimi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Hlela"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Ileveli"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(Indlela Yendima: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Ona"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Hlela"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/nso/cui/messages.po b/source/nso/cui/messages.po
index 36a16f76e54..0d3513e98ce 100644
--- a/source/nso/cui/messages.po
+++ b/source/nso/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1669,107 +1669,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Ga go na moriti"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1812,7 +1807,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1932,7 +1927,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2172,7 +2167,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2427,12 +2422,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2502,7 +2497,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2582,7 +2577,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2823,7 +2818,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3444,68 +3439,73 @@ msgid "About %PRODUCTNAME"
msgstr "Ka ga %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "wepesaeteYaka"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3630,19 +3630,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Tšeela legato"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Tšeela legato"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Bophara"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4512,6 +4512,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5691,29 +5851,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Diteng"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Foreime:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Leina"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9491,86 +9651,86 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Thušo"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Dipoledišano tša %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Dipoledišano tša %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Leina la tokumente\tBoemo"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "le"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Hlahlela %PRODUCTNAME nakong ya go thoma ga tshepedišo"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Bontšha sethomiši sa kapejana sa systray"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11530,24 +11690,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12211,102 +12356,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13379,27 +13428,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/nso/extensions/messages.po b/source/nso/extensions/messages.po
index d37c819bb1d..b4b5e667d43 100644
--- a/source/nso/extensions/messages.po
+++ b/source/nso/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3167,191 +3167,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Kalo ya Kholomo go Tafola %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Leina-kopana"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Bangwadi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Mogatiši"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Kgaolo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Morulaganyi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Mohuta"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Ngwaga"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Thaetlele"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Aterese"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Ma~tlakala"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Kgat~išo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "~Thaetlele ya puku"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Bolumo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "M~ohuta wa kgatišo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Thulagan~yo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Mokgatl~o"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Yunibesithi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Mohuta wa pe~go"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Kgwedi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Jenale"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Nomoro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Tlhatla~mano"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Kgak~ollo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Tshwaotshwao"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Šomišwa-tlhathollo lebala ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Šomišwa-tlhathollo lebala ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Šomišwa-tlhathollo lebala ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Šomišwa-tlhathollo lebala ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Šomišwa-tlhathollo lebala ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3534,30 +3534,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Lomaganya mapatlelo"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Šišinya"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Leibole"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po
index 1b30f862e6d..57a12a5bf10 100644
--- a/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nso/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23729,6 +23729,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26090,6 +26099,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26108,6 +26126,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/nso/sc/messages.po b/source/nso/sc/messages.po
index 44c75139a23..a206cca9ea1 100644
--- a/source/nso/sc/messages.po
+++ b/source/nso/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15901,6 +15901,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16475,12 +16480,12 @@ msgstr "Go Bopa Maemo"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17767,90 +17772,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Tswalela"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Rekhoto e mpsha"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "Mpsha"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Phumola"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Bušetša"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Rekhoto e fetilego"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Rekhoto e latelago"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Tswalela"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Praosa..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Mehuta ya Database"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19667,37 +19629,42 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Letšatšikgwedi"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "~Dikholomo"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Mothalo"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Hlophilwe ka: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Sekgoba"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19849,167 +19816,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22644,17 +22613,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24625,111 +24604,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "~Lefasetere"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Bontšha"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Uta"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Kgaotšo ya letlakala"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Ditšhate"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Didirišwa tša go thala"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Bontšha"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Uta"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Bontšha"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Uta"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Bontšha"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Uta"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Didirišwa"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Kgodišo"
diff --git a/source/nso/scp2/source/ooo.po b/source/nso/scp2/source/ooo.po
index ada27897aa3..0bdb2fe3dbe 100644
--- a/source/nso/scp2/source/ooo.po
+++ b/source/nso/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Bula Tokumente"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/nso/scp2/source/winexplorerext.po b/source/nso/scp2/source/winexplorerext.po
index c1e12be7fb2..5401adad87b 100644
--- a/source/nso/scp2/source/winexplorerext.po
+++ b/source/nso/scp2/source/winexplorerext.po
@@ -2,9 +2,9 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 01:13+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nso\n"
@@ -12,8 +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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369355168.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "E kgontšha Microsoft Windows Explorer bontšha tshedimošo mabapi le ditokumente tša %PRODUCTNAME, tše bjalo ka diponelopele tše kopana."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/nso/sd/messages.po b/source/nso/sd/messages.po
index f76a93a0e1b..7cdb6600532 100644
--- a/source/nso/sd/messages.po
+++ b/source/nso/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2639,6 +2639,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3116,164 +3121,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4765,160 +4955,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/nso/sfx2/messages.po b/source/nso/sfx2/messages.po
index b74398717bf..5cc4ca6fa33 100644
--- a/source/nso/sfx2/messages.po
+++ b/source/nso/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -906,11 +906,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Tloša thoto"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -920,28 +915,28 @@ msgstr ""
"Boleng bjo bo tsentšhitšwego ga bo swane le mohuta wo o laeditšwego.\n"
"Boleng bo tla bolokwa e le sengwalwa."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Faele e šetše e le gona. Ngwala godimo ga yona?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Beakanya ka leswa"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Leina le le šetše le dirišwa."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Setaele se ga se gona."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -951,7 +946,7 @@ msgstr ""
"Setaele se se ka se dirišwe bjalo ka setaele sa motheo,\n"
"ka gobane mafelelo e tla ba tšhupetšo e boeletšwago."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -960,7 +955,7 @@ msgstr ""
"Leina le šetše le le gona bjalo ka setaele sa tirelwa.\n"
"Hle kgetha leina le lengwe."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -968,97 +963,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Mosepediši"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Netefatšo ya lentšuphetišo leo le nago le bothata"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Romela"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Fonte"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Tsenya tshwaotshwao ya tokollo"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Ditaele"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Beakantšwe ka maemo"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Tlatša moutu wa fomete"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Setaele se seswa go tšwa kgethong"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "~Mpshafatša ditaele"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Na ruri o nyaka go khansela go rekhota? Dikgato dife goba dife tšeo di rekhotilwego go fihla mo di tla lahlega."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Khansela go rekhota"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Dithempoleiti di gare di thomološwa go dirišwa la mathomo."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1067,7 +1062,7 @@ msgstr ""
"Ga se gwa hwetšwa segatiši sa tirelwa.\n"
"Hle kgetha segatiši gomme o leke gape."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1076,17 +1071,17 @@ msgstr ""
"Ga e kgone go thoma segatiši.\n"
"Hle lekola peakanyo ya segatiši sa gago."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Segatiši se gare se a šoma"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (bala feela)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1097,7 +1092,7 @@ msgstr ""
"Na o ka rata go boloka dipeakanyo tše mpsha go\n"
"tokumente yeo e šomago?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1108,7 +1103,7 @@ msgstr ""
"Na dipeakanyo tše mpsha di swanetše go bolokwa\n"
"tokumenteng yeo e šomago?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1119,7 +1114,7 @@ msgstr ""
"Na o ka rata go boloka dipeakanyo tše mpsha go\n"
"tokumente yeo e šomago?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1129,7 +1124,7 @@ msgstr ""
"Tokumente e ka se tswalelwe ka gobane\n"
" mošomo wa go gatiša o sa dirwa."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1137,7 +1132,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,18 +1140,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Tokumente ye ga e kgone go lokišwa, mohlomongwe ka ge ditokelo tša go tsena di timetše. Na o nyaka go lokiša kopi ya tokumente?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1164,352 +1159,362 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (tokomane ye e lokišitšwego)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Lokiša tokumente"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Tokumente ya faele"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Hlopha dikgetho"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Tloša"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1882,32 +1887,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Tshwaotshwao ya tokollo"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Leina"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Mohuta"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Boleng"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Mohuta"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Ee"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Aowa"
@@ -1917,17 +1907,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Leina"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Mohuta"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Boleng"
@@ -2068,19 +2058,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Lefelo:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Mohuta:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Fetola ~Lentšuphetišo..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2091,29 +2081,29 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Kakaretšo"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
#, fuzzy
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Tlhaloso"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr ""
@@ -2334,6 +2324,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/nso/shell/messages.po b/source/nso/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/nso/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/nso/starmath/messages.po b/source/nso/starmath/messages.po
index 9442ec4c3d9..89ebebee3aa 100644
--- a/source/nso/starmath/messages.po
+++ b/source/nso/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1657,278 +1657,303 @@ msgid "Examples"
msgstr "Mohlala"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Motheo"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Moseka"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Mokoto"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "ntsho"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Botala-lerata"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Botala-morogo"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "Tala-morogo-lerata"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "Bohwibidu-madi"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Tshetla"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Nako"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "Serolwana"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Uta"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "Bogolo"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Fonte"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "la nngele"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Bogareng"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "la go ja"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Ditaelo"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fomula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Go boloka tokumente..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fomula ya %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "PHOŠO : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Tlhaka yeo e sa letelwago"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' letetšwe"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' letetšwe"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' letetšwe"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' letetšwe"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' letetšwego"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Mmala o nyakwago"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'LAGOJA' letetšwe"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "Motheo wa %PRODUCTNAME"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Dikagare"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Thaetlele"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "~Sele ya fomula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Mellwane"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Bogolo"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Bogolo bja setlogo"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "~Lekantšha le letlakala"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2001,6 +2026,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "elemente"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/nso/svtools/messages.po b/source/nso/svtools/messages.po
index be8729a3ef8..363f5b6c0a8 100644
--- a/source/nso/svtools/messages.po
+++ b/source/nso/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1538 +16,1540 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195808.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Dirolla: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Dira ~gape: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Boeletša: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Sengwalwa seo se sa bopegago"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Tshedimošo ya boemo go tšwa go lomaganyo ya ka gare ya Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Pukutshwayo ya Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Fomate ya seabi sa Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Fomate ya sedirišwa sa Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Sedirišwa sa apolete"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Sedirišwa sa tsebišo-koketšo"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Sedirišwa sa StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Sedirišwa sa StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Sedirišwa sa StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Sedirišwa sa StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Sedirišwa sa StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Sedirišwa sa StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Sedirišwa sa StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Sedirišwa sa StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Sedirišwa sa StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Sedirišwa sa StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Sedirišwa sa StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Sedirišwa sa StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Sedirišwa sa StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Sedirišwa sa StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Sedirišwa sa StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Sedirišwa sa StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Sedirišwa sa StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Sedirišwa sa StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Sedirišwa sa StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Sedirišwa sa StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Sedirišwa sa StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Sedirišwa sa StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Sedirišwa sa StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Sedirišwa sa go penta sa StarObject"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Sedirišwa sa Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Sedirišwa sa StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Sedirišwa sa tokumente ya Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Tshedimošo ya tokumente ya ditshwayotshwayo"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Tokumente ya Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Sedirišwa sa StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Sedirišwa sa krafiki"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Methafaele ya Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Sedirišwa sa mothopo wa tsebišo"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Lenaneo la mothopo wa tsebišo"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Ngangišano ya SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Lomaganyo"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Sebopego sa HTML seo se se nago ditshwaotshwao"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Sedirišwa sa % se ka se lokelwe."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Sedirišwa se tšwago faeleng ya % se ka se lokelwe."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Didirišwa tše dingwe"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Mothopo o sa tsejwego"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Leina"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Bogolo"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Letšatši leo e lokišitšwego"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Mohuta"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Dipaete"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Mothalo: %1, Kholomo: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Mohuta: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Foltara"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Faele"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Lefelo le se nago selo"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Ditlhakanomoro"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Tlwaelegilego"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Lenaneo la ditlhaka"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Pukuntšu"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyini"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Bethile"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Redikhale"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Yunikhoutu"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyini"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Puku ya megala"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetiki (tlhakanomoro pele)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetiki (tlhakanomoro mafelelong)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Tlhakanomoro"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Pukuntšu"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyini"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Redikhale"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Bethile"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyini"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetiki (tlhakanomoro pele, hlophilwego ka dinoko)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetiki (tlhakanomoro pele, hlophilwego ka ditumammogo)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetiki (tlhakanomoro mafelelong, hlophilwego ka dinoko)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetiki (tlhakanomoro mafelelong, hlophilwego ka ditumammogo)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Lehono"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Ga di gona"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Bofefo"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Moseka o bohwefe"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Tlwaelegilego"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Moseka"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Mokoto"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Moseka o mokoto"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Ntsho"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Moseka o moso"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Puku"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Pitlagantšwego"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "seka-bokoto"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Fonte e swanago e tla dirišwa go bobedi segatiši le sekirini sa gago."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Ye ke fonte ya segatiši. Seswantšho sa sekirini se ka fapana."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Setaele se sa fonte se tla ekišwa goba go tla dirišwa setaele sa kgauswi seo se swanago."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Fonte ye ga se ya lokelwa. Go tla dirišwa fonte yeo e lego kgauswi yeo e hwetšwago."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Praosa..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Tloša tshwaotshwao"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Šuthišetša go la nngele"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Šuthela go la go ja"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Šuthela fase"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Oketša"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Rapamego ka ntle"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Rula e tsepamego"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Mollwane wa 1 paete"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 paete e hlaka-hlakanego"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Dikreisekheile tša 4 paete"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Dikreisekheile tša 4 paete"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Mmala wa kgonthe wa 24 paete"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Fetilego"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Hlaola"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Khutšiša"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Go thomiša..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Letetše"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Phošo"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "P~humola letlakala"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Polokelo e sa lekanago."
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Ditokumente tša Word"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Fetša"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Latelago >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Morag~o"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Dikgato"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<ga e gona>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Khamphani"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Lefapha"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Leina"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Sefane"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Seterata"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Naga"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Khoutu ya poso"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Toropokgolo"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Thaetlele"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Maemo"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Fomo ya aterese"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Ditlhakapele"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Tswalelo ya tlhompho"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Mogala: Gae"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Mogala: Mošomong"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Tshwaotshwao"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Modiriši 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Modiriši 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Modiriši 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Modiriši 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Naga"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Mogala: Ofising"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Seamogela melaetša"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Sellathekeng"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Mogala: O mongwe"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Khalentara"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Laletša"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Go nyakega JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Kgetha JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE e nale bothata"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Khoutu ya mothopo"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Faele ya pukutshwayo"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Dikrafiki"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Faele ya peakanyo"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Tirišo"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Lenaneo la dathapeisi"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Faele ya tshepedišo"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Tokumente ya MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Faele ya thušo"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Tokumente ya HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Faele ya bolotadigaswa"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Faele ya go tsena"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Thempoleiti ya StarOffice 5.0"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Tokumente e Kgolo ya StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Thempoleiti ya StarOffice 5.0"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Faele ya sengwalwa"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Lomaganyo"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Thempoleiti ya StarOffice 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Tokumente ya MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Thempoleiti ya MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Faele ya patšhe"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Faele"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Foltara"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Tokumente ya sengwalwa"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Letlakala-kalo"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Tlhagišo"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Sethalwa"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Tokumente ya HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Tokumente e kgolo"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fomula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Dathapeisi"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Traebe ya mo lapeng"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Traebe ya tisiki"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Traebe ya CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Kgokaganyo ya neteweke"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Tokumente ya MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Thempoleiti ya MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Pontšho ya MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Tokumente ya MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Dathapeisi ya OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Go Thala ga OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fomula ya OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Tokumente e kgolo ya OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Tlhagišo ya OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Letlakala-kalo la OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Sengwalwa sa OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Thempoleiti ya letlakala-kalo la OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Thempoleiti ya go thala ya OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Thempoleiti ya tlhagišo ya OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Thempoleiti ya sengwalwa ya OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Koketšo ya %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/nso/svx/messages.po b/source/nso/svx/messages.po
index 84969b42db7..eebaa0bf761 100644
--- a/source/nso/svx/messages.po
+++ b/source/nso/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8075,6 +8075,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12602,87 +12607,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Morulaganyi wa thapalalo"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Diriša"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Sekgoba sa go šomela"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Kgetha"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Khutlonne-thwii"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipise"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Pholikone"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Lokiša dintlha"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Šuthiša dikhutlo"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Tsenya dikhutlo"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Phumola dikhutlo"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Thapalalo ya boitirišo"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Dirolla "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Khwibidu"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13020,123 +13030,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Hlogwana ya tlase"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Morulaganyi wa mmapa wa seswantšho"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Diriša"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Bula..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Boloka..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Tswalela"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Kgetha"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Khutlonne-thwii"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipise"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Pholikone"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Sebopego se se lokologilego sa pholikone"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Lokiša dintlha"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Šuthiša dikhutlo"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Tsenya dikhutlo"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Phumola dikhutlo"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Dirolla "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Khwibidu"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Dirago"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makhro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Diteng: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Aterese:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Foreimi"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/nso/sw/messages.po b/source/nso/sw/messages.po
index 550879d99f0..f1162edc8c9 100644
--- a/source/nso/sw/messages.po
+++ b/source/nso/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nso\n"
@@ -3217,9 +3217,9 @@ msgid "Change object title of $1"
msgstr "Fetoša thaetlele ya sedirišwa ya $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Fetoša tlhaloso ya sedirišwa ya $1"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12706,147 +12706,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12856,152 +12856,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14113,7 +14113,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17640,49 +17640,49 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Ponelopele"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Ponelopele"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Mohuta"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Ditaele"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Dikholomo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Bokamorago"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Ponelopele"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Kgato"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17928,326 +17928,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Lokiša..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Thaetlele:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Mohuta"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Lenaneo la dikagare"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Tlhathollo ya modiriši"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliokrafi 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Foromo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "~Tokumente ka moka"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Kgaolo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Kakaretšo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Mananeo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Diforeime tša sengwalwa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Dikrafiki"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Didirišwa tša OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Ditaele tša lebakana"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Ditaele"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Dikgetho"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Leina la sedirišwa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Legoro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Bontšha"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Ditšhupetšo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Legoro le nomoro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Sengwalwa sa ditlhaka-kgolo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "~Mašakana"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Ga gona selo]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Faele"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Dikgetho"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Leleme"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Mohuta wa khii"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
#, fuzzy
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Hlaola"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Kgato"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(Setaele sa temana: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Tirelwa"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Lokiša"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/oc/cui/messages.po b/source/oc/cui/messages.po
index 17860c048c0..78d538cbeae 100644
--- a/source/oc/cui/messages.po
+++ b/source/oc/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-05-03 04:32+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Sens bordadura"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Bordadura exteriora"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Bordadura exteriora e linhas orizontalas"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Bordadura exteriora e linhas interioras"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Bordadura exteriora sens cambiar las linhas interioras"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Sonque las linhas diagonalas"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Las quatre bordaduras"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Definir las bordadura d'esquèrra e de dreita unicament"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Definir las bordaduras superiora o inferiora unicament"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Sonque la bordadura d'esquèrra"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Definir las bordaduras superiora o inferiora e totas las linhas interioras"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Definir las bordaduras d'esquèrra e de dreita e totas las linhas interioras"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Sens ombra"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Projectar l'ombra cap aval a dreita"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Projectar l'ombra cap amont a dreita"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Projeccion d'ombra cap aval a esquèrra"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Projectar l'ombra amont a dreita"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Signat per : %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Totes los fichièrs"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Basas de donadas enregistradas"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "A prepaus de %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Cre_dits"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Site Web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Locala : $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Lenga IHM : $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Veire lo jornal : $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME es una seguida burotica open source, modèrna e de bon utilizar, pel tractament de tèxte, los classadors, las presentacions e plan mai encara."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000 - 2019 Contributors de LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice es basat sus OpenOffice.org"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME es derivat de LibreOffice qu'es basat sus OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Aquela version es provesida per %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Remplaçar"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Remplaçar"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Per :"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Tèxte so_lament"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Longor de mot minimala"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Proprietats"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Quadre :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nom :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Tèxte alternatiu :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Descripcion :"
@@ -9019,80 +9179,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ajuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilizar las bóstias de dialòg %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Bóstias de dialòg dobrir/enregistrar"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utilizar las bóstias de _dialòg %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Bóstias de dialòg Imprimir"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Impression : especificacion de l'estatut \"Document modificat\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estatut del document"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Interpretar _coma annadas entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "e "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Annadas (doas chifras)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Collectar de donadas d'utilizacion e las mandar a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ajudar a melhorar %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Cargament de %PRODUCTNAME a l'aviada del sistèma"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activar l'aviada rapida de l'airal de notificacion"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Aviada rapida de %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tèma personal"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "O, seleccionar demest los tèma installats via d'extensions :"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Tèmas Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opcions de seguretat"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Seleccionar un tèma Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "C_ategoria :"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstrait"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Causas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Mòda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Filme e television"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Comjats e fèstas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Musica"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natura"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Autre"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Païsatges"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Sasonièr"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Plen"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Espòrts"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Sites Web"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "A la una"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "O sabiatz ?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Ligar"
diff --git a/source/oc/extensions/messages.po b/source/oc/extensions/messages.po
index 855cf277a16..372381a7d95 100644
--- a/source/oc/extensions/messages.po
+++ b/source/oc/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-03 04:33+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\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: 1556858024.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Mesa en pagina de colomna per la taula «%1»"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Abreujat"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autor(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Capítol"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Annada"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Títo_l"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dreça"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pa_gina(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_icion"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Títol del li_bre"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volum"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Tipe de _publicacion"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zacion"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "_Institucion"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "_Institucion"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tipe de ra_pòrt"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mes"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Re_vista"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Nom_bre"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_ria"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "_Anotacion"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nòta"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Camp definit per l'utilizaire _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Camp definit per l'utilizaire _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Camp definit per l'utilizaire _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Camp definit per l'utilizaire _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Camp definit per l'utilizaire _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nom de colomnas"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Picatz un nom pel tipe de donadas novèl :"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Ligar los camps"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Suggerir"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Los sosformularis pòdon èsser utilizats per afichar las donadas detalhadas a prepaus de l'enregistrament actiu del formulari mèstre. Per aquò far, se pòt especificar quinas colomnas dins lo sosformulari correspondon a las colomnas dins lo formulari mèstre."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiqueta"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiqueta"
diff --git a/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po b/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po
index c7c577c47e4..5453ac003d0 100644
--- a/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-03 04:35+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/oc/sc/messages.po b/source/oc/sc/messages.po
index 19c643c865b..68945c54dad 100644
--- a/source/oc/sc/messages.po
+++ b/source/oc/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-03 04:37+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15207,6 +15207,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(accès exclusiu)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15760,12 +15765,12 @@ msgstr "Gerir lo formatatge condicional"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16983,81 +16988,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulari de donadas"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Tampar"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Enregistrament novèl"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Novèl"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Suprimir"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restablir"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Enregistrament precedent"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Enregistrament _seguent"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Tampar"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Flux de donadas en dirècte"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL :"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Sasissètz aicí l'URL del document font dins lo sistèma de fichièr local o sus Internet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Percórrer..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Plaja de basa de donadas :"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Provesidor de donadas :"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Cadena de recèrca :"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Flux d'origina"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18773,32 +18738,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultat a :"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Donadas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Colomnas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Linhas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Gropat per"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval :"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Paramètres"
@@ -18938,167 +18908,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21579,17 +21551,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Resultats de la recèrca"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23459,107 +23441,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Simbòls del plan"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Fenèstra"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Linhas de la _grasilha :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Color :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Afichar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Afichar dins las cellulas coloradas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Amagar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Sauts de _pagina"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Linhas d'ajuda a_l moment del desplaçament"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Ajudas visualas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "_Objèctes/imatges :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "_Diagramas :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Objèctes de d_essenh :"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Afichar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Amagar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Afichar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Amagar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Afichar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Amagar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objèctes"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "_Sincronizar los fuèlhs"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoom"
diff --git a/source/oc/scp2/source/ooo.po b/source/oc/scp2/source/ooo.po
index 71175c318fc..c698c9b897d 100644
--- a/source/oc/scp2/source/ooo.po
+++ b/source/oc/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Dobrir un document"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/oc/scp2/source/winexplorerext.po b/source/oc/scp2/source/winexplorerext.po
index bc92de0947c..4ca1d470e89 100644
--- a/source/oc/scp2/source/winexplorerext.po
+++ b/source/oc/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 01:19+0200\n"
-"Last-Translator: bruno <bruno.gallart@orange.fr>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:20+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: oc\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369354830.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permet a l'Explorador Microsoft Windows d'afichar las entresenhas relativas als documents %PRODUCTNAME, tals coma d'apercebuts miniaturas."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/oc/sd/messages.po b/source/oc/sd/messages.po
index 2c691130ffd..f3dd41b4bb9 100644
--- a/source/oc/sd/messages.po
+++ b/source/oc/sd/messages.po
@@ -3,9 +3,9 @@ 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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2018-11-12 12:08+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-14 12:57+0000\n"
+"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: oc\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542024496.000000\n"
+"X-POOTLE-MTIME: 1557838643.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
@@ -279,37 +279,37 @@ msgstr ""
#: sd/inc/pageformatpanel.hrc:30
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
-msgstr ""
+msgstr "Pas cap"
#: sd/inc/pageformatpanel.hrc:31
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
-msgstr ""
+msgstr "Estreita"
#: sd/inc/pageformatpanel.hrc:32
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
-msgstr ""
+msgstr "Moderada"
#: sd/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (1.9cm)"
-msgstr ""
+msgstr "Normala (2 cm)"
#: sd/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (2.54cm)"
-msgstr ""
+msgstr "Normala (2,54 cm)"
#: sd/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (3.18cm)"
-msgstr ""
+msgstr "Normala (3,18 cm)"
#: sd/inc/pageformatpanel.hrc:36
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
-msgstr ""
+msgstr "Larg"
#: sd/inc/strings.hrc:25
msgctxt "STR_NULL"
@@ -1258,7 +1258,7 @@ msgstr "Autor"
#: sd/inc/strings.hrc:211
msgctxt "STR_HTMLEXP_EMAIL"
msgid "Email"
-msgstr ""
+msgstr "Corrièr electronic"
#: sd/inc/strings.hrc:212
msgctxt "STR_HTMLEXP_HOMEPAGE"
@@ -1858,7 +1858,7 @@ msgstr "Linha amb flècha"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_LINES_DASHED"
msgid "Dashed Line"
-msgstr ""
+msgstr "Linha en puntilhat"
#: sd/inc/strings.hrc:334
msgctxt "STR_POOLSHEET_FILLED"
@@ -2385,7 +2385,7 @@ msgstr "Trajectòria : %1"
#: sd/inc/strings.hrc:445
msgctxt "STR_CUSTOMANIMATION_MISC"
msgid "Misc: %1"
-msgstr ""
+msgstr "Divèrs : %1"
#: sd/inc/strings.hrc:446
msgctxt "STR_SLIDETRANSITION_NONE"
@@ -2475,12 +2475,12 @@ msgstr "Document"
#: sd/inc/strings.hrc:466
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE"
msgid "Slides per page:"
-msgstr ""
+msgstr "Diapositivas per pagina :"
#: sd/inc/strings.hrc:467
msgctxt "STR_IMPRESS_PRINT_UI_ORDER"
msgid "Order:"
-msgstr ""
+msgstr "Òrdre :"
#: sd/inc/strings.hrc:468
msgctxt "STR_IMPRESS_PRINT_UI_INCLUDE_CONTENT"
@@ -2540,12 +2540,12 @@ msgstr "~Utilizar sonque lo nauc d'alimentacion segon las preferéncias de l'imp
#: sd/inc/strings.hrc:479
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE"
msgid "Pages:"
-msgstr ""
+msgstr "Paginas :"
#: sd/inc/strings.hrc:480
msgctxt "STR_IMPRESS_PRINT_UI_SLIDE_RANGE"
msgid "Slides:"
-msgstr ""
+msgstr "Diapositivas :"
#: sd/inc/strings.hrc:482
msgctxt "STR_SAR_WRAP_FORWARD"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Clicar per dobrir lo ligam :"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,201 +3043,386 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nom per la concepcion HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Fichièr"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "A_juda"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Fichièr"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Origina"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Origina"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "_Camp"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inserir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revision"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Revision"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Afichar"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Afichatge"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
-msgstr ""
+msgstr "Tè_xte"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
-msgstr ""
+msgstr "~Tèxte"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
-msgstr ""
+msgstr "_Tablèu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tablèu"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Convertir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
-msgstr ""
+msgstr "Imat_ge"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Imat~ge"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr ""
+msgstr "_Dessenh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Dessenh"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objècte"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objècte"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
-msgstr ""
+msgstr "_Mèdia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Mèdia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulari"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
+msgstr "Fo~rmulari"
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Aisinas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
+msgstr "~Aisinas"
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
-msgstr ""
+msgstr "Barra de menús"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2696
msgctxt "draw_notebookbar_groupedbar_compact|MenubarView"
msgid "Menubar"
-msgstr ""
+msgstr "Barra de menús"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2854
msgctxt "draw_notebookbar_groupedbar_compact|menub"
msgid "_Menu"
-msgstr ""
+msgstr "_Menú"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2946
msgctxt "draw_notebookbar_groupedbar_compact|fileb"
msgid "_File"
-msgstr ""
+msgstr "_Fichièr"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3057
msgctxt "draw_notebookbar_groupedbar_compact|editb"
msgid "_Edit"
-msgstr ""
+msgstr "_Editar"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3204
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5441
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11320
msgctxt "draw_notebookbar_groupedbar_compact|insertText"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserir"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3365
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11462
msgctxt "draw_notebookbar_groupedbar_compact|draw"
msgid "D_raw"
-msgstr ""
+msgstr "Dessenha_r"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3739
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7058
@@ -3243,47 +3433,47 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11836
msgctxt "draw_notebookbar_groupedbar_compact|insertText"
msgid "_Snap"
-msgstr ""
+msgstr "_Captura"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3879
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6283
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11976
msgctxt "draw_notebookbar_groupedbar_compact|viewT"
msgid "_View"
-msgstr ""
+msgstr "_Afichatge"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:3993
msgctxt "draw_notebookbar_groupedbar_compact|reviewb"
msgid "_Review"
-msgstr ""
+msgstr "_Revision"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4132
msgctxt "draw_notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
-msgstr ""
+msgstr "_Tablèu"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4551
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5848
msgctxt "draw_notebookbar_groupedbar_compact|formatt"
msgid "F_ont"
-msgstr ""
+msgstr "_Poliça"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4824
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6121
msgctxt "draw_notebookbar_groupedbar_compact|paragrapht"
msgid "_Paragraph"
-msgstr ""
+msgstr "_Paragraf"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:5303
msgctxt "draw_notebookbar_groupedbar_compact|calculatet"
msgid "_Calc"
-msgstr ""
+msgstr "_Calc"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6434
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10418
msgctxt "draw_notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
-msgstr ""
+msgstr "Dessenha_r"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:6874
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8469
@@ -3291,63 +3481,63 @@ msgstr ""
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:10858
msgctxt "draw_notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "_Organizar"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7305
msgctxt "draw_notebookbar_groupedbar_compact|draw"
msgid "_Shape"
-msgstr ""
+msgstr "_Forma"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7477
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:11182
msgctxt "draw_notebookbar_groupedbar_compact|viewDrawb"
msgid "Grou_p"
-msgstr ""
+msgstr "Agro_par"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7624
msgctxt "draw_notebookbar_groupedbar_compact|3Db"
msgid "3_D"
-msgstr ""
+msgstr "3_D"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7775
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Fontwork"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:7889
msgctxt "draw_notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_Grasilha"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8029
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Image"
-msgstr ""
+msgstr "_Imatge"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8771
msgctxt "draw_notebookbar_groupedbar_compact|GridB"
msgid "_Color"
-msgstr ""
+msgstr "_Color"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9063
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
-msgstr ""
+msgstr "_Objècte"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:9852
msgctxt "draw_notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
-msgstr ""
+msgstr "_Mèdia"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12101
msgctxt "draw_notebookbar_groupedbar_compact|oleB"
msgid "_Master"
-msgstr ""
+msgstr "_Master"
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:12234
msgctxt "draw_notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulari"
#: sd/uiconfig/sdraw/ui/paranumberingtab.ui:30
msgctxt "paranumberingtab|checkbuttonCB_NEW_START"
@@ -3608,85 +3798,85 @@ msgstr "Melhorament"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:131
msgctxt "customanimationfragment|25"
msgid "Tiny"
-msgstr ""
+msgstr "Minuscul"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:41
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:139
msgctxt "customanimationfragment|50"
msgid "Smaller"
-msgstr ""
+msgstr "Mai pichon"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:49
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:147
msgctxt "customanimationfragment|150"
msgid "Larger"
-msgstr ""
+msgstr "Mai grand"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:57
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:155
msgctxt "customanimationfragment|400"
msgid "Extra Large"
-msgstr ""
+msgstr "Fòrt grand"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:69
msgctxt "customanimationfragment|90"
msgid "Quarter Spin"
-msgstr ""
+msgstr "Quart de torn"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:77
msgctxt "customanimationfragment|180"
msgid "Half Spin"
-msgstr ""
+msgstr "Mièja rotacion"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:85
msgctxt "customanimationfragment|360"
msgid "Full Spin"
-msgstr ""
+msgstr "Rotacion completa"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:93
msgctxt "customanimationfragment|720"
msgid "Two Spins"
-msgstr ""
+msgstr "Doble torn"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:107
msgctxt "customanimationfragment|clockwise"
msgid "Clockwise"
-msgstr ""
+msgstr "Sens orari"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:115
msgctxt "customanimationfragment|counterclock"
msgid "Counter-clockwise"
-msgstr ""
+msgstr "Sens anti-orari"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:169
msgctxt "customanimationfragment|hori"
msgid "Horizontal"
-msgstr ""
+msgstr "Orizontal"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:177
msgctxt "customanimationfragment|vert"
msgid "Vertical"
-msgstr ""
+msgstr "Vertical"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:185
msgctxt "customanimationfragment|both"
msgid "Both"
-msgstr ""
+msgstr "Ambedós"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:197
msgctxt "customanimationfragment|bold"
msgid "Bold"
-msgstr ""
+msgstr "Gras"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:205
msgctxt "customanimationfragment|italic"
msgid "Italic"
-msgstr ""
+msgstr "Italica"
#: sd/uiconfig/simpress/ui/customanimationfragment.ui:213
msgctxt "customanimationfragment|underline"
msgid "Underlined"
-msgstr ""
+msgstr "Soslinhat"
#: sd/uiconfig/simpress/ui/customanimationproperties.ui:8
msgctxt "customanimationproperties|CustomAnimationProperties"
@@ -4341,22 +4531,22 @@ msgstr "Inclure dins la diapositiva"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:36
msgctxt "impressprinteroptions|label2"
msgid "Type:"
-msgstr ""
+msgstr "Tipe :"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:50
msgctxt "impressprinteroptions|label7"
msgid "Slides per page:"
-msgstr ""
+msgstr "Diapositivas per pagina :"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:64
msgctxt "impressprinteroptions|label1"
msgid "Order:"
-msgstr ""
+msgstr "Òrdre :"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:111
msgctxt "impressprinteroptions|label3"
msgid "Document"
-msgstr ""
+msgstr "Document"
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:144
msgctxt "impressprinteroptions|printname"
@@ -4583,173 +4773,173 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Afichar las formas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Fichièr"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "A_juda"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Fichièr"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Origina"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Origina"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Camp"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inserir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "_Diaporama"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revision"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Revision"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Afichar"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Afichatge"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
-msgstr ""
+msgstr "_Tablèu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tablèu"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Convertir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
-msgstr ""
+msgstr "Imat_ge"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Imat~ge"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr ""
+msgstr "_Dessenh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Dessenh"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objècte"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objècte"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
-msgstr ""
+msgstr "_Mèdia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Mèdia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulari"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmulari"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Aisinas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Aisinas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2168
msgctxt "impress_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
-msgstr ""
+msgstr "Barra de menús"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2640
msgctxt "impress_notebookbar_groupedbar_compact|MenubarView"
msgid "Menubar"
-msgstr ""
+msgstr "Barra de menús"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2798
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -4770,7 +4960,7 @@ msgstr "_Editar"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5499
msgctxt "notebookbar_groupedbar_compact|reviewb"
msgid "S_lide"
-msgstr ""
+msgstr "_Diapositiva"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3310
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11594
@@ -4787,7 +4977,7 @@ msgstr "Dessenha_r"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11968
msgctxt "notebookbar_groupedbar_compact|insertText"
msgid "_Snap"
-msgstr ""
+msgstr "_Captura"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3824
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12108
@@ -4811,13 +5001,13 @@ msgstr "_Revision"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4205
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
-msgstr ""
+msgstr "_Tablèu"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4624
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:5907
msgctxt "notebookbar_groupedbar_compact|formatt"
msgid "F_ont"
-msgstr ""
+msgstr "_Poliça"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4895
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6178
@@ -4834,7 +5024,7 @@ msgstr "_Calc"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10531
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
-msgstr ""
+msgstr "Dessenha_r"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6941
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8582
@@ -4842,12 +5032,12 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:10971
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "Organi_zar"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7298
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
-msgstr ""
+msgstr "_Forma"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7590
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11295
@@ -4863,67 +5053,67 @@ msgstr "3_D"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:7888
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Fontwork"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8002
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_Grasilha"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8142
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Image"
-msgstr ""
+msgstr "_Imatge"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8884
msgctxt "notebookbar_groupedbar_compact|GridB"
msgid "_Color"
-msgstr ""
+msgstr "_Color"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9176
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
-msgstr ""
+msgstr "_Objècte"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:9965
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
-msgstr ""
+msgstr "_Mèdia"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:11433
msgctxt "notebookbar_groupedbar_compact|oleB"
msgid "_Master"
-msgstr ""
+msgstr "_Master"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12485
msgctxt "impress_notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulari"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13069
msgctxt "notebookbar_groupedbar_compact|LanguageButton"
msgid "_Language"
-msgstr ""
+msgstr "_Lenga"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13197
msgctxt "notebookbar_groupedbar_compact|reviewButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revision"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13336
msgctxt "notebookbar_groupedbar_compact|CommentsButton"
msgid "_Comments"
-msgstr ""
+msgstr "_Comentaris"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13442
msgctxt "notebookbar_groupedbar_compact|CompareButton"
msgid "Com_pare"
-msgstr ""
+msgstr "Com_parar"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13548
msgctxt "notebookbar_groupedbar_compact|ViewButton"
msgid "_View"
-msgstr ""
+msgstr "_Afichatge"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2814
msgctxt "notebookbar_groupedbar_full|menub"
@@ -5019,7 +5209,7 @@ msgstr "_Afichar"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6058
msgctxt "notebookbar_groupedbar_full|reviewp"
msgid "_Review"
-msgstr ""
+msgstr "_Revision"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6199
msgctxt "notebookbar_groupedbar_full|slideshowtt"
diff --git a/source/oc/sfx2/messages.po b/source/oc/sfx2/messages.po
index b06413b86c1..ee79fc900fd 100644
--- a/source/oc/sfx2/messages.po
+++ b/source/oc/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -913,11 +913,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " A : %1 M : %2 J : %3 H : %4 M : %5 S : %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Suprimir la proprietat"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -926,27 +921,27 @@ msgstr ""
"La valor picada correspond pas al tipe especificat.\n"
"La valor serà emmagazinada coma tèxte."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Aqueste estil existís ja. O volètz remplaçar?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Restablir"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Aqueste nom ja es estat atribuit."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Estil inexistent."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -955,7 +950,7 @@ msgstr ""
"Aqueste estil pòt pas èsser utilizat coma estil de basa\n"
"perque aquò creariá una referéncia recursiva."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -964,7 +959,7 @@ msgstr ""
"Aqueste nom ja es atribuit a un estil per defaut.\n"
"Causissètz-ne un autre."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -972,92 +967,92 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Estils utilizats : "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigador"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Confirmacion del senhal erronèa"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Mandar"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Poliça"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Afichar los apercebuts"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Afichar lo comentari de version"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(cap de nom pas definit)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lista d'estil"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Ierarquia"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Mòde Emplenar tot"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Estil novèl a partir de la seleccion"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Actualizar l'estil"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Sètz segur que volètz anullar l'enregistrament ? Totas las entresenhas enregistradas fins a ara seràn perdudas."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Anullar l'enregistrament"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Inicializacion dels modèls per una primièra utilizacion."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1066,7 +1061,7 @@ msgstr ""
"Impossible de detectar l'imprimenta per defaut.\n"
"Seleccionatz una imprimenta e tornatz començar."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1075,17 +1070,17 @@ msgstr ""
"Impossible d'aviar l'imprimenta !\n"
"Verificatz-ne la configuracion."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Imprimenta ocupada"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (lectura sola)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1096,7 +1091,7 @@ msgstr ""
"Volètz enregistrar los paramètres novèls dins lo\n"
"document actiu ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1107,7 +1102,7 @@ msgstr ""
"Volètz enregistrar los paramètres modificats\n"
"dins lo document ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1118,7 +1113,7 @@ msgstr ""
"Volètz enregistrar los paramètres novèls dins lo\n"
"document actiu ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Lo document pòt pas èsser tampat,\n"
"un prètzfait d'impression es actualament en cors."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1135,7 +1130,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1143,17 +1138,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Error al moment del mandadís del corrièl."
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Aqueste document pòt pas èsser editat sens dobte a causa de dreits d'accès mancants. Volètz editar una còpia del document ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1161,349 +1156,359 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Dobrir una ~còpia"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Dobrir"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (document reparat)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Lo document es pas extrait del servidor"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Ajudatz-nos a melhorar %PRODUCTNAME !"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Participar"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Aqueste document es dobèrt en lectura sola."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Nivèl"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Seguretat nacionala :"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Contraròtle d'exportacion :"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Sortida"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editar lo document"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Signar lo document"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Aqueste document a una signatura invalida."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Afichar las signaturas"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Tampar l’onglet"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Amarrar"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Desamarrar"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Mai d'opcions"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Tampar lo panèl lateral"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Paramètres de la barra laterala"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalizacion"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restablir las valors per defaut"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Tampar la barra laterala"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Buc"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Corba blava"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Plans blaus"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Blau brilhant"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Roge sofisticat"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Ausèl del bòsc"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impression"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracion"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lums"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verd exuberant"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metròpoli"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Blau de mièjanuèit"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Gredon"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progression"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solelh colc"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Millesime"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivid"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resumit"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Per defaut"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modèrne"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Carta de visita amb lògo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Suprimir"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Voidar tot"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longor del senhal"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1848,32 +1853,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Comentari de version :"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nom"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipe"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valor"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipe"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Òc"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Non"
@@ -1883,17 +1873,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Apondre una _proprietat"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nom"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipe"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valor"
@@ -2023,17 +2013,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Emplaçament :"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipe :"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Modificar lo senhal"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Modèl :"
@@ -2043,27 +2033,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Proprietats de «%1»"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "General "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descripcion"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Proprietats personalizadas"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Proprietats CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Seguretat"
@@ -2277,6 +2267,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/oc/shell/messages.po b/source/oc/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/oc/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/oc/starmath/messages.po b/source/oc/starmath/messages.po
index a759c9a4c03..0d8ec76e5db 100644
--- a/source/oc/starmath/messages.po
+++ b/source/oc/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Exemples"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Estandard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Italica"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Gras"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "negre"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blau"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verd"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "roge"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cian"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magènta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gris"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "citron"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marron"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "blau marina"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "oliva"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "violet"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "argent"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "blau guit"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "jaune"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "amagar"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "talha"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "poliça"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "esquèrra"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centre"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dreita"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comandas"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Enregistrament del document..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION Formula"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caractèr imprevist"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Paramètre imprevist"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' requesit"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' requesit"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' requesit"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' requesit"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Simbòls esquèrra e dreit incoerents"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "S'esperava «fixed«, «sans» o «serif»"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "\"size\" es seguit per un paramètre imprevist"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "L'alinhament redoblat es pas autorizat"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Dobles indicis/exponents son pas autorizats"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' requesit"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Color requerida"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' requesit"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Contengut"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Títol"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Tèxte de la _formula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~ordaduras"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Talha"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Talha d'o~rigina"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Adaptar a la pagina"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Es_cala :"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elements"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/oc/svtools/messages.po b/source/oc/svtools/messages.po
index 2d0e7e8219c..a7dd738ad5a 100644
--- a/source/oc/svtools/messages.po
+++ b/source/oc/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-03 04:37+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1556858270.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Anullar : "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Restablir: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repetir: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Tèxte pas formatat"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imatge bitmap (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informacion del estatut del ligam intèrn Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Ligam %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcapagina Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format de servidor Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format d'objècte Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objècte ajuston"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objècte ajuston"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objècte StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objècte StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objècte StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objècte StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objècte StarWriter/web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objècte StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objècte StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objècte StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objècte StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objècte StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objècte StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objècte StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objècte StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objècte StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objècte StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objècte StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objècte StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objècte StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objècte StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objècte StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objècte StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objècte StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objècte StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objècte StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objècte Word Microsoft"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objècte StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objècte document Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informacion sus los documents nòta"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Document Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objècte StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objècte grafic"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objècte Writer OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objècte Writer/Web OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objècte Mèstre/Writer OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objècte Draw OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objècte Impress OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objècte Calc OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objècte Chart OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objècte Math OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metafichièr Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objècte de font de donadas"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Taula de font de donadas"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Requèsta SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialòg OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Ligam"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML format sens comentari"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Impossible d'inserir l'objècte %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Impossible d'inserir l'objècte del fichièr %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Autres objèctes"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Font desconeguda"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nom"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Talha"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Data de modificacion"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipe"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Octets"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "ko"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "Mo"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "Go"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Linha : %1, Colomna : %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tipe: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Dorsièr"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fichièr"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Camp void"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeric"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Jòc de caractèrs"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionari"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trait"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Agenda telefonic"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetic (alfanumeric d'en primièr)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetic (alfanumeric e darrièr)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeric"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Diccionari"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trait"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetic (alfanumeric en primièr, agropat per sillabas)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetic (alfanumeric en primièr, agropat per consonantas)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetic (alfanumeric en darrièr, agropat per sillabas)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetic (alfanumeric en darrièr, agropat per consonantas)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Uèi"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Pas cap"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Clar"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Clar Italic"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Regulièr"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Italic"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Gras"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Gras Italic"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Negre"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Negre Italic"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Libre"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Gras oblic"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensat"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensat gras"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensat gras italica"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensat gras oblic"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensat italica"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensat oblic"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extrafin"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Extrafin italica"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblic"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semigras"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semigras italica"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "La meteissa poliça es utilizada per l'impression e l'afichatge a l'ecran."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Aquò's una poliça d'imprimenta. L'imatge de l'ecran pòt èsser diferent."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Aquel estil de poliça serà simulat o l'estil mai pròche que conven serà utilizat."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Aquesta poliça es pas estada installada. La poliça mai pròcha disponibla serà utilizada."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Percórrer..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Desplaçar cap a l'origina"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Desplaçar d'esquèrra"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Desplaçar a dreita"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Desplaçar cap a la fin"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Apondre"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Règla orizontala"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Règla verticala"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Valor de lindal 1 bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Difusion (Dithering)1 bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Nivèls de gris 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Color 4 bits"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Nivèls de gris 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Color 8 bits"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Colors 24 bits (True color)"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "L'imatge necessita environ %1 Ko de memòria."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "L'imatge necessita a l'entorn de %1 Ko de memòria, la talha del fichièr es de %2 Ko."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Talha del fichièr es de %1 Ko."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "òste"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "pòrt"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Autre CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Prèst"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "En pausa"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Escafament en cors"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupat"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "En cors d'inicializacion"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "En espèra"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "A caufar"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Tractament"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Impression"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Desconnectat"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Error"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor desconegut"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Embolh de papièr"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Lucèta, de papièr !!!"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Cargament manual"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problèma amb lo papièr"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O actiu"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "La caissa de sortida plena"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Nivèl de tencha bas"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Pas de tencha"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Suprimir pagina"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Intervencion de l'utilizaire necessària"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memòria insufisenta"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Capòt dobèrt"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mòde d'economias d'energia"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Imprimenta per defaut"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "A~cabar"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Seguent >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Precedent"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Etapas"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Entrepresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departament"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Pichon nom"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Nom"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Carrièra"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Còdi postal"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Ciutat"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Títol"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posicion"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Adr. Formulari"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicialas"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Astruganças acabadas"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel. ostal"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel: Trabalh"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nòta"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Utilizaire 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Utilizaire 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Utilizaire 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Utilizaire 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Estat"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel: Burèu"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Recebedor d'apèl"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Telefonet"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel: Autre"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendièr"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Convidar"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME necessita un environament d'execucion Java (JRE) per executar aquel prètzfait. Installatz un JRE e reaviatz %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuracion de %PRODUCTNAME es estada modificada. Jos %PRODUCTNAME - Preferéncias - %PRODUCTNAME - Avançat, seleccionatz l'environament d'execucion Java que volètz que %PRODUCTNAME utilize."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "La configuracion de %PRODUCTNAME es estada modificada. Jos Aisinas - Opcions - %PRODUCTNAME - Avançat, seleccionatz l'environament d'execucion Java que volètz que %PRODUCTNAME utilize."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME necessita un environament d'execucion java (JRE) per realizar aqueste prètzfait. Lo JRE seleccionat es defectuós. Seleccionatz una autra version o installatz un novèl JRE e seleccionatz-lo jos %PRODUCTNAME - Preferéncias - %PRODUCTNAME - Avançat."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME necessita un environament d'execucion java (JRE) per realizar aqueste prètzfait. Lo JRE seleccionat es defectuós. Seleccionatz una autra version o installatz un novèl JRE e seleccionatz-lo jos Aisinas- Opcions - %PRODUCTNAME - Avançat."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE requesit"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Seleccionar JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Lo JRE es defectuós"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Còdi font"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Fichièr de marcapagina"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafisme"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Fichièr de configuracion"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicacion"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Taula de basa de donadas"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Fichièr sistèma"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Document MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Fichièr ajuda"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Document HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Fichièr archiu"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Fichièr jornal"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Basa de donadas StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Document StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imatge StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Fichièr tèxte"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Ligam"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Modèl StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Document MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Modèl MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Fichièr lòt"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fichièr"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Repertòri"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Document de tèxte"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Fuèlh de calcul"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Presentacion"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Dessenh"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Document HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Document mèstre"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Donadas"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Modèl de classador OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Modèl de dessenh OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Modèl de presentacion OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Modèl de document tèxte OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unitat locala"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unitat disc"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unitat CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Connexion a la ret"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Document MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Modèl MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Mostrar MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Formula OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Diagrama OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Dessenh OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Classador OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Presentacion OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Document tèxte OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Document mèstre OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Document MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Basa de donadas OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Dessenh"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Formula"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Document mèstre"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Presentacion"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Fuèlh de calcul"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Tèxte"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Modèl de fuèlh de calcul"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Modèl de dessenh"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Modèl de presentacion"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Modèl de tèxte OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME Extension"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Verificador ortografic Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Divisor de mots Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/oc/svx/messages.po b/source/oc/svx/messages.po
index 43b9437f443..7467ba132b3 100644
--- a/source/oc/svx/messages.po
+++ b/source/oc/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-03 04:39+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-14 12:37+0000\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: oc\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: 1556858347.000000\n"
+"X-POOTLE-MTIME: 1557837472.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7918,6 +7918,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "D'esquèrra cap a dreita (vertical)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12176,82 +12181,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor de contorns"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Zòna de trabalh"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Seleccionar"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipsa"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Poligòn"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar de punts"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Desplaçar de punts"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserir de punts"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Suprimir de punts"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoContorn"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Anullar"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Restablir"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolerància cromatica"
@@ -12559,112 +12569,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Pè de pagina"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor d'Imatge Map"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Dobrir..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Enregistrar..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Tampar"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Seleccionar"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rectangle"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ellipsa"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Poligòn"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Poligòn amb man levada"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar los punts"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Desplaçar de punts"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserir de punts"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Suprimir de punts"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Anullar "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Restablir"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Actiu"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Proprietats..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adreça :"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Quadre :"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tèxte :"
@@ -13860,7 +13865,7 @@ msgstr "Valor de gamma"
#: svx/uiconfig/ui/sidebarline.ui:40
msgctxt "sidebarline|beginarrowstyle|tooltip_text"
msgid "Select the style of the beginning arrowhead."
-msgstr ""
+msgstr "Seleccionatz l'estil de començament de la sageta."
#: svx/uiconfig/ui/sidebarline.ui:44
msgctxt "sidebarline|beginarrowstyle-atkobject"
@@ -13880,7 +13885,7 @@ msgstr "Estil"
#: svx/uiconfig/ui/sidebarline.ui:80
msgctxt "sidebarline|endarrowstyle|tooltip_text"
msgid "Select the style of the ending arrowhead."
-msgstr ""
+msgstr "Seleccionatz l'estil de fin de la sageta."
#: svx/uiconfig/ui/sidebarline.ui:85
msgctxt "sidebarline|endarrowstyle-atkobject"
@@ -13990,12 +13995,12 @@ msgstr "Carrat"
#: svx/uiconfig/ui/sidebarline.ui:327
msgctxt "sidebarline|linecapstyle-atkobject"
msgid "Cap Style"
-msgstr ""
+msgstr "Estil d'extrème"
#: svx/uiconfig/ui/sidebarlists.ui:22
msgctxt "sidebarlists|numberbullet|tooltip_text"
msgid "Bullets and Numbering"
-msgstr ""
+msgstr "Piuses e numerotacion"
#: svx/uiconfig/ui/sidebarparagraph.ui:26
msgctxt "sidebarparagraph|numberbullet|tooltip_text"
@@ -14070,27 +14075,27 @@ msgstr "Reduire l'alinèa"
#: svx/uiconfig/ui/sidebarparagraph.ui:481
msgctxt "sidebarparagraph|hangingindent|tooltip_text"
msgid "Switch to Hanging Indent"
-msgstr ""
+msgstr "Cambiar en alinèa negatiu"
#: svx/uiconfig/ui/sidebarparagraph.ui:522
msgctxt "sidebarparagraph|beforetextindent|tooltip_text"
msgid "Before Text Indent"
-msgstr ""
+msgstr "Abans l'alinèa de tèxte"
#: svx/uiconfig/ui/sidebarparagraph.ui:528
msgctxt "sidebarparagraph|beforetextindent-atkobject"
msgid "Before Text Indent"
-msgstr ""
+msgstr "Abans l'alinèa de tèxte"
#: svx/uiconfig/ui/sidebarparagraph.ui:570
msgctxt "sidebarparagraph|aftertextindent|tooltip_text"
msgid "After Text Indent"
-msgstr ""
+msgstr "Aprèp l'alinèa de tèxte"
#: svx/uiconfig/ui/sidebarparagraph.ui:576
msgctxt "sidebarparagraph|aftertextindent-atkobject"
msgid "After Text Indent"
-msgstr ""
+msgstr "Aprèp l'alinèa de tèxte"
#: svx/uiconfig/ui/sidebarparagraph.ui:618
msgctxt "sidebarparagraph|firstlineindent|tooltip_text"
@@ -14105,7 +14110,7 @@ msgstr "Retirament de primièra linha"
#: svx/uiconfig/ui/sidebarparagraph.ui:656
msgctxt "sidebarparagraph|backgroundcolor|tooltip_text"
msgid "Paragraph Background Color"
-msgstr ""
+msgstr "Color de rèireplan del paragraf"
#: svx/uiconfig/ui/sidebarpossize.ui:42
msgctxt "sidebarpossize|horizontallabel"
@@ -14115,7 +14120,7 @@ msgstr "Posicion _X :"
#: svx/uiconfig/ui/sidebarpossize.ui:57
msgctxt "sidebarpossize|horizontalpos|tooltip_text"
msgid "Enter the value for the horizontal position."
-msgstr ""
+msgstr "Picatz la valor de la posicion orizontala."
#: svx/uiconfig/ui/sidebarpossize.ui:63
msgctxt "sidebarpossize|horizontalpos-atkobject"
@@ -14130,7 +14135,7 @@ msgstr "Posicion _Y :"
#: svx/uiconfig/ui/sidebarpossize.ui:95
msgctxt "sidebarpossize|verticalpos|tooltip_text"
msgid "Enter the value for the vertical position."
-msgstr ""
+msgstr "Picatz la valor de la posicion verticala."
#: svx/uiconfig/ui/sidebarpossize.ui:101
msgctxt "sidebarpossize|verticalpos-atkobject"
@@ -14175,7 +14180,7 @@ msgstr "_Conservar lo ratio"
#: svx/uiconfig/ui/sidebarpossize.ui:204
msgctxt "sidebarpossize|ratio|tooltip_text"
msgid "Maintain proportions when you resize the selected object."
-msgstr ""
+msgstr "Gardatz las proporcions quand redimensionatz l'objècte seleccionat."
#: svx/uiconfig/ui/sidebarpossize.ui:220
msgctxt "sidebarpossize|rotationlabel"
diff --git a/source/oc/sw/messages.po b/source/oc/sw/messages.po
index 9f0aa14c053..43b00421892 100644
--- a/source/oc/sw/messages.po
+++ b/source/oc/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: oc\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: 1556858384.000000\n"
+"X-POOTLE-MTIME: 1557839363.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -264,7 +264,7 @@ msgstr "Telefòn entrepresa"
#: sw/inc/dbui.hrc:57
msgctxt "SA_ADDRESS_HEADER"
msgid "Email Address"
-msgstr ""
+msgstr "Adreça electronica"
#: sw/inc/dbui.hrc:58
msgctxt "SA_ADDRESS_HEADER"
@@ -556,82 +556,82 @@ msgstr "Sens nom 9"
#: sw/inc/pageformatpanel.hrc:18
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "None"
-msgstr ""
+msgstr "Pas cap"
#: sw/inc/pageformatpanel.hrc:19
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Narrow"
-msgstr ""
+msgstr "Estreit"
#: sw/inc/pageformatpanel.hrc:20
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Moderate"
-msgstr ""
+msgstr "Moderat"
#: sw/inc/pageformatpanel.hrc:21
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (0.75\")"
-msgstr ""
+msgstr "Normal (0,75\")"
#: sw/inc/pageformatpanel.hrc:22
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (1\")"
-msgstr ""
+msgstr "Normal (1\")"
#: sw/inc/pageformatpanel.hrc:23
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Normal (1.25\")"
-msgstr ""
+msgstr "Normal (1,25\")"
#: sw/inc/pageformatpanel.hrc:24
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Wide"
-msgstr ""
+msgstr "Larg"
#: sw/inc/pageformatpanel.hrc:25
msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH"
msgid "Mirrored"
-msgstr ""
+msgstr "Vis a vis"
#: sw/inc/pageformatpanel.hrc:31
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "None"
-msgstr ""
+msgstr "Pas cap"
#: sw/inc/pageformatpanel.hrc:32
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Narrow"
-msgstr ""
+msgstr "Estreita"
#: sw/inc/pageformatpanel.hrc:33
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Moderate"
-msgstr ""
+msgstr "Moderada"
#: sw/inc/pageformatpanel.hrc:34
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (1.9cm)"
-msgstr ""
+msgstr "Normal (1,9 cm)"
#: sw/inc/pageformatpanel.hrc:35
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (2.54cm)"
-msgstr ""
+msgstr "Normal (2,54 cm)"
#: sw/inc/pageformatpanel.hrc:36
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Normal (3.18cm)"
-msgstr ""
+msgstr "Normal (3,18 cm)"
#: sw/inc/pageformatpanel.hrc:37
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Wide"
-msgstr ""
+msgstr "Larg"
#: sw/inc/pageformatpanel.hrc:38
msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM"
msgid "Mirrored"
-msgstr ""
+msgstr "Paginas en vis a vis"
#. Format names
#: sw/inc/strings.hrc:27
@@ -1115,7 +1115,7 @@ msgstr "Piuse 5 seguenta"
#: sw/inc/strings.hrc:125
msgctxt "STR_POOLCOLL_HEADER"
msgid "Header and Footer"
-msgstr ""
+msgstr "Entèsta e pè de pagina"
#: sw/inc/strings.hrc:126
msgctxt "STR_POOLCOLL_HEADER"
@@ -1503,31 +1503,31 @@ msgstr "Numerotacion ivx"
#: sw/inc/strings.hrc:207
msgctxt "STR_POOLNUMRULE_BUL1"
msgid "Bullet •"
-msgstr ""
+msgstr "Vinheta •"
#. Bullet \u2013
#: sw/inc/strings.hrc:209
msgctxt "STR_POOLNUMRULE_BUL2"
msgid "Bullet –"
-msgstr ""
+msgstr "Vinheta –"
#. Bullet \uE4C4
#: sw/inc/strings.hrc:211
msgctxt "STR_POOLNUMRULE_BUL3"
msgid "Bullet "
-msgstr ""
+msgstr "Vinheta "
#. Bullet \uE49E
#: sw/inc/strings.hrc:213
msgctxt "STR_POOLNUMRULE_BUL4"
msgid "Bullet "
-msgstr ""
+msgstr "Vinheta "
#. Bullet \uE20B
#: sw/inc/strings.hrc:215
msgctxt "STR_POOLNUMRULE_BUL5"
msgid "Bullet "
-msgstr ""
+msgstr "Vinheta "
#: sw/inc/strings.hrc:216
msgctxt "STR_COLUMN_VALUESET_ITEM0"
@@ -1892,15 +1892,15 @@ msgstr "Plan numeracion"
#: sw/inc/strings.hrc:293
msgctxt "STR_WORDCOUNT"
msgid "Selected: $1, $2"
-msgstr ""
+msgstr "Seleccionat : $1, $2"
#. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words
#: sw/inc/strings.hrc:295
msgctxt "STR_WORDCOUNT_WORDARG"
msgid "$1 word"
msgid_plural "$1 words"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "$1 mot"
+msgstr[1] "$1 mots"
#. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters
#: sw/inc/strings.hrc:297
@@ -1915,7 +1915,7 @@ msgstr[1] ""
#: sw/inc/strings.hrc:300
msgctxt "STR_WORDCOUNT_NO_SELECTION"
msgid "$1, $2"
-msgstr ""
+msgstr "$1, $2"
#. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_NO_SELECTION is number of words
@@ -1923,8 +1923,8 @@ msgstr ""
msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION"
msgid "$1 word"
msgid_plural "$1 words"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "$1 mot"
+msgstr[1] "$1 mots"
#. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION.
#. $1 of STR_WORDCOUNT_CHARARG_NO_SELECTION is number of characters
@@ -1932,8 +1932,8 @@ msgstr[1] ""
msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION"
msgid "$1 character"
msgid_plural "$1 characters"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "$1 caractèr"
+msgstr[1] "$1 caractèrs"
#: sw/inc/strings.hrc:307
msgctxt "STR_CONVERT_TEXT_TABLE"
@@ -2840,8 +2840,8 @@ msgstr "occuréncias de"
msgctxt "STR_UNDO_TABS"
msgid "One tab"
msgid_plural "$1 tabs"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Un onglet"
+msgstr[1] "$1 onglets"
#: sw/inc/strings.hrc:490
msgctxt "STR_UNDO_NLS"
@@ -3112,9 +3112,9 @@ msgid "Change object title of $1"
msgstr "Cambiar l'objècte títol de $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Cambiar la descripcion del objècte de $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -3370,7 +3370,7 @@ msgstr "Imprimir lo tèxte en ne~gre"
#: sw/inc/strings.hrc:600
msgctxt "STR_PRINTOPTUI_PAGES_TEXT"
msgid "Pages:"
-msgstr ""
+msgstr "Paginas :"
#: sw/inc/strings.hrc:601
msgctxt "STR_PRINTOPTUI_PRINT_BLANK"
@@ -3425,27 +3425,27 @@ msgstr "Escript de dreita a esquèrra"
#: sw/inc/strings.hrc:611
msgctxt "STR_PRINTOPTUI_PRINTALLPAGES"
msgid "All ~Pages"
-msgstr ""
+msgstr "Totas las ~paginas"
#: sw/inc/strings.hrc:612
msgctxt "STR_PRINTOPTUI_PRINTPAGES"
msgid "Pa~ges:"
-msgstr ""
+msgstr "Pa~ginas :"
#: sw/inc/strings.hrc:613
msgctxt "STR_PRINTOPTUI_PRINTEVENPAGES"
msgid "~Even pages"
-msgstr ""
+msgstr "Paginas par~as"
#: sw/inc/strings.hrc:614
msgctxt "STR_PRINTOPTUI_PRINTODDPAGES"
msgid "~Odd pages"
-msgstr ""
+msgstr "Paginas ~imparas"
#: sw/inc/strings.hrc:615
msgctxt "STR_PRINTOPTUI_PRINTSELECTION"
msgid "~Selection"
-msgstr ""
+msgstr "~Seleccion"
#: sw/inc/strings.hrc:616
msgctxt "STR_PRINTOPTUI_PLACE_MARGINS"
@@ -3958,7 +3958,7 @@ msgstr "Pas publicat"
#: sw/inc/strings.hrc:723
msgctxt "STR_AUTH_TYPE_EMAIL"
msgid "Email"
-msgstr ""
+msgstr "Corrièr electronic"
#: sw/inc/strings.hrc:724
msgctxt "STR_AUTH_TYPE_WWW"
@@ -4550,7 +4550,7 @@ msgstr "Capítol"
#: sw/inc/strings.hrc:855
msgctxt "STR_PAGENUMBERFLD"
msgid "Page number"
-msgstr ""
+msgstr "Numèro de pagina"
#: sw/inc/strings.hrc:856
msgctxt "STR_DOCSTATFLD"
@@ -4873,12 +4873,12 @@ msgstr "Tel. (Trabalh)"
#: sw/inc/strings.hrc:931
msgctxt "FLD_EU_FAX"
msgid "Fax"
-msgstr ""
+msgstr "Fax"
#: sw/inc/strings.hrc:932
msgctxt "FLD_EU_EMAIL"
msgid "Email"
-msgstr ""
+msgstr "Corrièr electronic"
#: sw/inc/strings.hrc:933
msgctxt "FLD_EU_STATE"
@@ -6164,7 +6164,7 @@ msgstr "Autocorreccion"
#: sw/inc/strings.hrc:1223
msgctxt "STR_REDLINE_FORMATTED"
msgid "Formats"
-msgstr ""
+msgstr "Formats"
#: sw/inc/strings.hrc:1224
msgctxt "STR_REDLINE_TABLECHG"
@@ -6950,22 +6950,22 @@ msgstr "Opcions de filtre ASCII"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:104
msgctxt "asciifilterdialog|label2"
msgid "_Character set:"
-msgstr ""
+msgstr "_Jòc de caractèrs :"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:118
msgctxt "asciifilterdialog|fontft"
msgid "Default fonts:"
-msgstr ""
+msgstr "Poliças per defaut :"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:132
msgctxt "asciifilterdialog|languageft"
msgid "Lan_guage:"
-msgstr ""
+msgstr "_Lenga :"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:146
msgctxt "asciifilterdialog|label5"
msgid "_Paragraph break:"
-msgstr ""
+msgstr "Saut de _paragraf :"
#: sw/uiconfig/swriter/ui/asciifilterdialog.ui:184
msgctxt "asciifilterdialog|crlf"
@@ -7012,12 +7012,12 @@ msgstr "Assignatz los camps a partir de la font de donadas per fin de metre los
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:185
msgctxt "assignfieldsdialog|ST_ADDRESSELEMENT"
msgid "Address elements"
-msgstr ""
+msgstr "Elements d'adreça"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:197
msgctxt "assignfieldsdialog|ST_PREVIEW"
msgid "Preview"
-msgstr ""
+msgstr "Previsualizacion"
#: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:210
msgctxt "assignfieldsdialog|ST_MATCHESTO"
@@ -7047,7 +7047,7 @@ msgstr "Dreita"
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:270
msgctxt "assignstylesdialog|stylecolumn"
msgid "Style"
-msgstr ""
+msgstr "Estil"
#: sw/uiconfig/swriter/ui/assignstylesdialog.ui:462
msgctxt "assignstylesdialog|label3"
@@ -11436,7 +11436,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/mmmailbody.ui:8
msgctxt "mmmailbody|MailBodyDialog"
msgid "Email Message"
-msgstr ""
+msgstr "Messatge de corrièr electronic"
#: sw/uiconfig/swriter/ui/mmmailbody.ui:90
msgctxt "mmmailbody|bodyft"
@@ -11511,12 +11511,12 @@ msgstr "_Letra"
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:94
msgctxt "mmoutputtypepage|email"
msgid "_Email message"
-msgstr ""
+msgstr "_Messatge de corrièr electronic"
#: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:134
msgctxt "mmoutputtypepage|label1"
msgid "What Type of Document Do You Want to Create?"
-msgstr ""
+msgstr "Quin tipe de document volètz crear ?"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:18
msgctxt "mmresultemaildialog|MMResultEmailDialog"
@@ -11586,7 +11586,7 @@ msgstr "Nom del fichièr _junt"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:276
msgctxt "mmresultemaildialog|label2"
msgid "Email options"
-msgstr ""
+msgstr "Opcions de corrièr electronic"
#: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:308
msgctxt "mmresultemaildialog|sendallrb"
@@ -11816,7 +11816,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/mmsendmails.ui:26
msgctxt "mmsendmails|stop"
msgid "_Pause"
-msgstr ""
+msgstr "_Pausa"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:88
msgctxt "mmsendmails|label3"
@@ -11996,411 +11996,411 @@ msgstr "Indèx personalizat novèl"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2193
msgctxt "WriterNotebookbar|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Fichièr"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2213
msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "A_juda"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Fichièr"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Origina"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Origina"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
-msgstr ""
+msgstr "_Mesa en pagina"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Mesa en pagina"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Referéncia_s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Referéncia~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revision"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Revision"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Afichar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Afichatge"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
-msgstr ""
+msgstr "_Tablèu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tablèu"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
-msgstr ""
+msgstr "Imat_ge"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Imat~ge"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
-msgstr ""
+msgstr "_Dessenh"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Dessenh"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objècte"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objècte"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
-msgstr ""
+msgstr "_Mèdia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Mèdia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
-msgstr ""
+msgstr "_Imprimir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
-msgstr ""
+msgstr "~Imprimir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulari"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmulari"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Aisinas"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Aisinas"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2395
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Fichièr"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Fichièr"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Origina"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Origina"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
-msgstr ""
+msgstr "Adaptacion"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
-msgstr ""
+msgstr "Mesa en pagina"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "~Mesa en pagina"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Referéncia_s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Referéncia~s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revision"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Revision"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Afichar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Afichatge"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_ablèu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tablèu"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
-msgstr ""
+msgstr "Imatge"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Imat~ge"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Dessenha_r"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Dessenhar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
-msgstr ""
+msgstr "Objècte"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objècte"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "_Mèdia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Mèdia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
-msgstr ""
+msgstr "Imprimir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "Im~primir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulari"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmulari"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Aisinas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "~Aisinas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
-msgstr ""
+msgstr "Barra de menús"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3123
msgctxt "notebookbar_groupedbar_compact|MenubarView"
msgid "Menubar"
-msgstr ""
+msgstr "Barra de menús"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3341
msgctxt "notebookbar_groupedbar_compact|MenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Menú"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3443
msgctxt "notebookbar_groupedbar_compact|FileButton"
msgid "_File"
-msgstr ""
+msgstr "_Fichièr"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3557
msgctxt "notebookbar_groupedbar_compact|EditButton"
msgid "_Edit"
-msgstr ""
+msgstr "_Editar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3657
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4859
msgctxt "notebookbar_groupedbar_compact|StyleButton"
msgid "St_yles"
-msgstr ""
+msgstr "Est_ils"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3845
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5046
msgctxt "notebookbar_groupedbar_compact|FormatButton"
msgid "F_ont"
-msgstr ""
+msgstr "_Poliça"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4102
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5303
msgctxt "notebookbar_groupedbar_compact|ParagraphButton"
msgid "_Paragraph"
-msgstr ""
+msgstr "_Paragraf"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4264
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6048
msgctxt "notebookbar_groupedbar_compact|InsertButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserir"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4415
msgctxt "notebookbar_groupedbar_compact|ReferenceButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Referéncia_s"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4529
msgctxt "notebookbar_groupedbar_compact|ReviewButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revision"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4643
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9745
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11431
msgctxt "notebookbar_groupedbar_compact|ViewButton"
msgid "_View"
-msgstr ""
+msgstr "_Afichar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4755
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11561
msgctxt "notebookbar_groupedbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulari"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5550
msgctxt "notebookbar_groupedbar_compact|rowscolumnst"
msgid "_Table"
-msgstr ""
+msgstr "_Tablèu"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:5934
msgctxt "notebookbar_groupedbar_compact|CalculateButton"
msgid "_Calc"
-msgstr ""
+msgstr "_Calc"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6197
msgctxt "notebookbar_groupedbar_compact|editdrawb"
msgid "D_raw"
-msgstr ""
+msgstr "Dessenha_r"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6579
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8057
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8885
msgctxt "notebookbar_groupedbar_compact|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "Organi_zar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:6949
msgctxt "notebookbar_groupedbar_compact|draw"
msgid "_Shape"
-msgstr ""
+msgstr "_Forma"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7111
msgctxt "notebookbar_groupedbar_compact|viewDrawb"
@@ -12415,142 +12415,142 @@ msgstr "3_D"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7409
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Fontwork"
-msgstr ""
+msgstr "_Fontwork"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7523
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8608
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9631
msgctxt "notebookbar_groupedbar_compact|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_Grasilha"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:7664
msgctxt "notebookbar_groupedbar_compact|ImageButton"
msgid "_Image"
-msgstr ""
+msgstr "_Imatge"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8332
msgctxt "notebookbar_groupedbar_compact|ColorButton"
msgid "C_olor"
-msgstr ""
+msgstr "C_olor"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:8750
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Object"
-msgstr ""
+msgstr "_Objècte"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "_Quadre"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "_Media"
-msgstr ""
+msgstr "_Mèdia"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10402
msgctxt "notebookbar_groupedbar_compact|PrintMenuButton"
msgid "_Layout"
-msgstr ""
+msgstr "_Mesa en pagina"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10804
msgctxt "notebookbar_groupedbar_compact|PrintMenuButton"
msgid "_Print"
-msgstr ""
+msgstr "_Imprimir"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:10952
msgctxt "notebookbar_groupedbar_compact|LanguageButton"
msgid "_Language"
-msgstr ""
+msgstr "_Lenga"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11080
msgctxt "notebookbar_groupedbar_compact|reviewButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revision"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11219
msgctxt "notebookbar_groupedbar_compact|CommentsButton"
msgid "_Comments"
-msgstr ""
+msgstr "_Comentaris"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11325
msgctxt "notebookbar_groupedbar_compact|CompareButton"
msgid "Com_pare"
-msgstr ""
+msgstr "Com_parar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2677
msgctxt "notebookbar_groupedbar_full|MenubarAction"
msgid "Menubar"
-msgstr ""
+msgstr "Barra de menús"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3273
msgctxt "notebookbar_groupedbar_full|MenubarView"
msgid "Menubar"
-msgstr ""
+msgstr "Barra de menús"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3453
msgctxt "notebookbar_groupedbar_full|MenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Menú"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3506
msgctxt "notebookbar_groupedbar_full|ToolsButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Aisinas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3561
msgctxt "notebookbar_groupedbar_full|HelpButton"
msgid "_Help"
-msgstr ""
+msgstr "A_juda"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3669
msgctxt "notebookbar_groupedbar_full|FileButton"
msgid "_File"
-msgstr ""
+msgstr "_Fichièr"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3907
msgctxt "notebookbar_groupedbar_full|EditButton"
msgid "_Edit"
-msgstr ""
+msgstr "_Editar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4104
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6843
msgctxt "notebookbar_groupedbar_full|StyleButton"
msgid "St_yles"
-msgstr ""
+msgstr "Est_ils"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4389
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7128
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11683
msgctxt "notebookbar_groupedbar_full|FormatButton"
msgid "F_ormat"
-msgstr ""
+msgstr "F_ormat"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4728
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7467
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11948
msgctxt "notebookbar_groupedbar_full|ParagraphButton"
msgid "_Paragraph"
-msgstr ""
+msgstr "_Paragraf"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:4967
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12279
msgctxt "notebookbar_groupedbar_full|InsertButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserir"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5196
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8780
msgctxt "notebookbar_groupedbar_full|ReferenceButton"
msgid "Referen_ce"
-msgstr ""
+msgstr "Referén_cia"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5398
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9146
msgctxt "notebookbar_groupedbar_full|ReviewButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revision"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5548
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9712
@@ -12558,106 +12558,106 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14135
msgctxt "notebookbar_groupedbar_full|ViewButton"
msgid "_View"
-msgstr ""
+msgstr "_Afichar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5810
msgctxt "notebookbar_groupedbar_full|GraphicButton"
msgid "Image"
-msgstr ""
+msgstr "Imatge"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6241
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10828
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13235
msgctxt "notebookbar_groupedbar_full|ArrangeButton"
msgid "_Arrange"
-msgstr ""
+msgstr "_Organizar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6414
msgctxt "notebookbar_groupedbar_full|ColorButton"
msgid "C_olor"
-msgstr ""
+msgstr "C_olor"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:6665
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10995
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13985
msgctxt "notebookbar_groupedbar_full|GridButton"
msgid "_Grid"
-msgstr ""
+msgstr "_Grasilha"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7692
msgctxt "notebookbar_groupedbar_full|TableButton"
msgid "T_able"
-msgstr ""
+msgstr "T_ablèu"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:7891
msgctxt "notebookbar_groupedbar_full|RowsColumnsButton"
msgid "R_ows"
-msgstr ""
+msgstr "_Linhas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8093
msgctxt "notebookbar_groupedbar_full|MergeButton"
msgid "_Merge"
-msgstr ""
+msgstr "_Fusionar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8322
msgctxt "notebookbar_groupedbar_full|SelectButton"
msgid "Sele_ct"
-msgstr ""
+msgstr "Sele_ccionar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8551
msgctxt "notebookbar_groupedbar_full|CalculateButton"
msgid "_Calc"
-msgstr ""
+msgstr "_Calc"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8917
msgctxt "notebookbar_groupedbar_full|LanguageButton"
msgid "_Language"
-msgstr ""
+msgstr "_Lenga"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9359
msgctxt "notebookbar_groupedbar_full|CommentsButton"
msgid "_Comments"
-msgstr ""
+msgstr "_Comentaris"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9562
msgctxt "notebookbar_groupedbar_full|CompareButton"
msgid "Com_pare"
-msgstr ""
+msgstr "Com_parar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10158
msgctxt "notebookbar_groupedbar_full|DrawButton"
msgid "D_raw"
-msgstr ""
+msgstr "Dessenha_r"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:10527
msgctxt "notebookbar_groupedbar_full|DrawEditButton"
msgid "_Edit"
-msgstr ""
+msgstr "_Editar"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11197
msgctxt "notebookbar_groupedbar_full|GroupButton"
msgid "Grou_p"
-msgstr ""
+msgstr "Agro_par"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:11374
msgctxt "notebookbar_groupedbar_full|3DButton"
msgid "3_D"
-msgstr ""
+msgstr "3_D"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12727
msgctxt "notebookbar_groupedbar_full|MediaButton"
msgid "_Media"
-msgstr ""
+msgstr "_Mèdia"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objècte"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "F_rame"
-msgstr ""
+msgstr "_Quadre"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14351
msgctxt "notebookbar_groupedbar_full|PrintMenuButton"
@@ -12667,7 +12667,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:14836
msgctxt "notebookbar_groupedbar_full|PrintMenuButton"
msgid "_Print"
-msgstr ""
+msgstr "_Imprimir"
#: sw/uiconfig/swriter/ui/notebookbar_groups.ui:34
msgctxt "notebookbar_groups|imagestyledefault"
@@ -13017,7 +13017,7 @@ msgstr "Nivèl de plan :"
#: sw/uiconfig/swriter/ui/numparapage.ui:67
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
msgid "Text Body"
-msgstr ""
+msgstr "Còs de tèxte"
#: sw/uiconfig/swriter/ui/numparapage.ui:68
msgctxt "numparapage|comboLB_OUTLINE_LEVEL"
@@ -13365,8 +13365,8 @@ msgstr "Aumentar l'espaci entre los mots sus las linhas amb un saut de linha din
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Protegir lo formulari"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -13486,7 +13486,7 @@ msgstr "Sa_uts"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:134
msgctxt "optformataidspage|hiddentext"
msgid "Hidden characters"
-msgstr ""
+msgstr "Caractèrs amagats"
#: sw/uiconfig/swriter/ui/optformataidspage.ui:216
msgctxt "optformataidspage|displayfl"
@@ -14710,7 +14710,7 @@ msgstr "Contraròtles de formulari"
#: sw/uiconfig/swriter/ui/printeroptions.ui:118
msgctxt "printeroptions|formcontrols"
msgid "Comments:"
-msgstr ""
+msgstr "Comentaris :"
#: sw/uiconfig/swriter/ui/printeroptions.ui:154
msgctxt "printeroptions|label4"
@@ -15058,17 +15058,17 @@ msgstr ""
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:26
msgctxt "queryredlinedialog|cancel"
msgid "Reject All"
-msgstr ""
+msgstr "Regetar tot"
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:39
msgctxt "queryredlinedialog|ok"
msgid "Accept All"
-msgstr ""
+msgstr "Acceptar tot"
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:55
msgctxt "queryredlinedialog|edit"
msgid "Edit Changes"
-msgstr ""
+msgstr "Editar las modificacions"
#: sw/uiconfig/swriter/ui/queryrotateintostandarddialog.ui:7
msgctxt "queryrotateintostandarddialog|QueryRotateIntoStandardOrientationDialog"
@@ -16646,47 +16646,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Ensenhador, indèx o bibliografia"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Apercebut"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Apercebut"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipe"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entradas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Estils"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Colomnas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Rèireplan"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Apercebut"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Nivè_l"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tipe"
@@ -16916,302 +16916,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "E_ditar..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Títol :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipe :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Ensenhador"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Indèx lexical"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Indèx dels tablèus"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Indèx personalizat"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Indèx dels objèctes"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protegit contra totas las modificacions manualas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipe e títol"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Per :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Document entièr"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capítol"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evaluar fins al nivèl :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Contorn"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Marcas d'indèx"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Taulas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "_Quadres de tèxte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Imatges"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Objèctes OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Utilizar lo nivèl del capítol d'origina"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Estils _suplementaris"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Est_ils"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Assignar los estils..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Legendas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Noms d'objècte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categoria :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Afichar :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referéncias"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categoria e numèro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Tèxte de legenda"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Crear a partir de"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Crear a partir dels objèctes seguents"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Acoladas :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Entradas _numericas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[pas cap]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatatge de las entradas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Regropar las entradas identicas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Amb _sv"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Amb -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Respectar la cassa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Entradas en majusculas (autom.)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Claus coma entradas separadas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Fichièr de _concordància"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Fichièr"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opcions"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Lenga :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipe de clau :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Triar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Nivèls"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "E_stil de paragraf"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Per _defaut"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Editar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Assignacion"
diff --git a/source/oc/vcl/messages.po b/source/oc/vcl/messages.po
index 9a31e43f189..473a92a84ee 100644
--- a/source/oc/vcl/messages.po
+++ b/source/oc/vcl/messages.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2018-11-12 12:08+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-14 13:16+0000\n"
+"Last-Translator: Cédric Valmary <cvalmary@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: oc\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1542024501.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557839768.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -115,7 +115,7 @@ msgstr "Diapo"
#: vcl/inc/print.hrc:47
msgctxt "RID_STR_PAPERNAMES"
msgid "Screen 4:3"
-msgstr ""
+msgstr "Ecran 4:3"
#: vcl/inc/print.hrc:48
msgctxt "RID_STR_PAPERNAMES"
@@ -145,12 +145,12 @@ msgstr ""
#: vcl/inc/print.hrc:53
msgctxt "RID_STR_PAPERNAMES"
msgid "#8 (Monarch) Envelope"
-msgstr "#8 (Monarch) Envelopa"
+msgstr "#8 (Monarch) Envolopa"
#: vcl/inc/print.hrc:54
msgctxt "RID_STR_PAPERNAMES"
msgid "#6 3/4 (Personal) Envelope"
-msgstr "#6 3/4 (Personal) Envelopa"
+msgstr "#6 3/4 (Personal) Envolopa"
#: vcl/inc/print.hrc:55
msgctxt "RID_STR_PAPERNAMES"
@@ -175,7 +175,7 @@ msgstr "#12 Envolopa"
#: vcl/inc/print.hrc:59
msgctxt "RID_STR_PAPERNAMES"
msgid "16 Kai (16k)"
-msgstr ""
+msgstr "16 Kai (16k)"
#: vcl/inc/print.hrc:60
msgctxt "RID_STR_PAPERNAMES"
@@ -205,22 +205,22 @@ msgstr "B6 (JIS)"
#: vcl/inc/print.hrc:65
msgctxt "RID_STR_PAPERNAMES"
msgid "Ledger"
-msgstr ""
+msgstr "Libre de comptes"
#: vcl/inc/print.hrc:66
msgctxt "RID_STR_PAPERNAMES"
msgid "Statement"
-msgstr ""
+msgstr "Expression"
#: vcl/inc/print.hrc:67
msgctxt "RID_STR_PAPERNAMES"
msgid "Quarto"
-msgstr ""
+msgstr "Quarto"
#: vcl/inc/print.hrc:68
msgctxt "RID_STR_PAPERNAMES"
msgid "10x14"
-msgstr ""
+msgstr "10x14"
#: vcl/inc/print.hrc:69
msgctxt "RID_STR_PAPERNAMES"
@@ -255,42 +255,42 @@ msgstr "Carta postala japanesa"
#: vcl/inc/print.hrc:75
msgctxt "RID_STR_PAPERNAMES"
msgid "9x11"
-msgstr ""
+msgstr "9x11"
#: vcl/inc/print.hrc:76
msgctxt "RID_STR_PAPERNAMES"
msgid "10x11"
-msgstr ""
+msgstr "10x11"
#: vcl/inc/print.hrc:77
msgctxt "RID_STR_PAPERNAMES"
msgid "15x11"
-msgstr ""
+msgstr "15x11"
#: vcl/inc/print.hrc:78
msgctxt "RID_STR_PAPERNAMES"
msgid "Invitation Envelope"
-msgstr ""
+msgstr "Envolopa de convit"
#: vcl/inc/print.hrc:79
msgctxt "RID_STR_PAPERNAMES"
msgid "SuperA"
-msgstr ""
+msgstr "SuperA"
#: vcl/inc/print.hrc:80
msgctxt "RID_STR_PAPERNAMES"
msgid "SuperB"
-msgstr ""
+msgstr "SuperB"
#: vcl/inc/print.hrc:81
msgctxt "RID_STR_PAPERNAMES"
msgid "Letter Plus"
-msgstr ""
+msgstr "Letter Plus"
#: vcl/inc/print.hrc:82
msgctxt "RID_STR_PAPERNAMES"
msgid "A4 Plus"
-msgstr ""
+msgstr "A4 Plus"
#: vcl/inc/print.hrc:83
msgctxt "RID_STR_PAPERNAMES"
@@ -300,133 +300,133 @@ msgstr ""
#: vcl/inc/print.hrc:84
msgctxt "RID_STR_PAPERNAMES"
msgid "A6"
-msgstr ""
+msgstr "A6"
#: vcl/inc/print.hrc:85
msgctxt "RID_STR_PAPERNAMES"
msgid "12x11"
-msgstr ""
+msgstr "12x11"
#: vcl/inc/print.hrc:86
msgctxt "RID_STR_PAPERNAMES"
msgid "A7"
-msgstr ""
+msgstr "A7"
#: vcl/inc/print.hrc:87
msgctxt "RID_STR_PAPERNAMES"
msgid "A8"
-msgstr ""
+msgstr "A8"
#: vcl/inc/print.hrc:88
msgctxt "RID_STR_PAPERNAMES"
msgid "A9"
-msgstr ""
+msgstr "A9"
#: vcl/inc/print.hrc:89
msgctxt "RID_STR_PAPERNAMES"
msgid "A10"
-msgstr ""
+msgstr "A10"
#: vcl/inc/print.hrc:90
msgctxt "RID_STR_PAPERNAMES"
msgid "B0 (ISO)"
-msgstr ""
+msgstr "B0 (ISO)"
#: vcl/inc/print.hrc:91
msgctxt "RID_STR_PAPERNAMES"
msgid "B1 (ISO)"
-msgstr ""
+msgstr "B1 (ISO)"
#: vcl/inc/print.hrc:92
msgctxt "RID_STR_PAPERNAMES"
msgid "B2 (ISO)"
-msgstr ""
+msgstr "B2 (ISO)"
#: vcl/inc/print.hrc:93
msgctxt "RID_STR_PAPERNAMES"
msgid "B3 (ISO)"
-msgstr ""
+msgstr "B3 (ISO)"
#: vcl/inc/print.hrc:94
msgctxt "RID_STR_PAPERNAMES"
msgid "B7 (ISO)"
-msgstr ""
+msgstr "B7 (ISO)"
#: vcl/inc/print.hrc:95
msgctxt "RID_STR_PAPERNAMES"
msgid "B8 (ISO)"
-msgstr ""
+msgstr "B8 (ISO)"
#: vcl/inc/print.hrc:96
msgctxt "RID_STR_PAPERNAMES"
msgid "B9 (ISO)"
-msgstr ""
+msgstr "B9 (ISO)"
#: vcl/inc/print.hrc:97
msgctxt "RID_STR_PAPERNAMES"
msgid "B10 (ISO)"
-msgstr ""
+msgstr "B10 (ISO)"
#: vcl/inc/print.hrc:98
msgctxt "RID_STR_PAPERNAMES"
msgid "C2 Envelope"
-msgstr ""
+msgstr "Envolopa C2"
#: vcl/inc/print.hrc:99
msgctxt "RID_STR_PAPERNAMES"
msgid "C7 Envelope"
-msgstr ""
+msgstr "Envolopa C7"
#: vcl/inc/print.hrc:100
msgctxt "RID_STR_PAPERNAMES"
msgid "C8 Envelope"
-msgstr ""
+msgstr "Envolopa C8"
#: vcl/inc/print.hrc:101
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch A"
-msgstr ""
+msgstr "Arch A"
#: vcl/inc/print.hrc:102
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch B"
-msgstr ""
+msgstr "Arch B"
#: vcl/inc/print.hrc:103
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch C"
-msgstr ""
+msgstr "Arch C"
#: vcl/inc/print.hrc:104
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch D"
-msgstr ""
+msgstr "Arch D"
#: vcl/inc/print.hrc:105
msgctxt "RID_STR_PAPERNAMES"
msgid "Arch E"
-msgstr ""
+msgstr "Arch E"
#: vcl/inc/print.hrc:106
msgctxt "RID_STR_PAPERNAMES"
msgid "Screen 16:9"
-msgstr ""
+msgstr "Ecran 16:9"
#: vcl/inc/print.hrc:107
msgctxt "RID_STR_PAPERNAMES"
msgid "Screen 16:10"
-msgstr ""
+msgstr "Ecran 16:10"
#: vcl/inc/print.hrc:108
msgctxt "RID_STR_PAPERNAMES"
msgid "16k (195 x 270)"
-msgstr ""
+msgstr "16k (195 x 270)"
#. To translators: This is the last entry of the sequence of paper size names
#: vcl/inc/print.hrc:110
msgctxt "RID_STR_PAPERNAMES"
msgid "16k (197 x 273)"
-msgstr ""
+msgstr "16k (197 x 273)"
#: vcl/inc/printaccessoryview.hrc:27
msgctxt "SV_PRINT_NATIVE_STRINGS"
@@ -751,7 +751,7 @@ msgstr "Enregistrar amb ~senhal"
#: vcl/inc/strings.hrc:93
msgctxt "STR_FPICKER_GPGENCRYPT"
msgid "Encrypt with ~GPG key"
-msgstr ""
+msgstr "Chifrar amb una clau ~GPG"
#: vcl/inc/strings.hrc:94
msgctxt "STR_FPICKER_FILTER_OPTIONS"
@@ -796,7 +796,7 @@ msgstr "Estil de quadre : "
#: vcl/inc/strings.hrc:102
msgctxt "STR_FPICKER_IMAGE_ANCHOR"
msgid "A~nchor: "
-msgstr ""
+msgstr "A~ncorar :"
#: vcl/inc/strings.hrc:103
msgctxt "STR_FPICKER_SELECTION"
@@ -972,22 +972,22 @@ msgstr ""
#: vcl/inc/strings.hrc:145
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
-msgstr ""
+msgstr "Camp void"
#: vcl/inc/strings.hrc:147
msgctxt "STR_SVT_CALENDAR_DAY"
msgid "Day"
-msgstr ""
+msgstr "Jorn"
#: vcl/inc/strings.hrc:148
msgctxt "STR_SVT_CALENDAR_WEEK"
msgid "Week"
-msgstr ""
+msgstr "Setmana"
#: vcl/inc/strings.hrc:149
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
-msgstr ""
+msgstr "Uèi"
#. To translators: This is the first entry of a sequence of measurement unit names
#: vcl/inc/units.hrc:28
@@ -1270,22 +1270,22 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:56
msgctxt "STR_FONT_FEATURE_ID_JP04"
msgid "JIS2004 Forms"
-msgstr ""
+msgstr "Formas JIS2004"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:57
msgctxt "STR_FONT_FEATURE_ID_JP78"
msgid "JIS78 Forms"
-msgstr ""
+msgstr "Formas JIS78"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:58
msgctxt "STR_FONT_FEATURE_ID_JP83"
msgid "JIS83 Forms"
-msgstr ""
+msgstr "Formas JIS83"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:59
msgctxt "STR_FONT_FEATURE_ID_JP90"
msgid "JIS90 Forms"
-msgstr ""
+msgstr "Formas JIS90"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:60
msgctxt "STR_FONT_FEATURE_ID_KERN"
@@ -1325,7 +1325,7 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:67
msgctxt "STR_FONT_FEATURE_ID_NUMR"
msgid "Numerators"
-msgstr ""
+msgstr "Numeradors"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:68
msgctxt "STR_FONT_FEATURE_ID_ONUM"
@@ -1340,12 +1340,12 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:70
msgctxt "STR_FONT_FEATURE_ID_ORDN"
msgid "Ordinals"
-msgstr ""
+msgstr "Ordinals"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:71
msgctxt "STR_FONT_FEATURE_ID_ORNM"
msgid "Ornaments"
-msgstr ""
+msgstr "Ornaments"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:72
msgctxt "STR_FONT_FEATURE_ID_PALT"
@@ -1415,22 +1415,22 @@ msgstr ""
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:85
msgctxt "STR_FONT_FEATURE_ID_SUBS"
msgid "Subscript"
-msgstr ""
+msgstr "Indici"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:86
msgctxt "STR_FONT_FEATURE_ID_SUPS"
msgid "Superscript"
-msgstr ""
+msgstr "Exponent "
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:87
msgctxt "STR_FONT_FEATURE_ID_SWSH"
msgid "Swash"
-msgstr ""
+msgstr "Florituras"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:88
msgctxt "STR_FONT_FEATURE_ID_TITL"
msgid "Titling"
-msgstr ""
+msgstr "Títol"
#: vcl/inc/font/OpenTypeFeatureStrings.hrc:89
msgctxt "STR_FONT_FEATURE_ID_TNAM"
diff --git a/source/om/cui/messages.po b/source/om/cui/messages.po
index dc0bd2c55ef..4900157618d 100644
--- a/source/om/cui/messages.po
+++ b/source/om/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1662,107 +1662,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Daanga Hin Saraarin."
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Daanga Ala Qofa Saraari"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Daanga Ala fi Sarara Ciisaa Saraari"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Daanga Ala fi Sararoota Keessa Qofa Saraari"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Daanga Ala Sarari osoo Sararoota Keessa hin Jijjiirin"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Sarara Diyaagonalii Qofa Sireessi"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Dangaa Afranuu Saraari"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Daanga Bitaa fi Mirgaa qofa Sarari "
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Daanga gubba fi Jalaa qofa Sarari"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Daanga Bitaa qofa Sarari"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Daanga gubba fi Jalaa, akkasumas Sararoota keessa Hunda Sarari"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Daanga Bitaa fi Mirgaa, akkasumas Sararoota keessa Hunda Sarari"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Gaaddidduu Malee"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Gaaddidu gara Miil Mirgaa Jalatti godhii"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Gaaddidu gara Miil Mirgaa Gubaatti godhii"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Gaaddidu gara Miil Bitaa Jalatti godhii"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Gaaddidu gara Miil Bitaa Gubaattii godhii"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1805,7 +1800,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1925,7 +1920,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2165,7 +2160,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2420,12 +2415,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2495,7 +2490,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2575,7 +2570,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2816,7 +2811,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3455,68 +3450,73 @@ msgid "About %PRODUCTNAME"
msgstr "Waayee %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Iddoola saaphaphuu koo"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAMEtti dhufte"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3641,19 +3641,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Bakka buusi"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Bakka buusi"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Dalgee"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4530,6 +4530,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5723,29 +5883,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Amaloota"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Goodayyaa:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Maqaa"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9549,86 +9709,86 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Gargaarsa"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Qaaqota %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Qaaqota %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Maqaa\tHaalojii Galmee"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "fi"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Yeroo Eegala Sirnaa %PRODUCTNAME Fe'i"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "DafeeKaasaa kabala sirnaa dhaamsi"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11598,24 +11758,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12283,102 +12428,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13453,27 +13502,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/om/extensions/messages.po b/source/om/extensions/messages.po
index 41ec60dfb3c..e5d59fff754 100644
--- a/source/om/extensions/messages.po
+++ b/source/om/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3246,191 +3246,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Teessuma tarjaa gabatee %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Maqaa gabaabaatti"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Barreessaa(ituu)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Maxxansaa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Boqonnaa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Gulaalaa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Akaakuu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Waggaa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Mataduree"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Teessoo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Fuula(ota)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Maxxansa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Mataduree kitaabaa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Qabiyyee"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Akaakuu maxxansaa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Dhaabbata"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Dhaabbata"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uniivarsitii"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Akaakuu gabaasaa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Ji'a"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Kitaabee"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Lakkoofsa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Walfaannee"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Ibsa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Yaadannoo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Dirree hiika-fayyadamaa 1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Dirree hiika-fayyadamaa 2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Dirree hiika-fayyadamaa 3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Dirree hiika-fayyadamaa 4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Dirree hiika-fayyadamaa 5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3613,31 +3613,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Dirreewwa kornyeessi"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Yaada dhiyeessi"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Deetaa baldhintaa waa'ee kuusaa ammaa kan unka hundataa agarsiisuuf unka xiqqaa fayyadamuun ni danda'ama. Kana gochuuf, tarjaalee unka xiqqaa keessaa isa kamtu tarjaalee unka hundataa keessaa isa kam waliin akka walsimu murteessuu ni dandeessa."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Moggaasa"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/om/helpcontent2/source/auxiliary.po b/source/om/helpcontent2/source/auxiliary.po
index 8d18d42a08b..e97cd3b1619 100644
--- a/source/om/helpcontent2/source/auxiliary.po
+++ b/source/om/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -271,6 +271,118 @@ msgctxt ""
msgid "General Information"
msgstr ""
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -500,7 +612,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -546,30 +658,6 @@ msgstr "Kamshaalee"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Baafattoota"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Kamshaalee"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -610,17 +698,9 @@ msgstr ""
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr ""
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Text in Presentations"
msgstr ""
#: simpress.tree
diff --git a/source/om/helpcontent2/source/text/sbasic/guide.po b/source/om/helpcontent2/source/text/sbasic/guide.po
index 023d1050ed8..208eab072d0 100644
--- a/source/om/helpcontent2/source/text/sbasic/guide.po
+++ b/source/om/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -167,6 +167,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -516,16 +540,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Opening a Dialog With Program Code"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>moojuulii/qaaqa ceetuu</bookmark_value><bookmark_value>qaaqalee;lakkadda sagantaa gargaaramuun agarsiisuu (fakkeenya)</bookmark_value><bookmark_value>fakkeenyota; qaaqa lakkadda sagantaa gargaaramuun agarsiisuu</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/sbasic/python.po b/source/om/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/om/helpcontent2/source/text/sbasic/python.po
+++ b/source/om/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/om/helpcontent2/source/text/sbasic/shared.po b/source/om/helpcontent2/source/text/sbasic/shared.po
index 31aec1b2505..bdababe69cc 100644
--- a/source/om/helpcontent2/source/text/sbasic/shared.po
+++ b/source/om/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36196,8 +36196,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">Gargaarsa %PRODUCTNAME Basic </link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/sbasic/shared/03.po b/source/om/helpcontent2/source/text/sbasic/shared/03.po
index 4283ec4c648..2654f01a30b 100644
--- a/source/om/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/om/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -346,6 +346,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/om/helpcontent2/source/text/scalc/01.po b/source/om/helpcontent2/source/text/scalc/01.po
index bbb20903805..c059ee3f716 100644
--- a/source/om/helpcontent2/source/text/scalc/01.po
+++ b/source/om/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 13:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40948,8 +40948,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Galmee deetaa saaguu barbaaddee qabatee kaa'i.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40980,7 +40980,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41004,8 +41004,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Gabatee ykn hangii deetaa saaguu barbaaddu galchi.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46292,8 +46292,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Hammanga man'ee kan hammangawwan man'ee sanduuqa <emph>Hammanga gamtaa'inaa</emph> keessatti tarreeffan wajjin gamteessuu barbaaddee ifteessa.Hammanga man'ee wardii kessaa fili,sana booda<emph>ida'i</emph> cuqaasi.Akkasumas maqaa man'ee durmurtawaa tarree <emph>Hammanga deetaa maddaa</emph> irraa filuu dandeessa.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/om/helpcontent2/source/text/schart/00.po b/source/om/helpcontent2/source/text/schart/00.po
index 13f468d1af6..abb4806af92 100644
--- a/source/om/helpcontent2/source/text/schart/00.po
+++ b/source/om/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -484,7 +484,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -492,5 +492,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/om/helpcontent2/source/text/shared/00.po b/source/om/helpcontent2/source/text/shared/00.po
index 78b915465a2..5f073d43734 100644
--- a/source/om/helpcontent2/source/text/shared/00.po
+++ b/source/om/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7562,14 +7562,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/om/helpcontent2/source/text/shared/01.po b/source/om/helpcontent2/source/text/shared/01.po
index 2972664946e..d903a05b70a 100644
--- a/source/om/helpcontent2/source/text/shared/01.po
+++ b/source/om/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6250,6 +6250,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/om/helpcontent2/source/text/shared/02.po b/source/om/helpcontent2/source/text/shared/02.po
index 8800f8565d0..77cc966389e 100644
--- a/source/om/helpcontent2/source/text/shared/02.po
+++ b/source/om/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 13:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3836,7 +3836,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/om/helpcontent2/source/text/shared/guide.po b/source/om/helpcontent2/source/text/shared/guide.po
index bdbbabe4808..4af3509eb5a 100644
--- a/source/om/helpcontent2/source/text/shared/guide.po
+++ b/source/om/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3098,14 +3098,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3114,14 +3106,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3130,14 +3114,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3146,14 +3122,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3162,14 +3130,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3178,14 +3138,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3194,14 +3146,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3210,14 +3154,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3226,14 +3162,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3290,14 +3218,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3306,14 +3226,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3322,14 +3234,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3346,14 +3250,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3362,14 +3258,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3378,14 +3266,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3394,14 +3274,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3410,14 +3282,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3426,14 +3290,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3458,14 +3314,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3474,14 +3322,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3490,14 +3330,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3506,14 +3338,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3522,14 +3346,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3538,14 +3354,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3554,14 +3362,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3570,14 +3370,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3586,14 +3378,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3602,14 +3386,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3618,14 +3394,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3634,14 +3402,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3650,14 +3410,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3666,14 +3418,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3682,14 +3426,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3698,14 +3434,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3714,14 +3442,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3730,14 +3450,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3794,14 +3506,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3810,14 +3514,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3826,14 +3522,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3842,14 +3530,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3858,14 +3538,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3874,14 +3546,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3898,14 +3562,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3914,14 +3570,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3930,14 +3578,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3946,14 +3586,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3962,14 +3594,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3978,14 +3602,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4010,14 +3626,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4026,14 +3634,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4058,14 +3658,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4074,14 +3666,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4090,14 +3674,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4106,14 +3682,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4122,14 +3690,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4138,14 +3698,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4154,14 +3706,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4186,14 +3730,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4202,14 +3738,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4218,14 +3746,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4234,14 +3754,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4250,14 +3762,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4346,14 +3850,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4378,14 +3874,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4394,14 +3882,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4410,14 +3890,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4442,14 +3914,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4458,14 +3922,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4474,14 +3930,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4490,14 +3938,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4538,14 +3978,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4554,14 +3986,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4570,14 +3994,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4586,14 +4002,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4602,14 +4010,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4650,14 +4050,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4730,14 +4122,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4746,14 +4130,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4762,14 +4138,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4778,14 +4146,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4794,14 +4154,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4810,14 +4162,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4874,14 +4218,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4890,14 +4226,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4906,14 +4234,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4922,14 +4242,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4938,14 +4250,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4954,14 +4258,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4970,14 +4266,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4986,14 +4274,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5002,14 +4282,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5018,14 +4290,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5034,14 +4298,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5050,14 +4306,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5066,14 +4314,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5082,14 +4322,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5114,14 +4346,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5130,14 +4354,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5146,14 +4362,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5162,14 +4370,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5178,14 +4378,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5194,14 +4386,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5210,14 +4394,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5226,14 +4402,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5290,14 +4458,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5306,14 +4466,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5322,14 +4474,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5338,14 +4482,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5354,14 +4490,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5386,14 +4514,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5434,14 +4554,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5450,14 +4562,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5482,14 +4586,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5498,14 +4594,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5530,14 +4618,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5562,14 +4642,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5578,14 +4650,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5594,14 +4658,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5610,14 +4666,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5626,14 +4674,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5642,14 +4682,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5658,14 +4690,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5674,14 +4698,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5690,14 +4706,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5706,14 +4714,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5754,14 +4754,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5770,14 +4762,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5786,14 +4770,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5802,14 +4778,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5818,14 +4786,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5834,14 +4794,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5882,14 +4834,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5898,14 +4842,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5914,14 +4850,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5930,14 +4858,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5946,14 +4866,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5962,14 +4874,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5978,14 +4882,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5994,14 +4890,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6010,14 +4898,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6026,14 +4906,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6042,14 +4914,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6058,14 +4922,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6074,14 +4930,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6090,14 +4938,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6106,14 +4946,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6122,14 +4954,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6138,14 +4962,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6154,14 +4970,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6170,14 +4978,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6186,14 +4986,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6202,14 +4994,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6218,14 +5002,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6234,14 +5010,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6250,14 +5018,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6266,14 +5026,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6282,14 +5034,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6298,14 +5042,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6314,14 +5050,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6330,14 +5058,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6346,14 +5066,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6362,14 +5074,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6378,14 +5082,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6394,14 +5090,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6410,27 +5098,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/om/helpcontent2/source/text/shared/optionen.po b/source/om/helpcontent2/source/text/shared/optionen.po
index 982993d68e3..9f23e4bcd8d 100644
--- a/source/om/helpcontent2/source/text/shared/optionen.po
+++ b/source/om/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14783,182 +14783,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/om/helpcontent2/source/text/simpress/01.po b/source/om/helpcontent2/source/text/simpress/01.po
index 6008e67038f..e038c94be24 100644
--- a/source/om/helpcontent2/source/text/simpress/01.po
+++ b/source/om/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8180,7 +8180,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/om/helpcontent2/source/text/swriter/guide.po b/source/om/helpcontent2/source/text/swriter/guide.po
index 932211acbe2..e7c771308d4 100644
--- a/source/om/helpcontent2/source/text/swriter/guide.po
+++ b/source/om/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 13:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -228,15 +228,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "<emph>Kamshaa Durtii</emph> irratti, sajoo<emph> Naanna'aa</emph> cuqaasi <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\">Naanna'aa</alt></image> banuuf <emph>Sajoo</emph> cuqaasi."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -260,7 +260,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -292,7 +292,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -308,7 +308,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/om/officecfg/registry/data/org/openoffice/Office/UI.po b/source/om/officecfg/registry/data/org/openoffice/Office/UI.po
index e8e2899b552..fd2b1fce4df 100644
--- a/source/om/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/om/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23733,6 +23733,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26105,6 +26114,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26123,6 +26141,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/om/sc/messages.po b/source/om/sc/messages.po
index a2f6cca4da3..7642146863a 100644
--- a/source/om/sc/messages.po
+++ b/source/om/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15617,6 +15617,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16187,12 +16192,12 @@ msgstr "Dhangeessuu Otoolaa"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17498,90 +17503,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Cufi"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Kuusa Haaraa"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "Haaraa"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Haqi"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Bakkaddeebisi"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Kuusa kana dura"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Kuusa Itti aanaa"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Cufi"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Sakatta'i..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Hangiilee Kuusdeetaa"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19389,36 +19351,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Deetaa"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Tarjaa"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Tarree"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Kanaan Gurmeessi: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Iddinoota"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19565,167 +19532,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22375,17 +22344,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24385,111 +24364,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Fooddaa"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Mul'isi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Dhoksi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Citiinsa Fuulaa"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Taattoota"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Wantoota fakkasaa"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Mul'isi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Dhoksi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Mul'isi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Dhoksi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Mul'isi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Dhoksi"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Wantoota"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Guddisi"
diff --git a/source/om/scp2/source/ooo.po b/source/om/scp2/source/ooo.po
index 4b2f1e408bb..e1e8de6679b 100644
--- a/source/om/scp2/source/ooo.po
+++ b/source/om/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "Galmee Bani"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/om/scp2/source/winexplorerext.po b/source/om/scp2/source/winexplorerext.po
index 289680241c7..cf32d7bb9b5 100644
--- a/source/om/scp2/source/winexplorerext.po
+++ b/source/om/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 13:58+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: om\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369348373.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows Explorer odeeffannoo waa'ee galmeewwan %PRODUCTNAME, kan akka durargiiwwan thumbnail akka agarsiisu dandeessisa."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/om/sd/messages.po b/source/om/sd/messages.po
index 3d655564c2f..164efca1c7c 100644
--- a/source/om/sd/messages.po
+++ b/source/om/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2645,6 +2645,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3128,164 +3133,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4776,160 +4966,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/om/sfx2/messages.po b/source/om/sfx2/messages.po
index 980065d19e8..2e88b2e0c7e 100644
--- a/source/om/sfx2/messages.po
+++ b/source/om/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -905,11 +905,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Amala Haqi"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -919,28 +914,28 @@ msgstr ""
"Gatiin galfame akaakuu ifteeffameen wal hin gitu.\n"
"Gatiin kun akka barruutti olkaa'ama."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Faayiliin kun duraan jira. Irrabi?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Haaromsi"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Maqaan kun durumayyuu faayidaarra jira."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Haalatni kun hin jiru."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -950,7 +945,7 @@ msgstr ""
"Sababa haalatni kun wabii walxaxaa keessa galuuf,\n"
"akka haalata bu’uuraatti fayyaduu hin dandanda'u."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -959,7 +954,7 @@ msgstr ""
"Maqaan durumayyuu akka haalata durtiitti jira.\n"
"Maaloo maqaa biraa fili."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -967,96 +962,96 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Naanna'aa"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Dhugoomsa iggitaa fashalaa"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Ergi"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Bocquu"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Yaada Waa'ee Fooyya'aa Saagi"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Sadarkaawaa"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Haalata Guuta Dhangii"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Haalata Haaraa Filannoorra"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Haalatoota Haaromsi"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Dhuguma galmeessuu dhiisuu barbaaddaa? Kanneen hanga ammaa galmaa'an marti ni badu."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Galmeesuu dhiisi"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Qajojiiwwan fayyadama yeroo duraatiif jalqabamaa jiru."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1065,7 +1060,7 @@ msgstr ""
"Maxxansaan durtii homaatuu hin argaamne.\n"
"Maaloo maxxansaa filadhuutii lammata yaali."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1074,17 +1069,17 @@ msgstr ""
"Maxxansaa eegalu hin dandeenye.\n"
"Maaloo qindaayina maxxansaa keetii mirkaneeffadhu."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Maxxansaa jaatanaawaa"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (dubbis-qofa)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1095,7 +1090,7 @@ msgstr ""
"Qindaayinoota haaraa galmee kana keessa jiran\n"
"olkaa'uu barbaaddaa?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1106,7 +1101,7 @@ msgstr ""
"Qindaayinootni haaraan galmee ka'aa\n"
" kana keessatti haa olkaa'amanii?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1117,7 +1112,7 @@ msgstr ""
"Qindaayinoota haaraa galmee kana keessa jiran\n"
"olkaa'uu barbaaddaa?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1127,7 +1122,7 @@ msgstr ""
"Sababa hojiin maxxansaa adeemsifamaa jiruuf\n"
"galmeen kun cufamuu hin danda'u."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1135,7 +1130,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1143,18 +1138,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Galmeen kun gulaalamuu hin danda'u, kunis dhaba mirga gahiinsaan ta'uu danda'a. Garagalcha galmee kanaa gulaaluu feetaa?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1162,353 +1157,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (galmee suphame)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Galmee gulaali"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Galmee Faayilii"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Dirqaalaalee fooyinsaa"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Sochii Fakkinaa Maamiloo..."
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Balleessi"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1884,33 +1889,18 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Yaada fooyya'aa"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Maqaa"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Akaakuu"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Gatii"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Akaakuu"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
#, fuzzy
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Eeyyeen"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
#, fuzzy
msgctxt "cmisline|no"
msgid "No"
@@ -1921,17 +1911,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Maqaa"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Akaakuu"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Gatii"
@@ -2073,19 +2063,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Iddoo"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Akaakuu:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Iggitaa Jijjiiri..."
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2096,29 +2086,29 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Waliigala"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
#, fuzzy
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Malmallee"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2342,6 +2332,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/om/shell/messages.po b/source/om/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/om/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/om/starmath/messages.po b/source/om/starmath/messages.po
index d6b9e2195e1..fce4001ae63 100644
--- a/source/om/starmath/messages.po
+++ b/source/om/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1672,277 +1672,302 @@ msgid "Examples"
msgstr "Fakkeenya"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Durtii"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Mirgada"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Yabbuu"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "Gurraacha"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Cuquliisa"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Magariisa"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "Maagiintaa"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Fajajaa"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Yeeroo"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "Keelloo"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Dhoksi"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "Saayinii"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Bocquu"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "bitaa"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Wiirtuu"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "mirga"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Ajajoota"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Foormulaa"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Galmeen olkaa'amaa jira..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Foormulaa %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "DOGOGGORA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Arfii hin eegamne"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' tu eegama"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' tu eegama"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' tu eegama"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' tu eegama"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' tu eegama"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Halluun ni barbaachisa"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' tu eegama"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME Calc"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Qabeentoota"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Mataduree"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Barruu foormulaa"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Handaaraalee"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Hammamtaa"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Hammamtaa xabboo"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Fuulatti taasisi"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2017,6 +2042,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "miseensa"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/om/svtools/messages.po b/source/om/svtools/messages.po
index 825c226e1aa..795e150c453 100644
--- a/source/om/svtools/messages.po
+++ b/source/om/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1534 +15,1536 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195822.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Gaabbi: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Irradeebi'i: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Irradeebi'i: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Barruu hindhangi'amne"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Odeeffannoo haalojii geessituu keessaa Svx irraa"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Toorbarruu Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Dhangii kaadimaa Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Dhangii wanta Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Wanta Gargar Xiqqaa"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Wanta Plug-in"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Wanta StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Wanta StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Wanta StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Wanta StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Wanta StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Wanta StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Wanta StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Wanta StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Wanta StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Wanta StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Wanta StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Wanta StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Wanta StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Wanta StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Wanta StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Wanta StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Wanta StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Wanta StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Wanta StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Wanta StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Wanta StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Wanta StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Wanta StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Wanta StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Wanta maaykroosooft wordii"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Wants StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Wanta ofiis dokumantii"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Odeeffannoo galmee yaadannoolee"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Galmee Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Wanta StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Wanta Saxaatoo"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Galsarmee Wiindoowis"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Wanta madda deetaa"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Wanta gabatee deetaa"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Gaafataa SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Geessituu"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Dhangii yaadan alaa HTML"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Wanti % saagamuu hindandeenye."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Wanti galmee % irraa saagamuu hindandeenye."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Wantoota biroo"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Madda hinbeekkamne"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Maqaa"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Hammamtaa"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Baa jijjiirame"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Gosa"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Laklameewwan"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Dalga: %1, Tarjaa: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Gosa: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Doosee"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Galmee"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Dirree Duwwaa"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Katabbii"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Baratamoo"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Arfii qindaa'e"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Galmee jechootaa"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Piiniyiin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Dhawwiinsa"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Ajaa'ibsiisaa"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Yuniikoodii"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zuhuuyiin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Baafata bilbilaa"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Xinsagalee(dura katabbii)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Xinsagalee(dhuma katabbii)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Katabbii"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Galmee jechootaa"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Piiniyiin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Ajaa'ibsiisaa"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Dhawwiinsa"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zuhuuyiin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Xinsagalee (dura katabbii birsagaaleen kan gurmaa'e)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Xinsagalee (dura katabbii dubbifamtootan kan gurmaa'e)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Xinsagalee (dhuma katabbii birsagaaleen kan gurmaa'e)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Xinsagalee (dhuma katabbii dubbifamtootan kan gurmaa'e)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Har'a"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Homaa"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Hafalee"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Mirgada hafalee"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Idilee"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Mirgada"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Yabbuu"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Mirgada Yabbuu"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Gurraacha"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Mirgada Gurraacha"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Kitaaba"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Cafaqame"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Maxxansaa fi argii keerratti bocquu walfakkaatuti itti fayyadama."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Kuni bocquu maxxansaati. Calaqqeen argii kee adda ta'uu mala."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Bocquun simulate ni ta'a ykn haalatini walsimu ni fudhatama."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Bocquun bal'ina hanganaa hin ijaaramne. Bocquu jiran keessaa kan daran itti aanee jiru itti fayyadama."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Sakatta'i..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Yaada Siqsi"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Bitaa Siqsi"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mirga Siqsi"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Iida'i"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Sardala Ala"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Sarartuu Sarjaa"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 Bit Threshold"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 Laklamee Dithered"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 Laklamee Saxxiillaa"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 Laklamee Saxxiillaa"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 Laklamee Halluu Dhugaa"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Gatii"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Fooyi"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Afuurfachiisi"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Ka'aa jira..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Eegaara"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Dogoggora"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Fuula Haqi"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Hanqina kuufannoo."
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Maxxansaa durtii"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Galmeelee woordii"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Xumuri"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Ittaanee >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Duuba"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Ijjattoo"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<homaa>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Kubbaaniyyaa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Kutaa"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Maqaa duraa"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Maqaa dhumaa"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Karaa"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Biyya"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Iyyaatoo Teessoo"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Magaalaa"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Mataduree"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Qubannoo"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Guca Teessoo"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Qabduraa"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Cufa Kompilimentaarii"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Bilbila Manaa"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Bilbila Mana Hojii"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Yaadannoo"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Fayyadamaa 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Fayyadamaa 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Fayyadamaa 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Fayyadamaa 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "WE"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Biyya"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Bilbila Mana Hojii"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Fuulessaa"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Naanna'aa"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Bilbila Biraa"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Dhayata"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Hafeeruu"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ni barbaachisa"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE filadhu"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE Kufaatii qaba"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Lakkadda maddaa"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Faayila toorbarruu"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Saxaatoo"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Faayila qindeessaa"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Fayyadama"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Gabatee kuusaa deetaa"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Faayilii sirnaa"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Harshamee MS-Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Faayilii gargaarsaa"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Galmee HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Faayila haddarsaa"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Faayilii dilba"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Galmee hundataa StarWriter 4.0/ 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Faayilii barruu"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Geessituu"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Harshamee ekseelii Mayikiroosofti"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Qajojii ekseelii Mayikiroosofti"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Faayila baachii"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Galmee"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Doosee"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Galmee barruu"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Wardii"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Dhiheessa"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Fakkasa"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Galmee HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Galmee hundataa"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Foormulaa"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Kuusaa deetaa"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Mi'a naannoo"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Baxxee ooftuu"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Ooftuu BH-KDQ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Walindhaa cimdaa"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Galmee Paawor poo'eentii Maayikiroosooftii"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Qajojii Paawor poo'eentii Maayikiroosooftii"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Agarsiisa poo'eentii Maayikiroosooftii"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Galmee Maat Emeellii"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Kuusaa deetaa GalmeeBanaa"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Fakkasa GalmeeBanaa"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Foormulaa GalmeeBanaa"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Galmee hundataa GalmeeBanaa"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Dhiheessa GalmeeBanaa"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Wardii GalmeeBanaa"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Barruu GalmeeBanaa"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Qajojii Wardii GalmeeBanaa"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Qajojii Fakkasa GalmeeBanaa"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Qajojii Dhiheessa GalmeeBanaa"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Qajojii Barruu GalmeeBanaa"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Dheertoo %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/om/svx/messages.po b/source/om/svx/messages.po
index 839da1072b1..bf5981bd8b6 100644
--- a/source/om/svx/messages.po
+++ b/source/om/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8078,6 +8078,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12619,88 +12624,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Gulaalaa Toorii "
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Fayyadami"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Iddojii"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Fili"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Rogafree"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Luulloo"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Rogdanee"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
#, fuzzy
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Akeeki Gulaali"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Akeekota Siqsii"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Akeekota Saagi"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Akeekota Haqi"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoContour"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Gaabbi "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Diimaa"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13041,124 +13051,118 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Jalaantoo"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Gulaalaa Barruyyaa Fakkaattii"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Fayyadami"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Bani..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Olkaa'i..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Cufi"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Fili"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Rogafree"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Luulloo"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Rogdanee"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Rogaddee Unka akka feetee"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
#, fuzzy
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Akeeki Gulaali"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Akeekota Siqsii"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Akeekota Saagi"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Akeekota Haqi"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Gaabbi "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Diimaa"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Ka'aa"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Maakroo..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Amaloota: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Teessoo:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Goodayyaa"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/om/sw/messages.po b/source/om/sw/messages.po
index b1bc69f6228..baf69d5a96d 100644
--- a/source/om/sw/messages.po
+++ b/source/om/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3228,9 +3228,9 @@ msgid "Change object title of $1"
msgstr "Mataduree wantaa $1 jijjiiri"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Ibsadabalata wantaa $1 jijjiiri"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12778,147 +12778,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12928,152 +12928,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14196,7 +14196,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17760,51 +17760,51 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Durargii"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Durargii"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
#, fuzzy
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Gosa"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Galfatoota"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Haalatoota"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Tarjaalee"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Duubee"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Durargii"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Sadarkaa"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -18049,326 +18049,326 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Gulaali..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Mataduree:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Gosa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Gabatee qabeentaa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Kan Fayyadamaa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Baaybiloograafii 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Unka"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Galmee guutuu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Boqonnaa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Toorii"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Gabateewwan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Barruu goodayyaawwanii"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Saxaatoo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Wantoota OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Haalatoota Otolaa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Haalatoota"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Dirqalaalee"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Maqaa wantaa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Akaakuu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Agarsiisaa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Wabiilee"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Lakkoofsa fi Akaakuu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Barruu Goodayyaa"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Sadalloota"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Homaa]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Galmee"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
#, fuzzy
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Dirqalaalee"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Afaan"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Akaakuu furtuu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Fooyi"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Sadarkaa"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(Haalata Keewwataa: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Durtii"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Saagi"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/or/cui/messages.po b/source/or/cui/messages.po
index c64947322be..a8891a09627 100644
--- a/source/or/cui/messages.po
+++ b/source/or/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1645,107 +1645,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "କୌଣସି ସୀମାଗୁଡିକ ସେଟକରନାହିଁ"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "କେବଳ ବାହାର ସୀମା ସେଟ କର"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "ବାହାର ସୀମା ଏବଂ ଦିଗବଳୀଯ ରେଖାଗୁଡିକ ସେଟ କର"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "ବାହାର ସୀମା ଏବଂ ସବୁ ଭିତରରେଖାଗୁଡିକ ସେଟ କର"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "ଭିତରରେଖାଗୁଡିକ ପରିବର୍ତ୍ତନ ନକରି ବାହାର ସୀମା ସେଟ କର"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "କେବଳ କର୍ଣ୍ଣ ରେଖାଗୁଡିକ ସେଟ କର"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "ସବୁ ଚାରି ସୀମାଗୁଡିକୁ ସେଟ କର"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "କେବଳ ବାମ ଏବଂ ଡାହାଣ ସୀମାଗୁଡିକ, ସେଟ କର"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "କେବଳ ଉପର ଏବଂ ତଳ ସୀମାଗୁଡିକ ସେଟ କର"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "କେବଳ ବାମ ସୀମା ସେଟ କର"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "ଉପର ଏବଂ ତଳ ସୀମାଗୁଡିକ,ଏବଂ ସବୁ ଭିତର ରେଖାଗୁଡିକ ସେଟ କର"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "ବାମ ଏବଂ ଡାହାଣ ସୀମାଗୁଡିକ,ଏବଂ ସବୁ ଭିତର ରେଖାଗୁଡିକ ସେଟ କର"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "କୌଣିସି ଛାଯା ନାହିଁ"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ତଳ ଡାହାଣକୁ ଛାଯା ପ୍ରସାରଣ କର"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "ଉପର ଡାହାଣକୁ ଛାଯା ପ୍ରସାରଣ କର"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "ତଳ ବାମକୁ ଛାଯା ପ୍ରସାରଣ କର"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "ଉପର ବାମକୁ ଛାଯା ପ୍ରସାରଣ କର"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1788,7 +1783,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1908,7 +1903,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2148,7 +2143,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2403,12 +2398,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2478,7 +2473,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2558,7 +2553,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2799,7 +2794,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3422,66 +3417,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME ବିଷଯରେ"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "ଆଭାର (_d)"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ୱେବସାଇଟ (_W)"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ନିର୍ମାଣ ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "ସ୍ଥାନୀୟ: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME ଟି ଆଧୁନିକ, ବ୍ୟବହାର ଉପଯୋଗୀ, ମୁକ୍ତ ଉତ୍ସ ଶବ୍ଦ ପରିଚାଳକ, ସ୍ପ୍ରେଡସିଟ, ଉପସ୍ଥାପନା ଏବଂ ଅଧିକ ପାଇଁ ଉତ୍ପାଦକ ଅଟେ।"
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice ଟି OpenOffice.org ଉପରେ ଆଧାରିତ"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME ଟି LibreOffice ରୁ ଆସିଅଛି ଯାହାକି OpenOffice.org ଉପରେ ଆଧାରିତ"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "ଏହି ପ୍ରକାଶନଟି %OOOVENDOR ଦ୍ୱାରା ପ୍ରଦତ୍ତ"
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3599,17 +3599,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "ପ୍ରତିସ୍ଥାପନ"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "ପୁନଃସ୍ଥାପିତ କର"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "ସହିତ :"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "କେବଳ ଟେକ୍ସଟ"
@@ -4443,6 +4443,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "ସର୍ବନିମ୍ନ ଶବ୍ଦ ଲମ୍ବା"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5558,27 +5718,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "ବିଶେଷତାଗୁଡିକ"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "URL (_U):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ଫ୍ରେମ (_r)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "ନାମ(_N):"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "ବିକଳ୍ପ ଟେକ୍ସଟ (_t)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "ବର୍ଣ୍ଣନା (_D):"
@@ -9111,80 +9271,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ସହାୟତା"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "%PRODUCTNAME ଡାଇଲୋଗ"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ସଂଳାପଗୁଡିକୁ ଖୋଲ/ସଞ୍ଚଯ କର"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ସଂଳାପକୁ ବ୍ୟବହାର କରନ୍ତୁ ( _d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ସଂଳାପଗୁଡ଼ିକୁ ମୁଦ୍ରଣ କରନ୍ତୁ"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "ସେଟଗୁଡିକ \"ପରିବର୍ତ୍ତିତ ଦଲିଲ\" ସ୍ଥିତିକୁ ମୁଦ୍ରଣ କରୁଅଛି (_P)"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ଦଲିଲ ସ୍ଥିତି "
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "ବର୍ଷଗୁଡିକ ମଧ୍ଯରେ ପରି ଉଲ୍ଲେଖ କରନ୍ତୁ (_I)"
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ଏବଂ"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "ବର୍ଷ (ଦୁଇ ଅଙ୍କବିଶିଷ୍ଟ)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "ସିସ୍ଟମ ଆରମ୍ଭ ସମଯରେ %PRODUCTNAME ଲୋଡ କର"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "systray Quickstarterକୁ ସକ୍ରିୟ କରନ୍ତୁ"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME ଶୀଘ୍ର ସ୍ଟାଟର"
@@ -11075,25 +11235,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "ନିଜ ପ୍ରସଙ୍ଗ"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "ବା, ବିସ୍ତାରଗୁଡ଼ିକଦ୍ୱାରା ସଂସ୍ଥାପିତ ହୋଇଥିବା ଥିମଗୁଡ଼ିକରୁ ବାଛନ୍ତୁ:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox ପ୍ରସଙ୍ଗ"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11722,102 +11867,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "ସୁରକ୍ଷା ବିକଳ୍ପଗୁଡ଼ିକ"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Firefox ଥିମକୁ ବାଛନ୍ତୁ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12828,27 +12877,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/or/extensions/messages.po b/source/or/extensions/messages.po
index 02cf386c484..6ffe34b268b 100644
--- a/source/or/extensions/messages.po
+++ b/source/or/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3178,162 +3178,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "%1ଟେବୁଲ ପାଇଁ ସ୍ତମ୍ଭ ବିନ୍ୟାସ "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "ସକ୍ଷିପ୍ତ ନାମ (_S)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "ଲେଖକ(ମାନେ)(_A)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "ପ୍ରକାଶକ (_P)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "ଅଧ୍ଯାୟ (_C)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "ସମ୍ପାଦକ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "ପ୍ରକାର (_T)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "ବର୍ଷ (_Y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "ଶୀର୍ଷକ (_l)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "ଠିକଣା (_d)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ଆଇ.ଏସ.ବି.ଏନ.(_I)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "ପୃଷ୍ଠାଗୁଡ଼ିକ(_g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "ପ୍ରକାଶନ (_i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "ପୁସ୍ତକ ଶୀର୍ଷକ (_B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "ଖଣ୍ଡ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "ପ୍ରକାଶନ ପ୍ରକାର (_y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "ସଂଗଠନ(_z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "ସଂସ୍ଥାନ(_u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "ବିଶ୍ୱବିଦ୍ୟାଳୟ (_v)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "ରିପୋର୍ଟର ପ୍ରକାର(_p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "ମାସ (_M)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "ଜର୍ନାଲ (_J)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "ସଂଖ୍ୟା (_e)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "କ୍ରମ(_r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "ଟିପ୍ପଣୀ (_o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "ନୋଟ (_N)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "ୟୁ.ଆର.ଏଲ."
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "ଉପଯୋଗକାରୀ ନିରୂପିତ 1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "ଉପଯୋଗକାରୀ ନିରୂପିତ 2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "ଉପଯୋଗକାରୀ ନିରୂପିତ 3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "ଉପଯୋଗକାରୀ ନିରୂପିତ 4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "ଉପଯୋଗକାରୀ ନିରୂପିତ 5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "ସ୍ତମ୍ଭ ନାମଗୁଡିକ"
@@ -3511,27 +3511,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "ନୂଆ ତଥ୍ଯ ପ୍ରକାର ପାଇଁ ଏକ ନାମ ଟାଇପ କରନ୍ତୁ:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "କ୍ଷେତ୍ରଗୁଡିକୁ ଲିଙ୍କ କରନ୍ତୁ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "ପ୍ରସ୍ତାବ ଦିଅନ୍ତୁ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "ମାଷ୍ଟର ଫର୍ମର ବର୍ତ୍ତମାନର ରେକର୍ଡ ସମ୍ବନ୍ଧରେ ସବିଶେଷ ତଥ୍ୟକୁ ପ୍ରଦର୍ଶିତ କରିବାପାଇଁ ଉପ ଫର୍ମଗୁଡ଼ିକୁ ବ୍ୟବହାର କରା ଯାଇପାରେ। ଏହା କରିବାପାଇଁ, ଆପଣ ଉପଫର୍ମରେ କେଉଁ ସ୍ତମ୍ଭଗୁଡ଼ିକ ମାଷ୍ଟର ଫର୍ମ ସହିତ ମେଳ ଖାଇବ ତାହା ନିର୍ଦିଷ୍ଟ କରି ପାରିବେ। "
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ଲେବଲ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "ଲେବଲ"
diff --git a/source/or/officecfg/registry/data/org/openoffice/Office/UI.po b/source/or/officecfg/registry/data/org/openoffice/Office/UI.po
index 9b35b9cdf43..c73470eeea6 100644
--- a/source/or/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/or/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
@@ -23732,6 +23732,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26074,6 +26083,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26092,6 +26110,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/or/sc/messages.po b/source/or/sc/messages.po
index d2f015381fa..6fc7e63fa8b 100644
--- a/source/or/sc/messages.po
+++ b/source/or/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15540,6 +15540,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ବିଶେଷ ପ୍ରବେଶ)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16126,12 +16131,12 @@ msgstr "ସର୍ତ୍ତମୂଳକ ଫର୍ମାଟ"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17440,83 +17445,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "ତଥ୍ୟ ଫର୍ମ"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "ବନ୍ଦ କର"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "ନୂଆ ଅଭିଲେଖ "
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "ନୂଆ"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "ବିଲୋପ କର"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "ପୁନଃସ୍ଥାପନ କରନ୍ତୁ (_R)"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "ପୂର୍ବ ବିବରଣୀ (_P)"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "ପରବର୍ତ୍ତୀ ବିବରଣୀ (_x)"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "ବନ୍ଦ କର"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "ମୂଳଦଲିଲ୍ ର URL କୁ ସ୍ଥାନୀୟ ଫାଇଲତନ୍ତ୍ର କିମ୍ବା ଇଣ୍ଟରନେଟରେ ଭରଣ କରନ୍ତୁ।"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ବ୍ରଉଜ..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ତଥ୍ଯସଂଚୟ ପରିସରଗୁଡ଼ିକ"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19306,37 +19269,42 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "ତାରିଖ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
#, fuzzy
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "ସ୍ତମ୍ଭ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "ଧାଡ଼ି"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "ଦ୍ବାରା ସମୂହ: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "ଅନ୍ତରାଳ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19484,167 +19452,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22284,17 +22254,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24271,114 +24251,119 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "ଉଇଣ୍ଡୋ (~W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "ଜାଲ ରେଖାଗୁଡିକ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "ରଙ୍ଗ (_C):"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "ଦେଖାଅ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "ଲୁଚାଅ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "ପୃଷ୍ଠା ଭାଙ୍ଗଗୁଡିକ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
#, fuzzy
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "ଗତି କରିବା ସମୟରେ ସହାୟତା କେନ୍ଦ୍ର (_W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "ଚାର୍ଟଗୁଡିକ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "ଚିତ୍ରାଙ୍କନ ବସ୍ତୁଗୁଡିକ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "ଦେଖାଅ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "ଲୁଚାଅ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "ଦେଖାଅ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "ଲୁଚାଅ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "ଦେଖାଅ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "ଲୁଚାଅ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
#, fuzzy
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "ବସ୍ତୁଗୁଡିକ (_O)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "ଛୋଟବଡ଼ କରନ୍ତୁ"
diff --git a/source/or/scp2/source/ooo.po b/source/or/scp2/source/ooo.po
index b46030fc3e8..85ecf621c3d 100644
--- a/source/or/scp2/source/ooo.po
+++ b/source/or/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Oriya <oriya-it@googlegroups.com>\n"
@@ -35,6 +35,14 @@ msgstr "ଦଲିଲ ଖୋଲନ୍ତୁ"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/or/scp2/source/winexplorerext.po b/source/or/scp2/source/winexplorerext.po
index 440beddc385..d55d21bb261 100644
--- a/source/or/scp2/source/winexplorerext.po
+++ b/source/or/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 01:27+0200\n"
-"Last-Translator: mgiri <mgiri@redhat.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:29+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: or\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369355363.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "ଥମ୍ବନେଲ୍ ପୂର୍ବଦୃଶ୍ଯଗୁଡିକ ପରି,%PRODUCTNAME ଦଲିଲଗୁଡିକ ବିଷଯରେ ସୂଚନା ଦେଖାଇବା ପାଇଁ ମାଇକ୍ରୋସଫଟ୍ ଉଇଣ୍ଡୋଜ ଏକ୍ସପ୍ଲୋର୍ ସକ୍ଷମ ଅଟେ୤"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/or/sd/messages.po b/source/or/sd/messages.po
index fa97fd6b613..ab18fa5501a 100644
--- a/source/or/sd/messages.po
+++ b/source/or/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2634,6 +2634,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3118,164 +3123,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4763,160 +4953,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "ତୀର ଆକାରଗୁଡ଼ିକ"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/or/sfx2/messages.po b/source/or/sfx2/messages.po
index 0fbe3ae6a38..073d1b396d9 100644
--- a/source/or/sfx2/messages.po
+++ b/source/or/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -917,11 +917,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "ଗୁଣଧର୍ମ କାଢ଼ନ୍ତୁ"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -931,28 +926,28 @@ msgstr ""
"ଭରଣ କରାଯାଇଥିବା ମୂଲ୍ୟ ନିର୍ଦ୍ଦିଷ୍ଟିତ ପ୍ରକାର ସହିତ ମେଳ ଖାଉନାହିଁ।\n"
"ମୂଲ୍ୟଟି ପାଠ୍ୟ ଆକାରରେ ରଖାଯାଇଥାଏ।"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ଫାଇଲ ଆଗରୁ ଅଛି୤ ପୁନଃଲିଖନ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "ରିସେଟ କର"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ଏହି ନାମ ପୂର୍ବରୁ ଉପୟୋଗ ହୋଇଅଛି୤"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ଏହି ଶୈଳୀ ରହି ନାହିଁ୤"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -962,7 +957,7 @@ msgstr ""
"ଆଧାର ଶୈଳୀ ପରି ଏହି ଶୈଳୀ ଉପୟୋଗ ହୋଇପାରିବ ନାହିଁ,\n"
"କାରଣ ଏହା ଗୋଟିଏ ରିକରସିଭ ପ୍ରସଙ୍ଗରେ ବାହାରିବ୤ "
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -971,7 +966,7 @@ msgstr ""
"ଗୋଟିଏ ତୃଟି ଶୈଳୀ ପରି ନାମ ପୂର୍ବରୁ ରହି ଅଛି୤\n"
"ଦଯାକରି ଅନ୍ଯ ନାମ ବାଛ୤"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -979,95 +974,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "ବ୍ୟବହାର ହେଉଥିବା ଶୈଳୀ:"
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "ନାଭିଗେଟର"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "ତୃଟିପୂର୍ଣ୍ଣ ଗୁପ୍ତଶବ୍ଦ ନିଶ୍ଚିତକରଣ"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "ପଠାନ୍ତୁ"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ଫଣ୍ଟ "
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "ସଂସ୍କରଣ ମନ୍ତବ୍ଯ ଦେଖନ୍ତୁ"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "ଶୈଳୀ ତାଲିକା"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "ଶ୍ରେଣୀବଦ୍ଧ"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ଫର୍ମାଟ ମୋଡ ପୂର୍ଣ୍ଣକର"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "ମନୋନଯନରୁ ନୂଆ ଶୈଳୀଗୁଡିକ"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "ଶୈଳୀଗୁଡ଼ିକୁ ଅଦ୍ୟତନ କରନ୍ତୁ (~U)"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "ତୁମେ ପ୍ରକୃତରେ ଅଭିଲେଖକରିବାକୁ ରଦ୍ଦକରିବାକୁ ଚାହୁଁଛ କି? ଏପର୍ୟ୍ଯନ୍ତ ଅଭିଲେଖହୋଇଥିବା ୟେକୌଣସି ପଦକ୍ଷେପ ନଷ୍ଟ ହୋଇୟିବ୤ "
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ଅଭିଲେଖକରିବା ରଦ୍ଦ କର "
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ପ୍ରଥମ-ଥର ବ୍ଯବହାର ପାଇଁ ନମୁନାଗୁଡିକ ଆରମ୍ଭ କରାୟାଇ ପାରିବ୤"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1076,7 +1071,7 @@ msgstr ""
"କୌଣସି ଡିଫଲଡ ପ୍ରିଣ୍ଟର ମିଳୁନାହିଁ।\n"
"ଦଯାକରି ଗୋଟିଏ ପ୍ରିଣ୍ଟର ବାଛ ଏବଂ ଆଉଥରେ ଚେଷ୍ଟା କରନ୍ତୁ।"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1085,17 +1080,17 @@ msgstr ""
"ପ୍ରିଣ୍ଟର ଆରମ୍ଭହୋଇପାରୁ ନାହିଁ୤\n"
"ଦଯାକରି ତୁମର ପ୍ରିଣ୍ଟର କନଫିଗୁରେସନ ୟାଞ୍ଚକର୤"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "ପ୍ରିଣ୍ଟର ବ୍ଯସ୍ତ"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (କେବଳ-ପଠନୀୟ)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1106,7 +1101,7 @@ msgstr ""
"ତୁମେ ସକ୍ରିଯ ଦଲିଲରେ ନୂଆ ସେଟିଙ୍ଗଗୁଡିକରେ \n"
"ସଞ୍ଚଯକରିବାକୁ ଚାହୁଁଛ କି?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1117,7 +1112,7 @@ msgstr ""
"ଏହି ସକ୍ରିଯ ଦଲିଲରେ \n"
" ନୂଆ ସେଟିଙ୍ଗଗୁଡିକ ସଞ୍ଚଯହୋଇପାରିବ କି?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1128,7 +1123,7 @@ msgstr ""
"ତୁମେ ସକ୍ରିଯ ଦଲିଲରେ ନୂଆ ସେଟିଙ୍ଗଗୁଡିକରେ \n"
"ସଞ୍ଚଯକରିବାକୁ ଚାହୁଁଛ କି?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1138,7 +1133,7 @@ msgstr ""
"ଦଲିଲ ବନ୍ଦହୋଇପାରିବ ନାହିଁ କାରଣ a\n"
"ମୁଦ୍ରଣ କାର୍ୟ୍ଯ ଚାଲୁରହିଛି୤"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1154,18 +1149,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ଏହି ଦଲିଲ ସମ୍ପାଦନ ହୋଇପରିବ ନାହିଁ, ସମ୍ଭବତଃ ଅଦୃଷ୍ଟ ପ୍ରବେଶ ଅଧିକାରଗୁଡିକ ୟୋଗୁଁ୤ତୁମେ ଏହି ଦଲିଲ ପ୍ରତିଲିପିକୁ ସମ୍ପାଦନ କରିବାକୁ ଚାହୁଁଛ କି ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1173,356 +1168,366 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (ମରାମତିହୋଇଥିବା ଦଲିଲ)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
#, fuzzy
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "ଦଲିଲକୁ ସର୍ଭର ମଧ୍ଯକୁ ଅଣାଯାଇ ନାହିଁ"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "ବିବରଣୀ ନିଯନ୍ତ୍ରଣ"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
#, fuzzy
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "ବିଦାୟ"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ଦଲିଲ ସମ୍ପାଦନ କର"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ଦଲିଲରେ ହସ୍ତାକ୍ଷର କରନ୍ତୁ..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ଡକ କରନ୍ତୁ"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "ଅନଡକ କରନ୍ତୁ"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "ଅଧିକ ବିକଳ୍ପଗୁଡ଼ିକ"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "ପାର୍ଶ୍ୱପଟି ଡେକକୁ ବନ୍ଦକରନ୍ତୁ"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "ଇଚ୍ଛାରୂପଣ"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "ପୂର୍ବ ନିର୍ଦ୍ଧାରିତକୁ ପୁନଃସ୍ଥାପନ କରନ୍ତୁ"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ହଟାଅ"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1896,32 +1901,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "ଭାଷାନ୍ତର ମନ୍ତବ୍ଯ"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "ନାମ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "ପ୍ରକାର"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "ମୂଲ୍ୟ"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "ପ୍ରକାର"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "ହଁ"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "ନାହିଁ"
@@ -1931,17 +1921,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "ନାମ"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "ପ୍ରକାର"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "ମୂଲ୍ୟ"
@@ -2077,17 +2067,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ଅବସ୍ଥାନ (_L):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ପ୍ରକାର (_T):"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "ପ୍ରବେଶ ସଂକେତ ପରିବର୍ତ୍ତନ କରନ୍ତୁ (_P)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ନମୁନା:"
@@ -2098,27 +2088,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "ର ବିଶେଷତାଗୁଡିକ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "ସାଧାରଣ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "ବର୍ଣ୍ଣନା"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "ଗୁଣଧର୍ମକୁ ଇଚ୍ଛାମୁତାବକ କରନ୍ତୁ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "CMIS ଗୁଣଧର୍ମ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "ସୁରକ୍ଷା"
@@ -2344,6 +2334,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/or/shell/messages.po b/source/or/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/or/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/or/starmath/messages.po b/source/or/starmath/messages.po
index 928f88d3f0e..8fdb4f69655 100644
--- a/source/or/starmath/messages.po
+++ b/source/or/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1641,273 +1641,298 @@ msgid "Examples"
msgstr "ଉଦାହରଣ"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "ସ୍ଟାଣ୍ଡାଡ୍"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ତେର୍ଚ୍ଛା"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ମୋଟା"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "କଳା"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ନୀଳ"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "ସବୁଜ"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "ଲାଲି"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ନୀଳ"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "ମାଗେଣ୍ଟା"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ଧୂସର"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "ଲେମ୍ବୁ ରଙ୍ଗ"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "ଖଇରିଆ"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "ଗାଢ଼ ନୀଳ"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "ଓଲିଭ"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ବାଇଗଣୀ"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "ସିଲଭର"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "କଳହଂସ"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "ହଳଦିଆ"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ଲୁଚାଅ"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "ଆକାର"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "ଫଣ୍ଟ"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ବାମ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "କେନ୍ଦ୍ର"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ଡାହାଣ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "ଆଦେଶଗୁଡିକ"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "ସୂତ୍ର"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ଦଲିଲ ସଂଚଯକରୁଛି..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION ସୂତ୍ର"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "ଅପ୍ରତୀକ୍ଷିତ ଅକ୍ଷର"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' ପ୍ରତୀକ୍ଷିତ"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' ପ୍ରତୀକ୍ଷିତ"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' ପ୍ରତୀକ୍ଷିତ"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' ପ୍ରତୀକ୍ଷିତ"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' ପ୍ରତୀକ୍ଷିତ"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "ରଙ୍ଗ ଦରକାରଅଛି"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' ପ୍ରତୀକ୍ଷିତ"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ସୂଚୀପତ୍ରଗୁଡିକ"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ଶୀର୍ଷକ"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ସୂତ୍ର ପାଠ୍ୟ"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "ସୀମାଗୁଡିକ"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "ଆକାର"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "ପ୍ରକୃତ ଆକାର"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ପୃଷ୍ଠା ସହିତ ମେଳାନ୍ତୁ"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1980,6 +2005,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "ଅଶଂ"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/or/svtools/messages.po b/source/or/svtools/messages.po
index 2a9b6755076..4d19fab0d34 100644
--- a/source/or/svtools/messages.po
+++ b/source/or/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1546 +16,1548 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195830.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ପଦକ୍ଷେପ ବାତିଲ କରନ୍ତୁ:"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "ପୁଣିକର:"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "ପୁନରାବୃତି କର: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "ଫର୍ମାଟହୋଇନଥିବା ଟେକ୍ସଟ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx ଅନ୍ତରାଳ ଲିଙ୍କରୁ ସ୍ଥିତି ସୂଚନା"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "ନେଟସ୍କ୍ଯାପ ପୁସ୍ତକସଙ୍କେତ "
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "ସ୍ଟାର ସରବର ଫର୍ମାଟ"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "ସ୍ଟାର ବସ୍ତୁ ଫର୍ମାଟ"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "ଆପ୍ଲେଟ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "ପ୍ଲଗ-ଇନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "ସ୍ଟାରରାଇଟର ୩.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "ସ୍ଟାରରାଇଟର ୪.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "ସ୍ଟାରରାଇଟର ୫.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "ସ୍ଟାରରାଇଟର/ଉଏବ୍ ୪.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "ସ୍ଟାରରାଇଟର/ଉଏବ୍ ୫.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "ସ୍ଟାରରାଇଟର/ମାଷ୍ଟର ୪.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "ସ୍ଟାରରାଇଟର/ମାଷ୍ଟର ୫.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "ସ୍ଟାରଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "ସ୍ଟାରଅଙ୍କନ ୪.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "ସ୍ଟାରଇମ୍ପ୍ରେସ ୫.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "ସ୍ଟାରଡ୍ର ୫.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "ସ୍ଟାରଗଣନା ବସ୍ତୁ"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "ସ୍ଟାରଗଣନା ୪.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "ସ୍ଟାରଗଣନା ୫.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "ସ୍ଟାରଚାର୍ଟ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "ସ୍ଟାରଚାର୍ଟ ୪.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "ସ୍ଟାରଚାର୍ଟ ୫.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "ସ୍ଟାରଚିତ୍ର ବସ୍ତୁ"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "ସ୍ଟାରଚିତ୍ର ୪.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "ସ୍ଟାରଚିତ୍ର ୫.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "ସ୍ଟାରଗଣିତ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "ସ୍ଟାରଗଣିତ ୪.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "ସ୍ଟାରଗଣିତ ୫.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "ସ୍ଟାରବସ୍ତୁ ମୁଦ୍ରଣ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "ସିଲକ୍"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "ମାଇକ୍ରୋସଫଟ୍ ଉଆର୍ଡ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "ସ୍ଟାରଫ୍ରେମସେଟ୍ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ଅଫିସ ଦଲିଲ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "ଟିପପ୍ଣୀଗୁଡିକ ଦଲିଲ ସୂଚନା"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx ଦଲିଲ"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "ସ୍ଟାରଚାର୍ଟ ୫.୦ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ଲେଖାଚିତ୍ର ବସ୍ତୁ"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 Writer ବସ୍ତୁ"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "OpenOffice.org 1.0 Writer/ୱେବ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "OpenOffice.org 1.0 Writer/ମୂଖ୍ୟ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 ଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
#, fuzzy
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "OpenOffice.org 1.0 ଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
#, fuzzy
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "OpenOffice.org 1.0 ଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
#, fuzzy
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 ଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
#, fuzzy
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 ଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "ଉଇଣ୍ଡୋଜ ମେଟାଫାଇଲ"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ତଥ୍ଯ ମୂଳ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ତଥ୍ଯ ମୂଳ ଟେବୁଲ"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL ପ୍ରଶ୍ନ"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
#, fuzzy
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "ଲିଙ୍କ"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "ମନ୍ତବ୍ଯଗୁଡିକ ବ୍ଯତିତ HTML ଫର୍ମାଟ"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "ବସ୍ତୁ % ଭର୍ତ୍ତି ହୋଇ ପାରିବ ନାହିଁ୤"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ଫାଇଲରୁ ବସ୍ତୁ % ଭର୍ତ୍ତି ହୋଇ ପାରିବ ନାହିଁ୤"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "ଏତଦଭିନ୍ନ ବସ୍ତୁଗୁଡିକ"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "ଅଜ୍ଞାତ ମୂଳ"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "ନାମ"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "ଆକାର"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "ପରିବର୍ତ୍ତିତ ତାରିଖ"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "ପ୍ରକାର"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ବାଇଟିଗୁଡିକ"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "ପଂକ୍ତି: %୧, ସ୍ତମ୍ଭ: %୨"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", ପ୍ରକାର: %୧, URL: %୨"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ଫୋଲ୍ଡର"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ଫାଇଲ"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ଶୂନ୍ଯ କ୍ଷେତ୍ର"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ଆଲଫାସଂଖ୍ଯାତ୍ମକ "
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "ସ୍ବାଭାବିକ"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ଅକ୍ଷର ସେଟ କର"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "ଅଭିଧାନ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "ପିନିଇନ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "ଆଘାତ କର"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "ମୌଳିକ"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ଯୁନିକୋଡ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "ଜୁଇନ"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ଫୋନ୍ ପୁସ୍ତକ"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ଧ୍ବନିତତ୍ତ୍ବିକ (ପ୍ରଥମ ଆଲଫାସଂଖ୍ଯାତ୍ମକ )"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ଧ୍ବନିତତ୍ତ୍ବିକ (ଶେଷ ଆଲଫାସଂଖ୍ଯାତ୍ମକ )"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ଆଲଫାସଂଖ୍ଯାତ୍ମକ "
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "ଅଭିଧାନ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "ପିନିଇନ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "ମୌଳିକ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "ଆଘାତ କର"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "ଜୁଇନ"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ଧ୍ବନିତତ୍ତ୍ବ (ପ୍ରଥମ ଆଲଫାସଂଖ୍ଯାତ୍ମକ,ଦ୍ବାରା ସମୂହହୋଇଥିବା ସିଲାବୁଲଗୁଡିକ)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ଧ୍ବନିତତ୍ତ୍ବ (ପ୍ରଥମ ଆଲଫାସଂଖ୍ଯାତ୍ମକ, ଦ୍ବାରା ସମୂହହୋଇଥିବା ବ୍ଯଞ୍ଜନଶସ୍ବରଗୁଡିକ)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ଧ୍ବନିତତ୍ତ୍ବ (ଶେଷ ଆଲଫାସଂଖ୍ଯାତ୍ମକ, ଦ୍ବାରା ସମୂହହୋଇଥିବା ସିଲାବୁଲଗୁଡିକ)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ଧ୍ବନିତତ୍ତ୍ବ (ଶେଷ ଆଲଫାସଂଖ୍ଯାତ୍ମକ, ଦ୍ବାରା ସମୂହହୋଇଥିବା ବ୍ଯଞ୍ଜନଶସ୍ବରଗୁଡିକ)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ଆଜି"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "କିଛି ନାହିଁ"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ହାଲୁକା"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ହାଲୁକା ତେର୍ଚ୍ଛା"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "ନିଯମିତ"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ତେର୍ଚ୍ଛା"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ମୋଟା"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ମୋଟା ତେର୍ଚ୍ଛା"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "କଳା"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "କଳା ତେର୍ଚ୍ଛା"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ପୁସ୍ତକ"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "ସଂକ୍ଷିପ୍ତ"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "ସ୍ୱଳ୍ପ ଗାଢ଼"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "ତୁମ ସ୍କ୍ରିନ୍ ଏବଂ ତୁମ ପ୍ରିଣ୍ଟର ଉଭଯ ପାଇଁ ସମାନ ଫଣ୍ଟ ଉପୟୋଗ ହେବ୤"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "ଏହା ଗୋଟିଏ ପ୍ରିଣ୍ଟର ଫଣ୍ଟ୤ଏହି ସ୍କ୍ରିନର ଚିତ୍ର ଅଲଗା ହୋଇପାରେ୤"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "ଏହି ଫଣ୍ଟ ଶୈଳୀ ପ୍ରେରିତ ହେବ କିମ୍ବା ଏହି ନିକଟବର୍ତ୍ତୀ ମିଶାୟାଇଥିବା ଶୈଳୀ ପ୍ରେରିତ ହେବ୤"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ଏହି ଫଣ୍ଟ ପ୍ରତିଷ୍ଠାପିତ ହୋଇ ନାହିଁ୤ନିକଟବର୍ତ୍ତୀ ଉପଲବ୍ଧ ଫଣ୍ଟ ଉପୟୋଗ ହେବ୤"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ବ୍ରାଉଜ..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ମୂଳସ୍ଥାନକୁ ଘୁଞ୍ଚାନ୍ତୁ"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ବାମପାଖକୁ ଘୁଞ୍ଚାଅ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ଡାହାଣପାଖକୁ ଘୁଞ୍ଚାଅ"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "ଶେଷ ସ୍ଥାନକୁ ଘୁଞ୍ଚାଅ"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ଯୋଗ କରନ୍ତୁ"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "ଭୂ-ସମାନ୍ତରାଳ ରୁଲର"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ଭୂ-ଲମ୍ବ ରୁଲର"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "୧ ବିଟ ଥ୍ରୋସହୋଲଡ"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "୧ ବିଟ ଡିଥର"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "୪ ବିଟ ଧୂସରମାପଗୁଡିକ"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 ବିଟ ରଙ୍ଗ"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "୮ ବିଟ ଧୂସରମାପଗୁଡିକ"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 ବିଟ ରଙ୍ଗ"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "୨୪ ବିଟ ପ୍ରକୃତ ରଙ୍ଗ"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ଏହି ଛବି ପାଇଁ %1 KB ର ସ୍ମୃତିସ୍ଥାନ ଆବଶ୍ୟକ।"
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ଏହି ଛବି ପାଇଁ %1 KB ର ସ୍ମୃତିସ୍ଥାନ ଆବଶ୍ୟକ, ଫାଇଲ ଆକାର ହେଉଛି %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ଫାଇଲ ଆକାର ହେଉଛି %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ମୂଲ୍ଯ"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ସଜାଅ"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "ପ୍ରସ୍ତୁତ"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ବିରାମ ହୋଇଥିବା"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "ଅମିମାଂଶିତ ବିଲୋପ କର"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "ବ୍ଯସ୍ତ"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ଆରମ୍ଭକରୁଛି"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "ଅପେକ୍ଷାକରୁଛି"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "ଉତେଜ୍ଜିତକରିବା "
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "ପ୍ରକ୍ରିଯାଚାଲିଛି"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "ମୁଦ୍ରଣକରିବା "
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ଅଫଲାଇନ"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ତୃଟି"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "ଅଜ୍ଞାତ ସରବର"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "କାଗଜ ଜାମ୍"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "ୟଥେଷ୍ଟ କାଗଜ ନାହିଁ"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "ପୁସ୍ତିକା ଭର୍ତ୍ତି କର"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "କାଗଜ ସମସ୍ଯା"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O ସକ୍ରିଯ"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "ଆଉଟପୁଟ ବିନ ପୂର୍ଣ୍ଣଅଟେ"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "କମ ଟୋନର"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "କୌଣିସି ଟୋନର ନାହିଁ"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ପୃଷ୍ଠା ବିଲୋପ କର"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ଉପୟୋଗକର୍ତ୍ତା ହସ୍ତକ୍ଷେପ ଦରକାର ଅଛି "
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "ଅପର୍ଯ୍ଯାପ୍ତ ସ୍ମୃତି ସ୍ଥାନ"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "ଆବରଣ ଖୋଲ"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "ପାଉଆର ସଞ୍ଚଯ ମୋଡ"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ଡିଫଲଟ ପ୍ରିଣ୍ଟର"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d ଦଲିଲଗୁଡିକ"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "ଶେଷ"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "ପରବର୍ତ୍ତୀ >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< ପଛ"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ସ୍ଟେପଗୁଡିକ"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<କିଛିନାହିଁ>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "କମ୍ପାନୀ"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "ବିଭାଗ"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "ପ୍ରଥମ ନାମ"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "ଶେଷ ନାମ"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ସାହି"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "ଦେଶ"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Zip କୋଡ"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "ନଗର"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "ଶୀର୍ଷକ"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "ସ୍ଥାନ "
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ଠିକଣା ଫର୍ମ"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "ପ୍ରାରମ୍ଭିକଗୁଡିକ"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "ପରିପୂରକ ବନ୍ଦ କର"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "ଟେଲିଫୋନ:ଘର"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "ଟେଲିଫୋନ:କାର୍ୟ୍ଯ"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ଟିପପ୍ଣୀ"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ଚାଳକ 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ଚାଳକ 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ଚାଳକ 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ଚାଳକ 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ରାଜ୍ଯ"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "ଟେଲିଫୋନ:ଅଫିସ"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "ପେଜର"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "ମୋବାଇଲ"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ଟେଲିଫୋନ:ଅନ୍ଯ"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ପଞ୍ଜିକା"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "ନିମନ୍ତ୍ରଣକର"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ଏହି କାର୍ୟ୍ଯକୁ ସମ୍ପାଦନକରିବା ପାଇଁ ଗୋଟିଏ ଜାଭା ରନଟାଇମ ଏନଭାରମେଣ୍ଟ (JRE) ଦରକାର ଅଛି। ଦୟାକରି ଗୋଟିଏ JRE ପ୍ରତିଷ୍ଠାପନ କର ଏବଂ %PRODUCTNAME କୁ ପୁନଃଆରମ୍ଭ କରନ୍ତୁ।"
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ଏହି %PRODUCTNAME କନଫିଗରେସନ ପରିବର୍ତ୍ତନ ହୋଇୟାଇଛି। %PRODUCTNAME - ପସନ୍ଦ - %PRODUCTNAME - ଉନ୍ନତ ଅନ୍ତର୍ଗତରେ, ଆପଣ ବ୍ୟବହାର କରୁଥିବା %PRODUCTNAME ଦ୍ୱାରା ବ୍ୟବହୃତ Java ରନଟାଇମ ପରିବେଶକୁ ବାଛନ୍ତୁ।"
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
#, fuzzy
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "ଏହି %PRODUCTNAME କନଫିଗରେସନ ପରିବର୍ତ୍ତନ ହୋଇୟାଇଛି। ଟୁଲଗୁଡିକ - ବିକଳ୍ପଗୁଡିକ - %PRODUCTNAME - ଉନ୍ନତ,ତଳେ %PRODUCTNAME ଦ୍ବାରା ତୁମେ ଉପୟୋଗ କରୁଥିବା ଜାଭା ରନଟାଇମ ଏନଭାରମେଣ୍ଟକୁ ମନୋନୀତ କରନ୍ତୁ।"
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "PRODUCTNAME ଏହି କାର୍ୟ୍ଯକୁ ସମ୍ପାଦନକରିବା ପାଇଁ ଗୋଟିଏ ଜାଭା ରନଟାଇମ ଏନଭାରମେଣ୍ଟ (JRE) ଦରକାର ଅଛି। ମନୋନୀତ JRE ତୃଟିପୁର୍ଣ୍ଣ ଅଟେ। ଦୟାକରି ଆଉଗୋଟିଏ ଭାଷାନ୍ତର ମନୋନୀତ କର କିମ୍ବା ଏକ ନୂଆ JRE ପ୍ରତିଷ୍ଠାପନକର ଏବଂ %PRODUCTNAME - ପସନ୍ଦ - %PRODUCTNAME - ଉନ୍ନତ ଅନ୍ତର୍ଗତରେ ବାଛନ୍ତୁ।"
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
#, fuzzy
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME ଏହି କାର୍ୟ୍ଯକୁ ସମ୍ପାଦନକରିବା ପାଇଁ ଗୋଟିଏ ଜାଭା ରନଟାଇମ ଏନଭାରମେଣ୍ଟ (JRE) ଦରକାର ଅଛି। ମନୋନୀତ JRE ତୃଟିପୁର୍ଣ୍ଣ ଅଟେ। ଦୟାକରି ଆଉଗୋଟିଏ ଭାଷାନ୍ତର ମନୋନୀତ କର କିମ୍ବା ଏକ ନୂଆ JRE ପ୍ରତିଷ୍ଠାପନକର ଏବଂ ଟୁଲଗୁଡିକ -ବିକଳ୍ପଗୁଡିକ- %PRODUCTNAME - ଉନ୍ନତ ତଳେ ଏହାକୁ ମନୋନୀତ କରନ୍ତୁ।"
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ଆବଶ୍ଯକ"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE ମନୋନୀତ କରନ୍ତୁ"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ତୃଟିପୂର୍ଣ୍ଣ ଅଟେ"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "ମୂଳ କୋଡ"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ପୃଷ୍ଠାସଂକେତ ଫାଇଲ"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ଲେଖାଚିତ୍ର"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "କନଫିଗରେସନ ଫାଇଲ"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "ପ୍ରଯୋଗ"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ତଥ୍ଯସଞ୍ଚଯ ଟେବୁଲ"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "ସିସ୍ଟମ ଫାଇଲ"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr " MS ଉଆର୍ଡ ଦଲିଲ"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "ସାହାୟ୍ଯ ଫାଇଲ"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML ଦଲିଲ"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ଆର୍ଚିଭ ଫାଇଲ"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ଲଗ ଫାଇଲ"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ତଥ୍ୟାଧାର"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "ସ୍ଟାରରାଇଟର ୪.୦/ ୫.୦ ମାଷ୍ଟର ଦଲିଲ"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice ପ୍ରତିଛବି"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ଟେକ୍ସଟ ଫାଇଲ"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "ଲିଙ୍କ"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 3.0 - 5.0 ନମୁନା"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS ଏକ୍ସେଲ ଦଲିଲ"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "ମାଇକ୍ରୋସଫଟ ଏକ୍ସେଲ ନମୁନା"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ସମଷ୍ଟି ଫାଇଲ"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ଫାଇଲ"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ଫୋଲ୍ଡର"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ଟେକ୍ସଟ ଦଲିଲ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Spreadsheet"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "ଉପସ୍ଥାପନା"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ଚିତ୍ରାଙ୍କନ"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML ଦଲିଲ"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ମାଷ୍ଟର ଦଲିଲ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "ସୂତ୍ର"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ତଥ୍ଯସଂଚଯ"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
#, fuzzy
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 ସ୍ପ୍ରେଡସିଟ ଟେମ୍ପଲେଟ"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
#, fuzzy
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 ଡ୍ରଇଂ ଟେମ୍ପଲେଟ"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
#, fuzzy
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 ପ୍ରେଜେଣ୍ଟେସନ ଟେମ୍ପଲେଟ"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
#, fuzzy
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 ଟେକ୍ସଟ ଡକୁମେଣ୍ଟ ଟେମ୍ପଲେଟ"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ସ୍ଥାନୀଯ ଡ୍ରାଇଭ"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ଡିକ୍ସ ଡ୍ରାଇଭ"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ଡ୍ରାଇଭ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "ନେଟଉଆର୍କ ସଂୟୋଗ"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS ପାଉଆରପଏଣ୍ଟ୍ ଦଲିଲ"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS ପାଉଆରପଏଣ୍ଟ୍ ନମୁନା"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS ପାଉଆରପଏଣ୍ଟ ପ୍ରଦର୍ଶନ"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
#, fuzzy
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 ଫର୍ମୂଲା"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
#, fuzzy
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 ଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
#, fuzzy
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 ଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 ସ୍ପ୍ରେଡସିଟ"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
#, fuzzy
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 ପ୍ରେଜେଣ୍ଟେସନ"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
#, fuzzy
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 ଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
#, fuzzy
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 ଅଙ୍କନ ବସ୍ତୁ"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "ଗଣିତML ଦଲିଲ"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ଖୋଲାଦଲିଲ ତଥ୍ଯସଞ୍ଚଯ "
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ଖୋଲାଦଲିଲ ଚିତ୍ରାଙ୍କନ"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ଖୋଲାଦଲିଲ ସୂତ୍ର "
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ଖୋଲାଦଲିଲ ମାଷ୍ଟର ଦଲିଲ"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ଖୋଲାଦଲିଲ ଉପସ୍ଥାପନା "
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ଖୋଲାଦଲିଲ ସ୍ପ୍ରେଡ୍ସିଟ୍ "
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ଖୋଲାଦଲିଲ ଟେକ୍ସଟ"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ଖୋଲାଦଲିଲ ସ୍ପ୍ରେଡ୍ସିଟ୍ ନମୁନା "
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ଖୋଲାଦଲିଲ ଚିତ୍ରାଙ୍କନ ନମୁନା "
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ଖୋଲାଦଲିଲ ଉପସ୍ଥାପନା ନମୁନା "
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ଖୋଲାଦଲିଲ ଟେକ୍ସଟ ନମୁନା "
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME ଅନୁଲଗ୍ନ"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/or/svx/messages.po b/source/or/svx/messages.po
index fc1a3faf861..e544b72629f 100644
--- a/source/or/svx/messages.po
+++ b/source/or/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8023,6 +8023,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12558,90 +12563,95 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "ରୂପରେଖ ସଂପାଦକକର"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
#, fuzzy
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "ପ୍ରଯୋଗକର"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "କାର୍ୟ୍ଯସ୍ଥାନ"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
#, fuzzy
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "ବାଛନ୍ତୁ"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "ଆଯତକ୍ଷେତ୍ର"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ବୃତ୍ତାଭାସ"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "ବହୁଭୂଜ"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ବିନ୍ଦୁଗୁଡିକ ସମ୍ପାଦନ କରନ୍ତୁ"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ବିନ୍ଦୁଗୁଡିକ ଘୁଞ୍ଚାଅ"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ବିନ୍ଦୁଗୁଡିକ ଭର୍ତ୍ତି କରନ୍ତୁ"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ବିନ୍ଦୁଗୁଡିକ ବିଲୋପ କରନ୍ତୁ"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "ସ୍ବଯଂଚାଳିତ ରୂପରେଖ"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "ଅନାବୃତ୍ତି"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "ଲାଲ"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "ରଙ୍ଗଦାନୀଗୁଡିକ"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12969,125 +12979,119 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "ପାଦଟୀକା"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ଚିତ୍ର ମାନଚିତ୍ର ସଂପାଦନ କର"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
#, fuzzy
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "ପ୍ରଯୋଗକର"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "ଖୋଲ..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "ସଞ୍ଚଯ କର..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "ବନ୍ଦକରନ୍ତୁ"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
#, fuzzy
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "ବାଛନ୍ତୁ"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "ଆଯତକ୍ଷେତ୍ର"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ବୃତ୍ତାଭାସ"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "ବହୁଭୂଜ"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "ମୁକ୍ତଫର୍ମ ବହୁଭୂଜ"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ବିନ୍ଦୁଗୁଡିକ ସମ୍ପାଦନ କରନ୍ତୁ"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ବିନ୍ଦୁଗୁଡିକ ଘୁଞ୍ଚାଅ"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ବିନ୍ଦୁଗୁଡିକ ଭର୍ତ୍ତି କରନ୍ତୁ"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ବିନ୍ଦୁଗୁଡିକ ବିଲୋପ କରନ୍ତୁ"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "ଅନାବୃତ୍ତି"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "ଲାଲ"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "ସକ୍ରିୟ"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "ମାକ୍ରୋ..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "ବିଶେଷତାଗୁଡିକ "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "ଠିକଣା:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ଫ୍ରେମ"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "ଟେକ୍ସଟ: "
diff --git a/source/or/sw/messages.po b/source/or/sw/messages.po
index 474d7cf6dcb..9c477e3ca14 100644
--- a/source/or/sw/messages.po
+++ b/source/or/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: or\n"
@@ -3176,9 +3176,9 @@ msgid "Change object title of $1"
msgstr "$1 ର ବସ୍ତୁ ଶୀର୍ଷକ ପରିବର୍ତ୍ତନ କରନ୍ତୁ"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 ର ବସ୍ତୁ ବର୍ଣ୍ଣନା ପରିବର୍ତ୍ତନ କରନ୍ତୁ"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12346,147 +12346,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12496,152 +12496,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13723,7 +13723,7 @@ msgstr "ନ୍ୟାୟୋଚିତ ପରିଚ୍ଛେଦଗୁଡିକର
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17071,47 +17071,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "ପୂର୍ବଦୃଶ୍ଯ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "ପୂର୍ବଦୃଶ୍ଯ"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "ପ୍ରକାର"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "ପ୍ରବେଶଗୁଡ଼ିକ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "ଶୈଳୀଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "ସ୍ତମ୍ଭଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "ପୃଷ୍ଠଭାଗ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "ପୂର୍ବଦୃଶ୍ଯ"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "ସ୍ତର (_L)"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "ପ୍ରକାର (_T)"
@@ -17341,303 +17341,303 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "ସମ୍ପାଦନ କରନ୍ତୁ (_E)..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "ଶୀର୍ଷକ (_T):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "ଟାଇପ୍:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "ସୂଚୀପତ୍ରଗୁଡିକର ଟେବୁଲ୍"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "ବର୍ଣ୍ଣମାଳା ସୂଚୀ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "ସୂଚୀର ଟେବୁଲଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "ପ୍ରୟୋଗକର୍ତ୍ତା- ପରିଭାଷିତ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "ସୂଚୀର ଟେବୁଲ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ଗ୍ରନ୍ଥସୂଚୀ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "ପୁସ୍ତିକା ପରିବର୍ତ୍ତନଗୁଡିକ ବିପକ୍ଷରେ ସୁରକ୍ଷିତ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "ପ୍ରକାର ଏବଂ ଶୀର୍ଷକ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ପାଇଁ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "ସମଗ୍ର ଦଲିଲ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "ଅଧ୍ୟାୟ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "ଏହି ସ୍ତର ପର୍ଯ୍ୟନ୍ତ ମୂଲ୍ୟାଙ୍କନ କରନ୍ତୁ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "ବାହ୍ଯରେଖା"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "ଅନୁକ୍ରମଣିକା ଚିହ୍ନଗୁଡ଼ିକ (_x)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "ଟେବୁଲ୍‍ଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "ପାଠ୍ୟ ଫ୍ରେମଗୁଡିକ (_x)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ଲେଖାଚିତ୍ରଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE ବସ୍ତୁଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "ମୂଳ ଅଧ୍ୟାୟରୁ ସ୍ତର ଉପୟୋଗ କର"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "ଅତିରିକ୍ତ ଶୈଳୀଗୁଡ଼ିକ (_A)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "ଶୈଳୀଗୁଡ଼ିକ (_e)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "ଶୈଳୀ ନିର୍ଦ୍ଦିଷ୍ଟ କର"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "ଶିରୋନାମାଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "ବସ୍ତୁ ନାମଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "ଶ୍ରେଣୀବିଭାଗ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "ପ୍ରଦର୍ଶନୀ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "ନିର୍ଦ୍ଦେଶ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "ଶ୍ରେଣୀବିଭାଗ ଏବଂ ସଂଖ୍ୟା"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "ଶିରୋନାମା ଟେକ୍ସଟ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "ଏଥିରୁ ସୃଷ୍ଟିକରନ୍ତୁ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "ନିମ୍ନଲିଖିତ ବସ୍ତୁଗୁଡ଼ିକରୁ ସୃଷ୍ଟିକରନ୍ତୁ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "ବନ୍ଧନିଗୁଡ଼ିକ (_B):"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "ନମ୍ବର ନିବେଶଗୁଡ଼ିକ (_N)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[କିଛି ନାହିଁ]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "ନିବେଶଗୁଡ଼ିକର ଫର୍ମାଟ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "ଏକାପ୍ରକାର ପ୍ରବେଶଗୁଡିକୁ ମିଶାଅ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "p କିମ୍ବା pp ସହିତ ଏକାପ୍ରକାର ପ୍ରବେଶଗୁଡିକୁ ମିଶାଅ (_p)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "ସହିତ ମିଶାଅ-"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "କେସ ସମ୍ବେଦନଶୀଳ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "ସ୍ୱୟଂଚାଳିତବଡହୋଇଥିବା ପ୍ରବେଶଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "ଅଲଗା ପ୍ରବେଶଗୁଡିକ ପରି କିଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "ସଦୃଶ ଫାଇଲ (_C)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ଫାଇଲ (_F)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "ବିକଳ୍ପଗୁଡିକ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ଭାଷା:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "ଚାବି ପ୍ରକାର:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "ସଜାଅ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "ସ୍ତରଗୁଡ଼ିକ (_L)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "ପରିଚ୍ଛେଦ ଶୈଳୀଗୁଡ଼ିକ (_S)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "ପୂର୍ବ ନିର୍ଦ୍ଧାରିତ (_D)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "ସମ୍ପାଦନ କରନ୍ତୁ (_E)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "ନିର୍ଦ୍ଦିଷ୍ଟକରଣ"
diff --git a/source/pa-IN/cui/messages.po b/source/pa-IN/cui/messages.po
index c89f906d456..9d57b117f52 100644
--- a/source/pa-IN/cui/messages.po
+++ b/source/pa-IN/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-01-28 02:34+0000\n"
"Last-Translator: a7talam <amanpreet.alam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1657,107 +1657,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "ਕੋਈ ਬਾਰਡਰ ਨਾ ਚੁਣੋ"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "ਬਾਹਰੀ ਸਫ਼ਾ ਹਾਸ਼ੀਆ"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "ਬਾਹਰੀ ਸਫ਼ਾ ਹਾਸ਼ੀਆ"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "ਬਾਹਰੀ ਬਾਰਡਰ ਅਤੇ ਸਭ ਅੰਦਰੂਨੀ ਲਾਈਨਾਂ ਸੈੱਟ ਕਰੋ"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Set Outer Border Without Changing Inner Lines"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "ਕੇਵਲ ਲਾਈਨਾਂ"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "ਸਭ ਚਾਰੋਂ ਹਾਰਡਰ ਸੈੱਟ ਕਰੋ"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "ਖੱਬਾ ਅਤੇ ਸੱਜਾ ਤੀਰ"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "ਖੱਬਾ ਅਤੇ ਸੱਜਾ ਤੀਰ"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "ਖੱਬੇ ਹਾਸ਼ੀਆ ਲਾਇਨ"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Set Top and Bottom Borders, and All Inner Lines"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Set Left and Right Borders, and All Inner Lines"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "ਛਾਂ ਨਹੀਂ"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "ਹੇਠਾਂ-ਸੱਜੇ ਵੱਲ"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Cast Shadow to Top Right"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Cast Shadow to Bottom Left"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Cast Shadow to Top Left"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1800,7 +1795,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1920,7 +1915,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2160,7 +2155,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2415,12 +2410,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2490,7 +2485,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2570,7 +2565,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2811,7 +2806,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3435,67 +3430,72 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME ਬਾਰੇ"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "ਵੈੱਬਸਾਈਟ"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ਉਸਾਰੀ ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME ਵਰਡ ਪਰੋਸੈੱਸਿੰਗ, ਸਪਰੈੱਡਸ਼ੀਟ, ਪੇਸ਼ਕਾਰੀ ਅਤੇ ਹੋਰਾਂ ਲਈ ਇੱਕ ਮਾਡਰਨ, ਵਰਤੋਂ-ਲਾਈ-ਸੌਖਾ, ਓਪਨ ਸੋਰਸ ਉਤਪਾਦ ਸੂਟ ਹੈ।"
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "ਲਿਬਰੇਆਫਿਸ OpenOffice.org ਤੇ ਆਧਾਰਿਤ ਸੀ"
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME ਲਿਬਰੇਆਫਿਸ ਤੋਂ ਲਿਆ ਗਿਆ ਹੈ ਜਿਹੜਾ ਕਿ OpenOffice.org ਤੇ ਆਧਾਰਿਤ ਸੀ।"
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "ਇਹ ਰਿਲੀਜ਼ %OOOVENDOR ਦੁਆਰਾ ਸਪਲਾਈ ਕੀਤੀ ਗਈ ਸੀ।"
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3617,17 +3617,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "ਬਦਲੋ(_R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "ਤਬਦੀਲ"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "ਸਮੇਤ(_W):"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "ਸਿਰਫ਼ ਪਾਠ ਹੀ(_T)"
@@ -4496,6 +4496,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5652,29 +5812,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "ਵਿਸ਼ੇਸ਼ਤਾ"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "ਫਰੇਮ:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "ਨਾਂ(_N)"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9440,84 +9600,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "ਮਦਦ"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_%PRODUCTNAME ਡਾਈਲਾਗ ਵਰਤੋਂ(_U)"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "ਖੋਲ੍ਹਣ/ਸੰਭਾਲਣ ਡਾਈਲਾਗ"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "%PRODUCTNAME ਡਾਈਲਾਗ ਵਰਤੋਂ(_d)"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "ਪਰਿੰਟ ਡਾਈਲਾਗ"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_ਡੌਕੂਮੈਂਟ ਬੈਕਗਰਾਊਂਡ"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "ਦਸਤਾਵੇਜ਼ ਸਥਿਤੀ"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "ਅਤੇ "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "ਸਾਲ (ਦੋ ਅੰਕ)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "%PRODUCTNAME ਸੁਧਾਰਨ ਲਈ ਮਦਦ ਕਰੋ"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "ਸਿਸਟਮ ਚਾਲੂ ਹੋਣ ਦੌਰਾਨ %PRODUCTNAME ਲੋਡ"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "ਸਿਸਟਮ-ਟਰੇ ਤੇਜ਼ ਸ਼ੁਰੂਆਤੀ ਯੋਗ"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME ਕੁਇੱਕਸਟਾਰਟਰ"
@@ -11478,24 +11638,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12159,102 +12304,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "ਸੁਰੱਖਿਆ ਚੋਣਾਂ"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13319,27 +13368,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/pa-IN/extensions/messages.po b/source/pa-IN/extensions/messages.po
index 412346c4e80..786ad8bcef3 100644
--- a/source/pa-IN/extensions/messages.po
+++ b/source/pa-IN/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-28 02:37+0000\n"
"Last-Translator: a7talam <amanpreet.alam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3230,186 +3230,186 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "ਸਾਰਣੀ %1 ਲਈ ਕਾਲਮ ਖਾਕਾ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "ਛੋਟਾ ਨਾਂ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "ਲੇਖਕ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "ਪ੍ਰਕਾਸ਼ਕ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "ਕਾਂਡ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "ਸੰਪਾਦਕ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "ਕਿਸਮ(_T)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "ਸਾਲ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "ਟਾਇਟਲ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Address"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "ਸਫਾ(~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "ਐਡੀਸ਼ਨ(~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "ਕਿਤਾਬ ਨਾਂ(~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "ਖੋਲ੍ਹੋਹੋਰੇਰੀਲਾਇਬਰੇਰੀਲਾਇਬਰੇਰੀਲਾਇਬਰੇਰੀਲਾਇਬਰੇਰੀਲਾਇਬਰੇਰੀਲਾਇਬਰੇਰੀ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "ਪ੍ਰਕਾਸ਼ਨ ਕਿਸਮ(~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "ਸੰਗਠਨ(~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "ਸੰਸਥਾ(~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "ਯੂਨੀਵਰਸਿਟੀ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "ਰਿਪੋਰਟ ਕਿਸਮ(~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "ਮਹੀਨਾ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "ਜਰਨਲ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "ਅੰਕ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "ਲੜੀ(~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "ਵਿਆਖਿਆ(~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "ਸੂਚਨਾ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "ਵਰਤੋਂਕਾਰ ਵਲੋਂ ਪ੍ਰਭਾਸ਼ਿਤ ਖੇਤਰ _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "ਵਰਤੋਂਕਾਰ ਵਲੋਂ ਪ੍ਰਭਾਸ਼ਿਤ ਖੇਤਰ _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "ਵਰਤੋਂਕਾਰ ਵਲੋਂ ਪ੍ਰਭਾਸ਼ਿਤ ਖੇਤਰ _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "ਵਰਤੋਂਕਾਰ ਵਲੋਂ ਪ੍ਰਭਾਸ਼ਿਤ ਖੇਤਰ _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "ਵਰਤੋਂਕਾਰ ਵਲੋਂ ਪ੍ਰਭਾਸ਼ਿਤ ਖੇਤਰ _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3596,30 +3596,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "ਲਿੰਕ ਖੇਤਰ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "ਸੁਝਾਅ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "ਮਾਸਟਰ ਫਾਰਮ ਦੇ ਰਿਕਾਰਡਾਂ ਬਾਰੇ ਵਿਸਥਾਰ ਜਾਣਕਾਰੀ ਵਿਖਾਉਣ ਲਈ ਉਪ-ਫਾਰਮ ਵਰਤਿਆ ਜਾ ਸਕਦਾ ਹੈ। ਅਜਿਹਾ ਕਰਨ ਲਈ, ਤੁਸੀਂ ਬਿਆਨ ਕਰ ਸਕਦੇ ਹੋ ਕਿ ਉਪ-ਫਾਰਮ ਦਾ ਕਿਹੜਾ ਕਾਲਮ ਮਾਸਟਰ ਫਾਰਮ ਦੇ ਕਿਹੜੇ ਕਾਲਮ ਨਾਲ ਮੇਲ ਕਰਦਾ ਹੈ।"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "ਲੇਬਲ"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "ਲੇਬਲ"
diff --git a/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po b/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po
index 3b2c4f43cc0..e86f8724eb7 100644
--- a/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-28 02:39+0000\n"
"Last-Translator: a7talam <amanpreet.alam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23719,6 +23719,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26077,6 +26086,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26095,6 +26113,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/pa-IN/sc/messages.po b/source/pa-IN/sc/messages.po
index fb8c232f493..f73f290c684 100644
--- a/source/pa-IN/sc/messages.po
+++ b/source/pa-IN/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-28 02:41+0000\n"
"Last-Translator: a7talam <amanpreet.alam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15494,6 +15494,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(ਖਾਸ ਅਧਿਕਾਰ)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16071,12 +16076,12 @@ msgstr "ਸ਼ਰਤੀਆ ਫਾਰਮੈਟ"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17364,86 +17369,44 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "ਡਾਟਾ ਰੇਟ:"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "ਬੰਦ ਕਰੋ(_C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "ਨਵਾਂ ਰਿਕਾਰਡ"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "ਨਵਾਂ(_N)"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "ਹਟਾਓ(_D)"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "ਮੁੜ-ਸਟੋਰ"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "ਪਿੱਛੇ ਰਿਕਾਰਡ"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "ਨਵਾਂ ਰਿਕਾਰਡ"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "ਬੰਦ ਕਰੋ(_C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ਝਲਕ(_B)..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "ਡਾਟਾਬੇਸ ਰੇਜ਼"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19233,36 +19196,41 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "ਮਿਤੀ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "ਕਾਲਮ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "ਕਤਾਰ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "ਗਰੁੱਪ ਬਣਾਇਆ: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "ਅੰਤਰਾਲ"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19410,167 +19378,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "ਮਦਦ(_H)"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22215,17 +22185,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24190,114 +24170,119 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "ਵਿੰਡੋ(~W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "ਗਰਿੱਡ ਲਾਈਨਾਂ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "ਰੰਗ(_C)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "ਵੇਖੋ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "ਓਹਲੇ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "ਸਫ਼ਾ ਅੰਤਰਾਲ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "ਹਿਲਾਉਣ ਦੌਰਾਨ ਮਦਦ-ਲਾਈਨਾਂ(_W)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "ਚਾਰਟ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "ਡਰਾਇੰਗ ਆਬਜੈਕਟ(_D)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "ਵੇਖੋ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "ਓਹਲੇ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "ਵੇਖੋ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "ਓਹਲੇ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "ਵੇਖੋ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "ਓਹਲੇ"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
#, fuzzy
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "ਆਬਜੈਕਟ(_O)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "ਜ਼ੂਮ"
diff --git a/source/pa-IN/scp2/source/ooo.po b/source/pa-IN/scp2/source/ooo.po
index 8354cc0cd8d..46273173b4e 100644
--- a/source/pa-IN/scp2/source/ooo.po
+++ b/source/pa-IN/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-28 02:41+0000\n"
"Last-Translator: a7talam <amanpreet.alam@gmail.com>\n"
"Language-Team: Punjabi/Panjabi <kde-i18n-doc@kde.org>\n"
@@ -35,6 +35,14 @@ msgstr "ਡੌਕੂਮੈਂਟ ਖੋਲ੍ਹੋ"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/pa-IN/scp2/source/winexplorerext.po b/source/pa-IN/scp2/source/winexplorerext.po
index 5c5aa3aed2f..9afe66c305b 100644
--- a/source/pa-IN/scp2/source/winexplorerext.po
+++ b/source/pa-IN/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:23+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pa_IN\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369355016.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Microsoft Windows Explorer ਨੂੰ %PRODUCTNAME ਦਸਤਾਵੇਜ਼ਾਂ, ਜਿਵੇਂ ਕਿ ਥੰਮਨੇਲ ਝਾਤੀ ਬਾਰੇ ਜਾਣਕਾਰੀ ਵੇਖਾਉਣ ਦੇ ਯੋਗ ਕਰਨ ਲਈ ਸਹਾਇਕ ਹੈ।"
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/pa-IN/sd/messages.po b/source/pa-IN/sd/messages.po
index 383ff76c958..12297764b16 100644
--- a/source/pa-IN/sd/messages.po
+++ b/source/pa-IN/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-28 02:28+0000\n"
"Last-Translator: a7talam <amanpreet.alam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2638,6 +2638,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3117,164 +3122,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "ਮਦਦ(_H)"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4756,160 +4946,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "ਮਦਦ(_H)"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/pa-IN/sfx2/messages.po b/source/pa-IN/sfx2/messages.po
index 86fa35127e7..048bb4f3216 100644
--- a/source/pa-IN/sfx2/messages.po
+++ b/source/pa-IN/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-28 02:43+0000\n"
"Last-Translator: a7talam <amanpreet.alam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -908,11 +908,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "ਵਿਸ਼ੇਸ਼ਤਾ ਹਟਾਓ"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -922,28 +917,28 @@ msgstr ""
"ਦਿੱਤਾ ਮੁੱਲ ਦਿੱਤੀ ਟਾਈਪ ਨਾਲ ਮੇਲ ਨਹੀਂ ਖਾਂਦਾ ਹੈ।\n"
"ਮੁੱਲ ਨੂੰ ਟੈਕਸਟ ਵਜੋਂ ਸਟੋਰ ਕੀਤਾ ਜਾਵੇਗਾ।"
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "ਫਾਇਲ ਪਹਿਲਾਂ ਹੀ ਮੌਜੂਦ ਹੈ। ਉੱਤੇ ਲਿਖਣਾ ਹੈ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "ਮੁੜ-ਸੈੱਟ(~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "ਇਹ ਨਾਂ ਪਹਿਲਾਂ ਹੀ ਵਰਤੋਂ ਅਧੀਨ ਹੈ।"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "ਇਹ ਸਟਾਈਲ ਮੌਜੂਦ ਨਹੀਂ ਹੈ।"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -953,7 +948,7 @@ msgstr ""
"ਇਸ ਸਟਾਈਲ ਨੂੰ ਅਧਾਰ ਸਟਾਈਲ ਦੇ ਤੌਰ ਤੇ ਨਹੀਂ ਵਰਤਿਆ ਜਾ ਸਕਦਾ ਹੈ,\n"
"ਕਿਉਂਕਿ ਇਹ ਨਾਲ ਹਵਾਲੇ ਦਾ ਚੱਕਰ ਬਣਨ ਦਾ ਖਦਸ਼ਾ ਹੈ।"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -962,7 +957,7 @@ msgstr ""
"ਨਾਂ ਪਹਿਲਾਂ ਹੀ ਡਿਫਾਲਟ ਸਟਾਈਲ ਵਾਂਗ ਮੌਜੂਦ ਹੈ।\n"
"ਹੋਰ ਨਾਂ ਦਿਓ ਜੀ।"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -970,95 +965,95 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "ਨੇਵੀਗੇਟਰ"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "ਗਲਤ ਪਾਸਵਰਡ ਪੁਸ਼ਟੀ"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "ਭੇਜੋ"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "ਫੋਂਟ"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "ਵਰਜਨ ਟਿੱਪਣੀ ਸ਼ਾਮਿਲ"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "ਸਟਾਈਲ ਸੂਚੀ"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "ਲੜੀਵਾਰ"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "ਭਰਨ ਫਾਰਮੈਟ ਢੰਗ"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "ਚੋਣ ਵਿੱਚੋਂ ਨਵਾਂ ਸਟਾਈਲ"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "ਸਟਾਈਲ ਅੱਪਡੇਟ(~U)"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "ਕੀ ਤੁਸੀਂ ਰਿਕਾਰਡਿੰਗ ਨੂੰ ਰੱਦ ਕਰਨ ਦੀ ਪੁਸ਼ਟੀ ਕਰਦੇ ਹੋ? ਇਸ ਮੌਕੇ ਤੱਕ ਕੋਈ ਵੀ ਹੋਈ ਰਿਕਾਰਡਿੰਗ ਖਤਮ ਹੋ ਜਾਵੇਗੀ।"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "ਰਿਕਾਰਡਿੰਗ ਰੱਦ ਕਰੋ"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "ਟੈਪਲੇਟ ਪਹਿਲੀ ਵਾਰ ਵਰਤੋਂ ਲਈ ਤਿਆਰ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ।"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1067,7 +1062,7 @@ msgstr ""
"ਕੋਈ ਡਿਫਾਲਟ ਪਰਿੰਟਰ ਨਹੀਂ ਲੱਭਿਆ ਹੈ।\n"
"ਪਰਿੰਟਰ ਦੀ ਚੋਣ ਕਰਕੇ ਮੁੜ-ਕੋਸ਼ਿਸ ਕਰੋ ਜੀ।"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1076,17 +1071,17 @@ msgstr ""
"ਪਰਿੰਟਰ ਚਾਲੂ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ।\n"
"ਆਪਣੀ ਪਰਿੰਟਰ ਸੰਰਚਨਾ ਚੈੱਕ ਕਰੋ ਜੀ।"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "ਪਰਿੰਟਰ ਰੁੱਝਿਆ ਹੈ"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (ਕੇਵਲ ਪੜ੍ਹਨ ਲਈ)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1097,7 +1092,7 @@ msgstr ""
"ਕੀ ਤੁਸੀਂ ਨਵੀਂ ਸੈਟਿੰਗ ਨੂੰ ਸਰਗਰਮ ਡੌਕੂਮੈਂਟ ਲਈ\n"
"ਸੰਭਾਲਣਾ ਚਾਹੁੰਦੇ ਹੋ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1108,7 +1103,7 @@ msgstr ""
"ਕੀ ਨਵੀਂ ਸੈਟਿੰਗ ਨੂੰ ਸਰਗਰਮ ਡੌਕੂਮੈਂਟ ਲਈ\n"
"ਸੰਭਾਲਿਆ ਜਾਵੇ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1119,7 +1114,7 @@ msgstr ""
"ਕੀ ਤੁਸੀਂ ਨਵੀਂ ਸੈਟਿੰਗ ਨੂੰ ਸਰਗਰਮ ਡੌਕੂਮੈਂਟ ਲਈ\n"
"ਸੰਭਾਲਣਾ ਚਾਹੁੰਦੇ ਹੋ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1129,7 +1124,7 @@ msgstr ""
"ਡੌਕੂਮੈਂਟ ਨੂੰ ਬੰਦ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ,\n"
" ਕਿਉਕਿ ਪਰਿੰਟ ਕੰਮ ਜਾਰੀ ਹੈ।"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1137,7 +1132,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,18 +1140,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "ਇਸ ਡੌਕੂਮੈਂਟ ਨੂੰ ਸੋਧਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ, ਸੰਭਵ ਤੌਰ ਤੇ ਪਹੁੰਚ ਅਧਿਕਾਰ ਨਹੀਂ ਹਨ। ਕੀ ਤੁਸੀਂ ਡੌਕੂਮੈਂਟ ਦੀ ਕਾਪੀ ਵਿੱਚ ਸੋਧ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1164,353 +1159,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (ਰਿਪੇਅਰ ਕੀਤਾ ਡੌਕੂਮੈਂਟ)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "%PRODUCTNAME ਨੂੰ ਵਧੀਆ ਬਣਾਉਣ ਲਈ ਸਾਡੀ ਮਦਦ ਕਰੋ!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "ਡੌਕੂਮੈਂਟ ਸੋਧ"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "ਫਾਇਲ ਡੌਕੂਮੈਂਟ"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "ਡੌਕ"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "ਅਣ-ਡੌਕ"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "ਕ੍ਰਮਬੱਧ ਚੋਣ"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "ਪਸੰਦੀਦਾ ਐਨੀਮੇਸ਼ਨ"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ਹਟਾਓ"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1886,32 +1891,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "ਸਟਾਈਲ"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "ਨਾਂ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "ਟਾਈਪ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "ਮੁੱਲ"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "ਟਾਈਪ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "ਹਾਂ"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "ਨਹੀਂ"
@@ -1921,17 +1911,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "ਨਾਂ"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "ਟਾਈਪ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "ਮੁੱਲ"
@@ -2072,19 +2062,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "ਟਿਕਾਣਾ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "ਟਾਈਪ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "ਪਾਸਵਰਡ ਨੂੰ ਬਦਲੋ(_C)"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "ਟੈਪਲੇਟ:"
@@ -2094,28 +2084,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "“%1” ਦੀਆਂ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "ਆਮ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "ਵੇਰਵਾ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "ਪਸੰਦੀਦਾ ਵਿਸ਼ੇਸ਼ਤਾ"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "ਸੁਰੱਖਿਆ"
@@ -2342,6 +2332,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/pa-IN/shell/messages.po b/source/pa-IN/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/pa-IN/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/pa-IN/starmath/messages.po b/source/pa-IN/starmath/messages.po
index 537a2ccad02..3d248349bd3 100644
--- a/source/pa-IN/starmath/messages.po
+++ b/source/pa-IN/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1660,274 +1660,299 @@ msgid "Examples"
msgstr "ਉਦਾਹਰਨ"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "ਮਿਆਰੀ"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "ਤਿਰਛੇ"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "ਗੂੜੇ"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "ਕਾਲਾ"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "ਨੀਲਾ"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "ਹਰਾ"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
#, fuzzy
msgctxt "STR_RED"
msgid "red"
msgstr "ਲਾਲ"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ਕਿਰਮਚੀ"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "ਕਿਰਮਚੀ"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "ਸਲੇਟੀ"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "ਸਮਾਂ"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "ਵੈਂਗਣੀ"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "ਪੀਲਾ"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ਓਹਲੇ"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "ਆਕਾਰ"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "ਫੋਂਟ"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ਖੱਬੇ"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ਦਾਖ਼ਲ"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "ਸੱਜੇ"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "ਕਮਾਂਡਾਂ"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "ਫਾਰਮੂਲਾ"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "ਡੌਕੂਮੈਂਟ ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION ਫਾਰਮੂਲਾ"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ਗਲਤੀ : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "ਅਣਚਾਹਿਆ ਅੱਖਰ"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' ਚਾਹੀਦੀ ਸੀ"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' ਚਾ ਹੀਦੀ ਸੀ"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' ਚਾਹੀਦੀ ਸੀ"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' ਚਾਹੀਦੀ ਸੀ"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' ਚਾਹੀਦਾ ਸੀ"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "ਰੰਗ ਲੋੜੀਦਾ ਹੈ"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' ਚਾਹੀਦਾ ਸੀ"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "ਸਮੱਗਰੀ"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ਟਾਇਟਲ"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "ਫਾਰਮੂਲਾ ਟੈਕਸਟ(~F)"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "ਹਾਸ਼ੀਆ"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "ਆਕਾਰ"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "ਅਸਲੀ ਆਕਾਰ"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "ਸਫ਼ੇ ਉੱਤੇ ਫਿੱਟ(~F)"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1999,6 +2024,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "ਇਕਾਈ"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/pa-IN/svtools/messages.po b/source/pa-IN/svtools/messages.po
index 5d11a00e562..93093f1970f 100644
--- a/source/pa-IN/svtools/messages.po
+++ b/source/pa-IN/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-28 02:43+0000\n"
"Last-Translator: a7talam <amanpreet.alam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1533 +15,1535 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1548643418.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ਵਾਪਿਸ: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "ਪਰਤਾਓ(~D): "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "ਦੁਹਰਾ(~R): "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "ਅਣਫਾਰਮੈਟ ਪਾਠ"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx ਅੰਦਰੂਨੀ ਲਿੰਕ ਤੋਂ ਹਾਲਤ ਜਾਣਕਾਰੀ"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "ਨੈੱਟਸਕੇਪ ਬੁੱਕਮਾਰਕ"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "ਸਟਾਰ ਸਰਵਰ ਫਾਰਮੈਟ"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "ਸਟਾਰ ਇਕਾਈ ਫਾਰਮੈਟ"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "ਐਪਲਿਟ ਇਕਾਈ"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "ਪਲੱਗਿੰਨ ਇਕਾਈ"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject ਪੇਂਟ ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "ਮਾਈਕਰੋਸਾਫਟ ਵਲਡ ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ਆਫਿਸ ਡੌਕੂਮੈਂਟ ਇਕਾਈ"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "ਨੋਟਿਸ ਡੌਕੂਮੈਂਟ ਜਾਣਕਾਰੀ"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 ਆਬਜੈਕਟ"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "ਗ੍ਰਾਫਿਕਸ ਇਕਾਈ"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
#, fuzzy
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "OpenOffice.org 1.0 ਮਾਸਟਰ ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
#, fuzzy
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "OpenOffice.org 1.0 ਡਰਾਇੰਗ"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
#, fuzzy
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "OpenOffice.org 1.0 ਚਾਰਟ "
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
#, fuzzy
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "OpenOffice.org 1.0 ਮਾਸਟਰ ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "ਵਿੰਡੋਜ਼ ਮੇਟਾਫਾਇਲ"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "ਡਾਟਾ ਸਰੋਤ ਇਕਾਈ"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "ਡਾਟਾ ਸਰੋਤ ਸਾਰਣੀ"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL ਕਿਊਰੀ"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
#, fuzzy
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "OpenOffice.org 1.0 ਡਰਾਇੰਗ"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "ਸੰਬੰਧ"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "ਬਿਨਾਂ ਟਿੱਪਣੀ ਦੇ HTML ਫਾਰਮੈਟ"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "ਇਕਾਈ % ਨੂੰ ਸ਼ਾਮਿਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਹੈ।"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "ਫਾਇਲ % ਤੋਂ ਇਕਾਈ ਸ਼ਾਮਿਲ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ ਹੈ।"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "ਹੋਰ ਇਕਾਈਆਂ"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "ਅਣਜਾਣ ਸਰੋਤ"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "ਨਾਂ"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "ਆਕਾਰ"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "ਸੋਧ ਮਿਤੀ"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "ਕਿਸਮ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "ਬਾਈਟ"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "ਕਤਾਰ: %1, ਕਾਲਮ: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", ਕਿਸਮ: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "ਫੋਲਡਰ"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "ਫਾਇਲ"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "ਖਾਲੀ ਖੇਤਰ"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ਸ਼ਬਦ-ਅੰਕੀ"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "ਸਧਾਰਨ"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "ਅੱਖਰ ਸਮੂਹ"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "ਸ਼ਬਦ-ਕੋਸ਼"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "ਪਿਨਯਿਨ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "ਠੋਕਰ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "ਕਰਣੀ"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "ਯੂਨੀਕੋਡ"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "ਜੂਯਿਨ"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "ਫੋਨ ਕਿਤਾਬ"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ਬੋਲੀ (ਵਰਣਮਾਲਾ ਅੰਕ ਪਹਿਲਾਂ)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ਬੋਲੀ (ਵਰਣਮਾਲਾ ਅੰਕ ਅੰਤ ਤੇ)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "ਸ਼ਬਦ-ਅੰਕੀ"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "ਸ਼ਬਦ-ਕੋਸ਼"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "ਪਿਨਯਿਨ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "ਕਰਣੀ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "ਠੋਕਰ"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "ਜੂਯਿਨ"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ਬੋਲੀ (ਵਰਣਮਾਲਾ ਅੰਕ ਪਹਿਲਾਂ, ਸਿਲਬੇਸ ਨਾਲ ਸਮੂਹ)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ਬੋਲੀ (ਵਰਣਮਾਲਾ ਅੰਕ ਪਹਿਲਾਂ, ਵਿਅੰਜਣ ਰਾਹੀਂ ਸਮੂਹ)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ਬੋਲੀ (ਵਰਣਮਾਲਾ ਅੰਕ ਅੰਤ ਤੇ, ਸਿਲਬੇਸ ਰਾਹੀਂ ਸਮੂਹ)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ਬੋਲੀ (ਵਰਣਮਾਲਾ ਅੰਕ ਅੰਤ, ਵਿਅੰਜਣ ਨਾਲ ਸਮੂਹ)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "ਅੱਜ"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "ਕੋਈ ਨਹੀਂ"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "ਰੋਸ਼ਨੀ"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "ਰੋਸ਼ਨੀ ਤਿਰਛੀ"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "ਨਿਯਮਿਤ"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ਤਿਰਛੇ"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "ਗੂੜੇ"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "ਗੂੜੇ ਤਿਰਛੇ"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "ਕਾਲਾ"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "ਕਾਲੇ ਤਿਰਛੇ"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "ਕਿਤਾਬ"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "ਗੂੜੇ"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "ਅਰਧ ਗੂੜੇ"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "ਤੁਹਾਡੇ ਪ੍ਰਿੰਟਰ ਅਤੇ ਤੁਹਾਡੇ ਪਰਦੇ ਲਈ ਉਹੀ ਫੋਂਟ ਵਰਤੇ ਜਾਣਗੇ।"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "ਇਹ ਤੁਹਾਡੇ ਪ੍ਰਿੰਟਰ ਫੋਂਟ ਹਨ। ਪਰਦਾ ਚਿੱਤਰ ਵੱਖਰੇ ਹੋ ਸਕਦੇ ਹਨ।"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "ਇਸ ਫੋਂਟ ਸ਼ੈਲੀ ਦਾ ਸਮਰੂਪ ਵਰਤਿਆ ਜਾਵੇਗਾ ਜਾਂ ਨੇੜਲੀ ਮਿਲਦੀ ਸ਼ੈਲੀ ਵਰਤੀ ਜਾਵੇਗੀ।"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "ਇਹ ਫੋਂਟ ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ। ਨੇੜਲੇ ਉਪਲੱਬਧ ਫੋਂਟ ਵਰਤੇ ਜਾਣਗੇ।"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ਝਲਕ..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ਹੋਮ ਉੱਤੇ ਭੇਜੋ"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "ਖੱਬੇ ਭੇਜੋ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "ਸੱਜੇ ਭੇਜੋ"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "ਅੰਤ ਉੱਤੇ ਭੇਜੋ"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "ਸ਼ਾਮਲ"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "ਖਿਤਿਜੀ ਪੈਮਾਨਾ(_Z)"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ਵਰਟੀਕਲ ਰੂਲਰ"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 ਬਿੱਟ ਥਰੈਸ਼ਹੋਲਡ"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 ਬਿੱਟ ਡਿਥਰਡ"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 ਬਿੱਟ ਗਰੇਸਕੇਲ"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "1 ਬਿੱਟ ਰੰਗ"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 ਬਿੱਟ ਗਰੇਸਕੇਲ"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 ਬਿੱਟ ਰੰਗ"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 ਬਿੱਟ ਟਰੂ ਰੰਗ"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "ਤਸਵਰੀ ਲਈ ਮੈਮੋਰੀ ਦੇ %1 KB ਦੀ ਲੋੜ ਹੈ।"
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
#, fuzzy
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "ਤਸਵਰੀ ਲਈ ਮੈਮੋਰੀ ਦੇ %1 KB ਦੀ ਲੋੜ ਹੈ, ਫਾਇਲ ਆਕਾਰ %2 KB ਹੈ।"
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "ਫਾਇਲ ਆਕਾਰ %1 KB ਹੈ।"
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "ਕੀਮਤ"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "ਕ੍ਰਮਬੱਧ"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "ਤਿਆਰ"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "ਵਿਰਾਮ"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "ਬਕਾਇਆ ਹਟਾਉਣ ਲਈ"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "ਰੁਝਿਆ"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "ਸ਼ੁਰੂ ਕੀਤੀ ਜਾਂਦੀ ਹੈ"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "ਉਡੀਕ ਜਾਰੀ ਹੈ"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "ਤਿਆਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "ਕਾਰਵਾਈ ਜਾਰੀ ਹੈ"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "ਪਰਿੰਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "ਬੰਦ(ਆਫਲਾਇਨ)"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "ਗਲਤੀ"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "ਅਣਜਾਣ ਸਰਵਰ"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "ਪੇਪਰ ਜਾਮ"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "ਲੋੜੀਂਦੇ ਸਫ਼ੇ ਨਹੀਂ"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "ਦਸਤੀ ਦਿਓ"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "ਸਫ਼ਾ ਸਮੱਸਿਆ"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O ਐਕਟਿਵ"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "ਆਊਟਪੁੱਟ ਬਕਸਾ ਭਰਿਆ"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "ਟੋਨਰ ਘੱਟ ਹੈ"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "ਟੋਨਰ ਨਹੀਂ ਹੈ"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "ਸਫ਼ਾ ਹਟਾਓ"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "ਵਰਤੋਂਕਾਰ ਦਖਲ ਲਾਜ਼ਮੀ ਹੈ"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "ਲੋੜੀਂਦੀ ਮੈਮੋਰੀ ਨਹੀਂ"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "ਢੱਕਣ ਖੁੱਲਾ"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "ਊਰਜਾ ਬੱਚਤ ਢੰਗ"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "ਮੂਲ ਪਰਿੰਟਰ"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "ਮੁਕੰਮਲ(~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "ਅੱਗੇ(~N) >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "ਡਾਈਲਾਗk)"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "ਪਗ਼"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<none>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "ਕੰਪਨੀ"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "ਵਿਭਾਗ"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "ਪਹਿਲਾ ਨਾਂ"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "ਆਖਰੀ ਨਾਂ"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "ਗਲੀ"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "ਦੇਸ਼"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ZIP ਕੋਡ"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "ਸ਼ਹਿਰ"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "ਸਿਰਲੇਖ"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "ਸਥਿਤੀ"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ਐਡਰੈੱਸ ਫਾਰਮ"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "ਸ਼ੁਰੂਆਤੀ"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "ਅਨੁਪੂਰਕ ਬੰਦ"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "ਟੈਲੀ ਘਰ"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "ਟੈਲੀ ਕੰਮ"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "ਸੂਚਨਾ"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "ਵਰਤੋਂਕਾਰ 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "ਵਰਤੋਂਕਾਰ 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "ਵਰਤੋਂਕਾਰ 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "ਵਰਤੋਂਕਾਰ 5"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "ਸਥਿਤੀ"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "ਟੈਲੀ ਦਫਤਰ"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "ਪੇਜ਼ਰ"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "ਮੋਬਾਇਲ"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "ਟੈਲੀ ਹੋਰ"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "ਕੈਲੰਡਰ"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "ਸੱਦਾ"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ ਦੀਆਂ $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
#, fuzzy
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME ਨੂੰ ਇਹ ਕੰਮ ਕਰਨ ਲਈ ਜਾਵਾ ਰਨਟਾਈਮ ਇੰਵਾਇਰਨਮੈਂਟ (JRE) ਚਾਹੀਦਾ ਹੈ। JRE ਇੰਸਟਾਲ ਕਰਕੇ %PRODUCTNAME ਨੂੰ ਮੁੜ-ਚਾਲੂ ਕਰੋ।"
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ਚਾਹੀਦਾ ਹੈ"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE ਚੁਣੋ"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE ਖ਼ਰਾਬ ਹੈ"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "ਸਰੋਤ ਕੋਡ"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "ਬੁੱਕਮਾਰਕ ਫਾਇਲ"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "ਗ੍ਰਾਫਿਕਸ"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "ਸੰਰਚਨਾ ਫਾਇਲ"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "ਕਾਰਜ"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "ਡਾਟਾਬੇਸ ਸਾਰਣੀ"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "ਸਿਸਟਮ ਫਾਇਲ"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "ਮਾਈਕਰੋਸਾਫਟ ਵਲਡ ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "ਮਦਦ ਫਾਇਲ"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "ਸੰਕੁਚਿਤ ਫਾਇਲ"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "ਲਾੱਗ ਫਾਇਲ"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice ਡਾਟਾਬੇਸ"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 ਮਾਸਟਰ ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice ਚਿੱਤਰ"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "ਟੈਕਸਟ ਫਾਇਲ"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "ਲਿੰਕ"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarWriter 3.0 - 5.0 ਟੈਪਲੇਟ"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS ਐਕਸਲ ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS ਐਕਸਲ ਟੈਪਲੇਟ"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "ਬੈਂਚ ਫਾਇਲ"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "ਫਾਇਲ"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "ਫੋਲਡਰ"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "ਪਾਠ ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "ਸਾਰਣੀਕਾਰ"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "ਪੇਸ਼ਕਾਰੀ"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "ਡਰਾਇੰਗ"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "ਮਾਸਟਰ ਦਸਤਾਵੇਜ਼"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "ਫਾਰਮੂਲਾ"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "ਡਾਟਾਬੇਸ"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "OpenOffice.org 1.0 ਸਪਰੈੱਡ ਸ਼ੀਟ ਟੈਂਪਲੇਟ"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "OpenOffice.org 1.0 ਡਰਾਇੰਗ ਟੈਂਪਲੇਟ"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "OpenOffice.org 1.0 ਪਰਿਜ਼ੈਂਟੇਸ਼ਨ ਟੈਂਪਲੇਟ"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "OpenOffice.org 1.0 ਟੈਕਸਟ ਦਸਤਾਵੇਜ਼ ਟੈਂਪਲੇਟ"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "ਸਥਾਨਕ ਡਰਾਈਵ"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "ਡਿਸਕ ਡਰਾਈਵ"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM ਡਰਾਇਵ"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "ਨੈੱਟਵਰਕ ਕੁਨੈਕਸ਼ਨ"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS ਪਾਵਰਪੁਆਇੰਟ ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS ਪਾਵਰਪੁਆਇੰਟ ਟੈਪਲੇਟ"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS ਪਾਵਰਪੁਆਇੰਟ ਸ਼ੋ"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 ਫਾਰਮੂਲਾ"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 ਚਾਰਟ "
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 ਡਰਾਇੰਗ"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 ਸਪਰੈੱਡ ਸ਼ੀਟ "
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 ਪੇਸ਼ਕਾਰੀ"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 ਪਾਠ ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 ਮਾਸਟਰ ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਡਾਟਾਬੇਸ"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਡਰਾਇੰਗ"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਫਾਰਮੂਲਾ"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਮਾਸਟਰ ਡੌਕੂਮੈਂਟ"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਪਰਿਜੈੱਟੇਸ਼ਨ"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਸਪਰੈੱਡਸ਼ੀਟ"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਟੈਕਸਟ"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਸਪਰੈੱਡਸ਼ੀਟ ਟੈਪਲੇਟ"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਡਰਾਇੰਗ ਟੈਪਲੇਟ"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਪਰਿਜੈੱਟੇਸ਼ਨ ਟੈਪਲੇਟ"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "ਓਪਨਡੌਕੂਮੈਂਟ ਟੈਕਸਟ ਟੈਪਲੇਟ"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME ਐਕਸ਼ਟੇਸ਼ਨ"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/pa-IN/svx/messages.po b/source/pa-IN/svx/messages.po
index 647e93e3a37..786c6a8452a 100644
--- a/source/pa-IN/svx/messages.po
+++ b/source/pa-IN/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-01-28 02:44+0000\n"
"Last-Translator: a7talam <amanpreet.alam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8034,6 +8034,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12561,88 +12566,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "ਢਾਂਚਾ ਸੰਪਾਦਕ"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "ਲਾਗੂ ਕਰੋ"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "ਵਰਕਸਪੇਸ"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "ਚੁਣੋ"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "ਚਤੁਰਭੁਜ"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ਅੰਡਾਕਾਰ"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "ਬਹੁਭੁਜ"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ਬਿੰਦੂ ਸੋਧ"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ਬਿੰਦੂ ਹਿਲਾਓ"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ਬਿੰਦੂ ਸ਼ਾਮਲ"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ਬਿੰਦੂ ਹਟਾਓ"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "ਸਵੈ-ਅੰਤਰ ਲੰਬ"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "ਵਾਪਸ"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "ਲਾਲ"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
#, fuzzy
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "ਪਿਪਟ"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12966,122 +12976,116 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "ਫੁੱਟਰ"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ਚਿੱਤਰਖਾਕਾ ਸੰਪਾਦਕ"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "ਲਾਗੂ ਕਰੋ"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "ਖੋਲ੍ਹੋ..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "ਸੰਭਾਲੋ..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "ਬੰਦ ਕਰੋ"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "ਚੁਣੋ"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "ਚਤੁਰਭੁਜ"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "ਅੰਡਾਕਾਰ"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "ਬਹੁਭੁਜ"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "ਮੁਕਤ ਬਹੁਭੁਜ"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "ਬਿੰਦੂ ਸੋਧ"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "ਬਿੰਦੂ ਹਿਲਾਓ"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "ਬਿੰਦੂ ਸ਼ਾਮਲ"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "ਬਿੰਦੂ ਹਟਾਓ"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "ਵਾਪਸ"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "ਲਾਲ"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "ਸਰਗਰਮ "
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "ਮਾਇਕਰੋ..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "ਵਿਸ਼ੇਸ਼ਤਾ: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "ਐਡਰੈੱਸ:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "ਫਰੇਮ"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/pa-IN/sw/messages.po b/source/pa-IN/sw/messages.po
index c99224be649..5680092a6dd 100644
--- a/source/pa-IN/sw/messages.po
+++ b/source/pa-IN/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-01-29 05:50+0000\n"
"Last-Translator: a7talam <amanpreet.alam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3175,9 +3175,9 @@ msgid "Change object title of $1"
msgstr "$1 ਦਾ ਆਬਜੈਕਟ ਟਾਈਟਲ ਬਦਲੋ"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 ਦਾ ਆਬਜੈਕਟ ਵੇਰਵਾ ਬਦਲੋ"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12579,147 +12579,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12729,152 +12729,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13977,7 +13977,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17442,49 +17442,49 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "ਝਲਕ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "ਝਲਕ"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "ਕਿਸਮ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "ਐਂਟਰੀ(~E)"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "ਸਟਾਈਲ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "ਕਾਲਮ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "ਬੈਕਗਰਾਊਂਡ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "ਝਲਕ"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "ਲੈਵਲ"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17727,325 +17727,325 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "ਸੋਧ..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "ਟਾਈਟਲ(_T)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
#, fuzzy
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "ਕਿਸਮ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "ਟੇਬਲ ਸਮੱਗਰੀ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "ਵਰਤੋਂਕਾਰ ਪਰਭਾਸ਼ਿਤ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ਪੁਸਤਕ ਲਿਸਟ 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "ਫਾਰਮ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "ਪੂਰਾ ਡੌਕੂਮੈਂਟ(~E)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "ਕਾਂਡ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "ਆਉਟਲਾਈਨ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
#, fuzzy
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "ਟੇਬਲ (_T)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "ਪਾਠ ਫਰੇਮ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "ਗਰਾਫਿਕਸ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE ਆਬਜੈਕਟ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "ਸ਼ਰਤਾਂ ਸਟਾਈਲ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "ਸਟਾਈਲ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "ਸੁਰਖੀ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "ਇਕਾਈ ਨਾਂ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "ਕੈਟਾਗਰੀ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "ਡਿਸਪਲੇਅ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "ਹਵਾਲਾ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "ਕੈਟਾਗਰੀ ਅਤੇ ਗਿਣਤੀ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "ਸੁਰਖੀ ਪਾਠ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "ਬਰੈਕਟਾ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[none]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
#, fuzzy
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "ਅੱਖਰ ਆਕਾਰ ਸੰਵੇਦਨਸ਼ੀਲ(_n)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "ਫਾਇਲ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "ਚੋਣ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "ਭਾਸ਼ਾ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "ਕੋਈ ਕਿਸਮ"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "ਕ੍ਰਮਬੱਧ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "ਲੈਵਲ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "(ਪ੍ਹੈਰਾ ਸਟਾਈਲ: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "ਡਿਫਾਲਟ"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "ਸੋਧ(_E)"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/pl/cui/messages.po b/source/pl/cui/messages.po
index c3fdb2816da..cbb55df25aa 100644
--- a/source/pl/cui/messages.po
+++ b/source/pl/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-04-09 18:29+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Podaj poprawny adres motywu lub wyszukiwany termin."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Bez krawędzi"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Tylko zewnętrzne krawędzie"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Zewnętrzne krawędzie i linie poziome"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Zewnętrzne krawędzie i wszystkie linie wewnętrzne"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Zewnętrzne krawędzie bez zmiany linii wewnętrznych"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Tylko linie skośne"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Wszystkie cztery krawędzie"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Tylko lewa i prawa krawędź"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Tylko górna i dolna krawędź"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Tylko lewa krawędź"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Krawędź górna i dolna oraz wszystkie linie wewnętrzne"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Krawędź lewa i prawa oraz wszystkie linie wewnętrzne"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Brak cienia"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Cień na dole i z prawej"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Cień na górze i z prawej"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Cień na dole i z lewej"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Cień na górze i z lewej"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Podpisane przez: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Wszystkie pliki"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Zarejestrowane bazy danych"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME – Informacje"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Po_dziękowania"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Strona interneto_wa"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Ustawienia regionalne: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Język interfejsu: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Wyświetl dziennik: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME to nowoczesny i łatwy w użyciu zestaw programów biurowych, do których należą m.in. edytor tekstów, arkusz kalkulacyjny, program do prezentacji i więcej."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2018. Autorzy LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice został utworzony w oparciu o OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME należy do pakietu LibreOffice, który powstał w oparciu o OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "To wydanie zostało dostarczone przez %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Zamień"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Zam_ień"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Zam_ień na:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Tylko tekst"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Minimalna długość wyrazu"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Właściwości"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Ramka:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nazwa:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Tekst alternatywny:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Opis:"
@@ -9019,80 +9179,80 @@ msgstr "Pokaż wyskakujące okienko \"Brak pomocy w trybie offline\""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Pomoc"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Użyj okien dialogowych programu %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Okna dialogowe do otwierania/zapisywania"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Użyj okien _dialogowych programu %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Okna dialogowe drukowania"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Drukowanie _powoduje ustawienie stanu \"Dokument zmodyfikowany\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stan dokumentu"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretuj jako lata między "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "i "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Rok (dwie cyfry)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Zbieraj informacje o użyciu danych i wyślij je do The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Pomóż ulepszyć %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Ładuj program %PRODUCTNAME podczas uruchamiania systemu"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Włącz szybkie uruchamianie na pasku systemowym"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Moduł szybkiego uruchamiania %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Motywy preinstalowane"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Własny motyw"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Załaduj motyw Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Lub wybierz z zainstalowanych motywów za pośrednictwem rozszerzeń:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Motywy Firefoksa"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opcje bezpieczeństwa"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Wybierz motyw Firefoksa"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Wyszukaj frazę lub adres"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ka_tegoria:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Streszczenie"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Film i TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Wakacje"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Muzyka"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natura"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Inny"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Sceneria"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Sezonowy"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Pełna"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Sporty"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Strony internetowe"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Rekomendowane"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/pl/extensions/messages.po b/source/pl/extensions/messages.po
index e128b5c453a..d01f4feed12 100644
--- a/source/pl/extensions/messages.po
+++ b/source/pl/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-13 18:45+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Układ kolumn w tabeli “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "_Krótka nazwa"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autor(zy)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Wydawca"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Rozdział"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Redaktor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Typ"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Rok"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tyt_uł"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dres"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Stro_n(y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Wydan_ie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Tytuł _książki"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Tom"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "T_yp publikacji"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zacja"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instyt_ucja"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_wersytet"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Typ ra_portu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Miesiąc"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Czasopismo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Num_er"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_ria"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Adn_otacja"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Notatka"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Pole użytkownika _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Pole użytkownika _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Pole użytkownika _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Pole użytkownika _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Pole użytkownika _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nazwy kolumn"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Podaj nazwę nowego typu danych:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Łącz pola"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Sugeruj"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Podformularze mogą być użyte do wyświetlenia szczegółowych danych dotyczących bieżącego rekordu formularza głównego. Określ, które kolumny podformularza odpowiadają kolumnom formularza głównego."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etykieta"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etykieta"
diff --git a/source/pl/helpcontent2/source/auxiliary.po b/source/pl/helpcontent2/source/auxiliary.po
index 4e0c432274e..d172d596233 100644
--- a/source/pl/helpcontent2/source/auxiliary.po
+++ b/source/pl/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-27 11:18+0000\n"
"Last-Translator: Kierek125 <kierek125@onet.pl>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Informacje ogólne"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Prezentacje i rysunki (Impress / Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Paski narzędzi"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Rysunki (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menu"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Paski narzędzi"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Obiekty, grafiki i mapy bitowe"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupy i warstwy"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Tekst w prezentacjach i rysunkach"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/sbasic/guide.po b/source/pl/helpcontent2/source/text/sbasic/guide.po
index 7fc561013ca..25b275ae9f8 100644
--- a/source/pl/helpcontent2/source/text/sbasic/guide.po
+++ b/source/pl/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-09-21 20:32+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Porównanie Access2Base z Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Otwieranie okna dialogowego za pomocą kodu programu"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>moduły i okna dialogowe; przełączanie</bookmark_value><bookmark_value>okna dialogowe;używanie kodu programu do wyświetlenia (przykład)</bookmark_value><bookmark_value>przykłady; wyświetlenie okna dialogowego za pomocą kodu programu</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/sbasic/python.po b/source/pl/helpcontent2/source/text/sbasic/python.po
index a2a2ff00949..9e7e85c1f55 100644
--- a/source/pl/helpcontent2/source/text/sbasic/python.po
+++ b/source/pl/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-02-27 11:18+0000\n"
"Last-Translator: Kierek125 <kierek125@onet.pl>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,7 +77,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,7 +1469,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1493,7 +1493,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1515,6 +1515,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/pl/helpcontent2/source/text/sbasic/shared.po b/source/pl/helpcontent2/source/text/sbasic/shared.po
index a0c142b34e3..ecd6efe4425 100644
--- a/source/pl/helpcontent2/source/text/sbasic/shared.po
+++ b/source/pl/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-25 14:04+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Pomoc Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/sbasic/shared/03.po b/source/pl/helpcontent2/source/text/sbasic/shared/03.po
index a82a6a73d9e..b3b1acc89be 100644
--- a/source/pl/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/pl/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-28 18:54+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr "Funkcje i podprogramy do sterowania modułami."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/pl/helpcontent2/source/text/scalc/01.po b/source/pl/helpcontent2/source/text/scalc/01.po
index c2a42fa93fb..6fdebe0b4c2 100644
--- a/source/pl/helpcontent2/source/text/scalc/01.po
+++ b/source/pl/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-03-31 18:47+0000\n"
"Last-Translator: Kierek125 <kierek125@onet.pl>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Określa plik zawierający dane, które mają zostać wstawione.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Określa tabelę lub zakres danych, które należy wstawić.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Określa zakres komórek, który ma zostać skonsolidowany z zakresami komórek wyświetlonymi w polu <emph>Obszary konsolidacji</emph>. Zaznacz zakres komórek na arkuszu, a następnie kliknij przycisk <emph>Dodaj</emph>. Istnieje także możliwość wyboru wcześniej określonej nazwy komórki z listy <emph>Obszar danych źródłowych</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/pl/helpcontent2/source/text/schart/00.po b/source/pl/helpcontent2/source/text/schart/00.po
index ac2bbd19417..1ea855027f2 100644
--- a/source/pl/helpcontent2/source/text/schart/00.po
+++ b/source/pl/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-10-25 16:03+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">W oknie dialogowym Typu wykresu Wykresu liniowego lub Wykresu XY, który wyświetla linie, wybierz Gładki w Typie linii, a następnie kliknij przycisk Właściwości.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">W oknie dialogowym Typu wykresu Wykresu liniowego lub Wykresu XY, który wyświetla linie, wybierz Krokowy w Typie linii, a następnie kliknij przycisk Właściwości.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/pl/helpcontent2/source/text/shared/00.po b/source/pl/helpcontent2/source/text/shared/00.po
index ab001eabb9f..8c50891fc04 100644
--- a/source/pl/helpcontent2/source/text/shared/00.po
+++ b/source/pl/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-12-20 10:02+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/pl/helpcontent2/source/text/shared/01.po b/source/pl/helpcontent2/source/text/shared/01.po
index daa08fef785..1b77d9bc6f1 100644
--- a/source/pl/helpcontent2/source/text/shared/01.po
+++ b/source/pl/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/pl/helpcontent2/source/text/shared/02.po b/source/pl/helpcontent2/source/text/shared/02.po
index 12a3a801867..a8e8ae79e9a 100644
--- a/source/pl/helpcontent2/source/text/shared/02.po
+++ b/source/pl/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-12-30 11:08+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/pl/helpcontent2/source/text/shared/guide.po b/source/pl/helpcontent2/source/text/shared/guide.po
index 2dae711b700..b5f0ca49491 100644
--- a/source/pl/helpcontent2/source/text/shared/guide.po
+++ b/source/pl/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/pl/helpcontent2/source/text/shared/optionen.po b/source/pl/helpcontent2/source/text/shared/optionen.po
index ea9526a2175..d1d4f37d7f7 100644
--- a/source/pl/helpcontent2/source/text/shared/optionen.po
+++ b/source/pl/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-12-20 16:57+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "po więcej informacji na temat OpenCL, odwiedź <link href=\"https://www.khronos.org/opencl/\">stronę OpenCL</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalizacja"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>motywy;opcje ustawień</bookmark_value> <bookmark_value>opcje ustawień</bookmark_value> <bookmark_value>personalizacja;Motywy Mozilla Firefox</bookmark_value> <bookmark_value>personas;personalizacja</bookmark_value> <bookmark_value>personalizacja;personas</bookmark_value> <bookmark_value>Motywy Mozilla Firefox;personalizacja</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalizacja</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Personalizuje %PRODUCTNAME za pomocą motywów dostępnych dla Mozilla Firefox. Pasek menu oraz górne i dolne paski narzędziowe wyświetlą wybrany motyw w tle."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Motywy Mozilla Firefox dostępne są pod następującym adresem: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Dowolny, zgodny z przeglądarką Firefox motyw, będzie działał także z %PRODUCTNAME. Jakkolwiek nie każdy motyw będzie oferował zadowalające efekty wizualne — jeśli obraz jest zbyt przeładowany szczegółami, wygląd motywu może zakłócać czytelność ikon i pasków menu."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Motywy Firefoksa:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Dostępne są następujące opcje:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Domyślny wygląd, nie używaj motywów"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">Tło pasków narzędziowych dziedziczy ustawienia tła z systemowego menadżer okien.</ahelp> To domyślne zachowanie dla %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Motywy preinstalowane"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Własny motyw"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Wybierz tę opcję, aby otworzyć okno dialogowe \"Wybierz motyw Firefoksa\" i dokonaj własnego wyboru.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Okno Wybierz motyw Firefoksa"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Okno to umożliwia instalację konkretnego motywu lub daje wgląd w inne, interesujące motywy ze strony Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Wyświetla losowy wybór dziewięciu motywów bazując na kategoriach z wybranych przycisków.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Kliknij jeden z pięciu przycisków, aby wyświetlić poniżej obrazy dziewięciu losowych motywów, odpowiadających kategoriom wskazanym w przycisku."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Aby wybrać jeden z wyświetlonych motywów, kliknij na obraz i naciśnij <item type=\"menuitem\">OK</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/pl/helpcontent2/source/text/simpress/01.po b/source/pl/helpcontent2/source/text/simpress/01.po
index 5fce9af96f5..afbf738e7af 100644
--- a/source/pl/helpcontent2/source/text/simpress/01.po
+++ b/source/pl/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-12-20 17:02+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/pl/helpcontent2/source/text/swriter/guide.po b/source/pl/helpcontent2/source/text/swriter/guide.po
index a8742ae7a77..6da4085c4ad 100644
--- a/source/pl/helpcontent2/source/text/swriter/guide.po
+++ b/source/pl/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 14:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Na pasku narzędzi <emph>Standardowy</emph> kliknij ikonę <emph>Nawigator</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Ikona</alt></image>, aby otworzyć <emph>Nawigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po
index 159d756c6fe..ca790dfba62 100644
--- a/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/pl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-09 18:29+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Więcej pól"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Zakładki"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Pogrupowany"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/pl/sc/messages.po b/source/pl/sc/messages.po
index 4bd8abdac1d..df2ce498eb8 100644
--- a/source/pl/sc/messages.po
+++ b/source/pl/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-09 18:30+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15218,6 +15218,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(wyłączny dostęp)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15771,12 +15776,12 @@ msgstr "Zarządzanie formatowaniem warunkowym"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16994,81 +16999,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formularz danych"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Zamknij"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Nowy rekord"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Nowy"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Usuń"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Przywróć"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Poprzednie nagranie"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Następne nagranie"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Zamknij"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Strumienie dynamicznych danych"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Wprowadź adres URL dokumentu źródłowego w lokalnym systemie lub w Internecie."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Przeglądaj..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Zakresy bazy danych:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Dostawcy usług:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Wyszukanie:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Źródło strumienia"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18784,32 +18749,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Wyniki do:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Dane"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Kolumny"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Wiersze"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Grupowanie według"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Odstęp:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametry"
@@ -18949,167 +18919,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Pomoc"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Plik"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Określ krawędzie zaznaczonych komórek."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Zwiększ wcięcie"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Zmniejsz wcięcie"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Menu Startowe"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "Początek"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Pole"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Wstaw"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Wstaw"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "Układ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Układ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "_Statystyki"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dane"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dane"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Recenzja"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Recenzja"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Widok"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "Widok"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Obraz"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Obraz"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Rysowanie"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Rysowanie"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Obiekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Obiekt"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Drukuj"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Drukowanie"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmularz"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmularz"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Narzędzia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Narzędzia"
@@ -21590,17 +21562,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Wyniki wyszukiwania"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Komórka"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Zawartość"
@@ -23470,107 +23452,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Symb_ole konspektu"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Okno"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "_Linie siatki:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Kolor:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Pokaż"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Pokaż na kolorowych komórkach"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Ukryj"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "_Podziały stron"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Linie pomocnicze przy przesu_waniu"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Środki wizualne"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_iekty/obrazy:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Wyk_resy:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Obiekty rys_unkowe:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Pokaż"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Ukryj"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Pokaż"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Ukryj"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Pokaż"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Ukryj"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Obiekty"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_ynchronizuj arkusze"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Powiększenie"
diff --git a/source/pl/scp2/source/ooo.po b/source/pl/scp2/source/ooo.po
index 8089db7c295..d1636695080 100644
--- a/source/pl/scp2/source/ooo.po
+++ b/source/pl/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-09 18:30+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 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: 1554834655.000000\n"
#: folderitem_ooo.ulf
@@ -35,6 +35,14 @@ msgstr "Otwórz dokument"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/pl/scp2/source/winexplorerext.po b/source/pl/scp2/source/winexplorerext.po
index 66ea2eded80..01cab40928d 100644
--- a/source/pl/scp2/source/winexplorerext.po
+++ b/source/pl/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 01:34+0200\n"
-"Last-Translator: marcinz <marcinzb@interia.pl>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:32+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369355534.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Umożliwia programowi Microsoft Windows Explorer wyświetlanie informacji na temat dokumentów %PRODUCTNAME np. miniatur podglądu."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/pl/sd/messages.po b/source/pl/sd/messages.po
index ceec3b85064..64cb07e2fcf 100644
--- a/source/pl/sd/messages.po
+++ b/source/pl/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-09 18:31+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Kliknij, aby otworzyć hiperłącze:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nazwa dla projektu HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Plik"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Pomoc"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "Plik"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Menu Startowe"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Narzędzia główne"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Pole"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Wstaw"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Wstaw"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "Strona"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "Strona"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Recenzja"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Recenzja"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Widok"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "Widok"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~ekst"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertuj"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Obraz"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Obraz"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Rysowanie"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Rysowanie"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obiekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obiekt"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmularz"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmularz"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Narzędzia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Narzędzia"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Pokaż kształty"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "Plik"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Pomoc"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "Plik"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Menu Startowe"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "Narzędzia główne"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Pole"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Wstaw"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Wstaw"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "Slajd"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "S~lajd"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Pokaz slajdów"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Pokaz slajdów"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Recenzja"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Recenzja"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Widok"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "Widok"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Konwertuj"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Obraz"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Obraz"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Rysowanie"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Rysowanie"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obiekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obiekt"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmularz"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmularz"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Narzędzia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Narzędzia"
diff --git a/source/pl/sfx2/messages.po b/source/pl/sfx2/messages.po
index 215d8e20c93..52f8c38bde8 100644
--- a/source/pl/sfx2/messages.po
+++ b/source/pl/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-13 18:49+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " R: %1 M: %2 D: %3 G: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Usuń właściwość"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Wprowadzona wartość nie odpowiada określonemu typowi.\n"
"Wartość zostanie zapisana jako tekst."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Styl już istnieje. Zastąpić?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Ustawi~enia domyślne"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Ta nazwa już jest używana."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Ten styl nie istnieje."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Tego szablonu nie można użyć jako szablonu podstawowego,\n"
"ponieważ mogłoby powstać odwołanie cykliczne."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Ta nazwa jest już nazwą stylu domyślnego.\n"
"Wybierz inną nazwę."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Usunięcie tych stylów spowoduje odwoływanie się tekstu do stylu nadrzędnego.\n"
"Czy mimo to usunąć te style?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Style w użyciu: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Nawigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Nieprawidłowe potwierdzenie hasła"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Wyślij"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Czcionka"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Pokaż podglądy"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Zobacz komentarz do wersji"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(nie ustawiono wartości)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lista stylów"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierarchicznie"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Tryb wypełniania formatem"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Nowy styl z zaznaczenia"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Aktualizuj styl"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Zakończyć rejestrację? Wszystkie kroki zarejestrowane do tej pory zostaną utracone."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Anuluj rejestrację"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Szablony są teraz inicjowane do pierwszego użycia."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Nie znaleziono drukarki domyślnej.\n"
"Wybierz drukarkę i spróbuj jeszcze raz."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Nie można uruchomić drukarki.\n"
"Sprawdź konfigurację drukarki."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Drukarka jest zajęta"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (tylko do odczytu)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Czy nowe ustawienia mają zostać \n"
"zapisane w aktywnym dokumencie?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Czy te nowe ustawienia mają zostać\n"
"zapisane w aktywnym dokumencie?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Czy nowe ustawienia mają zostać \n"
"zapisane w aktywnym dokumencie?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Dokumentu nie można na razie zamknąć,\n"
"ponieważ jest wykonywane zadanie drukowania."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Sprawdź ustawienia programu %PRODUCTNAME lub programu do poczty elektronicznej."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Kod błędu to $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Błąd przy wysyłaniu wiadomości pocztowej"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Nie można otworzyć dokumentu do edycji, prawdopodobnie z powodu braku uprawnień. Czy chcesz użyć go jako szablonu nowego dokumentu?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Możesz także spróbować zignorować blokadę i otworzyć plik do edycji."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Otwórz kopię"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Otwórz"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (dokument naprawiony)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Dokument nie jest wyewidencjonowany na serwerze"
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Pomóż nam uczynić %PRODUCTNAME jeszcze lepszym!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Zaangażuj się"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Twoje darowizny wspierają naszą globalną społeczność."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Donacja"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Dokument otwarty w trybie tylko do odczytu."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Dokument PDF jest otwarty w trybie tylko do odczytu, aby umożliwić podpisanie istniejącego pliku."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Klasyfikacja etykiety dokumentu to %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Przed wklejeniem zawartości schowka należy zaklasyfikować dokument."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Dokument ma niższy poziom klasyfikacji niż zawartość schowka."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Poziom "
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Bezpieczeństwo narodowe:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Kontrola eksportu:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Wyewidencjonuj"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Edytuj dokument"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Podpisz dokument"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Ten dokument ma nieprawidłowy podpis."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Podpis dokumentu był ważny, ale dokument został zmodyfikowany"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Podpis jest prawidłowy, ale weryfikacja certyfikatu nie była możliwa."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Podpis jest prawdłowy, ale dokument jest tylko częściowo podpisany."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Certyfikat nie mógł zostać sprawdzony, a dokument jest tylko częściowo podpisany."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Ten dokument jest podpisany cyfrowo, a podpis jest ważny."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Pokaż podpisy"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Zamyka panel"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Dokuj"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Oddokuj"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Więcej opcji"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Zamknij obszar panelu bocznego"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Ustawienia panelu bocznego"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Dostosowywanie"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Przywróć domyślne"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Zamknij panel boczny"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Beehive"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blue Curve"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blueprint Plans"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Jasnoniebieski"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Klasyczny czerwony"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Skupienie"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Forestbird"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracja"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Światła"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Żywa zieleń"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "MidnightBlue"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Ołówek"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Fortepian"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Postęp"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Zachód słońca"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Jaskrawo"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Wznów"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Domyślny"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Nowoczesny"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Nowoczesny list biznesowy (sans-serif)"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Nowoczesny list biznesowy (serif)"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Wizytówka z logo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Usuń"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Wyczyść wszystkie"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Długość hasła"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Wprowadzone hasło powoduje problemy z interoperacyjnością. Wprowadź hasło o długości mniejszej niż 52 bajty lub długości większej niż 55 bajtów."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Komentarz do wersji"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nazwa"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Typ"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Wartość"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Typ"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Tak"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nie"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Dodaj właściwość"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nazwa"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Typ"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Wartość"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Lokalizacja:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Typ:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Zmień _hasło"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Szablon:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Właściwości \"%1\""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Ogólne "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Opis"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Właściwości niestandardowe"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Właściwości CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Bezpieczeństwo"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Produkt ten został utworzony przez %OOOVENDOR w oparciu o OpenOffice.org, do którego prawa autorskie (2010, 2011) posiada firma Oracle i/lub jej filie. %OOOVENDOR dziękuje całej społeczności. Aby poznać więcej szczegółów, odwiedź proszę http://www.libreoffice.org/"
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/pl/shell/messages.po b/source/pl/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/pl/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/pl/starmath/messages.po b/source/pl/starmath/messages.po
index 7f8c125656f..b9cf74fbd80 100644
--- a/source/pl/starmath/messages.po
+++ b/source/pl/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-09-22 18:08+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Przykłady"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standardowa"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Kursywa"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Pogrubienie"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "black"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "blue"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "green"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "red"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gray"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lime"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "maroon"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "navy"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "olive"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "purple"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "silver"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "teal"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "yellow"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "hide"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "size"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "lewo"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "środek"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "prawo"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Polecenia"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formuła"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Zapisywanie dokumentu..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION - Formuła"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "BŁĄD : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Nieoczekiwany znak"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Nieoczekiwany token"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Oczekiwano znaku '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Oczekiwano znaku '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Oczekiwano znaku '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Oczekiwano znaku ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Brak zgodności symboli"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "oczekiwana 'stała szerokość', 'bezszeryfowa', 'szeryfowa'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'rozmiar', po którym następuje nieoczekiwany token"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Podwójne wyrównanie jest niedozwolone"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Podwójne indeksy są niedozwolone"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Oczekiwano znaku '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Wymagany jest kolor"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Oczekiwano 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Zawartość"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Tytuł"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Tekst ~formuły"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "K~rawędzie"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Rozmiar"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "~Rozmiar oryginalny"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Do~pasuj do strony"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Skalowanie"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementy"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/pl/svtools/messages.po b/source/pl/svtools/messages.po
index 367b68eaaba..59c5d7e1a1d 100644
--- a/source/pl/svtools/messages.po
+++ b/source/pl/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-09 18:31+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1554834675.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Cofnij: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Po~nów: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Powtó~rz: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Niesformatowany tekst"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "NIesformatowany tekst (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Obraz (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Graphics Device Interface metafile (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Rysunek %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "StarView bitmapa/aimacja (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informacja o stanie od wewnętrznego łącza Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "%PRODUCTNAME Link (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Zakładka Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format StarSerwer"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format StarObiekt"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Obiekt apletu"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Obiekt wtyczki"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Obiekt StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Obiekt StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Obiekt StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Obiekt StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Obiekt StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Obiekt StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Obiekt StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Obiekt StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Obiekt StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Obiekt StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Obiekt StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Obiekt StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Obiekt StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Obiekt StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Obiekt StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Obiekt StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Obiekt StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Obiekt StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Obiekt StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Obiekt StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Obiekt StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Obiekt StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Obiekt StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Obiekt StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (DDE link)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Uniwersalny format wymiany danych (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Obiekt Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Obiekt StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Obiekt Office document"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informacja o dokumencie Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Dokument Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Obiekt StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Obiekt graficzny"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "obiekt OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "obiekt OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "obiekt OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "obiekt OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "obiekt OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "obiekt OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "obiekt OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "obiekt OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metaplik Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Obiekt źródła danych"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabela źródła danych"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Kwerenda SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "dialog OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Łącze"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Format HTML bez komentarzy"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphics (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Nie można wstawić obiektu %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Nie można wstawić obiektu z pliku %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Dodatkowe obiekty"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Nieznane źródło"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nazwa"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Rozmiar"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Data modyfikacji"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Typ"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "B"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Wiersz: %1, Kolumna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Typ: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Katalog"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Plik"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Puste pole"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeryczny"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Zwykły"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Zestaw znaków"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Słownik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Kreski (stroke)"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Korzeń-rdzeń"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin (Bopomofo)"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Książka telefoniczna"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetycznie (alfanumeryczne na początku)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetycznie (alfanumeryczne na końcu)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeryczny"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Słownik"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Korzeń-rdzeń"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Kreski (stroke)"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin (Bopomofo)"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetycznie (alfanumeryczne na początku, wg sylab)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetycznie (najpierw alfanumeryczne, wg spółgłosek)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetycznie (alfanumeryczne na końcu, wg sylab)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetycznie (alfanumeryczne na końcu, wg spółgłosek)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Dzisiaj"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Brak"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Lekka"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Kursywa lekka"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Regularna"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Kursywa"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Pogrubiona"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Pogrubiona kursywa"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Czarna"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Czarna kursywa"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Książka"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Pogrubiony ukośny"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Ścieśniony"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Ścieśnione pogrubione"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Zagęszczona pogrubiona kursywa"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Zagęszczona pogrubiona pochylona"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Zagęszczona kursywa"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Zagęszczona pochylona"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extra cienka"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Ekstra lekka kursywa"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Nachylenie"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Półgruby"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Pół-pogrubiona kursywa"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Ta sama czcionka będzie użyta zarówno na wydruku, jak i na ekranie."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "To jest czcionka drukarkowa. Obraz na ekranie może się nieco różnić."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Ten styl czcionki będzie symulowany lub zostanie użyty styl najbardziej podobny."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Ta czcionka nie jest zainstalowana. Zostanie użyta dostępna, najbardziej podobna czcionka."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Przeglądaj..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Przenieś na początek"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Przenieś w lewo"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Przenieś w prawo"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Przenieś na koniec"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Dodaj"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Linijka pozioma"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Linijka pionowa"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Wartość progowa 1-bitowa"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Wygładzenie 1-bitowe"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4-bitowa skala szarości"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4-bitowy kolor"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8-bitowa skala szarości"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8-bitowy kolor"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 bity True Color"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Zdjęcie potrzebuje około %1 KB pamięci."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Zdjęcie potrzebuje około %1 KB pamięci, a rozmiar pliku wynosi %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Rozmiar pliku wynosi %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Inny CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Gotowe"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Wstrzymane"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Oczekiwanie na usunięcie"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Zajęty"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicjalizacja"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Oczekiwanie"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Rozgrzewanie"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Przetwarzanie"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Drukowanie"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Tryb offline"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Błąd"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Nieznany serwer"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Zakleszczenie papieru"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Brak papieru"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Ręczne podawanie papieru"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problem z papierem"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Wejście/wyjście aktywne"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Zasobnik wyjściowy zapełniony"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Mało tonera"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Brak tonera"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Usuń stronę"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Konieczna interwencja użytkownika"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Za mało pamięci"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Pokrywa otwarta"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Tryb oszczędzania energii"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Drukarka domyślna"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Liczba dokumentów: %d"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Utwórz"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Dalej >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< Wstecz"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Kroki"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<brak>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Firma"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Dział"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Imię"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Nazwisko"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Ulica"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Kraj"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Kod pocztowy"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Miejscowość"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Tytuł"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Pozycja"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Zwrot grzecznościowy"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inicjały"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Zwrot grzecznościowy"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefon (dom)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefon (praca)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Faks"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Email"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notatka"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Użytkownik 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Użytkownik 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Użytkownik 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Użytkownik 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Identyfikator"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Województwo"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefon (praca)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Telefon komórkowy"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefon (inny)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalendarz"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Zaproszenie"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Do wykonania tej operacji %PRODUCTNAME wymaga środowiska Java (JRE). Zainstaluj JRE i uruchom ponownie %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Do wykonania tej operacji %PRODUCTNAME wymaga %BITNESS-bitowego środowiska Java (JRE). Zainstaluj JRE i uruchom ponownie %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "Do wykonania tej operacji %PRODUCTNAME wymaga Oracle Java Development Kit (JDK) na systemie macOS 10.10 lub nowszym. Zainstaluj JDK i uruchom ponownie %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracja %PRODUCTNAME została zmieniona. Kliknij kolejno %PRODUCTNAME - Preferencje - %PRODUCTNAME - Zaawansowane, a następnie wybierz środowisko Java, które ma być używane przez %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Konfiguracja %PRODUCTNAME została zmieniona. Kliknij kolejno Narzędzia - Opcje - %PRODUCTNAME - Zaawansowane, a następnie wybierz środowisko Java, które ma być używane przez %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Do wykonania tej operacji %PRODUCTNAME wymaga środowiska Java (JRE). Wykryte środowisko JRE jest niepoprawne. Wybierz inną wersję JRE lub zainstaluj nową wersję i wybierz ją, klikając: %PRODUCTNAME - Opcje - %PRODUCTNAME - Zaawansowane."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Do wykonania tej operacji %PRODUCTNAME wymaga środowiska Java (JRE). Wykryte środowisko JRE jest niepoprawne. Wybierz inną wersję JRE lub zainstaluj nową wersję i wybierz ją, klikając: Narzędzia - Opcje - %PRODUCTNAME - Zaawansowane."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Wymagane JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Wybierz JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "Wadliwe JRE"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Kod źródłowy"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Plik zakładek"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafika"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Plik konfiguracyjny"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplikacja"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabela bazy danych"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Plik systemowy"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Dokument programu MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Plik pomocy"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Dokument HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Plik archiwalny"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Plik dziennika"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Baza danych StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Dokument główny"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Obraz StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Plik tekstowy"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Łącze"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Szablon StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Dokument programu MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Szablon programu MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Plik wsadowy"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Plik"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Katalog"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Dokument tekstowy"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Arkusz kalkulacyjny"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentacja"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Rysunek"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Dokument HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Dokument główny"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formuła"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Baza danych"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Szablon arkuszu kalkulacyjnego OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Szablon rysunku OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Szablon prezentacji OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Szablon dokumentu tekstowego OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Dysk lokalny"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Napęd"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Napęd CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Połączenie sieciowe"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Dokument programu MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Szablon programu MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Prezentacja programu MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Formuła OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Wykres OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Rysunek OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Arkusz kalkulacyjny OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Prezentacja OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Dokument tekstowy OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Dokument główny OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Dokument MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Baza danych OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Rysunek OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Formuła OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Dokument główny OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Prezentacja OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Arkusz kalkulacyjny OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Dokument tekstowy OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Szablon arkusza kalkulacyjnego OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Szablon rysunku OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Szablon prezentacji OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Szablon dokumentu tekstowego OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Rozszerzenie programu %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Sprawdzanie pisowni Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Dzielenie wyrazów Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Słownik wyrazów bliskoznacznych MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lista ignorowanych wyrazów"
diff --git a/source/pl/svx/messages.po b/source/pl/svx/messages.po
index b308660a8cf..34c01de860f 100644
--- a/source/pl/svx/messages.po
+++ b/source/pl/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-09 18:31+0000\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Od lewej do prawej (pionowo)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Określ procent przesunięcia pionowego od środka dla stylu cieniowania gradientu. Środek w pionie to 50%."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Edytor konturu"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Zastosuj"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Obszar roboczy"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Wybierz"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Prostokąt"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Wielokąt"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Edycja punktów"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Przesuń punkty"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Wstaw punkty"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Usuń punkty"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Autokontur"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Cofnij "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Ponów"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolerancja koloru"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Stopka"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Edytor mapy obrazkowej"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Zastosuj"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Otwórz..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Zapisz..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Zamknij"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Wybierz"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Prostokąt"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsa"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Wielokąt"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Wielokąt odręczny"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Edycja punktów"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Przesuń punkty"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Wstaw punkty"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Usuń punkty"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Cofnij "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Ponów"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Aktywny"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Właściwości..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adres:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Ramka:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Tekst:"
diff --git a/source/pl/sw/messages.po b/source/pl/sw/messages.po
index 4394f66d5ba..1763bcf9409 100644
--- a/source/pl/sw/messages.po
+++ b/source/pl/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Piotr Roszkowski <piotrekr1@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pl\n"
@@ -3119,9 +3119,9 @@ msgid "Change object title of $1"
msgstr "Zmień tytuł obiektu dla $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Zmień opis obiektu dla $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12011,147 +12011,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Pomoc"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "Plik"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "Menu Startowe"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "Narzędzia główne"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Wstaw"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Wstaw"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Układ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Układ"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Odwołania"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Odwołania"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Recenzja"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "Recenzja"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "Widok"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "Widok"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Obraz"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Obraz"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Rysowanie"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Rysunek"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Obiekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Obiekt"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Media"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Drukuj"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Drukowanie"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmularz"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmularz"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Narzędzia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Narzędzia"
@@ -12161,152 +12161,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Plik"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Wstaw"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Opływanie"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Rozkład strony / Makieta"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Odwołania"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "Recenzja"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "Widok"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Obraz"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Rysowanie"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Obiekt"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Media"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Wydruk"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Narzędzia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13373,8 +13373,8 @@ msgstr "Rozszerz przestrzeń między wyrazami w wierszach z ręcznym podziałem
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Chroń formularz"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16654,47 +16654,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Spis treści, indeks lub bibliografia"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Podgląd"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Podgląd"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Typ"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Wpisy"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Style"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Kolumny"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Tło"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Podgląd"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "P_oziom"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Typ"
@@ -16924,302 +16924,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Edycja..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Tytuł:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Typ:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Spis treści"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Indeks alfabetyczny"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Wykaz rysunków"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Indeks tabel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Użytkownika"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Spis obiektów"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Chroniony przed ręcznymi zmianami"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Typ i tytuł"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Dla:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Cały dokument"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Rozdział"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Uwzględnij poziom:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Utwórz indeks lub spis treści"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Konspekt"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Znaczniki indeksu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabele"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Ramki te_kstu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafika"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Obiekty OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Poziom z rozdziału źródłowego"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Dod_atkowe style"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Styl_e"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Przypisz style..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Podpisy"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Nazwy obiektów"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Kategoria:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Wyświetl:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Odwołania"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Kategoria i numer"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Tekst podpisu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Utwórz z"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Utwórz z następujących obiektów"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Nawiasy:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "_Numeruj wpisy"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[none]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatowanie wpisów"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Połącz takie same wpisy"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Połącz takie same wpisy znakiem p lub _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Połącz przy użyciu znaku -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Uwzględniaj wielkość liter"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Wpisy automatycznie wielką literą"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Klucze jako osobne wpisy"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Plik konkor_dancji"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Plik"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opcje"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Język:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Typ klucza:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sortowanie"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Poziomy"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Style akapitu"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Domyślnie"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Edycja"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Przypisanie"
diff --git a/source/pt-BR/cui/messages.po b/source/pt-BR/cui/messages.po
index 53a87ee7013..efcbe04f37d 100644
--- a/source/pt-BR/cui/messages.po
+++ b/source/pt-BR/cui/messages.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-13 00:49+0000\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
+"PO-Revision-Date: 2019-05-30 12:59+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\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: 1557708560.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559221173.000000\n"
#: cui/inc/numcategories.hrc:17
msgctxt "numberingformatpage|liststore1"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Insira um endereço de tema válido ou um termo de pesquisa."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "A API dos temas do Mozilla está indisponível."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Sem bordas"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Apenas a borda externa"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Definir a borda externa e as linhas horizontais"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Definir a borda externa e todas as linhas internas"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Definir a borda externa sem alterar as linhas internas"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Definir apenas as linhas diagonais"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Todas as quatro bordas"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Apenas as bordas esquerda e direita"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Apenas as bordas superior e inferior"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Apenas a borda esquerda"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Bordas superior e inferior e todas as linhas internas"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Bordas esquerda e direita e todas as linhas internas"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Sem sombra"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Projetar sombra para direita embaixo"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Projetar sombra para direita em cima"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Projetar sombra para esquerda embaixo"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Projetar sombra para a esquerda em cima"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Assinado por: %1 "
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Todos os arquivos"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Bancos de dados registrados"
@@ -1781,743 +1776,744 @@ msgstr "Para iniciar temporariamente com um perfil de usuário novo ou restaurar
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr "Mude as fontes básicas dos modelos predefinidos ou do documento aberto com Ferramentas > Opções > %PRODUCTNAME Writer > Fontes básicas."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
#: cui/inc/tipoftheday.hrc:52
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document."
-msgstr ""
+msgstr "Grave textos a repetir como autotexto. Você poderá inseri-los por um nome, atalho ou barra de ferramentas em qualquer documento do Writer."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/autotext.html
#: cui/inc/tipoftheday.hrc:53
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools > Options > %PRODUCTNAME Writer > AutoCaption."
-msgstr ""
+msgstr "O %PRODUCTNAME pode inserir uma legenda numerada automaticamente ao inserir objetos. Veja em Ferramentas > Opções %PRODUCTNAME Writer > Autolegendas"
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01041100.html
#: cui/inc/tipoftheday.hrc:54
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools > Sort."
-msgstr ""
+msgstr "Ordene parágrafos ou linhas de tabela alfabeticamente ou numericamente com Ferramentas > Ordenar."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/06100000.html
#: cui/inc/tipoftheday.hrc:55
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sections in %PRODUCTNAME Writer to protect part of a text, show/hide text, reuse parts from other documents, use different column layout."
-msgstr ""
+msgstr "Utilize seções no %PRODUCTNAME Writer para proteger partes do texto, mostrar ou ocultar texto, reutilizar partes de outros documentos ou utilizar leiaute de colunas diferenciado."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/01/04020100.html
#: cui/inc/tipoftheday.hrc:56
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Sheet > Fill Cells > Random Number to generate a random series based on various distributions."
-msgstr ""
+msgstr "Utilize Planilhas > Preencher células > Números aleatórios para gerar uma série de números aleatórios baseados em várias distribuições."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/02140700.html
#: cui/inc/tipoftheday.hrc:57
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Conditional Formatting > Manage in Calc to find out which cells have been defined with conditional formatting."
-msgstr ""
+msgstr "No Calc, utilize Formatar > Formatação condicional > Gerenciar para descobrir que células possuem formatação condicional."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/05120000.html
#: cui/inc/tipoftheday.hrc:58
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes."
-msgstr ""
+msgstr "Além do índice, o %PRODUCTNAME pode criar índices alfabéticos, de ilustrações, de tabelas, de objetos, bibliográfico e índices definidos pelo usuário."
#. https://help.libreoffice.org/6.2/en-US/text/swriter/guide/indices_toc.html
#: cui/inc/tipoftheday.hrc:59
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
-msgstr ""
+msgstr "Quer ordenar uma série no %PRODUCTNAME Calc tal como A1, A2, A3, A11, A15, fora da ordem natural mas pelo número? Ative a ordenação natural na aba das Opções."
#. https://help.libreoffice.org/6.2/en-US/text/scalc/01/12030200.html
#: cui/inc/tipoftheday.hrc:60
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Enable massive parallel calculations of formula cells via Tools > Options > OpenCL."
-msgstr ""
+msgstr "Ative a computação paralela de fórmulas em grandes volumes de dados com Ferramentas > Opções > OpenCL."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/opencl.html
#: cui/inc/tipoftheday.hrc:61
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."
-msgstr ""
+msgstr "O %PRODUCTNAME suporta 4 níveis de segurança de macros (de fraca a muito forte) e de fontes confiáveis."
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01030300.html
#: cui/inc/tipoftheday.hrc:63
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?"
-msgstr ""
+msgstr "Deseja conhecer os parâmetros de chamada válidos? inicie o %PRODUCTNAME com soffice e --help ou -h ou -?"
#. local help missing
#: cui/inc/tipoftheday.hrc:64
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function."
-msgstr ""
+msgstr "Quer gerenciar a apresentação de hiperlinks em planilhas? Insira-os com a função HIPERLINK."
#. local help missing
#: cui/inc/tipoftheday.hrc:65
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Can not get what you want with VLOOKUP? With INDEX and MATCH you can do everything!"
-msgstr ""
+msgstr "Não consegue obter o que quer com PROCV? Com ÍNDICE e CORRESP você pode tudo!"
#. local help missing
#: cui/inc/tipoftheday.hrc:66
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can sign existing PDF files and also verify those signatures."
-msgstr ""
+msgstr "Você pode assinar digitalmente arquivos PDF existentes e conferir as assinaturas."
#. local help missing
#: cui/inc/tipoftheday.hrc:67
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer includes LibreLogo: simple Logo-like programming environment with turtle vector graphics, DTP and graphic design."
-msgstr ""
+msgstr "O Writer inclui o LibreLogo, um ambiente de programação similar ao Logo, com a tartaruguinha de desenho vetorial, DTP e projeto gráfico."
#. local help missing
#: cui/inc/tipoftheday.hrc:68
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can protect cells with Format > Cells > Protection. To prevent insert, delete, rename, move/copy of sheets use Tools > Protect Sheet."
-msgstr ""
+msgstr "Você pode proteger células com Formatar > Células > Proteger. Para evitar de inserir, excluir, renomear, mover ou copiar planilhas, utilize Ferramentas > Proteger planilha."
#. local help missing
#: cui/inc/tipoftheday.hrc:69
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You want to add x months to a date? Use =EDATE(date;months)."
-msgstr ""
+msgstr "Quer adicionar x meses a uma data? Utilize = DATAM(data;meses)"
#. local help missing
#: cui/inc/tipoftheday.hrc:70
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependants (Shift+F5) (or use Tools > Detective). For each hit you go one more step in the chain."
-msgstr ""
+msgstr "Rastreie células usadas numa fórmula, precedentes (Shift+F9) ou dependentes (Shift+F5) (ou utilize Ferramentas > Detetive). Para cada acerto, você sobe um degrau na cadeia."
#. local help missing
#: cui/inc/tipoftheday.hrc:71
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You need to fill a serie? Select the cell range and Sheet > Fill Cells > Fill Series and choose between Linear, Growth, Date and AutoFill."
-msgstr ""
+msgstr "Precisa preencher uma série? Selecione o intervalo de células e escolha Planilha > Preencher células > Séries e escolha entre linear, crescente, data ou autopreenchimento"
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
-msgstr ""
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
+msgstr "Você pode utilizar sua conta no Google Mail com o %PRODUCTNAME para fazer uma mala direta. Preencha o e-mail em Ferramentas > Opções > %PRODUCTNAME Writer > Mala direta de E-mail."
#. local help missing
#: cui/inc/tipoftheday.hrc:73
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Data > Validity allows you to create drop-down lists where the user selects a value instead of typing."
-msgstr ""
+msgstr "Dados > Validação permite criar listas suspensas para selecionar valores predeterminados em vez de digitá-los. "
#. local help missing
#: cui/inc/tipoftheday.hrc:74
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use View > Value Highlighting to display cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected cells/grey background."
-msgstr ""
+msgstr "Utilize Exibir > Realce de valores para mostrar a natureza do conteúdo das células em cores: Texto/preto, fórmulas/verde, números/azul, protegidas/plano de fundo cinza."
#. local help missing
#: cui/inc/tipoftheday.hrc:75
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:"
-msgstr ""
+msgstr "Erro estranho no Calc, Err: seguido de número? Esta página explica:"
#. local help missing
#: cui/inc/tipoftheday.hrc:76
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to find the words in bold in a Writer document? Edit > Find & Replace > Other options > Attributes > Font weight."
-msgstr ""
+msgstr "Deseja encontra palavras em negrito num documento do Writer? Editar > Localizar & substituir > Outras opções > Atributos > Espessura da fonte."
#. local help missing
#: cui/inc/tipoftheday.hrc:77
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to remove all <> at once and keep the text inside? Edit > Find & Replace: Search = [<|>], Replace = blank and check ‘Regular expressions’ under Other options."
-msgstr ""
+msgstr "Deseja remover todas as <> de uma só vez a manter o texto dentro? Editar > Localizar &substituir: Pesquisar =[<|>], Substituir = (em branco) e marque 'Expressões regulares' em Outras opções."
#. local help missing
#: cui/inc/tipoftheday.hrc:78
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Tools > Detective > Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules."
-msgstr ""
+msgstr "Ferramentas > Detetive > Marcar dados inválidos destaca todas as células na planilha que contém dados que violam as regras de validação."
#. local help missing
#: cui/inc/tipoftheday.hrc:79
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to allow changes to parts of a read-only document in Writer? Insert frames or sections that can authorize changes."
-msgstr ""
+msgstr "Precisa alterar conteúdo em partes protegidas do documento Writer? Insira um quadro ou seção que autorize mudanças."
#. local help missing
#: cui/inc/tipoftheday.hrc:80
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writing a book? %PRODUCTNAME master document lets you manage large documents as a container for individual %PRODUCTNAME Writer files."
-msgstr ""
+msgstr "Escrever um livro? o documento mestre do %PRODUCTNAME permite gerenciar grandes documentos como conteiner de arquivos individuais do %PRODUCTNAME Writer."
#. local help missing
#: cui/inc/tipoftheday.hrc:81
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values."
-msgstr ""
+msgstr "Utilize a função MÉDIA.INTERNA() para retornar a média de dados excluindo o maior e o menor valor."
#. local help missing
#: cui/inc/tipoftheday.hrc:82
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500."
-msgstr ""
+msgstr "Calcule pagamentos de empréstimos no Calc: PGTO(2%/12;36;2500) taxa de juros 2%/12, 36 meses, empréstimo de 2500."
#. local help missing
#: cui/inc/tipoftheday.hrc:83
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use your Android or iPhone to remotely control your Impress presentation."
-msgstr ""
+msgstr "Controle sua apresentação Impress com o controle remoto para Android e iPhone."
#. local help missing
#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?"
-msgstr ""
+msgstr "A console do apresentador é um recurso sensacional para o %PRODUCTNAME Impress. Já conferiu?"
#. local help missing
#: cui/inc/tipoftheday.hrc:85
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Automatically mark alphabetical index entries using a concordance file."
-msgstr ""
+msgstr "Marque automaticamente as entradas do índice alfabético com um arquivo de concordâncias."
#. local help missing
#: cui/inc/tipoftheday.hrc:86
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Frames can be linked so that the text can flow from one to the other as in desktop publishing."
-msgstr ""
+msgstr "Vincule quadros para permitir que o texto possa fluir entre eles como em programas de desktop publishing."
#. local help missing
#: cui/inc/tipoftheday.hrc:88
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get help from the community via the Ask portal."
-msgstr ""
+msgstr "Obtenha ajuda da comunidade pelo portal Ask: menu Ajuda > Obter ajuda online"
#: cui/inc/tipoftheday.hrc:89
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has great extensions to increase your productivity, check them out."
-msgstr ""
+msgstr "O %PRODUCTNAME tem extensões interessantes para melhorar sua produtividade. Confira!"
#: cui/inc/tipoftheday.hrc:90
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a template center to create good looking documents, check it out."
-msgstr ""
+msgstr "O %PRODUCTNAME tem um sítio web só de modelos para criar documentos bem apresentados. Confira!"
#: cui/inc/tipoftheday.hrc:91
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Embedded help is available by clicking on F1, if you've installed it. Otherwise check online at:"
-msgstr ""
+msgstr "A ajuda local está disponível ao clicar F1, se estiver instalada. Senão verifique online em:"
#: cui/inc/tipoftheday.hrc:92
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Get %PRODUCTNAME documentation and free user guide books at:"
-msgstr ""
+msgstr "Consiga documentação do %PRODUCTNAME e guias de usuários grátis em:"
#: cui/inc/tipoftheday.hrc:93
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your donations support our worldwide community."
-msgstr ""
+msgstr "Sua doação apoiam nossa comunidade internacional."
#: cui/inc/tipoftheday.hrc:94
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as an extension."
-msgstr ""
+msgstr "É fácil instalar novos dicionários no %PRODUCTNAME: são fornecidos como extensões."
#: cui/inc/tipoftheday.hrc:95
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding."
-msgstr ""
+msgstr "O %PRODUCTNAME é desenvolvido com uma comunidade bem bacana, constituída de centenas de contribuidores mundo afora. Faça parte desta comunidade com suas competências e habilidades além do mundo da programação."
#: cui/inc/tipoftheday.hrc:96
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME has a portable version which gives you mobility. Even without administrator rights on your computer you can install %PRODUCTNAME Portable to your hard drive too."
-msgstr ""
+msgstr "O %PRODUCTNAME tem uma versão portátil que permite a mobilidade. Mesmo sem ser administrador do computador, você pode instalar o %PRODUCTNAME Portable no seu disco HD."
#: cui/inc/tipoftheday.hrc:97
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME allows you to use assistive tools, such as external screen readers, Braille devices or speech recognition input devices."
-msgstr ""
+msgstr "O %PRODUCTNAME permite utilizar ferramentas de assistência, como leitores de telas, dispositivos Braille ou dispositivos de reconhecimento de voz."
#: cui/inc/tipoftheday.hrc:98
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create editable Hybrid PDFs with %PRODUCTNAME."
-msgstr ""
+msgstr "Crie arquivos PDF editáveis híbridos com o %PRODUCTNAME."
#: cui/inc/tipoftheday.hrc:99
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Citation management ? Use a 3rd party extension."
-msgstr ""
+msgstr "Quer gerenciar citações? Utilize uma extensão de terceiros."
#: cui/inc/tipoftheday.hrc:100
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You plan to change the computer and want to recover your customizations? See:"
-msgstr ""
+msgstr "Planeja trocar de computador mas quer manter sua personalização? Veja:"
#: cui/inc/tipoftheday.hrc:101
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME supports over 150 languages."
-msgstr ""
+msgstr "O %PRODUCTNAME suporta mais de 150 idiomas."
#: cui/inc/tipoftheday.hrc:102
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers."
-msgstr ""
+msgstr "Quer se tornar um Embaixador do %PRODUCTNAME? Há programas de certificação para desenvolvedores, administradores e instrutores."
#: cui/inc/tipoftheday.hrc:103
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"
-msgstr ""
+msgstr "O %PRODUCTNAME participa do Google Summer of Code (GSoC). Veja:"
#: cui/inc/tipoftheday.hrc:104
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create fillable form documents (even PDF's) with %PRODUCTNAME."
-msgstr ""
+msgstr "Crie formulários a preencher (até mesmo PDFs) com o %PRODUCTNAME."
#: cui/inc/tipoftheday.hrc:105
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Run %PRODUCTNAME in any browser via rollApp."
-msgstr ""
+msgstr "Execute o %PRODUCTNAME em qualquer navegador via rollApp."
#: cui/inc/tipoftheday.hrc:106
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Developing new XSLT and xml filters?"
-msgstr ""
+msgstr "Quer desenvolver um novo XSLT e filtros xml?"
#: cui/inc/tipoftheday.hrc:108
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar."
-msgstr ""
+msgstr "Converta seu documento para PDF com um clique no ícone PDF na barra de ferramentas."
#: cui/inc/tipoftheday.hrc:109
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select a different icon set from Tools > Options > %PRODUCTNAME > View > User Interface > Icon size and style."
-msgstr ""
+msgstr "Mude os ícones em Ferramentas > Opções > %PRODUCTNAME > Exibir > Interface do usuários > Tamanho e estilo dos ícones."
#: cui/inc/tipoftheday.hrc:110
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use font embedding for greater interoperability with other office suites at File > Properties > Font."
-msgstr ""
+msgstr "Para melhor interoperabilidade com outras suítes office, incorpore as fontes utilizadas no seu documento em Arquivo > Propriedades > Fonte."
#: cui/inc/tipoftheday.hrc:111
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Generate fully customized PDF documents with the exact format, image compression, comments, access rights, password, etc., via File > Export as PDF."
-msgstr ""
+msgstr "Produza documentos PDF personalizados com formato exato, compressão de imagem, direitos de acesso, senhas, etc... com Arquivo > Exportar como PDF."
#: cui/inc/tipoftheday.hrc:112
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Data > Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc."
-msgstr ""
+msgstr "Utilize Dados > Estatísticas para amostragem, estatística descritiva, análise de variância, correlação e muito mais no %PRODUCTNAME Calc."
#: cui/inc/tipoftheday.hrc:113
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Right-click in the status bar in %PRODUCTNAME Calc and select 'Selection count' to display the number of selected cells."
-msgstr ""
+msgstr "Clique com o botão da direita na barra de status no %PRODUCTNAME Calc e selecione \"Contagem da seleção\" para mostrar o número de células selecionadas."
#: cui/inc/tipoftheday.hrc:114
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Impress use Insert > Media > Photo Album to create a slideshow from a series of pictures with the 'Photo Album' feature."
-msgstr ""
+msgstr "Crie um slideshow no %PRODUCTNAME Impress com uma série de imagens em Inserir > Multimídia > Álbum fotográfico."
#: cui/inc/tipoftheday.hrc:115
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Did you know that you can attach comments to portions of text? Just use shortcut Ctrl+Alt+C for it."
-msgstr ""
+msgstr "Você pode anexar anotações a porções do texto. Utilize o atalho Ctrl+Alt+C."
#: cui/inc/tipoftheday.hrc:116
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to insert the date in a spreadsheet cell? Type Ctrl+; or Shift+Ctrl+; to insert the time."
-msgstr ""
+msgstr "Precisa inserir a data numa célula da planilha? Digite Ctrl+; para a data ou Shift+Ctrl+; para inserir a hora."
#: cui/inc/tipoftheday.hrc:117
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut Ctrl+Alt+Arrow (Up/Down)"
-msgstr ""
+msgstr "Precisa mover um ou mais parágrafos? Não precisa copiar e colar: Utilize os atalhos Ctrl+Alt+setas (para cima ou para baixo)."
#: cui/inc/tipoftheday.hrc:118
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File > Wizards > Document converter."
-msgstr ""
+msgstr "Converta um lote de arquivo do Microsoft Office para o formato Open Document com o assistente de conversão em Arquivo > Assistentes > Conversor de documentos."
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
-msgstr ""
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgstr "Desmarque Ferramentas > Opções > %PRODUCTNAME Calc > Exibir > Zoom \"Sincronizar planilhas\" para que cada planilha tenha seu próprio fator de zoom."
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet > Sheet from file."
-msgstr ""
+msgstr "Abra um arquivo CSV numa planilha nova do documento aberto com Planilha > Inserir planilha do arquivo."
#: cui/inc/tipoftheday.hrc:121
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to move a Writer table? Table > Select > Table and Insert > Frame… and move where you want."
-msgstr ""
+msgstr "Precisa mover uma tabela no Writer? Tabela > Selecionar > Tabela e Inserir > Quadro.. e mova para onde desejar."
#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "In %PRODUCTNAME Draw to change the 0/0 point of the rulers, drag the intersection of the two rulers in the top left corner into the workspace."
-msgstr ""
+msgstr "No %PRODUCTNAME Draw para mudar a origem das réguas (ponto 0;0), arraste a interseção das duas réguas em cima à esquerda para a área de trabalho."
#: cui/inc/tipoftheday.hrc:123
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Hold down Ctrl and turn the mouse wheel to change the zoom factor."
-msgstr ""
+msgstr "Pressione e segure a tecla Ctrl e gire a roda do mouse para mudar o fator de zoom."
#: cui/inc/tipoftheday.hrc:124
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Edit > Find & Replace lets you insert special characters directly: right click in input fields or press Shift+Ctrl+S."
-msgstr ""
+msgstr "Editar > Localizar e substituir permite inserir caracteres especiais diretamente: clique no botão direito no campo de entrada ou pressione Shift+Ctrl+S."
#: cui/inc/tipoftheday.hrc:125
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don't use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice."
-msgstr ""
+msgstr "Não use o tabulador para afastar itens num documento do Writer. A depender do que está querendo fazer, uma tabela sem bordas é uma escolha melhor."
#: cui/inc/tipoftheday.hrc:126
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag a formatted object to the Styles and Formatting window. A dialog box opens, just enter the name of the new style."
-msgstr ""
+msgstr "Arraste um objeto formatado para a janela Estilos. Uma caixa de diálogo abre para digitar um nome para o novo estilo."
#: cui/inc/tipoftheday.hrc:127
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep the zeros before a number by using the 'leading zeroes' cell format option or format the cell as text before entering the number."
-msgstr ""
+msgstr "Mantenha os zeros antes do número usando a opção de formatação de células \"zeros à esquerda\" ou formate a célula como texto antes de digitar o número."
#: cui/inc/tipoftheday.hrc:128
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except ‘Comments’ in dialog. Use Operations ‘Add’ to not override existing content."
-msgstr ""
+msgstr "Para copiar o comentário sem perder o conteúdo da célula de destino, utilize Colar especial e desmarque tudo menos 'Anotações' no diálogo. Utilize as operações de Adicionar para não sobrescrever o conteúdo existente."
#: cui/inc/tipoftheday.hrc:129
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select."
-msgstr ""
+msgstr "Selecione um objeto no plano de fundo do documento via ferramenta de seleção na barra de ferramentas Desenho para cercar o objeto a selecionar."
#: cui/inc/tipoftheday.hrc:130
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Apply Heading paragraph styles in Writer with shortcut keys: Ctrl+1 applies Heading 1, Ctrl+2 applies Heading 2, etc."
-msgstr ""
+msgstr "Aplique os estilos de parágrafo Título no Writer com os atalhos Ctrl+1 (Título1), Ctrl+2 (Título2), etc... "
#: cui/inc/tipoftheday.hrc:131
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets."
-msgstr ""
+msgstr "Combine as orientações retrato e paisagem num documento do Calc ao aplicar estilos de página às planilhas."
#: cui/inc/tipoftheday.hrc:132
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create different master pages in a presentation template: View > Master Slide and Slide > New Master (or per toolbar or right click in slide pane)."
-msgstr ""
+msgstr "Crie páginas mestres diferentes num modelo de apresentação: Exibir > Slide mestre e Slide > Novo mestre (ou na barra de ferramenta ou clicando com o botão direito no painel de slides)."
#: cui/inc/tipoftheday.hrc:133
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Page > 'Fit object to paper format' in Draw/Impress to resize the objects so that they fit on your chosen paper format."
-msgstr ""
+msgstr "Utilize Página > Propriedades > 'Ajustar objeto ao formato do papel' no Draw ou Slide > Propriedades > 'Ajustar objeto ao formato do papel' no Impress para redimensionar os objetos para caberem no formato de papel escolhido."
#: cui/inc/tipoftheday.hrc:134
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu."
-msgstr ""
+msgstr "Para modificar uma apresentação em autoexecução, abra-a e depois de iniciar, clique no botão direito e selecione Editar no menu de contexto."
#: cui/inc/tipoftheday.hrc:135
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define 'Go to page' interactions and to have a summary more explicit than Slide1, Slide2…"
-msgstr ""
+msgstr "Renomeie seus slides no Impress pra ajudá-lo a definir as interações 'Ir para' e para ter um sumário mais explícito que Slide1, Slide2..."
#: cui/inc/tipoftheday.hrc:136
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Play music throughout a slideshow by assigning the sound to the first slide transition without clicking the ‘Apply to All Slides’ button."
-msgstr ""
+msgstr "Toque música durante uma apresentação atribuindo um áudio à primeira transição de slide e sem clicar no botão 'Aplicar a todos os slides'."
#: cui/inc/tipoftheday.hrc:137
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "With ‘Slide Show > Custom Slide Show’, reorder and pick slides to fit a slideshow to the needs of your public."
-msgstr ""
+msgstr "Com Apresentação de slides > Apresentação de slides personalizada, reordene e selecione os slides para uma apresentação focada no seu público."
#: cui/inc/tipoftheday.hrc:138
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Include a paragraph that is not a title in the table of contents by changing Outline & Numbering in the paragraph settings to an outline level."
-msgstr ""
+msgstr "Inclua um parágrafo que não é um título no Sumário ao mudar a Estrutura de tópico e numeração do parágrafo para um nível de tópico."
#: cui/inc/tipoftheday.hrc:139
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer."
-msgstr ""
+msgstr "Utilize a ferramenta Conectores na barra de desenho no Draw ou Impress para criar diagramas de fluxo e opcionalmente copiar e colar o objeto no Writer."
#: cui/inc/tipoftheday.hrc:140
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the ‘Printable’ flag is not set (right click on the tab and ‘Modify Layer’)."
-msgstr ""
+msgstr "Deseja ver, mas não imprimir, um objeto no Draw? desenhe-o numa camada cuja opção de imprimir está desativada (clique com botão direito na aba e selecione \"Modificar camada\")."
#: cui/inc/tipoftheday.hrc:141
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File > Print and select 2 at ‘Pages per sheet’."
-msgstr ""
+msgstr "Deseja imprimir duas páginas retrato numa página paisagem (reduzindo A4 para A5)? Arquivo > Imprimir e selecione 2 em \"Páginas por folha\"."
#: cui/inc/tipoftheday.hrc:142
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To get the ‘Vertical Text’ tool in the Drawing toolbar, check Tools > Options > Language Settings > Languages > Default languages > Asian (and make the button visible with right click)."
-msgstr ""
+msgstr "Para ter a ferramenta \"Texto Vertical\" na barra de ferramentas Desenho, marque Ferramentas > Opções > Configurações de idiomas > Idiomas padrão >Asiático (e torne o botão visível com um clique no botão direito)."
#: cui/inc/tipoftheday.hrc:143
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to add many shapes in Draw/Impress? Double-click a tool in the drawing toolbar to use it for repeated tasks."
-msgstr ""
+msgstr "Deseja adicionar várias formas no Draw ou Impress? Faça um clique duplo na ferramenta da barra de desenho para usá-la em tarefas repetitivas."
#: cui/inc/tipoftheday.hrc:144
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to display only the highest values in a spreadsheet? Select menu Data > AutoFilter, click the drop-down arrow, and chose ‘Top10’."
-msgstr ""
+msgstr "Deseja exibir somente os maiores valores numa planilha? selecione Dados > Autofiltro, clique na seta para baixo e escolha \"os 10 maiores\"."
#: cui/inc/tipoftheday.hrc:145
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected."
-msgstr ""
+msgstr "Incapaz de modificar ou excluir um estilo de célula personalizado? Verifique todas as planilhas. Nenhuma deve estar protegida."
#: cui/inc/tipoftheday.hrc:146
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function."
-msgstr ""
+msgstr "Deseja saber quantos dias tem no mês corrente? Utilize a função =DIASNOMES(AGORA())."
#: cui/inc/tipoftheday.hrc:147
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Add background images to spreadsheets via Insert > Image or drag a background from the Gallery, then Format > Arrange > To Background."
-msgstr ""
+msgstr "Adicione imagens no plano de fundo de planilhas via Inserir > Figura ou arraste um plano de fundo da Galeria, e então Formatar > Dispor > Para o plano de fundo."
#: cui/inc/tipoftheday.hrc:148
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To quickly get a math object in Writer type your formula, mark it, and use Insert > Object > Formula to convert the text."
-msgstr ""
+msgstr "Para inserir rapidamente um objeto do Math no Writer, digite a fórmula, selecione-a e utilize Inserir > Objeto > Fórmula para converter seu texto."
#: cui/inc/tipoftheday.hrc:149
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer can insert a blank page between two odd (even) pages that follow. Check ‘Print automatically inserted blank pages’ in the print dialog’s Writer tab."
-msgstr ""
+msgstr "O Writer pode inserir uma página em branco entre duas páginas ímpares ou duas pares seguidas. Marque 'Imprimir páginas em branco inseridas automaticamente' na aba %PRODUCTNAME Writer da caixa de diálogo de impressão."
#: cui/inc/tipoftheday.hrc:150
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero."
-msgstr ""
+msgstr "O 4º parâmetro opcional da função PROCV do Calc indica se a primeira coluna dos dados está ordenada. Se não estiver, insira 0 ou FALSO."
#: cui/inc/tipoftheday.hrc:151
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to show hidden column A? Click a cell in column B, press the left mouse button, move the mouse to the left, release. Then switch it on via Format > Columns > Show."
-msgstr ""
+msgstr "Quer mostrar a coluna A que está oculta? Clique numa célula na coluna B, pressione o botão do mouse e mova-o para a esquerda, solte-o. Acione em Formatar > Coluna > Mostrar."
#: cui/inc/tipoftheday.hrc:152
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer helps you to make backups: with File > Save a Copy you create a new document continuing to work on the original."
-msgstr ""
+msgstr "O Writer o ajuda a fazer backups: Com Arquivo > Salvar uma cópia você cria um novo documento e continua a trabalhar com o original."
#: cui/inc/tipoftheday.hrc:153
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need to present a report written with Writer? File > Send > Outline to Presentation automatically creates a slideshow from the outline."
-msgstr ""
+msgstr "Precisa apresentar um relatório escrito no Writer? Arquivo > Enviar > Estrutura de tópicos para apresentação cria uma apresentação de slides com os tópicos."
#: cui/inc/tipoftheday.hrc:154
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Drag & drop cells from Calc into the normal view of a slide creates a table; into the outline view, each cell creates a line in the outline."
-msgstr ""
+msgstr "Arraste e solte células do Calc num slide no modo normal para criar uma tabela. Ao soltar no modo Estrutura de tópicos, cada célula cria uma linha de tópico."
#: cui/inc/tipoftheday.hrc:155
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Format > Align (or the context menu) for precise positioning of objects in Draw/Impress: it centers on the page if one object is selected or works on the group respectively."
-msgstr ""
+msgstr "Utilize Formatar > Alinhar (ou pelo menu de contexto) para um posicionamento preciso de objetos no Draw e no Impress: centraliza na página se um dos objetos for selecionado ou trabalha no grupo respectivamente,"
#: cui/inc/tipoftheday.hrc:156
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Repeat the heading on a subsequent page when a table spans over more than one page with Table > Table Properties > Text Flow > Repeat heading."
-msgstr ""
+msgstr "Repita o título da tabela quando esta se expande em várias páginas com Tabela > Propriedades > Fluxo do texto > Repetir título."
#: cui/inc/tipoftheday.hrc:157
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use column or row labels in formulas. For example, if you have two columns, ‘Time’ and ‘KM’, use =Time/KM to get minutes per kilometer."
-msgstr ""
+msgstr "Utilize os cabeçalhos de coluna e linha nas fórmulas. Por exemplo, se tiver duas colunas, \"Tempo\" e \"Quilometragem\", utilize =Tempo/Quilometragem para ter os minutos por quilometro."
#: cui/inc/tipoftheday.hrc:158
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break > Insert and enter the number."
-msgstr ""
+msgstr "Para mudar o número da página no Writer, abra as propriedades do primeiro parágrafo e na aba Fluxo do texto marque Quebra > Inserir e digite o número."
#: cui/inc/tipoftheday.hrc:159
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter."
-msgstr ""
+msgstr "Deseja que o cursor vá para a célula à direita após inserir um valor no Calc? Utilize a tecla Tab em vez de Enter."
#: cui/inc/tipoftheday.hrc:160
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Show or hide comments in Writer by clicking the comment toggle button in the ruler."
-msgstr ""
+msgstr "Mostre ou oculte anotações no Writer ao clicar no botão de anotações na lateral da régua."
#: cui/inc/tipoftheday.hrc:161
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Fit your sheet or print ranges to a page with Format > Page > Sheet Tab > Scaling Mode."
-msgstr ""
+msgstr "Ajuste sua planilha ou seu intervalo de impressão na página com Formatar > Página > Planilha > Modo de escala."
#: cui/inc/tipoftheday.hrc:162
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Keep column headers of a sheet visible when scrolling lines via View > Freeze Cells > Freeze First Row."
-msgstr ""
+msgstr "Mantenha os cabeçalhos da planilha visíveis ao rolar os dados em linha com Exibir > Fixar células > Fixar primeira linha."
#: cui/inc/tipoftheday.hrc:163
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) > Text Flow > Breaks and check Insert > Page > Before."
-msgstr ""
+msgstr "Quer que seus títulos de capítulos comecem sempre em página nova? Edite o estilo de parágrafo Titulo1 > Fluxo do texto > Quebras e depois Inserir > Página > Antes."
#: cui/inc/tipoftheday.hrc:164
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to keep the text from, but remove a hyperlink, in Writer? Right click the link and ‘Remove Hyperlink’."
-msgstr ""
+msgstr "Quer remover o hiperlink e manter o texto no Writer? clique no botão direito no link e \"Remover hiperlink\"."
#: cui/inc/tipoftheday.hrc:165
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert > Chart."
-msgstr ""
+msgstr "Crie um gráfico de uma tabela do Writer: clique na tabela e escolha Inserir > Gráfico."
#: cui/inc/tipoftheday.hrc:166
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with Alt key."
-msgstr ""
+msgstr "Mover uma coluna entre duas outras em um só passo no Calc? Clique no cabeçalho e numa célula da coluna, pressione o botão do mouse e mova para o destino com a tecla Alt."
#: cui/inc/tipoftheday.hrc:167
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use the Backspace key instead of Delete in Calc. You can choose what to delete."
-msgstr ""
+msgstr "A tecla Backspace no Calc permite escolher o que será excluído."
#: cui/inc/tipoftheday.hrc:168
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To distribute some text in multi-columns select the text and apply Format > Columns."
-msgstr ""
+msgstr "Para distribuir um texto em várias colunas, selecione o texto e aplique Formatar > Colunas."
#: cui/inc/tipoftheday.hrc:169
+#, fuzzy
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Uncheck Slide Show > Settings > Presentation always on top if you need another program displays its window to the front of your presentation."
-msgstr ""
+msgstr "Desmarque Apresentação de slide > Configuração da apresentação de slides > apresentação sempre em primeiro plano se desejar que outro programa mostre sua janela na frente de sua apresentação."
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
-msgstr ""
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgstr "Selecione Ferramentas > Opções > %PRODUCTNAME Writer > Recursos de formatação > Exibir para especificar quais caracteres não imprimíveis são exibidos."
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
-msgstr ""
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
+msgstr "Deseja o mesmo leiaute para a tela e a impressão> Marque Ferramentas > Opções > %PRODUCTNAME Calc > Geral > Utilizar métricas da impressora para formatar textos."
#: cui/inc/tipoftheday.hrc:172
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize your footnotes page with Tools > Footnotes and Endnotes…"
-msgstr ""
+msgstr "Personalize sua página de notas de rodapé com Ferramentas > Notas de rodapé e Notas de fim..."
#: cui/inc/tipoftheday.hrc:173
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sum a cell through several sheets? Refer to the range of sheets e.g. =SUM(Sheet1.A1:Sheet3.A1)."
-msgstr ""
+msgstr "Deseja somar uma célula de várias planilhas? Faça referência ao intervalo de planilhas por exemplo, =SOMA(Planilha1.A1:Planilha3.A1)."
#: cui/inc/tipoftheday.hrc:174
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can copy from one sheet to another without the clipboard. Select the area to copy, Ctrl+click the target sheet's tab and use Sheet > Fill Cells > Fill Sheets."
-msgstr ""
+msgstr "Você pode copiar uma planilha em outra sem a área de transferência. Selecione a área a copiar, Ctrl + clique na aba da planilha de destino e utilize Planilha > Preencher células > Preencher planilhas."
#: cui/inc/tipoftheday.hrc:175
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to insert a value in the same place on several sheets? Select the sheets: hold down Ctrl key and click their tabs before entering."
-msgstr ""
+msgstr "Quer inserir um valor no mesmo lugar em várias planilhas? Selecione as planilhas com a tecla Ctrl e clique nas abas antes de inserir os dados."
#: cui/inc/tipoftheday.hrc:176
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Click a column field (row) PivotTable and press F12 to group data. Choices adapt to content: Date (month, quarter, year), number (classes)"
-msgstr ""
+msgstr "Clique num campo de coluna (ou linha) da tabela dinâmica e pressione F12 para agrupar os dados. As escolhas se adaptam ao conteúdo: Data (mês, trimestre, ano), número (classes)."
#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to count words for just one particular paragraph style? Use Edit > Find & Replace > Paragraph Styles, select the style > Find All and read the number from the status bar."
-msgstr ""
+msgstr "Quer contar as palavras para um estilo de parágrafo particular? Utilize Editar > Localizar e substituir > Estilos de parágrafos, selecione o estilo e depois > Localizar todos e veja o numero de palavras na barra de status."
#: cui/inc/tipoftheday.hrc:178
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Toolbars are contextual, they open depending on the context. If you do not want that, uncheck them from View > Toolbars."
-msgstr ""
+msgstr "Barras de ferramentas são contextuais, abrem-se dependendo do contexto. Se não quiser este comportamento desmarque em Exibir > Barras de ferrametas."
#: cui/inc/tipoftheday.hrc:179
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table."
-msgstr ""
+msgstr "Insira e numere suas fórmulas em um só passo: digite 'fn' seguido de F3. Um autotexto é inserido com uma fórmula e um número alinhado numa tabela."
#: cui/inc/tipoftheday.hrc:180
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To automatically number your table rows in Writer, select the relevant column, then apply a numbering style from List Styles."
-msgstr ""
+msgstr "Para numerar automaticamente as linhas de sua tabela no Writer, selecione a coluna relevante e alpique um estilo de numeração dos estilos de lista."
#: cui/inc/tipoftheday.hrc:181
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Delete in one step all of your printing areas: select all sheets then Format > Print Ranges > Clear."
-msgstr ""
+msgstr "Exclua todos os intervalos de impressão num só passo: selecione todas as planilhas e então Formatar > Intervalos de impressão > Limpar."
#: cui/inc/tipoftheday.hrc:182
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools > AutoCorrect Options > Options > Ignore double spaces."
-msgstr ""
+msgstr "O %PRODUCTNAME pode impedir de inserir dois ou mais espaços consecutivos no Writer. Marque Ferramentas > Opções da autocorreção > Opções > ignorar espaços duplos."
#: cui/inc/tipoftheday.hrc:183
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Transpose a writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special > Formatted text in Writer."
-msgstr ""
+msgstr "Transpor uma tabela do Writer? copie e cole no Calc, transponha com copiar e colar especial e então copiar e colar especial > Formatado no Writer."
#: cui/inc/tipoftheday.hrc:184
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Writer lets you number your footnotes per page, chapter, document: Tools > Footnotes and Endnotes > Footnotes tab > Counting."
-msgstr ""
+msgstr "O Writer permite numerar notas de rodapé por paǵina, capítulo ou por documento: Ferramentas > Notas de rodapé notas de fim > Notas de rodapé > Contagem."
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
-msgstr ""
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgstr "Você é canhoto? Ative Ferramentas > Opções > Recursos de idioma > Idiomas > Asiático e marque Ferramentas > Opções > %PRODUCTNAME Writer > Exibir > Régua > Alinhado à direita, que mostrará a barra de rolagem à esquerda."
#: cui/inc/tipoftheday.hrc:186
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools > Options > Language Settings > Languages > Complex text and check Sheet > Right-To-Left."
-msgstr ""
+msgstr "Para exibir a barra de rolagem à esquerda, ative Ferramentas > Opções > Configurações de idiomas > Idiomas > CTL e marque Planilha > Da direita para esquerda."
#: cui/inc/tipoftheday.hrc:187
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits."
-msgstr ""
+msgstr "Encontrou números exibidos como ### na planilha? A coluna está estreita demais para mostrar o número todo."
#: cui/inc/tipoftheday.hrc:188
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Use Ctrl+Alt+Shift+V to paste the contents of the clipboard as unformatted text."
-msgstr ""
+msgstr "Utilize Ctrl+Alt+Shift+V para colar conteúdo da área de transferência como texto sem formatação."
#: cui/inc/tipoftheday.hrc:189
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title etc."
-msgstr ""
+msgstr "Ao editar uma célula na posição, você pode inserir campos: data, nome da planilha, título do documento, etc..."
#: cui/inc/tipoftheday.hrc:190
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can restarts the slide show after a pause specified at Slide Show > Slide Show Settings > Loop and repeat."
-msgstr ""
+msgstr "Você pode recomeçar a apresentação de slides após uma pausa especificada em Apresentação de slides > Configuração da apresentação de slides > Circular e repetir após."
#: cui/inc/tipoftheday.hrc:191
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You can not see all the text in a cell? Expand the input line in the formula bar and you can scroll."
-msgstr ""
+msgstr "Não consegue ver todo o texto de uma célula? Aumente a linha de entrada de fórmula e você poderá rolar o texto."
#: cui/inc/tipoftheday.hrc:192
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "You often create a document from another? Have you considered using a template?"
-msgstr ""
+msgstr "Cria muitos documentos a partir de outro? Já pensou em utilizar um modelo?"
#: cui/inc/tipoftheday.hrc:193
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "New versions do not bring that new features and bug fixes. They also include security patches. Be safe, put yourself updated!"
-msgstr ""
+msgstr "Versões novas nem sempre trazem novidades e correções de erros. Também trazem correções de segurança. Seja prudente e atualize seu software."
#: cui/inc/tipoftheday.hrc:194
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to duplicate the above line? Press Ctrl + D or use Sheet > Fill Cells > Fill Down."
-msgstr ""
+msgstr "Quer duplicar a linha de cima? pressione Ctrl + D ou utilize Planilha > Preencher células > Preencher para baixo."
#: cui/inc/tipoftheday.hrc:195
msgctxt "RID_CUI_TIPOFTHEDAY"
@@ -2551,7 +2547,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2788,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3372,71 @@ msgid "About %PRODUCTNAME"
msgstr "Sobre o %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Cré_ditos"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Site _internet"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID de compilação: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Local: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Idioma de IU: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Consulte o registro: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "O %PRODUCTNAME é um conjunto de aplicações de produtividade de código livre, moderno e fácil de utilizar. Pode ser utilizado para a criação de documentos de texto, planilhas, apresentações e muito mais."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000 - 2019 Colaboradores do LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "O LibreOffice foi baseado no OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "O %PRODUCTNAME é um derivado do LibreOffice que foi baseado no OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Esta versão foi disponibilizada por %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3551,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Substitui_r"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Substituir"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Por:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Somente _texto"
@@ -4380,6 +4381,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Tamanho mínimo da palavra"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5651,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Propriedades"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "_Quadro:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nome:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Texto alternativo:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Descrição:"
@@ -9019,80 +9180,80 @@ msgstr "Mostrar aviso quando a Ajuda local não está instalada"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ajuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Utilizar as caixas de diálogo do %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Caixas de diálogo de abrir e salvar"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "_Utilizar as caixas de diálogo do %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Caixas de diálogo de impressão"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "A im_pressão do documento define seu estado como \"modificado\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Status do documento"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como anos entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "e "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ano (dois dígitos)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Coletar dados de utilização e enviá-los para a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ajude-nos a melhorar o %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Carregar o %PRODUCTNAME na inicialização do sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Ativar o Iniciador rápido da bandeja do sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Iniciador rápido do %PRODUCTNAME"
@@ -10965,25 +11126,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Tema pré-instalado"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tema próprio"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Carregar tema Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Ou selecione nos temas instalados via extensões:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Temas do Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11756,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opções de segurança"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Selecionar um tema do Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Termo de pesquisa ou endereço"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "C_ategoria:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstrato"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Causas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Filmes e TV"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Feriados"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Música"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natureza"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Outro"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Paisagens"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Sazonal"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Sólido"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Esportes"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Sítios web"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Em destaque"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12762,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/pt-BR/extensions/messages.po b/source/pt-BR/extensions/messages.po
index cf25f3a69f6..797abfb4a06 100644
--- a/source/pt-BR/extensions/messages.po
+++ b/source/pt-BR/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-09 22:00+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\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: 1554847254.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Leiaute de colunas para a tabela “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Nome abre_viado"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autor(es)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Editora"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Capítulo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Ano"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Títu_lo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "En_dereço"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pá_gina(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_ição"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Tít_ulo do livro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Ti_po de publicação"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zação"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "I_nstituição"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versidade"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tipo de _relatório"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mês"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Diário"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Núm_ero"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Sé_rie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_otação"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Campo definido pelo usuário 1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Campo definido pelo usuário 2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Campo definido pelo usuário 3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Campo definido pelo usuário 4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Campo definido pelo usuário 5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nomes de coluna"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Digite um nome para o novo tipo de dados:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Campos de vínculo"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Sugerir"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Subformulários podem ser utilizados para exibir dados detalhados sobre o registro atual do formulário mestre. Para isso, especifique as colunas do subformulário correspondem às colunas no formulário mestre."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "rótulo"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "rótulo"
diff --git a/source/pt-BR/helpcontent2/source/auxiliary.po b/source/pt-BR/helpcontent2/source/auxiliary.po
index 42be81365dd..757700c45b9 100644
--- a/source/pt-BR/helpcontent2/source/auxiliary.po
+++ b/source/pt-BR/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-09 22:13+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\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: 1554848028.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Informações gerais"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Apresentação e Desenho (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Barras de ferramentas"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Desenhos (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menus"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Barras de ferramentas"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objetos, figuras e bitmaps"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupos e camadas"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Texto em apresentações e desenhos"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/sbasic/guide.po b/source/pt-BR/helpcontent2/source/text/sbasic/guide.po
index edc2430c1e1..af9d95928f8 100644
--- a/source/pt-BR/helpcontent2/source/text/sbasic/guide.po
+++ b/source/pt-BR/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-25 04:56+0000\n"
"Last-Translator: Tulio Macedo <tuliomac@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: 1556168185.000000\n"
#: access2base.xhp
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Compare Access2Base com Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Abrir uma caixa de diálogo no código de programa"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>alternar módulo/diálogo</bookmark_value><bookmark_value>diálogos;usar código de programa para exibir (exemplo)</bookmark_value><bookmark_value>exemplos; exibir um diálogo usando código de programa</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/sbasic/python.po b/source/pt-BR/helpcontent2/source/text/sbasic/python.po
index d2120ac33ec..b4267cf9b3d 100644
--- a/source/pt-BR/helpcontent2/source/text/sbasic/python.po
+++ b/source/pt-BR/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-05-09 16:40+0000\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
+"PO-Revision-Date: 2019-05-22 15:54+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\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: 1557420015.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558540448.000000\n"
#: main0000.xhp
msgctxt ""
@@ -77,8 +77,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
-msgstr "Python: Abrir uma caixa de diálogo"
+msgid "Opening a Dialog with Python"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -93,8 +93,8 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
-msgstr "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Abrir uma caixa de diálogo em Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
+msgstr ""
#: python_dialogs.xhp
msgctxt ""
@@ -165,8 +165,8 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
-msgstr "<bookmark_value>Basic;monitorar eventos de documentos</bookmark_value> <bookmark_value>Python;monitorar eventos de documentos</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgstr ""
#: python_document_events.xhp
msgctxt ""
@@ -1053,8 +1053,8 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
-msgstr "<bookmark_value>Python;listener de eventos</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;listener de eventos</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgstr ""
#: python_listener.xhp
msgctxt ""
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value><bookmark_value>Platform;isMacOsX</bookmark_value><bookmark_value>Platform;isWindows</bookmark_value><bookmark_value>Platform;ComputerName</bookmark_value><bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr "<bookmark_value>Plataforma;isLinux</bookmark_value> <bookmark_value>Plataforma;isMacOsX</bookmark_value> <bookmark_value>Plataforma;isWindows</bookmark_value> <bookmark_value>Plataforma;ComputerName</bookmark_value> <bookmark_value>Plataforma;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Ferramentas;GetRegistryContent</bookmark_value>"
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "Falta ao %PRODUCTNAME do MacOS X o reconhecimento nativo enquanto a propriedade ComputerName somente está disponível no Windows. Chamadas do BASIC à macros do Python permite superar estas limitações."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr "ComputerName é uma propriedade disponível somente no Windows. As chamadas do Basic para as macros Python ajudam a resolver as limitações do %PRODUCTNAME Basic."
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr "Usando um módulo de classe de Basic:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr "Falta ao %PRODUCTNAME Basic o reconhecimento nativo do MacOS. A indentificação de plataforma é possível utilizando a Application Programming Interface (API) do %PRODUCTNAME."
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr "' Retorna o nome da plataforma como \"MAC\", \"UNIX\", \"WIN\""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr "' Inferido da função \"Tools.UCB.ShowHelperDialog\""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/pt-BR/helpcontent2/source/text/sbasic/shared.po b/source/pt-BR/helpcontent2/source/text/sbasic/shared.po
index 785503f055f..947ae2f71fc 100644
--- a/source/pt-BR/helpcontent2/source/text/sbasic/shared.po
+++ b/source/pt-BR/helpcontent2/source/text/sbasic/shared.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: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-13 00:55+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.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: 1557708904.000000\n"
#: 00000002.xhp
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Ajuda do $[officename] Basic \">Ajuda do %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po b/source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po
index a3ba5156d5d..2ee707c7c3f 100644
--- a/source/pt-BR/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/pt-BR/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-14 20:47+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\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: 1547498861.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Funções e subrotinas para controle de módulo."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/pt-BR/helpcontent2/source/text/scalc/01.po b/source/pt-BR/helpcontent2/source/text/scalc/01.po
index 56fd434261a..79c2038d5d2 100644
--- a/source/pt-BR/helpcontent2/source/text/scalc/01.po
+++ b/source/pt-BR/helpcontent2/source/text/scalc/01.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: 2019-04-30 14:59+0200\n"
-"PO-Revision-Date: 2019-05-04 13:38+0000\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
+"PO-Revision-Date: 2019-05-22 15:48+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_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: 1556977136.000000\n"
+"X-POOTLE-MTIME: 1558540119.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Localize o arquivo contendo os dados que você deseja inserir.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Abre uma caixa de diálogo de arquivo para localizar o arquivo contendo os dados que deseja inserir.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Digite a URL ou o nome do arquivo que contém os dados que você deseja inserir e, em seguida, pressione Enter</ahelp>. Só então a URL será solicitado da rede ou do sistema de arquivos."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Entre com a URL ou nome de arquivos que contém os dados a inserir. e pressione Enter.</ahelp> Alternativamente, clique no botão <emph>Procurar</emph> para selecionar o nome de arquivo na caixa de diálogo que for abrir. Somente então a URL será processada da rede ou do sistema de arquivos."
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Selecione a tabela ou o intervalo de dados que você deseja inserir.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Selecione a tabela ou intervalo de dados que deseja inserir.</ahelp> Se os documentos Calc ou Excel não contém intervalos nomeados, os dados da planilha não poderão ser inseridos e o botão <emph>OK</emph> permanece inativo."
#: 04090000.xhp
msgctxt ""
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Especifica o intervalo de célula que você deseja consolidar com os intervalos de célula listados na caixa <emph>Intervalos de consolidação</emph>. Selecione um intervalo de células em uma planilha, e clique em <emph>Adicionar</emph>. Também é possível selecionar o nome de uma célula predefinida na lista <emph>Intervalo da fonte de dados</emph>.</ahelp>"
#: 12070000.xhp
diff --git a/source/pt-BR/helpcontent2/source/text/schart/00.po b/source/pt-BR/helpcontent2/source/text/schart/00.po
index d8d5940eec7..420d92cfb1b 100644
--- a/source/pt-BR/helpcontent2/source/text/schart/00.po
+++ b/source/pt-BR/helpcontent2/source/text/schart/00.po
@@ -3,9 +3,9 @@ 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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-14 16:22+0000\n"
-"Last-Translator: Raul Pacheco da Silva <raulpachecodasilva@gmail.com>\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-22 15:40+0000\n"
+"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1547482958.000000\n"
+"X-POOTLE-MTIME: 1558539637.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">No diálogo do Tipo de gráfico de um gráfico de Linhas ou gráfico XY que mostre linhas, assinale a caixa de verificação Linhas uniformes, e depois clique no botão Propriedades.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr "<variable id=\"smlp\">No diálogo do Tipo de gráfico de um gráfico de Linhas ou gráfico XY que mostre linhas, assinale a lista suspensa Linhas uniformes, e depois clique no botão Propriedades.</variable>"
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr "<variable id=\"stlp\">No diálogo do Tipo de gráfico de um gráfico de Linhas ou gráfico XY que mostre linhas, escolha as linhas em degraus na lista suspensa, e depois clique no botão Propriedades.</variable>"
diff --git a/source/pt-BR/helpcontent2/source/text/sdraw/00.po b/source/pt-BR/helpcontent2/source/text/sdraw/00.po
index 36b25e18360..d24a02925c8 100644
--- a/source/pt-BR/helpcontent2/source/text/sdraw/00.po
+++ b/source/pt-BR/helpcontent2/source/text/sdraw/00.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-10 07:27+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-15 17:47+0000\n"
+"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494401225.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557942421.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Menu"
-msgstr ""
+msgstr "Menu Página"
#: page_menu.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Escolha <emph>Página - Propriedades</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Escolha <emph>Página - Propiedades</emph> e clique na guia <emph>Página</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Escolha <emph>Página - Propriedades</emph> e clique na guia <emph>Plano de fundo</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Page - Master Page</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Escolha <emph>Página - Página mestre</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <emph>Page - New Page</emph>"
-msgstr ""
+msgstr "Escolha <emph>Página - Nova página / slide</emph>"
#: page_menu.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id1001556823044677\n"
"help.text"
msgid "On the <emph>Insert</emph> bar, click"
-msgstr ""
+msgstr "Na barra <emph>Inserir</emph>, clique em"
#: page_menu.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id351556823072396\n"
"help.text"
msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Ícone</alt></image>"
#: page_menu.xhp
msgctxt ""
@@ -102,4 +102,4 @@ msgctxt ""
"par_id831556823072396\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Nova página"
diff --git a/source/pt-BR/helpcontent2/source/text/sdraw/01.po b/source/pt-BR/helpcontent2/source/text/sdraw/01.po
index 92b01eec764..a36f58e4656 100644
--- a/source/pt-BR/helpcontent2/source/text/sdraw/01.po
+++ b/source/pt-BR/helpcontent2/source/text/sdraw/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-10 07:27+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-15 17:47+0000\n"
+"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494401225.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557942453.000000\n"
#: new_page.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Nova página"
#: new_page.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3150202\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">Nova página</link>"
#: new_page.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3152988\n"
"help.text"
msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
-msgstr ""
+msgstr "<variable id=\"seitetext\">Insere uma página em branco após a página selecionada.</variable>"
#: page_properties.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Página"
#: page_properties.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"hd_id231556821873595\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Página"
#: page_properties.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id571556821811542\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Define a orientação da página, as margens da página, o plano de fundo e outras opções de leiaute.</ahelp></variable>"
#: page_properties.xhp
msgctxt ""
@@ -70,4 +70,4 @@ msgctxt ""
"par_id691556822054550\n"
"help.text"
msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Para alterar o plano de fundo de todas as páginas no arquivo ativo, selecione um plano de fundo, clique em <emph>OK</emph> e, em seguida, clique em <emph>Sim</emph> na caixa de diálogo <emph>Configurações da página</emph>."
diff --git a/source/pt-BR/helpcontent2/source/text/shared/00.po b/source/pt-BR/helpcontent2/source/text/shared/00.po
index 469fe5b726e..4a8377798b4 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/00.po
+++ b/source/pt-BR/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-04 13:42+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\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: 1556977344.000000\n"
#: 00000001.xhp
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Selecione <switchinline select=\"sys\"><casein
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Selecione <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME → Preferências</emph></caseinline><defaultinline><emph>Ferramentas → Opções…</emph></defaultinline></switchinline><emph> → $[officename] → Personalização</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/pt-BR/helpcontent2/source/text/shared/01.po b/source/pt-BR/helpcontent2/source/text/shared/01.po
index d7f51c06353..6c400fe6838 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/01.po
+++ b/source/pt-BR/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-12 15:20+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\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: 1555082445.000000\n"
#: 01010000.xhp
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/pt-BR/helpcontent2/source/text/shared/02.po b/source/pt-BR/helpcontent2/source/text/shared/02.po
index c0f4709d334..5447d570e1b 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/02.po
+++ b/source/pt-BR/helpcontent2/source/text/shared/02.po
@@ -3,9 +3,9 @@ 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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-18 13:41+0000\n"
-"Last-Translator: Raul Pacheco da Silva <raulpachecodasilva@gmail.com>\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-22 15:38+0000\n"
+"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1547818863.000000\n"
+"X-POOTLE-MTIME: 1558539502.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Especifica se uma seleção de texto em um controle continuará selecionada quando o foco não estiver mais em um controle.</ahelp> Se a opção <emph>Ocultar seleção</emph> estiver configurada como \"Não\", o texto permanecerá selecionado quando o foco não estiver mais no controle que contém o texto."
#: 01170101.xhp
diff --git a/source/pt-BR/helpcontent2/source/text/shared/guide.po b/source/pt-BR/helpcontent2/source/text/shared/guide.po
index 3272bdb921b..c49ca98bc70 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/guide.po
+++ b/source/pt-BR/helpcontent2/source/text/shared/guide.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 01:04+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-13 20:28+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <kde-i18n-doc@kde.org>\n"
"Language: pt_BR\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: 1557709469.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1557779288.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3099,14 +3099,6 @@ msgstr "Documento AbiWord"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr "application/x-abiword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr "Apple Pages"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr "application/x-iwork-pages-sffpages"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr "Livro eletrônico BroadBand"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr "application/x-sony-bbeb"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr "Documento ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr "application/clarisworks"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr "Documento EPUB"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr "application/epub+zip"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr "FictionBook 2.0"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr "application/x-fictionbook+xml"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr "Documento HTML"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr "text/html"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr "Documento HTML"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr "text/html"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr "Hangul WP 97"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr "application/x-hwp"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr "Documento LotusWordPro"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr "application/vnd.lotus-wordpro"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr "Modelo MS Word 95"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr "application/msword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr "Documento MacWrite"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr "application/macwriteii"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr "application/vnd.ms-excel"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr "application/vnd.ms-excel"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr "application/vnd.ms-excel"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr "Microsoft WinWord 1/2/5"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr "application/msword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr "Microsoft Word 6.0"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr "application/msword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr "Microsoft Word 95"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr "application/msword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr "Microsoft Word para Mac (v1 - v5)"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr "application/msword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr "Documento Microsoft Works"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr "application/vnd.ms-works"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr "Microsoft Works para documento Mac (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr "application/vnd.ms-works"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr "Microsoft Write"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr "application/x-mswrite"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr "Documento de texto Office Open XML"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr "Modelo texto Office Open XML"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr "Texto OpenDocument (XML plano)"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr "application/vnd.oasis.opendocument.text-flat-xml"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr "Documento de texto do OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr "application/vnd.sun.xml.writer"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr "Documento de texto do OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr "application/vnd.sun.xml.writer"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr "Documento de texto do OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr "application/vnd.sun.xml.writer"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr "application/pdf"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr "application/pdf"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr "application/pdf"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr "Documento de texto do Palm"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr "application/vnd.palm"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr "Livro eletrônico PalmDoc"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr "application/x-aportisdoc"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr "Livro eletrônico Plucker"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr "application/prs.plucker"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr "application/rtf"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr "Documento T602"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr "application/x-t602"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr "Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr "application/msword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr "Modelo do Word 2007–2019"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr "application/msword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr "Word 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr "application/msword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr "Word 97–2000 Modelo"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr "application/msword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr "Word 97–2003"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr "application/msword"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr "Documento WordPerfect"
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr "application/vnd.wordperfect"
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3894,15 +3558,7 @@ msgctxt ""
"par_writer153\n"
"help.text"
msgid "Writer 6.0 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
+msgstr "Documento mestre Writer 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3910,15 +3566,7 @@ msgctxt ""
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
+msgstr "Modelo Writer 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -3926,15 +3574,7 @@ msgctxt ""
"par_writer159\n"
"help.text"
msgid "Writer 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
+msgstr "Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3942,15 +3582,7 @@ msgctxt ""
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
+msgstr "Documento mestre do Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3958,15 +3590,7 @@ msgctxt ""
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
+msgstr "Modelo de documento mestre do Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3974,15 +3598,7 @@ msgctxt ""
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
+msgstr "Modelo do Writer 8"
#: convertfilters.xhp
msgctxt ""
@@ -3990,7 +3606,7 @@ msgctxt ""
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
-msgstr ""
+msgstr "Writer Layout Dump"
#: convertfilters.xhp
msgctxt ""
@@ -3998,7 +3614,7 @@ msgctxt ""
"par_writer172\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4006,15 +3622,7 @@ msgctxt ""
"par_writer174\n"
"help.text"
msgid "Writer/Web 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
+msgstr "Modelo do Writer/Web 6"
#: convertfilters.xhp
msgctxt ""
@@ -4022,15 +3630,7 @@ msgctxt ""
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
+msgstr "Modelo do Writer/Web 8"
#: convertfilters.xhp
msgctxt ""
@@ -4054,15 +3654,7 @@ msgctxt ""
"par_calc0\n"
"help.text"
msgid "Apple Numbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
+msgstr "Apple Numbers"
#: convertfilters.xhp
msgctxt ""
@@ -4070,15 +3662,7 @@ msgctxt ""
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
+msgstr "Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4086,15 +3670,7 @@ msgctxt ""
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
+msgstr "Modelo do Calc 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4102,15 +3678,7 @@ msgctxt ""
"par_calc9\n"
"help.text"
msgid "Calc 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
+msgstr "Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -4118,15 +3686,7 @@ msgctxt ""
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
+msgstr "Modelo de Calc 8"
#: convertfilters.xhp
msgctxt ""
@@ -4134,15 +3694,7 @@ msgctxt ""
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Documento ClarisResolve"
#: convertfilters.xhp
msgctxt ""
@@ -4150,15 +3702,7 @@ msgctxt ""
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Documento ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -4166,7 +3710,7 @@ msgctxt ""
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
-msgstr ""
+msgstr "Formato de intercambio de dados (DIF)"
#: convertfilters.xhp
msgctxt ""
@@ -4174,7 +3718,7 @@ msgctxt ""
"par_calc22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4182,15 +3726,7 @@ msgctxt ""
"par_calc24\n"
"help.text"
msgid "Excel 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Excel 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4198,15 +3734,7 @@ msgctxt ""
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Modelo do Excel 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4214,15 +3742,7 @@ msgctxt ""
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Modelo Excel 97–2000"
#: convertfilters.xhp
msgctxt ""
@@ -4230,15 +3750,7 @@ msgctxt ""
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Excel 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -4246,15 +3758,7 @@ msgctxt ""
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
+msgstr "Planilha Gnumeric"
#: convertfilters.xhp
msgctxt ""
@@ -4262,7 +3766,7 @@ msgctxt ""
"par_calc39\n"
"help.text"
msgid "HTML Document"
-msgstr ""
+msgstr "Documento HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4270,7 +3774,7 @@ msgctxt ""
"par_calc40\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4278,7 +3782,7 @@ msgctxt ""
"par_calc42\n"
"help.text"
msgid "HTML Table"
-msgstr ""
+msgstr "Tabela HTML"
#: convertfilters.xhp
msgctxt ""
@@ -4286,7 +3790,7 @@ msgctxt ""
"par_calc43\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -4294,7 +3798,7 @@ msgctxt ""
"par_calc45\n"
"help.text"
msgid "Legacy Mac Database"
-msgstr ""
+msgstr "Banco de dados do Mac legado"
#: convertfilters.xhp
msgctxt ""
@@ -4302,7 +3806,7 @@ msgctxt ""
"par_calc46\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4310,7 +3814,7 @@ msgctxt ""
"par_calc48\n"
"help.text"
msgid "Legacy Mac Spreadsheet"
-msgstr ""
+msgstr "Planilha do Mac legada"
#: convertfilters.xhp
msgctxt ""
@@ -4318,7 +3822,7 @@ msgctxt ""
"par_calc49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4326,7 +3830,7 @@ msgctxt ""
"par_calc51\n"
"help.text"
msgid "Legacy StarOffice Spreadsheet"
-msgstr ""
+msgstr "Planilha StarOffice legada"
#: convertfilters.xhp
msgctxt ""
@@ -4334,7 +3838,7 @@ msgctxt ""
"par_calc52\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4342,15 +3846,7 @@ msgctxt ""
"par_calc54\n"
"help.text"
msgid "Lotus"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
+msgstr "Lotus"
#: convertfilters.xhp
msgctxt ""
@@ -4358,7 +3854,7 @@ msgctxt ""
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
-msgstr ""
+msgstr "Lotus Wk1-Wk3"
#: convertfilters.xhp
msgctxt ""
@@ -4366,7 +3862,7 @@ msgctxt ""
"par_calc58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4374,15 +3870,7 @@ msgctxt ""
"par_calc60\n"
"help.text"
msgid "MS Excel 4.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Modelo MS Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -4390,15 +3878,7 @@ msgctxt ""
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Modelo MS Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -4406,15 +3886,7 @@ msgctxt ""
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Modelo do MS Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -4422,7 +3894,7 @@ msgctxt ""
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
-msgstr ""
+msgstr "Binário do Microsoft Excel 2007"
#: convertfilters.xhp
msgctxt ""
@@ -4430,7 +3902,7 @@ msgctxt ""
"par_calc70\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4438,15 +3910,7 @@ msgctxt ""
"par_calc72\n"
"help.text"
msgid "Microsoft Excel 2007-2016 VBA XML"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
+msgstr "XML com VBA do Microsoft Excel 2007-2016"
#: convertfilters.xhp
msgctxt ""
@@ -4454,15 +3918,7 @@ msgctxt ""
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 4.0"
#: convertfilters.xhp
msgctxt ""
@@ -4470,15 +3926,7 @@ msgctxt ""
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 5.0"
#: convertfilters.xhp
msgctxt ""
@@ -4486,15 +3934,7 @@ msgctxt ""
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
+msgstr "Microsoft Excel 95"
#: convertfilters.xhp
msgctxt ""
@@ -4502,7 +3942,7 @@ msgctxt ""
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: convertfilters.xhp
msgctxt ""
@@ -4510,7 +3950,7 @@ msgctxt ""
"par_calc85\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4518,7 +3958,7 @@ msgctxt ""
"par_calc87\n"
"help.text"
msgid "Microsoft Works Document"
-msgstr ""
+msgstr "Documento Microsoft Works"
#: convertfilters.xhp
msgctxt ""
@@ -4526,7 +3966,7 @@ msgctxt ""
"par_calc88\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4534,15 +3974,7 @@ msgctxt ""
"par_calc90\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
+msgstr "Microsoft Works para documento Mac (v1 - v4)"
#: convertfilters.xhp
msgctxt ""
@@ -4550,15 +3982,7 @@ msgctxt ""
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
+msgstr "Planilha Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4566,15 +3990,7 @@ msgctxt ""
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
+msgstr "Modelo de planilha Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4582,15 +3998,7 @@ msgctxt ""
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
+msgstr "Planilha OpenDocument (XML plano)"
#: convertfilters.xhp
msgctxt ""
@@ -4598,15 +4006,7 @@ msgctxt ""
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4614,7 +4014,7 @@ msgctxt ""
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
-msgstr ""
+msgstr "Quattro Pro 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4622,7 +4022,7 @@ msgctxt ""
"par_calc106\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4630,7 +4030,7 @@ msgctxt ""
"par_calc108\n"
"help.text"
msgid "QuattroPro Document"
-msgstr ""
+msgstr "Documento QuattroPro"
#: convertfilters.xhp
msgctxt ""
@@ -4638,7 +4038,7 @@ msgctxt ""
"par_calc109\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4646,15 +4046,7 @@ msgctxt ""
"par_calc111\n"
"help.text"
msgid "Rich Text Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
+msgstr "Rich Text Format"
#: convertfilters.xhp
msgctxt ""
@@ -4662,7 +4054,7 @@ msgctxt ""
"par_calc114\n"
"help.text"
msgid "SYLK"
-msgstr ""
+msgstr "SYLK"
#: convertfilters.xhp
msgctxt ""
@@ -4670,7 +4062,7 @@ msgctxt ""
"par_calc115\n"
"help.text"
msgid "text/spreadsheet"
-msgstr ""
+msgstr "text/spreadsheet"
#: convertfilters.xhp
msgctxt ""
@@ -4678,7 +4070,7 @@ msgctxt ""
"par_calc117\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Texto"
#: convertfilters.xhp
msgctxt ""
@@ -4686,7 +4078,7 @@ msgctxt ""
"par_calc118\n"
"help.text"
msgid "text/plain"
-msgstr ""
+msgstr "text/plain"
#: convertfilters.xhp
msgctxt ""
@@ -4694,7 +4086,7 @@ msgctxt ""
"par_calc120\n"
"help.text"
msgid "dBASE"
-msgstr ""
+msgstr "dBASE"
#: convertfilters.xhp
msgctxt ""
@@ -4702,7 +4094,7 @@ msgctxt ""
"par_calc121\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4726,15 +4118,7 @@ msgctxt ""
"par_impress0\n"
"help.text"
msgid "Apple Keynote"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
+msgstr "Apple Keynote"
#: convertfilters.xhp
msgctxt ""
@@ -4742,15 +4126,7 @@ msgctxt ""
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Apresentação ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -4758,15 +4134,7 @@ msgctxt ""
"par_impress6\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -4774,15 +4142,7 @@ msgctxt ""
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
+msgstr "Modelo Impress 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -4790,15 +4150,7 @@ msgctxt ""
"par_impress12\n"
"help.text"
msgid "Impress 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
+msgstr "Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4806,15 +4158,7 @@ msgctxt ""
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
+msgstr "Modelo do Impress 8"
#: convertfilters.xhp
msgctxt ""
@@ -4822,7 +4166,7 @@ msgctxt ""
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
-msgstr ""
+msgstr "Apresentação do Mac legada"
#: convertfilters.xhp
msgctxt ""
@@ -4830,7 +4174,7 @@ msgctxt ""
"par_impress19\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4838,7 +4182,7 @@ msgctxt ""
"par_impress21\n"
"help.text"
msgid "Legacy StarOffice Presentation"
-msgstr ""
+msgstr "Apresentação StarOffice legada"
#: convertfilters.xhp
msgctxt ""
@@ -4846,7 +4190,7 @@ msgctxt ""
"par_impress22\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4854,7 +4198,7 @@ msgctxt ""
"par_impress24\n"
"help.text"
msgid "Microsoft PowerPoint 1-4"
-msgstr ""
+msgstr "Microsoft PowerPoint 1-4"
#: convertfilters.xhp
msgctxt ""
@@ -4862,7 +4206,7 @@ msgctxt ""
"par_impress25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -4870,15 +4214,7 @@ msgctxt ""
"par_impress27\n"
"help.text"
msgid "Office Open XML Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "Apresentação Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4886,15 +4222,7 @@ msgctxt ""
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "Apresentação automática do Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4902,15 +4230,7 @@ msgctxt ""
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "Modelo de apresentação Office Open XML"
#: convertfilters.xhp
msgctxt ""
@@ -4918,15 +4238,7 @@ msgctxt ""
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
+msgstr "Apresentação OpenDocument (XML plano)"
#: convertfilters.xhp
msgctxt ""
@@ -4934,15 +4246,7 @@ msgctxt ""
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "Desenho do OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -4950,15 +4254,7 @@ msgctxt ""
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
+msgstr "Apresentação do OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -4966,15 +4262,7 @@ msgctxt ""
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -4982,15 +4270,7 @@ msgctxt ""
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -4998,15 +4278,7 @@ msgctxt ""
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -5014,15 +4286,7 @@ msgctxt ""
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
+msgstr "Modelo do PowerPoint 2007–2019"
#: convertfilters.xhp
msgctxt ""
@@ -5030,15 +4294,7 @@ msgctxt ""
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
+msgstr "PowerPoint 2007–2019 VBA"
#: convertfilters.xhp
msgctxt ""
@@ -5046,15 +4302,7 @@ msgctxt ""
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "Modelo PowerPoint 97–2000"
#: convertfilters.xhp
msgctxt ""
@@ -5062,15 +4310,7 @@ msgctxt ""
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -5078,15 +4318,7 @@ msgctxt ""
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: convertfilters.xhp
msgctxt ""
@@ -5110,15 +4342,7 @@ msgctxt ""
"par_draw0\n"
"help.text"
msgid "Adobe PageMaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
+msgstr "Adobe PageMaker"
#: convertfilters.xhp
msgctxt ""
@@ -5126,15 +4350,7 @@ msgctxt ""
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
+msgstr "Adobe/Macromedia Freehand"
#: convertfilters.xhp
msgctxt ""
@@ -5142,15 +4358,7 @@ msgctxt ""
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
+msgstr "Documento ClarisWorks/AppleWorks"
#: convertfilters.xhp
msgctxt ""
@@ -5158,15 +4366,7 @@ msgctxt ""
"par_draw9\n"
"help.text"
msgid "Corel Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
+msgstr "Corel Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5174,15 +4374,7 @@ msgctxt ""
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
+msgstr "Corel Presentation Exchange"
#: convertfilters.xhp
msgctxt ""
@@ -5190,15 +4382,7 @@ msgctxt ""
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
+msgstr "Modelo Draw 6.0"
#: convertfilters.xhp
msgctxt ""
@@ -5206,15 +4390,7 @@ msgctxt ""
"par_draw18\n"
"help.text"
msgid "Draw 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
+msgstr "Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -5222,15 +4398,7 @@ msgctxt ""
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
+msgstr "Modelo do Draw 8"
#: convertfilters.xhp
msgctxt ""
@@ -5238,7 +4406,7 @@ msgctxt ""
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
-msgstr ""
+msgstr "Bitmap do Mac legado"
#: convertfilters.xhp
msgctxt ""
@@ -5246,7 +4414,7 @@ msgctxt ""
"par_draw25\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -5254,7 +4422,7 @@ msgctxt ""
"par_draw27\n"
"help.text"
msgid "Legacy Mac Drawing"
-msgstr ""
+msgstr "Desenho do Mac legado"
#: convertfilters.xhp
msgctxt ""
@@ -5262,7 +4430,7 @@ msgctxt ""
"par_draw28\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -5270,7 +4438,7 @@ msgctxt ""
"par_draw30\n"
"help.text"
msgid "Legacy StarOffice Drawing"
-msgstr ""
+msgstr "Apresentação StarOffice legada"
#: convertfilters.xhp
msgctxt ""
@@ -5278,7 +4446,7 @@ msgctxt ""
"par_draw31\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -5286,15 +4454,7 @@ msgctxt ""
"par_draw33\n"
"help.text"
msgid "Microsoft Publisher 2003"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
+msgstr "Microsoft Publisher 2003"
#: convertfilters.xhp
msgctxt ""
@@ -5302,15 +4462,7 @@ msgctxt ""
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
+msgstr "Microsoft Visio"
#: convertfilters.xhp
msgctxt ""
@@ -5318,15 +4470,7 @@ msgctxt ""
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
+msgstr "Desenho OpenDocument (XML plano)"
#: convertfilters.xhp
msgctxt ""
@@ -5334,15 +4478,7 @@ msgctxt ""
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
+msgstr "Desenho do OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -5350,15 +4486,7 @@ msgctxt ""
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -5366,7 +4494,7 @@ msgctxt ""
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
-msgstr ""
+msgstr "QuarkXPress"
#: convertfilters.xhp
msgctxt ""
@@ -5374,7 +4502,7 @@ msgctxt ""
"par_draw49\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -5382,15 +4510,7 @@ msgctxt ""
"par_draw51\n"
"help.text"
msgid "WordPerfect Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
+msgstr "Imagens WordPerfect"
#: convertfilters.xhp
msgctxt ""
@@ -5398,7 +4518,7 @@ msgctxt ""
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
-msgstr ""
+msgstr "Zoner Callisto/Draw"
#: convertfilters.xhp
msgctxt ""
@@ -5406,7 +4526,7 @@ msgctxt ""
"par_draw55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -5430,15 +4550,7 @@ msgctxt ""
"par_math0\n"
"help.text"
msgid "Math 8"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
+msgstr "Math 8"
#: convertfilters.xhp
msgctxt ""
@@ -5446,15 +4558,7 @@ msgctxt ""
"par_math3\n"
"help.text"
msgid "MathML 2.0"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
+msgstr "MathML 2.0"
#: convertfilters.xhp
msgctxt ""
@@ -5462,7 +4566,7 @@ msgctxt ""
"par_math6\n"
"help.text"
msgid "MathType3.x"
-msgstr ""
+msgstr "MathType3.x"
#: convertfilters.xhp
msgctxt ""
@@ -5470,7 +4574,7 @@ msgctxt ""
"par_math7\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -5478,15 +4582,7 @@ msgctxt ""
"par_math9\n"
"help.text"
msgid "OpenOffice.org 1.0 Formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
+msgstr "Fórmula do OpenOffice.org 1.0"
#: convertfilters.xhp
msgctxt ""
@@ -5494,15 +4590,7 @@ msgctxt ""
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
+msgstr "PDF - Portable Document Format"
#: convertfilters.xhp
msgctxt ""
@@ -5526,15 +4614,7 @@ msgctxt ""
"par_base0\n"
"help.text"
msgid "OpenDocument Database"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
+msgstr "Banco de dados do OpenDocument"
#: convertfilters.xhp
msgctxt ""
@@ -5558,15 +4638,7 @@ msgctxt ""
"par_graphicfilter0\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP - Windows Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5574,15 +4646,7 @@ msgctxt ""
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
+msgstr "BMP - Windows Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5590,15 +4654,7 @@ msgctxt ""
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
+msgstr "CGM - Computer Graphics Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5606,15 +4662,7 @@ msgctxt ""
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
+msgstr "DXF - AutoCAD Interchange Format"
#: convertfilters.xhp
msgctxt ""
@@ -5622,15 +4670,7 @@ msgctxt ""
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF - Enhanced Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -5638,15 +4678,7 @@ msgctxt ""
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
+msgstr "EMF - Enhanced Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -5654,15 +4686,7 @@ msgctxt ""
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS - Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5670,15 +4694,7 @@ msgctxt ""
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
+msgstr "EPS - Encapsulated PostScript"
#: convertfilters.xhp
msgctxt ""
@@ -5686,15 +4702,7 @@ msgctxt ""
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -5702,15 +4710,7 @@ msgctxt ""
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
+msgstr "GIF - Graphics Interchange"
#: convertfilters.xhp
msgctxt ""
@@ -5718,7 +4718,7 @@ msgctxt ""
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5726,7 +4726,7 @@ msgctxt ""
"par_graphicfilter31\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -5734,7 +4734,7 @@ msgctxt ""
"par_graphicfilter33\n"
"help.text"
msgid "HTML"
-msgstr ""
+msgstr "HTML"
#: convertfilters.xhp
msgctxt ""
@@ -5742,7 +4742,7 @@ msgctxt ""
"par_graphicfilter34\n"
"help.text"
msgid "text/html"
-msgstr ""
+msgstr "text/html"
#: convertfilters.xhp
msgctxt ""
@@ -5750,15 +4750,7 @@ msgctxt ""
"par_graphicfilter36\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5766,15 +4758,7 @@ msgctxt ""
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5782,15 +4766,7 @@ msgctxt ""
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
+msgstr "JPEG - Joint Photographic Experts Group"
#: convertfilters.xhp
msgctxt ""
@@ -5798,15 +4774,7 @@ msgctxt ""
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET - OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5814,15 +4782,7 @@ msgctxt ""
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
+msgstr "MET - OS/2 Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -5830,15 +4790,7 @@ msgctxt ""
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
+msgstr "QuickTime - MOV"
#: convertfilters.xhp
msgctxt ""
@@ -5846,7 +4798,7 @@ msgctxt ""
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5854,7 +4806,7 @@ msgctxt ""
"par_graphicfilter55\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -5862,7 +4814,7 @@ msgctxt ""
"par_graphicfilter57\n"
"help.text"
msgid "Macromedia Flash (SWF)"
-msgstr ""
+msgstr "Macromedia Flash (SWF)"
#: convertfilters.xhp
msgctxt ""
@@ -5870,7 +4822,7 @@ msgctxt ""
"par_graphicfilter58\n"
"help.text"
msgid "None"
-msgstr ""
+msgstr "Nenhum"
#: convertfilters.xhp
msgctxt ""
@@ -5878,15 +4830,7 @@ msgctxt ""
"par_graphicfilter60\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5894,15 +4838,7 @@ msgctxt ""
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
+msgstr "PBM - Portable Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -5910,15 +4846,7 @@ msgctxt ""
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base"
#: convertfilters.xhp
msgctxt ""
@@ -5926,15 +4854,7 @@ msgctxt ""
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base16"
#: convertfilters.xhp
msgctxt ""
@@ -5942,15 +4862,7 @@ msgctxt ""
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
+msgstr "PCD - Photo CD Base4"
#: convertfilters.xhp
msgctxt ""
@@ -5958,15 +4870,7 @@ msgctxt ""
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -5974,15 +4878,7 @@ msgctxt ""
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
+msgstr "PCT - Mac Pict"
#: convertfilters.xhp
msgctxt ""
@@ -5990,15 +4886,7 @@ msgctxt ""
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
+msgstr "PCX - Zsoft Paintbrush"
#: convertfilters.xhp
msgctxt ""
@@ -6006,15 +4894,7 @@ msgctxt ""
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -6022,15 +4902,7 @@ msgctxt ""
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
+msgstr "PGM - Portable Graymap"
#: convertfilters.xhp
msgctxt ""
@@ -6038,15 +4910,7 @@ msgctxt ""
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6054,15 +4918,7 @@ msgctxt ""
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6070,15 +4926,7 @@ msgctxt ""
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6086,15 +4934,7 @@ msgctxt ""
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
+msgstr "PNG - Portable Network Graphic"
#: convertfilters.xhp
msgctxt ""
@@ -6102,15 +4942,7 @@ msgctxt ""
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -6118,15 +4950,7 @@ msgctxt ""
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
+msgstr "PPM - Portable Pixelmap"
#: convertfilters.xhp
msgctxt ""
@@ -6134,15 +4958,7 @@ msgctxt ""
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
+msgstr "PSD - Adobe Photoshop"
#: convertfilters.xhp
msgctxt ""
@@ -6150,15 +4966,7 @@ msgctxt ""
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -6166,15 +4974,7 @@ msgctxt ""
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
+msgstr "RAS - Sun Raster Image"
#: convertfilters.xhp
msgctxt ""
@@ -6182,15 +4982,7 @@ msgctxt ""
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -6198,15 +4990,7 @@ msgctxt ""
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -6214,15 +4998,7 @@ msgctxt ""
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -6230,15 +5006,7 @@ msgctxt ""
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -6246,15 +5014,7 @@ msgctxt ""
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - desenho em Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -6262,15 +5022,7 @@ msgctxt ""
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
+msgstr "SVG - desenho em Scalable Vector Graphics"
#: convertfilters.xhp
msgctxt ""
@@ -6278,15 +5030,7 @@ msgctxt ""
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
+msgstr "SVM - StarView Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -6294,15 +5038,7 @@ msgctxt ""
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
+msgstr "SVM - StarView Meta File"
#: convertfilters.xhp
msgctxt ""
@@ -6310,15 +5046,7 @@ msgctxt ""
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
+msgstr "TGA - Truevision Targa"
#: convertfilters.xhp
msgctxt ""
@@ -6326,15 +5054,7 @@ msgctxt ""
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
+msgstr "TIFF - Tagged Image File Format"
#: convertfilters.xhp
msgctxt ""
@@ -6342,15 +5062,7 @@ msgctxt ""
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
+msgstr "TIFF - Tagged Image File Format"
#: convertfilters.xhp
msgctxt ""
@@ -6358,15 +5070,7 @@ msgctxt ""
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
+msgstr "WMF - Windows Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -6374,15 +5078,7 @@ msgctxt ""
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
+msgstr "WMF - Windows Metafile"
#: convertfilters.xhp
msgctxt ""
@@ -6390,15 +5086,7 @@ msgctxt ""
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
+msgstr "XBM - X Bitmap"
#: convertfilters.xhp
msgctxt ""
@@ -6406,15 +5094,7 @@ msgctxt ""
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: convertfilters.xhp
msgctxt ""
@@ -6422,15 +5102,7 @@ msgctxt ""
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
+msgstr "XPM - X PixMap"
#: copy_drawfunctions.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/shared/optionen.po b/source/pt-BR/helpcontent2/source/text/shared/optionen.po
index 5f818604fff..15245bf1806 100644
--- a/source/pt-BR/helpcontent2/source/text/shared/optionen.po
+++ b/source/pt-BR/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-02-14 11:45+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\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: 1550144730.000000\n"
#: 01000000.xhp
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "Para mais informações sobre o OpenCL, visite <link href=\"https://www.khronos.org/opencl/\">o sítio do OpenCL</link>"
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalização"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>temas;definir opções</bookmark_value><bookmark_value>definir opções;temas</bookmark_value><bookmark_value>personalização;temas do Mozilla Firefox</bookmark_value><bookmark_value>personas;personalização</bookmark_value><bookmark_value>personalização;personas</bookmark_value><bookmark_value>temas do Mozilla Firefox;personalização</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalização</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Você pode personalizar seu %PRODUCTNAME com os mesmos temas disponíveis para o Mozilla Firefox. A barra de menus, barras de ferramentas superiores e inferiores exibirão o tema escolhido no seu plano de fundo."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Os temas do Mozilla Firefox estão disponíveis no endereço <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Qualquer tema que for compatível com o Firefox, funciona também no %PRODUCTNAME. Contudo, nem todos os temas produzirão um bom aspecto visual — se o tema tiver muitos detalhes, pode interferir com a leitura dos ícones e do menu."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Temas do Firefox:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "As opções seguintes estão disponíveis:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Sem temas decorativos"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">O plano de fundo das barras de ferramentas herdam as definições de plano de fundo do seu ambiente de trabalho.</ahelp> Esta é a configuração padrão do %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Tema pré-instalado"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Escolha esta opção para utilizar um dos temas pré-instalados.</ahelp> Além das opções padrão, seu administrador de sistemas pode ter adicionado um tema personalizado durante a instalação do %PRODUCTNAME. Esta opção mostra este tema."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Tema próprio"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Selecione esta opção para abrir a caixa de diálogo \"Selecionar um tema do Firefox\" para mais escolhas de temas.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Selecionar um tema do Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Esta caixa de diálogo permite instalar um tema específico ou oferece uma amostra sobre outros temas interessantes do sítio de temas do Mozilla Firefox."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Pesquisar"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Fornece um tema de pesquisa para um tema específico do sítio do Mozilla Add-On, ou para colar um endereço de um tema específico diretamente.</ahelp> Para obter o endereço, use seu navegador web para acessar a página web do tema e copiar a URL mostrada na barra de endereço. Então cole na caixa de diálogo de pesquisa. Clique em <item type=\"menuitem\">Pesquisar</item> ou pressione <item type=\"keycode\">Enter</item>para baixar e instalar no %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Explorar temas por categoria"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Apresenta uma escolha aleatória de nove temas segundo a categoria exibida nos botões.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Clique em um dos cinco botões para mostrar na área abaixo uma escolha aleatória de nove temas relacionados com a categoria."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Para selecionar um dos temas exibidos, clique na sua imagem e pressione <item type=\"menuitem\">OK</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/pt-BR/helpcontent2/source/text/simpress/00.po b/source/pt-BR/helpcontent2/source/text/simpress/00.po
index a8bebcceb04..d8a387d6ebf 100644
--- a/source/pt-BR/helpcontent2/source/text/simpress/00.po
+++ b/source/pt-BR/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-10 15:52+0000\n"
+"PO-Revision-Date: 2019-05-15 17:48+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1554911528.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557942497.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <emph>Slide - New Slide</emph>"
-msgstr ""
+msgstr "Escolha <emph>Slide - Novo slide</emph>"
#: slide_menu.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3685251\n"
"help.text"
msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Ícone</alt></image>"
#: slide_menu.xhp
msgctxt ""
@@ -1310,4 +1310,4 @@ msgctxt ""
"par_id7354512\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Novo slide"
diff --git a/source/pt-BR/helpcontent2/source/text/simpress/01.po b/source/pt-BR/helpcontent2/source/text/simpress/01.po
index 8db29d9a638..2df0aead9c5 100644
--- a/source/pt-BR/helpcontent2/source/text/simpress/01.po
+++ b/source/pt-BR/helpcontent2/source/text/simpress/01.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-03 21:03+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-22 15:37+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1556917425.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558539430.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
#: 03070000.xhp
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Novo slide"
#: new_slide.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"bm_id3159155\n"
"help.text"
msgid "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>inserir; slides</bookmark_value><bookmark_value>slides; inserir</bookmark_value>"
#: new_slide.xhp
msgctxt ""
@@ -8174,15 +8174,15 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">Novo Slide</link>"
#: new_slide.xhp
msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
-msgstr ""
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
+msgstr "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Insere um slide após o slide atual selecionado.</ahelp></variable>"
#: remoteconnections.xhp
msgctxt ""
@@ -8326,7 +8326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Slide"
#: slide_properties.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"hd_id3149379\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Slide"
#: slide_properties.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Sets slide orientation, slide margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Define a orientação do slide, as margens do slide, o plano de fundo e outras opções de leiaute.</ahelp></variable>"
#: slide_properties.xhp
msgctxt ""
@@ -8350,7 +8350,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "To change the background of all of the slides in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Para alterar o plano de fundo de todos slides no arquivo ativo, selecione um plano de fundo, clique em <emph>OK</emph> e, em seguida, clique em <emph>Sim</emph> na caixa de diálogo <emph>Configurações da página</emph>."
#: slidesorter.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/simpress/02.po b/source/pt-BR/helpcontent2/source/text/simpress/02.po
index c003f8446eb..415022f8d88 100644
--- a/source/pt-BR/helpcontent2/source/text/simpress/02.po
+++ b/source/pt-BR/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2017-12-18 17:38+0000\n"
+"PO-Revision-Date: 2019-05-15 17:52+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513618729.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1557942736.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"hd_id3149028\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
#: 10110000.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter/00.po b/source/pt-BR/helpcontent2/source/text/swriter/00.po
index c02d8bf3f80..f5968d0c80a 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter/00.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter/00.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: 2019-01-12 13:18+0100\n"
-"PO-Revision-Date: 2019-01-21 12:40+0000\n"
-"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
+"PO-Revision-Date: 2019-05-16 23:42+0000\n"
+"Last-Translator: André Marcelo Alvarenga <andrealvarenga@gmx.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1548074440.000000\n"
+"X-POOTLE-MTIME: 1558050152.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id3153249\n"
"help.text"
msgid "<variable id=\"sendenclipboard\">Choose <emph>File - Send - Outline to Clipboard</emph></variable>"
-msgstr "<variable id=\"sendenclipboard\">Escolha <emph>Arquivo - Enviar - Estrutura de tópicos para área de transferência</emph></variable>"
+msgstr "<variable id=\"sendenclipboard\">Escolha <emph>Arquivo - Enviar - Estrutura de tópicos para a área de transferência</emph></variable>"
#: 00000401.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter/01.po b/source/pt-BR/helpcontent2/source/text/swriter/01.po
index fbeb4055de7..7700d1f8f8a 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter/01.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-12 14:15+0000\n"
-"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
+"PO-Revision-Date: 2019-05-17 02:27+0000\n"
+"Last-Translator: André Marcelo Alvarenga <andrealvarenga@gmx.net>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555078509.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558060039.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Outline to Clipboard"
-msgstr "Estrutura de tópicos para área de transferência"
+msgstr "Estrutura de tópicos para a área de transferência"
#: 01160200.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"hd_id3145241\n"
"help.text"
msgid "<link href=\"text/swriter/01/01160200.xhp\" name=\"Outline to Clipboard\">Outline to Clipboard</link>"
-msgstr "<link href=\"text/swriter/01/01160200.xhp\" name=\"Outline to Clipboard\">Estrutura de tópicos para área de transferência</link>"
+msgstr "<link href=\"text/swriter/01/01160200.xhp\" name=\"Outline to Clipboard\">Estrutura de tópicos para a área de transferência</link>"
#: 01160200.xhp
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"par_id3154343\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the condition that must be met to hide the section.</ahelp> A condition is a <link href=\"text/swriter/01/04090200.xhp\" name=\"logical expression\">logical expression</link>, such as \"SALUTATION EQ Mr.\". For example, if you use the <link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"mail merge\">mail merge</link> form letter feature to define a database field called \"Salutation\" that contains \"Mr.\", \"Ms.\", or \"Sir or Madam\", you can then specify that a section will only be printed if the salutation is \"Mr.\"."
-msgstr "<ahelp hid=\".\">Insira a condição que deve ser obedecida para que a seção seja ocultada.</ahelp> Uma condição seria uma <link href=\"text/swriter/01/04090200.xhp\" name=\"logical expression\">expressão lógica</link> como \"SAUDAÇÃO EQ Sr.\". Por exemplo, se você usar o recurso de carta-modelo<link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"mail merge\">mala direta</link> para definir um campo do banco de dados denominado \"Saudação\" que contenha \"Sr.\", \"Sra.\" ou \"Senhor ou Senhora\", poderá especificar que uma seção somente seja impressa se a saudação for \"Sr.\"."
+msgstr "<ahelp hid=\".\">Insira a condição que deve ser obedecida para que a seção seja ocultada.</ahelp> Uma condição seria uma <link href=\"text/swriter/01/04090200.xhp\" name=\"logical expression\">expressão lógica</link> como \"SAUDAÇÃO EQ Sr.\". Por exemplo, se você usar o recurso de carta-modelo <link href=\"text/swriter/guide/form_letters_main.xhp\" name=\"mail merge\">mala direta</link> para definir um campo do banco de dados denominado \"Saudação\" que contenha \"Sr.\", \"Sra.\" ou \"Senhor ou Senhora\", poderá especificar que uma seção somente seja impressa se a saudação for \"Sr.\"."
#: 04020100.xhp
msgctxt ""
@@ -15534,7 +15534,7 @@ msgctxt ""
"par_idN10A8E\n"
"help.text"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Manter texto dentro dos limites"
#: 05060100.xhp
msgctxt ""
@@ -15550,7 +15550,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Keep inside text boundaries</emph> option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)."
-msgstr ""
+msgstr "Por padrão, a opção <emph>Manter texto dentro dos limites</emph> é selecionada quando se abre um documento criado em uma versão do Writer anterior ao OpenOffice.org 2.0. No entanto, esta opção não é selecionada quando se cria um documento ou quando se abre um documento no formato do Microsoft Word (*.doc)."
#: 05060100.xhp
msgctxt ""
@@ -17830,7 +17830,7 @@ msgctxt ""
"par_id3145782\n"
"help.text"
msgid "To insert a paragraph before a table at the beginning of a document, header or footer, place the cursor before any content in the first cell, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter."
-msgstr "Para inserir um parágrafo antes de uma tabela no início de uma documento, cabeçalho ou rodapé, posicione o cursos antes de qualquer conteúdo na primeira célula e pressione <switchinline select=\"sys\"><caseinline select=\"MAC\">Opção</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter."
+msgstr "Para inserir um parágrafo antes de uma tabela no início de um documento, cabeçalho ou rodapé, posicione o cursor antes de qualquer conteúdo na primeira célula e pressione <switchinline select=\"sys\"><caseinline select=\"MAC\">Opção</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter."
#: 05090200.xhp
msgctxt ""
diff --git a/source/pt-BR/helpcontent2/source/text/swriter/guide.po b/source/pt-BR/helpcontent2/source/text/swriter/guide.po
index 1febd7edeec..79078730fce 100644
--- a/source/pt-BR/helpcontent2/source/text/swriter/guide.po
+++ b/source/pt-BR/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-25 03:28+0000\n"
"Last-Translator: Tulio Macedo <tuliomac@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: 1556162890.000000\n"
#: anchor_object.xhp
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Na <emph>barra de ferramentas Padrão</emph>, clique no ícone <emph>Navegador</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Ícone</alt></image> para abrir o <emph>Navegador</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "No <emph>Navegador</emph>, clique no ícone <emph>Exibição do conteúdo </emph><image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Ícone</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Clique num título na lista <emph>Navegador</emph> e, em seguida clique no ícone <emph>Promover capítulo</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Ícone</alt></image> ou no ícone <emph>Rebaixar capítulo</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Ícone</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Clique no ícone <emph>Promover nível </emph><image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Ícone</alt></image> ou no ícone <emph>Rebaixar nível </emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Ícone</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Clique no ícone <emph>Mostrar níveis dos títulos</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Ícone</alt></image>, e selecione um número da lista."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po b/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po
index b2ecf85ced5..82751dbb4a3 100644
--- a/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 00:28+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-28 19:47+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_BR\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: 1557707290.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559072849.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -8708,7 +8708,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export"
-msgstr "Exportação censurada"
+msgstr "Exportar censura"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10220,7 +10220,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export (Black)"
-msgstr "Exportação censurada (Preto)"
+msgstr "Exportar censura em preto"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -10229,7 +10229,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redacted Export (White)"
-msgstr "Exportação censurada (Branco)"
+msgstr "Exportar censura em branco"
#: DrawWindowState.xcu
msgctxt ""
@@ -10589,7 +10589,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Redacted Export"
-msgstr "Exportação censurada"
+msgstr "Exportar censura"
#: DrawWindowState.xcu
msgctxt ""
@@ -16862,7 +16862,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Rectangle Redaction"
-msgstr "Censura com retângulos"
+msgstr "Censurar com retângulos"
#: GenericCommands.xcu
msgctxt ""
@@ -20509,7 +20509,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Freeform Redaction"
-msgstr "Censura à mão livre"
+msgstr "Censurar à mão livre"
#: GenericCommands.xcu
msgctxt ""
@@ -20932,7 +20932,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Redact"
-msgstr "Redigir"
+msgstr "Censurar"
#: GenericCommands.xcu
msgctxt ""
@@ -20941,7 +20941,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Redact"
-msgstr "Redigir"
+msgstr "Censurar"
#: GenericCommands.xcu
msgctxt ""
@@ -20950,7 +20950,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Redact Document"
-msgstr "Redigir documento"
+msgstr "Censurar documento"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Mais campos"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr "Regenerar o diagrama"
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Em abas"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/pt-BR/sc/messages.po b/source/pt-BR/sc/messages.po
index 6776708f4ce..e7d4fcdc3bc 100644
--- a/source/pt-BR/sc/messages.po
+++ b/source/pt-BR/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 00:28+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 17:45+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\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: 1557707309.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558633510.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(acesso exclusivo)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "Sem intervalos nomeados disponíveis no documento selecionado"
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,14 +15775,14 @@ msgstr "Gerenciar formatação condicional"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr "Primeira condição"
-
-#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
msgid "Range"
msgstr "Intervalo"
+#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Primeira condição"
+
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
msgid "Add"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulário de dados"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Fe_char"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Novo registro"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Novo"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "E_xcluir"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restaurar"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Registro _anterior"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Pró_ximo registro"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Fe_char"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Fluxo de dados ao vivo"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Insira aqui o URL do documento de origem no sistema de arquivos local ou na Internet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Procurar..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Intervalo do banco de dados:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Provedores de dados:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Texto a procurar:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Fonte do fluxo de dados"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Resultados para:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Apare o intervalo de entrada para seu conteúdo efetivo"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Dados"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Colunas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Linhas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Agrupado por"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervalo:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parâmetros"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "A_juda"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Arquivo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Especifique as bordas das células selecionadas."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Aumentar recuo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Diminuir recuo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Início"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Início"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "_Leiaute"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Alinhamento do objeto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "~Leiaute"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "E_statísticas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dados"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dados"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisão"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "E_xibir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Exibir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Fi_gura"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Fi~gura"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Desenho"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Desenho"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objeto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimídia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimídia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Im_primir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulário"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulário"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ferramentas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Fe~rramentas"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Resultados da pesquisa"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "_Mostrar este diálogo"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "Ative novamente o diálogo com Ferramentas > Opções > %PRODUCTNAME Calc > Exibir"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Planilha"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Célula"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Conteúdo"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Símb_olos do esquema"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr "Sumário _na pesquisa"
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Janela"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Linhas da _grade:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Cor:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Mostrar nas células coloridas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Quebras de _página"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "G_uias ao mover"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Ajuda visual"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jetos e figuras:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "G_ráficos:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Objetos de _desenho:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objetos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_incronizar planilhas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Zoom"
diff --git a/source/pt-BR/scp2/source/ooo.po b/source/pt-BR/scp2/source/ooo.po
index 25173b9a29f..dad372155b2 100644
--- a/source/pt-BR/scp2/source/ooo.po
+++ b/source/pt-BR/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-09 20:56+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-23 17:49+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: Brazilian Portuguese <l10n@global.libreoffice.org>\n"
"Language: pt_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: 1554843379.000000\n"
+"X-POOTLE-MTIME: 1558633750.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Abrir documento"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (Modo seguro)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/pt-BR/scp2/source/winexplorerext.po b/source/pt-BR/scp2/source/winexplorerext.po
index a0f5ebd18c9..4028b3fb858 100644
--- a/source/pt-BR/scp2/source/winexplorerext.po
+++ b/source/pt-BR/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-07-04 04:40+0200\n"
-"Last-Translator: Olivier <olivier.hallot@documentfoundation.org>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:45+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369349142.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permite que o Microsoft Windows Explorer mostre informações sobre documentos do %PRODUCTNAME, como visualizações em miniatura."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/pt-BR/sd/messages.po b/source/pt-BR/sd/messages.po
index 3d538a8b3b2..315ff5d7952 100644
--- a/source/pt-BR/sd/messages.po
+++ b/source/pt-BR/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-09 21:19+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Clicar para abrir o hiperlink:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nomear o design HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Arquivo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Aj_uda"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Arquivo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Início"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Página"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Página"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisão"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisão"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "E_xibir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Exibir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_exto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~exto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converter"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Fi_gura"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Fi~gura"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Desenho"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Desenho"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimídia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimídia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulário"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulário"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ferramentas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Fe~rramentas"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Mostrar formas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Arquivo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "A_juda"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Arquivo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Início"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "S_lide"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "S~lide"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Apresentação de _slides"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Apre~sentação de slides"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisão"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "E_xibir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Exibir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converter"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Fi_gura"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Fi~gura"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Desenho"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Desenho"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimídia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimídia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulário"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulário"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ferramentas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Fe~rramentas"
diff --git a/source/pt-BR/sfx2/messages.po b/source/pt-BR/sfx2/messages.po
index c45e1f4c3ca..e5380270d9c 100644
--- a/source/pt-BR/sfx2/messages.po
+++ b/source/pt-BR/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-09 20:56+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 17:50+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\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: 1554843397.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558633833.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " A: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Remover propriedade"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"O valor inserido não combina com o tipo especificado.\n"
"O valor será armazenado como texto."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "O estilo já existe. Sobrescrever?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Redefinir"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Esse nome já está sendo utilizado."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Esse estilo não existe."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Esse estilo não pode ser utilizado como um estilo base,\n"
"pois isso resultaria em uma referência recursiva."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Esse nome já existe como estilo padrão.\n"
"Escolha outro nome."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Se excluir estes estilos, o texto reverterá ao estilo pai.\n"
"Ainda deseja excluir estes estilos?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Estilos utilizados: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navegador"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Problema na confirmação da senha"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Enviar"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Fontes"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Mostrar visualizações"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Ver comentário da versão"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(sem nome definido)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lista de estilos"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierárquico"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Modo pincel de estilo"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Novo estilo a partir da seleção"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Ações de estilos"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Atualizar estilo"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Deseja cancelar a gravação? Todas as etapas gravadas até agora serão perdidas."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Cancelar gravação"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Os modelos estão sendo inicializados para a primeira utilização."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Nenhuma impressora padrão foi encontrada.\n"
"Escolha uma impressora e tente novamente."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Não foi possível iniciar a impressora.\n"
"Verifique as configurações de sua impressora."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Impressora ocupada"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (somente leitura)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Deseja salvar as novas configurações no documento\n"
"ativo?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Deseja salvar as novas configurações\n"
"no documento ativo?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Deseja salvar as novas configurações no documento\n"
"ativo?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Não é possível fechar o documento, pois um\n"
"trabalho de impressão está em andamento."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Verifique as configurações do %PRODUCTNAME ou do seu programa de e-mail."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"O código de erro é $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Erro ao enviar e-mail"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Esse documento não pode ser editado, talvez pela falta de direitos de acesso. Deseja editar uma cópia do documento?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Você também pode tentar ignorar a trava e abrir o arquivo para edição."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Abrir ~cópia"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Abrir"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (documento reparado)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Este documento não deu saída do servidor."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Ajude-nos a tornar o %PRODUCTNAME ainda melhor!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Participe"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Sua doação apoiam nossa comunidade internacional."
+msgstr "Sua doação ajuda nossa comunidade internacional."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Faça uma doação"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Você está executando a versão %PRODUCTVERSION do %PRODUCTNAME pela primeira vez. Deseja saber as novidades?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Notas da versão"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Este documento foi aberto no modo somente leitura."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Este PDF foi aberto no modo só leitura para permitir que seja assinado."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "A classificação deste documento é %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Este documento deve ser classificado antes de poder colar dados da área de transferência."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Este documento tem um nível de classificação inferior ao dos dados da área de transferência."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Nível"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Segurança nacional:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Controle de exportação:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Dar saída"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editar documento"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Assinar documento"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Este documento contém uma assinatura inválida."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "A assinatura era válida, mas o documento foi modificado"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "A assinatura está correta, mas não foi possível validar o certificado."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "A assinatura está correta, mas apenas parte do documento está assinado."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Não foi possível validar o certificado e o documento está parcialmente assinado."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Este documento está assinado digitalmente e a assinatura é válida."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Mostrar assinaturas"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Fechar painel"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Encaixar"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Desencaixar"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Mais opções"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Fechar painel lateral"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Configurações da barra lateral"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalização"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restaurar os valores padrão"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Fechar barra lateral"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarin"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Colmeia"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Curva azul"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Plantas mimeografadas"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Azul brilhante"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Vermelho com classe"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focado"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Pássaros"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impress"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiração"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Luzes"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verde exuberante"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópole"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Azul da meia noite"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natureza"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lápis"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progresso"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Por do sol"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivo"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículo"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Padrão"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna sans-serif"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial serif"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cartão de visitas com logomarca"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Remover"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Limpar tudo"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Tamanho da senha"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "A senha inserida causa problemas de interoperabilidade. Insira uma senha menor que 52 bytes, ou maior que 55 bytes."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Comentário da versão:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nome"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipo"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valor"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Sim"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Não"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Adicionar _propriedade"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nome"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valor"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Localização:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipo:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Alterar _senha"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Modelo:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Propriedades de “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Geral"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descrição"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Propriedades personalizadas"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Propriedades CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Segurança"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Este produto foi criado pela %OOOVENDOR e teve como base de desenvolvimento o OpenOffice.org, cujos detentores dos seus direitos entre 2000 e 2011 são a Oracle e/ou os seus afiliados. A %OOOVENDOR agradece a todos os membros da comunidade. Acesse a página http://pt-br.libreoffice.org/ para mais detalhes."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/pt-BR/shell/messages.po b/source/pt-BR/shell/messages.po
new file mode 100644
index 00000000000..6da0a9777e2
--- /dev/null
+++ b/source/pt-BR/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-23 17:47+0000\n"
+"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: pt_BR\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558633646.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Ao abrir documento"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Vocẽ está abrindo\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Deseja abri-lo para exibi-lo ou para edita-lo?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Exibir"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Editar"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Cancelar"
diff --git a/source/pt-BR/starmath/messages.po b/source/pt-BR/starmath/messages.po
index 74005be9893..b6590d6315f 100644
--- a/source/pt-BR/starmath/messages.po
+++ b/source/pt-BR/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-01-15 09:17+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Exemplos"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Padrão"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Itálico"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negrito"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "preto"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "azul"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "vermelho"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ciano"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "cinza"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "verde claro"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marrom"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "azul marinho"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "verde oliva"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "púrpura"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "prata"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "turquesa"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "amarelo"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ocultar"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamanho"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "fonte"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "à esquerda"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centro"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "à direita"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comandos"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Salvando o documento..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula do %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERRO : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caractere inesperado"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Token inesperado"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Falta '{'"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Falta '}'"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Falta '('"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Falta ')'"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Símbolos esquerdo e direito incoerentes"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Esperava-se fontes \"fixed\", \"sans\" ou \"serif\" "
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "\"size\" seguido por um token inesperado."
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Não é permitido o alinhamento duplo"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Não são permitidos subscritos e sobrescritos"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Falta '#'"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Falta a cor"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Falta 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Conteúdo"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Título"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Texto da ~fórmula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~ordas"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamanho"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamanho o~riginal"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ajustar à ~página"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Escala"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementos"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/pt-BR/svtools/messages.po b/source/pt-BR/svtools/messages.po
index 7e6f624059d..09525347262 100644
--- a/source/pt-BR/svtools/messages.po
+++ b/source/pt-BR/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-13 00:28+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,1521 +13,1523 @@ 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: 1557707334.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desfazer: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Re~fazer: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repetir: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Texto sem formatação"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Texto não formatado (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imagem figura (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Meta-arquivo Graphics Device Interface (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Rich text formatting (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Rich text formatting (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Formato de desenho do %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Animação / bitmap do StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informações de status do vínculo interno Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Vínculo do %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcador do Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formato do servidor Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formato do objeto Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objeto de mini-aplicativo"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objeto de plug-in"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objeto StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objeto StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objeto StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objeto StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objeto StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objeto StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objeto StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objeto StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objeto StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objeto StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objeto StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objeto StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objeto StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objeto StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objeto StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objeto StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objeto StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objeto StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objeto StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objeto StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objeto StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objeto StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objeto StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objeto StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Linguagem de Marcação de Hipertexto (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Formato de intercambio binário do Microsoft Excel 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Formato de intercambio binário do Microsoft Excel 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Cambio de dados dinâmico (vínculo DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Formato de intercambio de dados (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objeto Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objeto StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objeto de documento do Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informações sobre documento do Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documento Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objeto StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objeto gráfico"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objeto do OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objeto do OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objeto do OpenOffice.org 1.0 Writer/Mestre"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objeto do OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objeto do OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objeto do OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objeto do OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objeto do OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Meta-arquivo do Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objeto da fonte de dados"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabela da fonte de dados"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diálogo do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Vínculos"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formato HTML sem comentários"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Não foi possível inserir o objeto %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Não foi possível inserir o objeto do arquivo %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Objetos adicionais"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Origem desconhecida"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nome"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Tamanho"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Data modificada"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipo"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Linha: %1, Coluna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tipo: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Pasta"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Arquivo"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Campo vazio"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Conjunto de caracteres"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dicionário"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Traço"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Agenda telefônica"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonético (alfanumérico primeiro)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonético (alfanumérico por último)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dicionário"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Traço"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonético (alfanumérico primeiro, agrupado por sílabas)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonético (alfanumérico primeiro, agrupado por consoantes)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonético (alfanumérico por último, agrupado por sílabas)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonético (alfanumérico por último, agrupado por consoantes)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Hoje"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Nenhum"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Claro"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Itálico claro"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Regular"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Itálico"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Negrito"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Itálico Negrito"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Preto"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Itálico Preto"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Livro"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Negrito oblíquo"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensado"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Negrito condensado"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Negrito condensado itálico"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Negrito condensado oblíquo"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Itálico condensado"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Oblíquo condensado"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extrafino"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Itálico extrafino"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblíquo"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semi-negrito"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semi-negrito itálico"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "A mesma fonte será usada tanto na impressora quanto na tela."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Esta é uma fonte de impressora. A imagem da tela pode conter distorções."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Este estilo de fonte será simulado ou o estilo correspondente mais próximo será utilizado."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Esta fonte não foi instalada. A fonte disponível mais próxima será usada."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Procurar..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mover para o início"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mover para a esquerda"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mover para a direita"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mover para o fim"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Adicionar"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Régua horizontal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Régua vertical"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Limiar de 1 bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Dispersão de 1 bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Escala de cinzas de 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Cor de 4 bits"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Escala de cinzas de 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Cor de 8 bits"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Cor de 24 bits"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "A figura necessita de cerca de %1 KB de memória."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "A figura requer cerca de %1 KB de memória, o tamanho do arquivo é %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Tamanho do arquivo é %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "servidor"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "porta"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Outros CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Pronto"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Em pausa"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Exclusão pendente"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupado"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inicializando"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Em espera"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Aquecendo"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Processando"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Imprimindo"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Offline"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Erro"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor desconhecido"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Obstrução de papel"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Papel insuficiente"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentação manual de papel"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problema com o papel"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S ativa"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Bandeja de saída cheia"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Baixo nível de toner"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Sem toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Excluir página"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "A impressora necessita uma intervenção do usuário"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memória insuficiente"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Tampa aberta"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modo de economia de energia"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impressora padrão"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documentos"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Concluir"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Pró~ximo >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Anterior"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Passos"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<nenhum>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamento"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nome"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Sobrenome"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Rua"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "CEP"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Cidade"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Título"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Cargo"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Tratamento"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciais"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Encerramento"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel. Residencial"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel. Comercial"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notas"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Personalizado 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Personalizado 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Personalizado 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Personalizado 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Estado"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel. Comercial"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Celular"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel. (outros)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendário"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Convidar"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "O %PRODUCTNAME requer um JRE (Java Runtime Environment) para executar essa tarefa. Instale um JRE e reinicie o %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "O %PRODUCTNAME requer um %BITNESS-bit JRE (Java Runtime Environment) para executar essa tarefa. Instale um JRE e reinicie o %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "O %PRODUCTNAME necessita do Java Development Kit (JDK) da Oracle no macOS 10.10 ou superior para executar esta tarefa. Instale o JDK e reinicie o %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "A configuração do %PRODUCTNAME foi alterada. Em %PRODUCTNAME - Preferências - %PRODUCTNAME - Avançado, escolha o Java runtime environment que pretende utilizar no %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "A configuração do %PRODUCTNAME foi alterada. Em Ferramentas - Opções - %PRODUCTNAME - Avançado, escolha o Java runtime environment que pretende utilizar no %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "O %PRODUCTNAME requer um Java runtime environment (JRE) para executar esta tarefa. O JRE escolhido está danificado. Escolha outra versão ou instale novamente o JRE e em seguida, escolha-o em %PRODUCTNAME - Preferências - %PRODUCTNAME - Avançado."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "O %PRODUCTNAME requer um JRE (Java Runtime Environment) para executar essa tarefa. O JRE selecionado está defeituoso. Selecione outra versão ou instale um novo JRE e selecione-o em Ferramentas - Opções - %PRODUCTNAME - Avançado."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "É necessário um JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Selecionar JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "O JRE está com defeito"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Código-fonte"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Arquivo de marcadores"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Figuras"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Arquivo de configuração"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicativo"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabela do banco de dados"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Arquivo do sistema"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documento do MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Arquivo da Ajuda"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Arquivo morto"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Arquivo de log"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Banco de dados do StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Documento mestre do StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Figura StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Arquivo de texto"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Vínculo"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Modelos do StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documento do MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Modelo do MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Arquivo lote"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Arquivo"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Pasta"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Texto"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Planilha"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Apresentação"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Desenho"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Documento mestre"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Banco de dados"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Modelo de planilha do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Modelo de desenho do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Modelo de apresentação do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Modelo de documento de texto do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unidade local"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unidade de disco"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unidade de CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Conexão de rede"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documento do MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Modelo do MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Apresentação do MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Gráfico do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Desenho do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Planilha do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Apresentação do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documento de texto do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Documento mestre do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documento MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Banco de dados do OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Desenho do OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula do OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Documento mestre do OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Apresentação do OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Planilha do OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Texto do OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Modelo de planilha do OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Modelo de desenho do OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Modelo de apresentação do OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Modelo de texto do OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensão %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Verificador ortográfico Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Hifenizador Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Dicionário de sinônimos MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lista de palavras ignoradas"
diff --git a/source/pt-BR/svx/messages.po b/source/pt-BR/svx/messages.po
index 587a72200a1..e77c97524f5 100644
--- a/source/pt-BR/svx/messages.po
+++ b/source/pt-BR/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 00:37+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-23 17:48+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\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: 1557707826.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558633723.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Da esquerda para a direita (vertical)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "De baixo para cima, da esquerda para a direita (vertical)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Número da parte:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Parte do texto:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Especifique a percentagem de deslocamento vertical a partir do centro para o estilo de sombreamento do gradiente. 50% é o centro vertical."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor de contornos"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Espaço de trabalho"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Selecionar"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Retângulo"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polígono"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar pontos"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mover pontos"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserir pontos"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Excluir pontos"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Autocontorno"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Desfazer "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Refazer"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolerância de cor"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Rodapé"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor de mapa de imagem"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Abrir..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Salvar..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Fechar"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Selecionar"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Retângulo"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polígono"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Polígono à mão livre"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar pontos"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mover pontos"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserir pontos"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Excluir pontos"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Desfazer "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Refazer"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Ativo"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Propriedades..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Endereço:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Quadro:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Texto:"
diff --git a/source/pt-BR/sw/messages.po b/source/pt-BR/sw/messages.po
index 5396bb6b4ab..78a88823f38 100644
--- a/source/pt-BR/sw/messages.po
+++ b/source/pt-BR/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 00:32+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-23 17:47+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@documentfoundation.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt_BR\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: 1557707528.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1558633670.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,7 +3118,7 @@ msgid "Change object title of $1"
msgstr "Alterar o título de objeto de $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Alterar a descrição de objeto de $1"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "A_juda"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Arquivo"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Início"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Inicio"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "_Leiaute"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "~Leiaute"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referência_s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referência~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisar"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Revisão"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "E_xibir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Exibir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Fi_gura"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Fi~gura"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Desenho"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Desenho"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimídia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimídia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Im_primir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "~Imprimir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulário"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulário"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ferramentas"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Fe~rramentas"
@@ -12160,152 +12160,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Arquivo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr "~Arquivo"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Início"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr "I~nício"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Disposição do texto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Layout"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr "~Leiaute"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referência_s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr "Referência~s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Revisão"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr "~Revisão"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "E_xibir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr "E~xibir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abela"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Figura"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr "Fi~gura"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Desenha_r"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr "~Desenhar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Multimídia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr "~Multimídia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Imprimir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr "Im~primir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr "Fo_rmulário"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulário"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "_Ferramentas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr "Fe~rramentas"
@@ -13372,8 +13372,8 @@ msgstr "Expandir os espaços entre palavras nas linhas com quebras de linha manu
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Proteger formulário"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Sumário, índice ou bibliografia"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Visualizar"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Visualizar"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entradas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Estilos"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Colunas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Plano de fundo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Visualizar"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Níve_l"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tipo"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Editar..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Título:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Sumário"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Índice alfabético"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Índice de figuras"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Índice de tabelas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Índice personalizado"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Índice de objetos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protegido contra alterações manuais"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipo e título"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Para:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Documento inteiro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capítulo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Avaliar até o nível:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Criar índice ou sumário"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Estrutura de tópicos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Marcas de índice"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabelas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Quadros de te_xto"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Figuras"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Objetos OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Utilizar o nível do capítulo de origem"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Estilos _adicionais"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Estilos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Atribuir estilos..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Legendas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Nomes de objeto"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categoria:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Exibir:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referências"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categoria e número"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Texto da legenda"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Criar a partir de"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Criar a partir dos seguintes objetos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Colc_hetes:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Entradas _numéricas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[nenhum]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatação das entradas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Combinar entradas idênticas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Combinar entradas idênticas com p ou _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Combinar com -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Distinção entre maiúsculas e minúsculas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Autocapitalizar entradas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Chaves como entradas separadas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Arquivo de _concordância"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Arquivo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opções"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Idioma:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipo de chave:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ordenar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Níveis"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Estilos de _parágrafo"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Pa_drão"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Editar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Atribuição"
diff --git a/source/pt/cui/messages.po b/source/pt/cui/messages.po
index a04905ed214..709adafac6f 100644
--- a/source/pt/cui/messages.po
+++ b/source/pt/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-04-28 21:26+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Introduza um endereço válido ou um termo de pesquisa."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "A API dos temas do Mozilla está indisponível."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Sem contornos"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Apenas o contorno exterior"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Contorno exterior e linhas horizontais"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Contorno exterior e todas as linhas interiores"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Contorno exterior sem alterar as linhas interiores"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Apenas as linhas diagonais"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Os quatro contornos"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Apenas os contornos esquerdo e direito"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Apenas os contornos superior e inferior"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Apenas o contorno esquerdo"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Contornos superior e inferior e todas as linhas interiores"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Contornos esquerdo e direito e todas as linhas interiores"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Sem sombra"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Projetar sombra para a direita inferior"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Projetar sombra para cima e à direita"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Projetar sombra para baixo e à esquerda"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Projetar sombra para cima e à esquerda"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Assinado por: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Todos os ficheiros"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Bases de dados registadas"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "Acerca do %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Cré_ditos"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Site"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID da versão: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Configuração regional: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Idioma da interface: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Consulte o registo: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "O %PRODUCTNAME é um conjunto de aplicações de produtividade de código livre, moderno e fácil de utilizar. Pode ser utilizado para criar documentos de texto, folhas de cálculo, apresentações e muito mais."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000–2019 Colaboradores do LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "O LibreOffice é baseado no OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "O %PRODUCTNAME é um derivado do LibreOffice e é baseado no OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Esta versão foi disponibilizada por %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Substitui_r"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "S_ubstituir"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Por:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Apenas _texto"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Tamanho mínimo da palavra"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Propriedades"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Moldu_ra:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nome:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Texto alternativo:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Descrição:"
@@ -9019,80 +9179,80 @@ msgstr "Mostrar alerta se a ajuda local não estiver instalada"
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ajuda"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Utili_zar caixas de diálogo do %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Caixas de diálogo Abrir/Guardar"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Utilizar caixas de _diálogo do %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Caixas de diálogo de impressão"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "A im_pressão define o estado \"documento modificado\""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Estado do documento"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretar como anos entre "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "e "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Ano (dois dígitos)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Recolher e enviar dados de utilização para a The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ajude-nos a melhorar o %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Carregar o %PRODUCTNAME ao iniciar o sistema"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Ativar ícone de início rápido na bandeja"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Início rápido do %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Tema pré-instalado"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Tema próprio"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Carregar tema Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Selecionar de um tema instalado através de extensões:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Temas Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opções de segurança"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Selecionar um tema Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Termo de pesquisa ou endereço"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Ca_tegoria:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Abstrato"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Causas"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Moda"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Filmes e televisão"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Feriados"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Música"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Natureza"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Outras"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Paisagens"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Estações"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Sólido"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Desporto"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Sites"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Destaques"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr "Dica do dia"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr "Mo_strar dicas ao iniciar"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr "Ative novamente o diálogo em ferramentas > Opções > Geral"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr "Dica segui_nte"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr "Sabia que?"
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr "Ligação"
diff --git a/source/pt/extensions/messages.po b/source/pt/extensions/messages.po
index c68c7cb2f70..52217cb5fe4 100644
--- a/source/pt/extensions/messages.po
+++ b/source/pt/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-11 22:20+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1555021222.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Esquema de colunas para a tabela “%1”"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "A_breviatura"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autor(es)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Editora"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Capítulo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tipo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_Ano"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Títu_lo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "En_dereço"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pá_gina(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_ição"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Título do li_vro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volume"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Tipo de pu_blicação"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zação"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_uição"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versidade"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Ti_po de relatório"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Mês"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Diá_rio"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Núm_ero"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Sé_rie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_otação"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Nota"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Campo de utilizador _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Campo de utilizador _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Campo de utilizador _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Campo de utilizador _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Campo de utilizador _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nomes de coluna"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Digite o nome do novo tipo de dados:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Ligar campos"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Sugerir"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Pode utilizar subformulários para mostrar os detalhes do registo atual do formulário principal. Para tal, pode especificar as colunas do subformulário que correspondem a determinadas colunas do formulário principal."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etiqueta"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etiqueta"
diff --git a/source/pt/helpcontent2/source/auxiliary.po b/source/pt/helpcontent2/source/auxiliary.po
index e7e5282f687..84e90637d21 100644
--- a/source/pt/helpcontent2/source/auxiliary.po
+++ b/source/pt/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-15 22:20+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1555366839.000000\n"
#: sbasic.tree
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Informações gerais"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "Apresentações e desenhos (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Barras de ferramentas"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Desenhos (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Menus"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Barras de ferramentas"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Objetos, imagens e mapas de bits"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupos e camadas"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Texto em apresentações e desenhos"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/sbasic/guide.po b/source/pt/helpcontent2/source/text/sbasic/guide.po
index 175d0a263cd..e93929a378e 100644
--- a/source/pt/helpcontent2/source/text/sbasic/guide.po
+++ b/source/pt/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-09 23:16+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1557443795.000000\n"
#: access2base.xhp
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Comparação entre o Access2Base e Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Abrir uma caixa de diálogo com o código de programa"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>alternar módulos/caixas de diálogo</bookmark_value><bookmark_value>caixas de diálogo;utilizar código de programa para mostrar (exemplo)</bookmark_value><bookmark_value>exemplos; mostrar uma caixa de diálogo utilizando o código de programa</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/sbasic/python.po b/source/pt/helpcontent2/source/text/sbasic/python.po
index 1827410039f..9084a3cbe5d 100644
--- a/source/pt/helpcontent2/source/text/sbasic/python.po
+++ b/source/pt/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-09 23:20+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1557444016.000000\n"
#: main0000.xhp
@@ -77,7 +77,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,8 +1469,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
-msgstr "<bookmark_value>Platform;isLinux</bookmark_value><bookmark_value>Platform;isMacOsX</bookmark_value><bookmark_value>Platform;isWindows</bookmark_value><bookmark_value>Platform;ComputerName</bookmark_value><bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1493,8 +1493,8 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
-msgstr "O %PRODUCTNAME Bascis não tem reconhecimento nativo em sistemas MacOS X e a propriedade ComputerName apenas está disponível no Windows. As invocações do BASIC às macros Python permitem superar estas limitações."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
+msgstr ""
#: python_platform.xhp
msgctxt ""
@@ -1515,6 +1515,30 @@ msgstr "Utilizar um módulo de classe Basic:"
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/pt/helpcontent2/source/text/sbasic/shared.po b/source/pt/helpcontent2/source/text/sbasic/shared.po
index fd43e37675b..5a186bd50c4 100644
--- a/source/pt/helpcontent2/source/text/sbasic/shared.po
+++ b/source/pt/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-09 23:07+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">Ajuda do %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/sbasic/shared/03.po b/source/pt/helpcontent2/source/text/sbasic/shared/03.po
index 8da20c4faec..04503358b45 100644
--- a/source/pt/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/pt/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-09 23:19+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1557443988.000000\n"
#: lib_depot.xhp
@@ -347,6 +347,14 @@ msgstr "Funções e sub-rotinas para controlo de módulos."
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/pt/helpcontent2/source/text/scalc/01.po b/source/pt/helpcontent2/source/text/scalc/01.po
index 51da82d23c0..9db6ecbf236 100644
--- a/source/pt/helpcontent2/source/text/scalc/01.po
+++ b/source/pt/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-04-15 22:26+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Localize o ficheiro que contém os dados que pretende inserir.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,8 +40981,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Digite a URL ou o nome do ficheiro que contém os dados que deseja inserir e, em seguida, prima Enter</ahelp>. Só então o URL será solicitado da rede ou do sistema de ficheiros."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Selecione a tabela ou intervalo de dados que pretende inserir.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Especifica o intervalo de células que pretende consolidar com os intervalos de célula na caixa <emph>Intervalos de consolidação</emph>. Selecione um intervalo de células numa folha e, em seguida, clique em <emph>Adicionar</emph>. Também pode selecionar o nome da célula na lista <emph>Intervalo de dados de origem</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/schart/00.po b/source/pt/helpcontent2/source/text/schart/00.po
index aaa6459d695..6f8632efdf7 100644
--- a/source/pt/helpcontent2/source/text/schart/00.po
+++ b/source/pt/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-01-22 13:07+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1548162422.000000\n"
#: 00000004.xhp
@@ -485,13 +485,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"smlp\">No diálogo Tipo de gráfico de um gráfico de linhas ou gráfico XY que mostre linhas, escolha Suave na caixa Tipo de linhas e clique no botão Propriedades.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
#: 00000004.xhp
msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
-msgstr "<variable id=\"stlp\">No diálogo de tipo de gráfico de um gráfico de linhas ou gráfico XY que mostre linhas, escolha Escada na caixa Tipo de linhas e clique no botão Propriedades.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
+msgstr ""
diff --git a/source/pt/helpcontent2/source/text/sdraw.po b/source/pt/helpcontent2/source/text/sdraw.po
index dedcc184ad3..83c1b1aa641 100644
--- a/source/pt/helpcontent2/source/text/sdraw.po
+++ b/source/pt/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2019-05-09 23:03+0000\n"
+"PO-Revision-Date: 2019-05-21 00:16+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557442986.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558397809.000000\n"
#: main0000.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Inserir"
#: main_insert.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"hd_id3148797\n"
"help.text"
msgid "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Insert</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main_insert.xhp\" name=\"Insert\">Inserir</link>"
#: main_insert.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "This menu allows you to insert elements, such as graphics and guides, into Draw documents."
-msgstr ""
+msgstr "Este menu permite inserir elementos, tais como imagens e guias nos documentos do Draw."
#: main_insert.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04020000.xhp\" name=\"Layer\">Camada</link>"
#: main_insert.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"hd_id3147397\n"
"help.text"
msgid "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Insert Snap Point/Line</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04030000.xhp\" name=\"Insert Snap Point/Line\">Inserir ponto/linha de alinhamento</link>"
#: main_insert.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"hd_id0915200910361385\n"
"help.text"
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comentário</link>"
#: main_insert.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Carácter especial</link>"
#: main_insert.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"hd_id3150749\n"
"help.text"
msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hiperligação</link>"
#: main_insert.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"hd_id3156385\n"
"help.text"
msgid "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Table</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04080100.xhp\" name=\"Table\">Tabela</link>"
#: main_insert.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"hd_id3147003\n"
"help.text"
msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link>"
-msgstr ""
+msgstr "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Gráfico</link>"
#: main_insert.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id0302200904020595\n"
"help.text"
msgid "Inserts a chart."
-msgstr ""
+msgstr "Insere um gráfico."
#: main_insert.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"hd_id3155111\n"
"help.text"
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Moldura flutuante</link>"
#: main_insert.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"hd_id3157867\n"
"help.text"
msgid "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">File</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/04110000.xhp\" name=\"File\">Ficheiro</link>"
#: main_page.xhp
msgctxt ""
@@ -942,7 +942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Página"
#: main_page.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"hd_id41556822227733\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Page</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Página</link>"
#: main_page.xhp
msgctxt ""
@@ -958,7 +958,7 @@ msgctxt ""
"par_id771556822318420\n"
"help.text"
msgid "This menu provides page management and navigation commands."
-msgstr ""
+msgstr "Este menu contém os comandos para gerir e navegar nas páginas."
#: main_page.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"hd_id131556822326832\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">Nova página</link>"
#: main_page.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"hd_id3155091\n"
"help.text"
msgid "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/page_properties.xhp\" name=\"Properties\">Propriedades</link>"
#: main_tools.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/sdraw/00.po b/source/pt/helpcontent2/source/text/sdraw/00.po
index 0c68fe8096a..7d4881196d8 100644
--- a/source/pt/helpcontent2/source/text/sdraw/00.po
+++ b/source/pt/helpcontent2/source/text/sdraw/00.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: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-10 07:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-21 00:24+0000\n"
+"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494399940.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558398250.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Menu"
-msgstr ""
+msgstr "Menu Página"
#: page_menu.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id341556823034391\n"
"help.text"
msgid "<variable id=\"frtite\">Choose <emph>Page - Properties</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"frtite\">Escolha <emph>Página - Propriedades</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id561556823042778\n"
"help.text"
msgid "<variable id=\"frtites\">Choose <emph>Page - Properties</emph> and then click the <emph>Page</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtites\">Escolha <emph>Página - Propiedades</emph> e clique no separador <emph>Página</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id321556823043909\n"
"help.text"
msgid "<variable id=\"frtiteh\">Choose <emph>Page - Properties</emph> and then click the <emph>Background</emph> tab </variable>"
-msgstr ""
+msgstr "<variable id=\"frtiteh\">Escolha <emph>Página - Propriedades</emph> e clique no separador <emph>Fundo</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id941556823044342\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Page - Master Page</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Escolha <emph>Página - Modelo global de páginas</emph></variable>"
#: page_menu.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id191556823044529\n"
"help.text"
msgid "Choose <emph>Page - New Page</emph>"
-msgstr ""
+msgstr "Escolha <emph>Página - Nova página</emph>"
#: page_menu.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id1001556823044677\n"
"help.text"
msgid "On the <emph>Insert</emph> bar, click"
-msgstr ""
+msgstr "Na barra <emph>Inserir</emph>, clique em"
#: page_menu.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id351556823072396\n"
"help.text"
msgid "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id381556823072396\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id381556823072396\">Ícone</alt></image>"
#: page_menu.xhp
msgctxt ""
@@ -102,4 +102,4 @@ msgctxt ""
"par_id831556823072396\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Nova página"
diff --git a/source/pt/helpcontent2/source/text/sdraw/01.po b/source/pt/helpcontent2/source/text/sdraw/01.po
index f47725907cd..a6162a4a745 100644
--- a/source/pt/helpcontent2/source/text/sdraw/01.po
+++ b/source/pt/helpcontent2/source/text/sdraw/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:46+0200\n"
-"PO-Revision-Date: 2017-05-10 07:05+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2019-05-21 00:23+0000\n"
+"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1494399940.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558398234.000000\n"
#: new_page.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Page"
-msgstr ""
+msgstr "Nova página"
#: new_page.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3150202\n"
"help.text"
msgid "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">New Page</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/new_page.xhp\" name=\"New Page\">Nova página</link>"
#: new_page.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id3152988\n"
"help.text"
msgid "<variable id=\"seitetext\">Inserts a blank page after the selected page.</variable>"
-msgstr ""
+msgstr "<variable id=\"seitetext\">Insere uma página vazia após a página selecionada.</variable>"
#: page_properties.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Página"
#: page_properties.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"hd_id231556821873595\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Página"
#: page_properties.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id571556821811542\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Sets page orientation, page margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:PageSetup\" visibility=\"visible\">Define a orientação, margens, fundo e outras opções para o esquema da página.</ahelp></variable>"
#: page_properties.xhp
msgctxt ""
@@ -70,4 +70,4 @@ msgctxt ""
"par_id691556822054550\n"
"help.text"
msgid "To change the background of all of the pages in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Para alterar o fundo de todas as páginas do ficheiro ativo, selecione-o, clique em <emph>Aceitar</emph> e, de seguida, clique em <emph>Sim</emph> na caixa de diálogo <emph>Configuração de página</emph>."
diff --git a/source/pt/helpcontent2/source/text/shared/00.po b/source/pt/helpcontent2/source/text/shared/00.po
index facc6f33b9a..113d313b358 100644
--- a/source/pt/helpcontent2/source/text/shared/00.po
+++ b/source/pt/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-05-09 23:23+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1557444191.000000\n"
#: 00000001.xhp
@@ -7563,14 +7563,6 @@ msgstr "<variable id=\"advanced\">Escolha <switchinline select=\"sys\"><caseinli
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr "<variable id=\"personalization\">Escolha <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferências</emph></caseinline><defaultinline><emph>Ferramentas - Opções</emph></defaultinline></switchinline><emph> - $[officename] - Personalização</emph>.</variable>"
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/pt/helpcontent2/source/text/shared/01.po b/source/pt/helpcontent2/source/text/shared/01.po
index 5854be2904a..009e03cd3a5 100644
--- a/source/pt/helpcontent2/source/text/shared/01.po
+++ b/source/pt/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-15 22:28+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1555367292.000000\n"
#: 01010000.xhp
@@ -6251,6 +6251,30 @@ msgstr "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\"
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/pt/helpcontent2/source/text/shared/02.po b/source/pt/helpcontent2/source/text/shared/02.po
index 578eb543fea..22d7f59ed2d 100644
--- a/source/pt/helpcontent2/source/text/shared/02.po
+++ b/source/pt/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-12-20 23:07+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,8 +3837,8 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
-msgstr "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Especifica se uma seleção de texto num controlo se mantém selecionada quando o foco não estiver no controlo.</ahelp> Se definir <emph>Ocultar seleção</emph> como \"Não\", o texto mantém-se selecionado quando o foco deixar de estar no controlo que contém o texto."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgstr ""
#: 01170101.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/shared/guide.po b/source/pt/helpcontent2/source/text/shared/guide.po
index 4183d2c3f09..3fa87f17674 100644
--- a/source/pt/helpcontent2/source/text/shared/guide.po
+++ b/source/pt/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-05-09 23:09+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/pt/helpcontent2/source/text/shared/optionen.po b/source/pt/helpcontent2/source/text/shared/optionen.po
index f6849451658..7b3e21ea466 100644
--- a/source/pt/helpcontent2/source/text/shared/optionen.po
+++ b/source/pt/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-09 23:10+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1557443407.000000\n"
#: 01000000.xhp
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr "para mais informações sobre o OpenCL, aceda ao <link href=\"https://www.khronos.org/opencl/\">site do projeto OpenCL</link>."
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr "Personalização"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr "<bookmark_value>temas;opções</bookmark_value><bookmark_value>opções;temas</bookmark_value><bookmark_value>personalização;temas do Mozilla Firefox</bookmark_value><bookmark_value>personas;personalização</bookmark_value><bookmark_value>personalização;personas</bookmark_value><bookmark_value>temas do Mozilla Firefox;personalização</bookmark_value>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalização</link>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr "Pode personalizar o %PRODUCTNAME com os temas que estejam disponíveis para o Mozilla Firefox. A barra de menu e as barras de ferramentas irão mostrar o tema escolhido no seu fundo."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr "Os temas para o Mozilla Firefox estão disponíveis no endereço <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr "Qualquer tema que for compatível com o Firefox, funciona também no %PRODUCTNAME. Contudo, nem todos os temas produzirão um bom aspeto visual — se o tema tiver muitos detalhes, pode interferir com a leitura dos ícones e do menu."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr "Temas Firefox:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr "Estão disponíveis as seguintes opções:"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr "Não utilizar temas"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">O fundo das barras de ferramentas corresponderá às definições do seu ambiente de trabalho.</ahelp> Esta é a definição padrão do %PRODUCTNAME."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr "Tema pré-instalado"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Escolha esta opção para utilizar um dos temas pré-instalados.</ahelp> Além das opções padrão, o administrador de sistemas pode ter adicionado um tema personalizado durante a instalação do %PRODUCTNAME. Esta opção mostra este tema."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr "Tema próprio"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Escolha esta opção para abrir a caixa de diálogo “Selecionar um tema Firefox” para obter mais temas.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr "Selecionar um tema Firefox"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr "Esta caixa de diálogo permite-lhe instalar um tema Firefox ou disponibiliza vários exemplos a partir do site da Mozilla."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr "Procurar"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr "Explorar temas por categoria"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Mostra uma escolha aleatória de nove temas, tendo por base as categorias definidas nos botões.</ahelp>"
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr "Clique em um dos cinco botões para mostrar na área abaixo uma escolha aleatória de nove temas relacionados com a categoria."
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr "Para selecionar um dos temas, clique na sua imagem e prima <item type=\"menuitem\">Aceitar</item>."
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/pt/helpcontent2/source/text/simpress.po b/source/pt/helpcontent2/source/text/simpress.po
index bd9597acd2a..d754e9d51e3 100644
--- a/source/pt/helpcontent2/source/text/simpress.po
+++ b/source/pt/helpcontent2/source/text/simpress.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-01-17 13:14+0000\n"
+"PO-Revision-Date: 2019-05-21 00:19+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1547730895.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558397975.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Editar"
#: main_edit.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_edit.xhp\" name=\"Edit\">Editar</link>"
#: main_edit.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Este menu contém os comandos para editar o conteúdo do documento atual.</ahelp>"
#: main_edit.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"hd_id3154649\n"
"help.text"
msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Pontos</link>"
#: main_edit.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"par_id3154766\n"
"help.text"
msgid "Switches the <emph>Edit Points</emph> mode on and off."
-msgstr ""
+msgstr "Ativa e desativa o modo <emph>Editar pontos</emph>."
#: main_edit.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"hd_id3145116\n"
"help.text"
msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Glue Points</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue Points\">Pontos de colagem</link>"
#: main_edit.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"par_id3147403\n"
"help.text"
msgid "Switches the <emph>Edit Glue Points</emph> mode on and off."
-msgstr ""
+msgstr "Ativa e desativa o modo <emph>Editar pontos de colagem</emph>."
#: main_edit.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"hd_id3150396\n"
"help.text"
msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Campos</link>"
#: main_edit.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"hd_id3149355\n"
"help.text"
msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Ligações</link>"
#: main_edit.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"hd_id0914201502131542\n"
"help.text"
msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Objeto</link>"
#: main_format.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format"
-msgstr ""
+msgstr "Formatar"
#: main_format.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"hd_id3152596\n"
"help.text"
msgid "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Format</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_format.xhp\" name=\"Format\">Formatar</link>"
#: main_format.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "<ahelp hid=\".\">Contains commands for formatting the layout and the contents of your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Contém os comandos para formatar o esquema e o conteúdo do documento.</ahelp>"
#: main_format.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"hd_id3147401\n"
"help.text"
msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Carácter</link>"
#: main_format.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"hd_id3149941\n"
"help.text"
msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Parágrafo</link>"
#: main_format.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"hd_id3147299\n"
"help.text"
msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Marcas e numeração</link>"
#: main_format.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"hd_id3149499\n"
"help.text"
msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Posição e tamanho</link>"
#: main_format.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"hd_id3154510\n"
"help.text"
msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Linha</link>"
#: main_format.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"hd_id3149021\n"
"help.text"
msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Área</link>"
#: main_format.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"hd_id3155961\n"
"help.text"
msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Texto</link>"
#: main_format.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"hd_id3156286\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Slide Design</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05120000.xhp\" name=\"Page Layout...\">Design de diapositivo</link>"
#: main_format.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"hd_id3163827\n"
"help.text"
msgid "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Slide Layout</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05130000.xhp\" name=\"Modify Layout\">Esquema de diapositivo</link>"
#: main_slide.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Diapositivo"
#: main_slide.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"hd_id0908201507475698\n"
"help.text"
msgid "<link href=\"text/simpress/main_slide.xhp\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_slide.xhp\">Diapositivo</link>"
#: main_slide.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_id0908201507482661\n"
"help.text"
msgid "This menu provides slide management and navigation commands."
-msgstr ""
+msgstr "Este menu contém os comandos para gerir e navegar nos diapositivos."
#: main_slide.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">Novo diapositivo</link>"
#: main_slide.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"hd_id551556824896520\n"
"help.text"
msgid "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Properties</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/slide_properties.xhp\" name=\"Properties\">Propriedades</link>"
#: main_tools.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Tools"
-msgstr ""
+msgstr "Ferramentas"
#: main_tools.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"hd_id3154017\n"
"help.text"
msgid "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Tools</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/main_tools.xhp\" name=\"Tools\">Ferramentas</link>"
#: main_tools.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "<ahelp hid=\".\">Contains spelling tools, a gallery of object art that you can add to your document, as well as tools for configuring menus, and setting program preferences.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Contém as ferramentas de verificação ortográfica, uma galeria de objetos que podem ser adicionados ao documento, bem como ferramentas para configurar menus e definir as preferências do programa.</ahelp>"
#: main_tools.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"hd_id3145590\n"
"help.text"
msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">Mapa de imagem</link>"
#: main_tools.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id3153248\n"
"help.text"
msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">Opções de correção automática</link>"
#: main_tools.xhp
msgctxt ""
@@ -1606,4 +1606,4 @@ msgctxt ""
"hd_id3149130\n"
"help.text"
msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Personalizar</link>"
diff --git a/source/pt/helpcontent2/source/text/simpress/00.po b/source/pt/helpcontent2/source/text/simpress/00.po
index 538d5817339..14289c42888 100644
--- a/source/pt/helpcontent2/source/text/simpress/00.po
+++ b/source/pt/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-09 23:10+0000\n"
+"PO-Revision-Date: 2019-05-21 00:20+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1557443418.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558398007.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_id3134264\n"
"help.text"
msgid "Choose <emph>Slide - New Slide</emph>"
-msgstr ""
+msgstr "Escolha <emph>Diapositivo - Novo diapositivo</emph>"
#: slide_menu.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3685251\n"
"help.text"
msgid "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3183073\" src=\"cmd/sc_insertpage.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3183073\">Ícone</alt></image>"
#: slide_menu.xhp
msgctxt ""
@@ -1310,4 +1310,4 @@ msgctxt ""
"par_id7354512\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Novo diapositivo"
diff --git a/source/pt/helpcontent2/source/text/simpress/01.po b/source/pt/helpcontent2/source/text/simpress/01.po
index 95433d5bb57..258eddb3540 100644
--- a/source/pt/helpcontent2/source/text/simpress/01.po
+++ b/source/pt/helpcontent2/source/text/simpress/01.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-09 23:10+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-21 00:22+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\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: 1557443456.000000\n"
+"X-POOTLE-MTIME: 1558398139.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"hd_id3154018\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Diapositivo</link>"
#: 03070000.xhp
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "New Slide"
-msgstr ""
+msgstr "Novo diapositivo"
#: new_slide.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"bm_id3159155\n"
"help.text"
msgid "<bookmark_value>inserting; slides</bookmark_value><bookmark_value>slides; inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>inserir; diapositivos</bookmark_value><bookmark_value>diapositivos; inserir</bookmark_value>"
#: new_slide.xhp
msgctxt ""
@@ -8174,14 +8174,14 @@ msgctxt ""
"hd_id3159155\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">New Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"New Slide\">Novo diapositivo</link>"
#: new_slide.xhp
msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
@@ -8326,7 +8326,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Diapositivo"
#: slide_properties.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"hd_id3149379\n"
"help.text"
msgid "Slide"
-msgstr ""
+msgstr "Diapositivo"
#: slide_properties.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Sets slide orientation, slide margins, background and other layout options.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"seiteeintext\"><ahelp hid=\".uno:SlideSetup\" visibility=\"visible\">Define a orientação, margens, fundo e outras opções de esquema.</ahelp></variable>"
#: slide_properties.xhp
msgctxt ""
@@ -8350,7 +8350,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "To change the background of all of the slides in the active file, select a background, click <emph>OK</emph> and click <emph>Yes</emph> in the <emph>Page Setup</emph> dialog."
-msgstr ""
+msgstr "Para alterar o fundo de todos os diapositivos do ficheiro ativo, selecione-o um fundo, clique em <emph>Aceitar</emph> e, de seguida, clique em <emph>Sim</emph> na caixa de diálogo <emph>Configuração de página</emph>."
#: slidesorter.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/simpress/02.po b/source/pt/helpcontent2/source/text/simpress/02.po
index 190623ae6db..7b81a287fce 100644
--- a/source/pt/helpcontent2/source/text/simpress/02.po
+++ b/source/pt/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2018-06-06 22:58+0000\n"
+"PO-Revision-Date: 2019-05-21 00:22+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1528325900.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558398141.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"hd_id3149028\n"
"help.text"
msgid "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Slide</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/new_slide.xhp\" name=\"Slide\">Diapositivo</link>"
#: 10110000.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/swriter/01.po b/source/pt/helpcontent2/source/text/swriter/01.po
index 1f646e2c45b..7980432200b 100644
--- a/source/pt/helpcontent2/source/text/swriter/01.po
+++ b/source/pt/helpcontent2/source/text/swriter/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-15 22:31+0000\n"
+"PO-Revision-Date: 2019-05-21 00:24+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555367493.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1558398286.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -15534,7 +15534,7 @@ msgctxt ""
"par_idN10A8E\n"
"help.text"
msgid "Keep inside text boundaries"
-msgstr ""
+msgstr "Manter dentro dos limites do texto"
#: 05060100.xhp
msgctxt ""
@@ -15550,7 +15550,7 @@ msgctxt ""
"par_idN10AA6\n"
"help.text"
msgid "By default, the <emph>Keep inside text boundaries</emph> option is selected when you open a document that was created in a version of Writer older than OpenOffice.org 2.0. However, this option is not selected when you create a document or when you open a document in Microsoft Word format (*.doc)."
-msgstr ""
+msgstr "Por regra, a opção <emph>Manter dentro dos limites do texto</emph> é selecionada ao abrir um documento que tenha sido criado numa versão do Writer anterior ao OpenOffice.org 2.0. Contudo, esta opção não é selecionada se criar um novo documento ou abrir um ficheiro no formato Microsoft Word (*.doc)."
#: 05060100.xhp
msgctxt ""
diff --git a/source/pt/helpcontent2/source/text/swriter/guide.po b/source/pt/helpcontent2/source/text/swriter/guide.po
index f0ad3605316..75877a44b90 100644
--- a/source/pt/helpcontent2/source/text/swriter/guide.po
+++ b/source/pt/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-09 23:11+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1557443516.000000\n"
#: anchor_object.xhp
@@ -229,16 +229,16 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "Na barra <emph>Padrão</emph>, clique no ícone <emph>Navegador</emph><image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Ícone</alt></image> para abrir o <emph>Navegador</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr "No <emph>Navegador</emph>, clique no ícone <emph>Vista de conteúdo</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Ícone</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -261,8 +261,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr "Clique no título da lista do <emph>Navegador</emph> e, em seguida, clique em <emph>Promover capítulo</emph><image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Ícone</alt></image> ou em <emph>Despromover um capítulo</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Ícone</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr "Clique no ícone <emph>Promover nível</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Ícone</alt></image> ou no ícone <emph>Despromover nível</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Ícone</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
@@ -309,8 +309,8 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr "Clique no ícone <emph>Níveis de título mostrados</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Ícone</alt></image> e selecione um número da lista."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
+msgstr ""
#: auto_numbering.xhp
msgctxt ""
diff --git a/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po b/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po
index eb8f33e9243..301e424291e 100644
--- a/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/pt/officecfg/registry/data/org/openoffice/Office/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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-09 23:06+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-16 22:01+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\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: 1557443160.000000\n"
+"X-POOTLE-MTIME: 1558044083.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -18871,7 +18871,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Table Styles"
-msgstr ""
+msgstr "Estilos de tabela"
#: GenericCommands.xcu
msgctxt ""
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Mais campos"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Barra com separadores"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
@@ -28735,7 +28762,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select Sentence"
-msgstr ""
+msgstr "Selecionar frase"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/pt/sc/messages.po b/source/pt/sc/messages.po
index 71707607377..9cc8b491b81 100644
--- a/source/pt/sc/messages.po
+++ b/source/pt/sc/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-04 16:49+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 21:06+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\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: 1556988597.000000\n"
+"X-POOTLE-MTIME: 1559250369.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -15217,6 +15217,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(acesso exclusivo)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr "Não existem intervalos com nome no documento selecionado"
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15770,13 +15775,13 @@ msgstr "Gerir formatação condicional"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
-msgstr ""
+msgid "Range"
+msgstr "Intervalo"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
-msgstr ""
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
+msgstr "Primeira condição"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
msgctxt "condformatmanager|add"
@@ -16993,81 +16998,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formulário de dados"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Fec_har"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Novo registo"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Novo"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "E_liminar"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restaurar"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Registo _anterior"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Pró_ximo registo"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Fec_har"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Fluxo de dados em direto"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Introduza o URL do documento no sistema de ficheiros local ou na Internet."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Escolher..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Intervalos de base de dados:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Provedor de dados:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Texto de pesquisa:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Fluxo de origem"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18783,32 +18748,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Intervalo de saída:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr "Restringir intervalo ao conteúdo efetivo"
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Dados"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Colunas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Linhas"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Agrupar por"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intervalo:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parâmetros"
@@ -18948,167 +18918,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Aj_uda"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Ficheiro"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Especifique os contornos das células selecionadas."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Aumentar avanço"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Diminuir avanço"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Base"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Base"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "Esq_uema"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr "Alinhamento de objeto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Esq~uema"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "Estatística_s"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "_Dados"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "~Dados"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Rever"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Rever"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima~gem"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~gem"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Desenho"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Desenho"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "_Objeto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimédia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Im_primir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Im~primir"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulário"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulário"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
@@ -21589,17 +21561,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Resultados da procura"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr "Mo_strar este diálogo"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr "Ative novamente o diálogo em Ferramentas > Opções > > Calc >Geral"
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Folha"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Célula"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Conteúdo"
@@ -23469,107 +23451,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Símb_olos de tópicos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Janela"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Linhas da _grelha:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Cor:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Mostrar nas células com cor"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Quebras de _página"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Guias de ajuda ao mo_ver"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Auxiliares visuais"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_jetos/Imagens:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "G_ráficos:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Objetos de _desenho:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Mostrar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Ocultar"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Objetos"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_incronizar folhas"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Ampliação"
diff --git a/source/pt/scp2/source/ooo.po b/source/pt/scp2/source/ooo.po
index 939c68e3643..882ce533dbe 100644
--- a/source/pt/scp2/source/ooo.po
+++ b/source/pt/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
-"PO-Revision-Date: 2019-04-11 22:24+0000\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-30 21:06+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\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: 1555021485.000000\n"
+"X-POOTLE-MTIME: 1559250393.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -35,6 +35,14 @@ msgstr "Abrir documento"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr "%PRODUCTNAME (Modo de segurança)"
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/pt/scp2/source/winexplorerext.po b/source/pt/scp2/source/winexplorerext.po
index dc005e208ae..d4f5bc54cbb 100644
--- a/source/pt/scp2/source/winexplorerext.po
+++ b/source/pt/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-22 13:06+0200\n"
-"Last-Translator: Sérgio <smarquespt@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:26+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369355192.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permite ao explorador do Windows mostrar as informações sobre os documentos do %PRODUCTNAME bem como as suas miniaturas."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/pt/sd/messages.po b/source/pt/sd/messages.po
index be5e05bda2d..036f6063f75 100644
--- a/source/pt/sd/messages.po
+++ b/source/pt/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-09 23:06+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@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: 1557443184.000000\n"
#: sd/inc/DocumentRenderer.hrc:27
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Clique para abrir a hiperligação:"
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nome do design HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Ficheiro"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Aj_uda"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Ficheiro"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Base"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Base"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "_Página"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "~Página"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Rever"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Rever"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "T_exto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "T~exto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converter"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_gem"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~gem"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Desenho"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Desenho"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimédia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulário"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulário"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Mostrar formas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Ficheiro"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Aj_uda"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Ficheiro"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Base"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Base"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Ca_mpo"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "Diaposi~tivo"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "~Diapositivo"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Apre_sentação"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Apre~sentação"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Rever"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Rever"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Converter"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Ima_gem"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~gem"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Desenho"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Desenho"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimédia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulário"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulário"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
diff --git a/source/pt/sfx2/messages.po b/source/pt/sfx2/messages.po
index c7457ec800d..cf173daaa0b 100644
--- a/source/pt/sfx2/messages.po
+++ b/source/pt/sfx2/messages.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: 2019-04-08 14:23+0200\n"
-"PO-Revision-Date: 2019-04-23 23:45+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 21:07+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\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: 1556063152.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1559250442.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " A: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Remover propriedade"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"O valor introduzido não coincide com o tipo especificado.\n"
"O valor será guardado como texto."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "O estilo já existe. Substituir?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Repor"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Este nome já está a ser utilizado."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Este estilo não existe."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Este estilo não pode ser utilizado como estilo base,\n"
"porque pode resultar numa referência recursiva."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"O nome já existe como estilo padrão.\n"
"Escolha outro nome."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Se eliminar estes estilos, o texto será revertido para o estilo parental.\n"
"Deseja mesmo eliminar estes estilos?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Estilos utilizados: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navegador"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Confirmação da palavra-passe incorreta"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Enviar"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Tipo de letra"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Mostrar pré-visualização"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Ver comentários da versão"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(nome não definido)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Lista de estilos"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Hierárquico"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Modo de preenchimento de formato"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Novo estilo a partir da seleção"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Ações de estilos"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Atualizar estilo"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Deseja mesmo cancelar a gravação? Perderá todos os procedimentos gravados."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Cancelar gravação"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "A iniciar modelos para a primeira utilização."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Nenhuma impressora encontrada.\n"
"Escolha uma impressora e tente novamente."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Não foi possível iniciar a impressora.\n"
"Verifique a configuração da impressora."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Impressora ocupada"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(apenas leitura)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Deseja aplicar as novas definições\n"
"ao documento ativo?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Deseja aplicar as novas definições\n"
"ao documento ativo?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Deseja aplicar as novas definições\n"
"ao documento ativo?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"O documento não pode ser fechado porque\n"
"está a decorrer uma tarefa de impressão."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Verifique as definições do %PRODUCTNAME ou do seu programa de e-mail."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Código do erro: $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Erro ao enviar a mensagem"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Não pode editar este documento, possivelmente por falta de privilégios de acesso. Deseja editar uma cópia do documento?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Também pode tentar ignorar o ficheiro de bloqueio e abrir o ficheiro para edição."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Abrir ~cópia"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Abrir"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (documento reparado)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Este documento não deu saída do servidor."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Ajude-nos a tornar o %PRODUCTNAME ainda melhor!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Participar"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr "Os seus donativos ajudam a nossa comunidade."
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr "Doar"
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr "Você está a executar o %PRODUCTNAME %PRODUCTVERSION pela primeira vez. Deseja saber as novidades?"
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr "Notas da versão"
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Este documento está aberto no modo de leitura."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Este PDF foi aberto no modo de leitura para permitir a sua assinatura."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "A etiqueta de classificação deste documento é %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Este documento deve ser classificado antes de colar os dados da área de transferência."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Este documento tem um nível de classificação inferior ao dos dados da área de transferência."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Nível"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Segurança nacional:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Controlo de exportação:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Dar saída"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editar documento"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Assinar documento"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Este documento contém uma assinatura inválida."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "A assinatura era válida, mas o documento foi modificado"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "A assinatura está correta, mas não foi possível validar o certificado."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "A assinatura está correta, mas apenas parte do documento está assinado."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Não foi possível validar o certificado e o documento foi parcialmente assinado."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Este documento está assinado digitalmente e a assinatura é válida."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Mostrar assinaturas"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Fechar painel"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Acoplar"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Desacoplar"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Mais opções"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Fechar barra lateral"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Definições da barra lateral"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalização"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restaurar padrões"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Fechar barra lateral"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Alizarina"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Colmeia"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Curva azul"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Planta"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Azul brilhante"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Vermelho sofisticado"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Foco"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Pássaros"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Impressão"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiração"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Luzes"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Verde exuberante"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópole"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Azul de meia noite"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natureza"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lápis"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Evolução"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Ocaso"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivo"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículo"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Padrão"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta empresarial moderna, letra sem serifa"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta empresarial moderna, letra com serifa"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cartão de visita com logótipo"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Remover"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Limpar tudo"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Tamanho da palavra-passe"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "A palavra-passe introduzida pode provocar problemas. Deve utilizar uma palavra-passe inferior a 52 bytes ou superior a 55 bytes."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Comentário da versão:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nome"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tipo"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valor"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Sim"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Não"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Adicionar _propriedade"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nome"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tipo"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valor"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Localização:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tipo:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Alterar _palavra-passe"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Modelo:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Propriedades de “%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Geral "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descrição"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Propriedades pessoais"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Propriedades CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Segurança"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Este produto foi criado pela %OOOVENDOR e teve como base de desenvolvimento o OpenOffice.org, cujos detentores dos seus direitos entre 2000 e 2011 são a Oracle e/ou os seus afiliados. A %OOOVENDOR agradece a todos os membros da comunidade. Aceda a http://www.libreoffice.org/ para saber mais detalhes."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/pt/shell/messages.po b/source/pt/shell/messages.po
new file mode 100644
index 00000000000..bdd34cb7453
--- /dev/null
+++ b/source/pt/shell/messages.po
@@ -0,0 +1,52 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: 2019-05-30 21:08+0000\n"
+"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: pt\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-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1559250532.000000\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr "Abrir documento"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+"Está a abrir o documento\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Deseja abrir o documento para ver ou para editar?"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr "Ver"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr "Editar"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr "Cancelar"
diff --git a/source/pt/starmath/messages.po b/source/pt/starmath/messages.po
index a86e18cfa32..38d9bee12e3 100644
--- a/source/pt/starmath/messages.po
+++ b/source/pt/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Exemplos"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Padrão"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Itálico"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Negrito"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "preto"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "azul"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "vermelho"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "ciano"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magenta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "cinzento"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lima"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "marrom"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "azul marinho"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "verde azeitona"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "púrpura"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "prata"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "verde azulado"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "amarelo"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ocultar"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "tamanho"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "tipo de letra"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "esquerda"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centro"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "direita"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comandos"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Fórmula"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "A guardar documento..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Fórmula do %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERRO: "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Carácter inesperado"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Parâmetro inesperado"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Precisa de \"{\""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Precisa de \"}\""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Precisa de \"(\""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Precisa de \")\""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Disparidade entre os símbolos esquerdo e direito"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Esperado tipo de letra 'fixed', 'sans' ou 'serif'"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "'size' seguido por um parâmetro inesperado"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Duplo alinhamento não permitido"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Subscrito/sobrescrito duplo não permitido"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Precisa de \"#\""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Precisa de uma cor"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Precisa de um \"RIGHT\""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Conteúdo"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Título"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Texto da ~fórmula"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "C~ontornos"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Tamanho"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Tamanho o~riginal"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Ajustar à ~página"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "E~scala"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elementos"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/pt/svtools/messages.po b/source/pt/svtools/messages.po
index 6f0be56ac19..0b3389148c1 100644
--- a/source/pt/svtools/messages.po
+++ b/source/pt/svtools/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-04-12 21:46+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-16 22:01+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\n"
@@ -14,1520 +14,1522 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1555105589.000000\n"
+"X-POOTLE-MTIME: 1558044114.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Desfazer: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Refa~zer: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repetir: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Texto não formatado"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Texto não formatado (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Imagem bitmap (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Meta-ficheiro Graphics Device Interface (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Documento de texto (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Documento de texto (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Desenho do %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Animação/bitmap do StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informação do estado da ligação interna Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Ligação do %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Marcador do Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Formato do servidor Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Formato do objeto Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Objeto de applet"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Objeto de suplemento"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Objeto do StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Objeto do StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Objeto do StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Objeto do StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Objeto do StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Objeto do StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Objeto do StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Objeto do StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Objeto do StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Objeto do StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Objeto do StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Objeto do StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Objeto do StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Objeto do StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Objeto do StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Objeto do StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Objeto do StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Objeto do StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Objeto do StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Objeto do StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Objeto do StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Objeto do StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Objeto do StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Objeto do StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "HyperText Markup Language (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Stripped HyperText Markup Language (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Formato de intercâmbio binário do Microsoft Excel 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Formato de intercâmbio binário do Microsoft Excel 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Dynamic Data Exchange (ligação DDE)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Data Interchange Format (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Objeto do Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Objeto do StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Objeto de documento do Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Informações sobre o documento do Notes"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Documento Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Objeto do StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Objeto gráfico"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Objeto do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Objeto do OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Objeto do OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Objeto do OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Objeto do OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Objeto do OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Objeto do OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Objeto do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Meta-ficheiro Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Objeto de origem de dados"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabela de origem de dados"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Consulta SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Diálogo do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Ligação"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Formato HTML sem comentários"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Não foi possível inserir o objeto %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Não foi possível inserir o objeto do ficheiro %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Outros objetos"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Origem desconhecida"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nome"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Tamanho"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Data de modificação"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tipo"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bytes"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Linha: %1, Coluna: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tipo: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Pasta"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Ficheiro"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Campo vazio"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Conjunto de caracteres"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dicionário"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Traço"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Lista telefónica"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonético (alfanuméricos no início)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonético (alfanuméricos no fim)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumérico"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dicionário"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Traço"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonético (alfanumérico no início, agrupado por sílabas)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonético (alfanumérico no início, agrupado por consoantes)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonético (alfanumérico no fim, agrupado por sílabas)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonético (alfanumérico no fim, agrupado por consoantes)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Hoje"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Nenhum"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Claro"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Claro itálico"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Itálico"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Negrito"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Negrito itálico"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Preto"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Preto itálico"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Livro"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Negrito oblíquo"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensado"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Negrito condensado"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Negrito condensado itálico"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Negrito condensado oblíquo"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Itálico condensado"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Oblíquo condensado"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Extrafino"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Itálico extrafino"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblíquo"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semi-negrito"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semi-negrito itálico"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Será utilizado o mesmo tipo de letra na impressora e no ecrã."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "O tipo de letra da impressora. A imagem no ecrã pode ser diferente."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Este estilo de tipo de letra será simulado ou será utilizado o estilo mais próximo."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Este tipo de letra não está instalado. Será utilizado o tipo de letra mais próximo."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Procurar..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mover para o início"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mover para a esquerda"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mover para a direita"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mover para o fim"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Adicionar"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Régua horizontal"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Régua vertical"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Limite de 1 bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Composição de 1 bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Cinzentos de 4 bits"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "Cor de 4 bits"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Cinzentos de 8 bits"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "Cor de 8 bits"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "True color de 24 bits"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "A imagem precisa, aproximadamente, de %1 KB de memória."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "A imagem precisa, aproximadamente, de %1 KB de memória e o tamanho do ficheiro é de %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "O tamanho do ficheiro é %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "servidor"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "porta"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Outros CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Pronto"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Pausa"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Eliminação pendente"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupado"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "A iniciar"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Em espera"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "A aquecer"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "A processar"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "A imprimir"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Desligado"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Erro"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Servidor desconhecido"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Papel encravado"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Papel insuficiente"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentação manual"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Problemas com o papel"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "E/S ativa"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "A caixa de saída está cheia"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner insuficiente"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Sem toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Eliminar página"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Requer intervenção do utilizador"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memória insuficiente"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Tampa aberta"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Modo de economia de energia"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Impressora padrão"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documentos"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Ter~minar"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "A~vançar >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Anterior"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Etapas"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<nenhum>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Empresa"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departamento"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Nome"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Apelido"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Rua"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "País"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Código Postal"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Localidade"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Título"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Posição"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Formulário de endereço"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Iniciais"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Despedida"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefone: pessoal"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefone: profissional"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Fax"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "E-mail"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Nota"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Utilizador 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Utilizador 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Utilizador 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Utilizador 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Estado"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefone: Escritório"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Telemóvel"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefone: Outro"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendário"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Convidar"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$service$ de $user$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "O %PRODUCTNAME requer um Java Runtime Environment (JRE) para executar esta tarefa. Instale um JRE e reinicie o %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "O %PRODUCTNAME requer um Java Runtime Environment (JRE) %BITNESS-bit para executar esta tarefa. Instale um JRE e reinicie o %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "Em sistemas macOS 10.10 ou superior, o %PRODUCTNAME necessita de Oracle Java Development Kit (JDK) para executar esta tarefa. Por favor instale-o e reinicie o %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "A configuração do %PRODUCTNAME foi alterada. Em %PRODUCTNAME - Preferências - %PRODUCTNAME - Avançado, escolha o Java Runtime Environment que pretende utilizar no %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "A configuração do %PRODUCTNAME foi alterada. Em Ferramentas - Opções - %PRODUCTNAME - Avançado, escolha o Java Runtime Environment que pretende utilizar no %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "O %PRODUCTNAME requer um Java Runtime Environment (JRE) para executar esta tarefa. O JRE escolhido está danificado. Por favor escolha outra versão ou instale-o novamente e, de seguida, escolha-o em %PRODUCTNAME - Preferências - %PRODUCTNAME - Avançado."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "O %PRODUCTNAME requer um Java Runtime Environment (JRE) para executar esta tarefa. O JRE escolhido está danificado. Por favor escolha outra versão ou instale novamente o JRE e, de seguida, escolha-o em Ferramentas - Opções - %PRODUCTNAME - Avançado."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Requer JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Selecione o JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE está danificado"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Código fonte"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Ficheiro de marcadores"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Imagens"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Ficheiro de configuração"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicação"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabela da base de dados"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Ficheiro de sistema"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Documento do Microsoft Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Ficheiro de ajuda"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Ficheiro de arquivo"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Ficheiro de registo"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Base de dados StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Modelo global de documentos do StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imagem StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Ficheiro de texto"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Ligação"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Modelo do StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Documento do Microsoft Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Modelo do Microsoft Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Ficheiro de comandos"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Ficheiro"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Pasta"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Documento de texto"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Folha de cálculo"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Apresentação"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Desenho"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Documento HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Modelo global de documentos"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Fórmula"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Base de dados"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Modelo de folha de cálculo do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Modelo de desenho do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Modelo de apresentação do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Modelo de documento de texto do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Unidade local"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disco"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Ligação de rede"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Documento do Microsoft PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Modelo do Microsoft PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Exibição do Microsoft PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Fórmula do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Gráfico do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Desenho do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Folha de cálculo do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Apresentação do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Documento de texto do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Modelo global de documentos do OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Documento do MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Base de dados OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Desenho OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Fórmula OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Modelo global de documentos OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Apresentação OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Folha de cálculo OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Documento de texto OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Modelo de folha de cálculo OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Modelo de desenho OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Modelo de apresentação OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Modelo de documento de texto OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensão do %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Verificador ortográfico Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Hifenização Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Dicionário de sinónimos Mythes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Lista de palavras ignoradas"
@@ -4127,7 +4129,7 @@ msgstr "Iloko"
#: svtools/inc/langtab.hrc:420
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Zambia)"
-msgstr ""
+msgstr "Inglês (Zâmbia)"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/pt/svx/messages.po b/source/pt/svx/messages.po
index 2b4674c1c14..dc2b9ec8663 100644
--- a/source/pt/svx/messages.po
+++ b/source/pt/svx/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-04 16:49+0000\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2019-05-30 21:09+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\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: 1556988580.000000\n"
+"X-POOTLE-MTIME: 1559250546.000000\n"
#: include/svx/strings.hrc:25
msgctxt "STR_ObjNameSingulNONE"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Da esquerda para a direita (vertical)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr "De baixo para cima, da esquerda para a direita (vertical)"
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -10512,7 +10517,7 @@ msgstr "Número da parte:"
#: svx/uiconfig/ui/classificationdialog.ui:412
msgctxt "classificationdialog|label-PartNumber"
msgid "Part text:"
-msgstr ""
+msgstr "Parte do texto:"
#: svx/uiconfig/ui/classificationdialog.ui:522
msgctxt "classificationdialog|intellectualPropertyPartAddButton"
@@ -11335,42 +11340,42 @@ msgstr "Fonte de luz 8"
#: svx/uiconfig/ui/docking3deffects.ui:1291
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 1 color"
-msgstr ""
+msgstr "Cor de luz 1"
#: svx/uiconfig/ui/docking3deffects.ui:1305
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 2 color"
-msgstr ""
+msgstr "Cor de luz 2"
#: svx/uiconfig/ui/docking3deffects.ui:1319
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 3 color"
-msgstr ""
+msgstr "Cor de luz 3"
#: svx/uiconfig/ui/docking3deffects.ui:1333
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 4 color"
-msgstr ""
+msgstr "Cor de luz 4"
#: svx/uiconfig/ui/docking3deffects.ui:1347
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 5 color"
-msgstr ""
+msgstr "Cor de luz 5"
#: svx/uiconfig/ui/docking3deffects.ui:1361
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 6 color"
-msgstr ""
+msgstr "Cor de luz 6"
#: svx/uiconfig/ui/docking3deffects.ui:1375
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 7 color"
-msgstr ""
+msgstr "Cor de luz 7"
#: svx/uiconfig/ui/docking3deffects.ui:1389
msgctxt "docking3deffects|lightcolor1|tooltip_text"
msgid "Light 8 color"
-msgstr ""
+msgstr "Cor de luz 8"
#: svx/uiconfig/ui/docking3deffects.ui:1411
msgctxt "docking3deffects|label19"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Especifique a percentagem de deslocação vertical, a partir do centro, para o estilo de sombreado do gradiente. 50% é o centro vertical."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor de contornos"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Área de trabalho"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Selecionar"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Retângulo"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Polígono"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar pontos"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mover pontos"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserir pontos"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Eliminar pontos"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Contorno automático"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Desfazer "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Refazer"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipeta"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Tolerância de cor"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Rodapé"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor de mapa de imagem"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplicar"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Abrir..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Guardar..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Fechar"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Selecionar"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Retângulo"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipse"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Polígono"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Polígono livre"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editar pontos"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mover pontos"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserir pontos"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Eliminar pontos"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Desfazer "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Refazer"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Ativo"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Propriedades..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Endereço:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Moldura:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Texto:"
@@ -13472,6 +13477,9 @@ msgid ""
"\n"
"You can make one or more of the following changes to your user profile to return %PRODUCTNAME to a working state."
msgstr ""
+"O %PRODUCTNAME está a ser executado no modo seguro, que desativa temporariamente as configurações e as extensões do utilizador.\n"
+"\n"
+"Pode fazer uma ou mais das seguintes alterações ao seu perfil de utilizador para restaurar o %PRODUCTNAME ao seu estado normal.."
#: svx/uiconfig/ui/safemodedialog.ui:110
msgctxt "safemodedialog|radio_restore"
diff --git a/source/pt/sw/messages.po b/source/pt/sw/messages.po
index b3bc1baba70..c5927d354e7 100644
--- a/source/pt/sw/messages.po
+++ b/source/pt/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-04 16:49+0000\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-30 21:09+0000\n"
"Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: pt\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: 1556988570.000000\n"
+"X-POOTLE-MTIME: 1559250586.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -3118,7 +3118,7 @@ msgid "Change object title of $1"
msgstr "Alterar título do objeto $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr "Alterar descrição do objeto $1"
@@ -7679,7 +7679,7 @@ msgstr "Carácter"
#: sw/uiconfig/swriter/ui/characterproperties.ui:41
msgctxt "characterproperties|standard"
msgid "_Standard"
-msgstr ""
+msgstr "_Padrão"
#: sw/uiconfig/swriter/ui/characterproperties.ui:151
msgctxt "characterproperties|font"
@@ -12010,147 +12010,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "Aj_uda"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Ficheiro"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Base"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Base"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "~Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Esq~uema"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Esq~uema"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referência_s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Referência~s"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Rever"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Rever"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Ver"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "_Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "~Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Ima_gem"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Ima~gem"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "_Desenho"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "~Desenho"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "_Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "~Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "_Multimédia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "~Multimédia"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Im_primir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Im~primir"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Fo_rmulário"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Fo~rmulário"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Ferramen~tas"
@@ -12160,155 +12160,155 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Ficheiro"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
-msgstr ""
+msgstr "~Ficheiro"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Base"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
-msgstr ""
+msgstr "~Base"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "_Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
-msgstr ""
+msgstr "~Inserir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Moldar"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Esquema"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
-msgstr ""
+msgstr "Es~quema"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Referência_s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
-msgstr ""
+msgstr "Referência~s"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Rever"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
-msgstr ""
+msgstr "~Rever"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Ver"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
-msgstr ""
+msgstr "~Ver"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "T_abela"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
-msgstr ""
+msgstr "~Tabela"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Imagem"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
-msgstr ""
+msgstr "Ima~gem"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Desenh_o"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
-msgstr ""
+msgstr "~Desenho"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
-msgstr ""
+msgstr "~Objeto"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "_Multimédia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
-msgstr ""
+msgstr "~Multimédia"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Imprimir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
-msgstr ""
+msgstr "Im~primir"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
-msgstr ""
+msgstr "Fo_rmulário"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmulário"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Ferramen_tas"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
-msgstr ""
+msgstr "Ferramen~tas"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2539
msgctxt "notebookbar_groupedbar_compact|MenubarAction"
@@ -12449,7 +12449,7 @@ msgstr "_Objeto"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9515
msgctxt "notebookbar_groupedbar_compact|graphicB"
msgid "F_rame"
-msgstr ""
+msgstr "Moldu_ra"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:9885
msgctxt "notebookbar_groupedbar_compact|graphicB"
@@ -12659,7 +12659,7 @@ msgstr "_Multimédia"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:12938
msgctxt "notebookbar_groupedbar_full|FrameButton"
msgid "_Object"
-msgstr ""
+msgstr "_Objeto"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:13819
msgctxt "notebookbar_groupedbar_full|FrameButton"
@@ -13372,8 +13372,8 @@ msgstr "Expandir espaço entre palavras nas linhas com quebras manuais dos pará
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Proteger formulário"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16653,47 +16653,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Índice remissivo, índice ou bibliografia"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Pré-visualizar"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Pré-visualizar"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tipo"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Entradas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Estilos"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Colunas"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fundo"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Pré-visualizar"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "_Nível"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tipo"
@@ -16923,302 +16923,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Editar..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Título:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tipo:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Índice remissivo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Índice alfabético"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Índice de figuras"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Índice de tabelas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Índice personalizado"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Índice de objetos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografia"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protegido contra alterações manuais"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tipo e título"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Para:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Todo o documento"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capítulo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Avaliar até ao nível:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Criar índice ou índice remissivo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Tópicos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "_Marcas de índice"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabelas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Molduras de te_xto"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Imagens"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Objetos OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Utilizar nível do capítulo de origem"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Estilos _adicionais"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Estilos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Atribuir estilos..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Legenda"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Nomes de objetos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categoria:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Mostrar:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referências"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categoria e número"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Texto da legenda"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Criar a partir de"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Criar a partir dos seguintes objetos"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Parênteses:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Entradas de _número"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[nenhum]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatação das entradas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Agrupar entradas idênticas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Agrupar entradas idênticas com _p ou pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Agrupar com -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Diferenciar maiúsculas de minúsculas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Entradas com maiúsculas automáticas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Chaves como entradas separadas"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Editar ficheiro de _concordância"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Ficheiro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opções"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Idioma:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tipo de chave:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ordenar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "_Níveis"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Estilo_s de parágrafo"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Pa_drão"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Editar"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Atribuição"
diff --git a/source/ro/cui/messages.po b/source/ro/cui/messages.po
index 5eb37ba027e..1f82bc136ef 100644
--- a/source/ro/cui/messages.po
+++ b/source/ro/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1641,107 +1641,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Configurează fără borduri"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Setează doar bordura exterioară"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Setează doar bordura exterioară și linii orizontale"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Setează bordura exterioară și toate liniile interne"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Setează bordura exterioară fără a modifica liniile interioare"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Setează doar liniile diagonale"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Setează toate patru bordurile"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Setează doar bordurile din stânga și din dreapta"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Setează doar bordurile de sus și de jos"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Setează doar bordura din stânga"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Setează bordurile de sus, de jos și toate liniile interioare"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Setează bordurile din stânga, din dreapta și toate liniile interioare"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Fără umbră"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Aruncă umbră în dreapta jos"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Aruncă umbră în dreapta sus"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Aruncă umbră în stânga jos"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Aruncă umbră în stânga sus"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1784,7 +1779,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1904,7 +1899,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2144,7 +2139,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2399,12 +2394,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2474,7 +2469,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2554,7 +2549,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2795,7 +2790,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3382,66 +3377,71 @@ msgid "About %PRODUCTNAME"
msgstr "Despre %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "_Mulțumiri"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Pagină _web"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Identificator construire: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Setări regionale: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "Vezi logul: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME este o suită de productivitate cu sursă deschisă, modernă, ușor de folosit, pentru editări de texte, tabele, prezentări și altele."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice este bazat pe OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME este derivat din LibreOffice care este bazat pe OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Ediția este oferită de: %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3558,17 +3558,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "_Înlocuire"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Înlocuire"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_Cu:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Doar _text"
@@ -4389,6 +4389,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Lungimea minimă a cuvântului"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5500,27 +5660,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Proprietăți"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Cad_ru:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Nume:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "_Text alternativ:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Descriere:"
@@ -9041,80 +9201,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ajutor"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Folosește dialogurile %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Dialogurile de deschidere și salvare"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "_Folosește dialogurile %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Dialog Tipărire"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_La imprimare va ajunge în starea „document modificat”"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Stare document"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpretează ani între: "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "și "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "An (două cifre)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Colectare date despre utilizare și trimite către The Document Foundation"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Ajutor la îmbunătățire %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Încarcă %PRODUCTNAME la pornirea sistemului"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Activează lansatorul rapid din zona de notificare"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Lansatorul rapid %PRODUCTNAME"
@@ -10987,25 +11147,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Temă proprie"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Sau, selectați din temele instalate ca extensii:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox Themes"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11633,102 +11778,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Opțiuni de securitate"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Selectați temă Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12736,27 +12785,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ro/extensions/messages.po b/source/ro/extensions/messages.po
index 4325802f7b8..45c3a2ec7c5 100644
--- a/source/ro/extensions/messages.po
+++ b/source/ro/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3094,162 +3094,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Aranjare coloane pentru tabelul %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Nume _scurt"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "_Autor(i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "_Edutură"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "_Capitol"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Editor"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Tip"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "_An"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Tit_lu"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "A_dresă"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "_ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Pa_gini"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ed_iție"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Titlu de _carte"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Volum"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "_Tip de publicație"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Organi_zație"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Instit_uție"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Uni_versitate"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Tipul ra_portului"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "_Lună"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "_Jurnal"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "_Număr"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Se_rie"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "An_otație"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "_Note"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Câmp definit de utilizator _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Câmp definit de utilizator _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Câmp definit de utilizator _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Câmp definit de utilizator _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Câmp definit de utilizator _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Nume de coloane"
@@ -3424,27 +3424,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Introduceți un nume pentru tip dată:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Câmpuri de legătură"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Sugerează"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Formularele secundare pot fi folosite pentru a afișa date detaliate despre înregistrarea curentă din formularul principal. Pentru aceasta, puteți specifica care coloane din formularul secundar corespund căror coloane din formularul principal."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "etichetă"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "etichetă"
diff --git a/source/ro/helpcontent2/source/auxiliary.po b/source/ro/helpcontent2/source/auxiliary.po
index 1080ae64c7e..09685cdc11c 100644
--- a/source/ro/helpcontent2/source/auxiliary.po
+++ b/source/ro/helpcontent2/source/auxiliary.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: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-19 12:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Informații generale"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,7 +613,7 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
+msgid "Presentations (Impress)"
msgstr ""
#: simpress.tree
@@ -547,30 +659,6 @@ msgstr "Bare de unelte"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Desene (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Meniuri"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Bare de unelte"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Obiecte, grafice și bitmapuri"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Grupuri și straturi"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Texte în prezentări și desene"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/ro/helpcontent2/source/text/sbasic/guide.po b/source/ro/helpcontent2/source/text/sbasic/guide.po
index 9fb4cfcb896..5ce6739965b 100644
--- a/source/ro/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ro/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-04-25 12:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr ""
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,7 +541,7 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
+msgid "Opening a Dialog With Basic"
msgstr ""
#: show_dialog.xhp
@@ -525,7 +549,7 @@ msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
msgstr ""
#: show_dialog.xhp
diff --git a/source/ro/helpcontent2/source/text/sbasic/python.po b/source/ro/helpcontent2/source/text/sbasic/python.po
index d8e63d5b679..31cc03fa28d 100644
--- a/source/ro/helpcontent2/source/text/sbasic/python.po
+++ b/source/ro/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -74,7 +74,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -90,7 +90,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -162,7 +162,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1050,7 +1050,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1466,7 +1466,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1512,6 +1512,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/ro/helpcontent2/source/text/sbasic/shared.po b/source/ro/helpcontent2/source/text/sbasic/shared.po
index 84418b48598..44044d961da 100644
--- a/source/ro/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ro/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-10-21 20:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,7 +36197,7 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
msgstr ""
#: main0601.xhp
diff --git a/source/ro/helpcontent2/source/text/sbasic/shared/03.po b/source/ro/helpcontent2/source/text/sbasic/shared/03.po
index 9ab37d80bb2..3f196c92277 100644
--- a/source/ro/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ro/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/ro/helpcontent2/source/text/scalc/01.po b/source/ro/helpcontent2/source/text/scalc/01.po
index b125aa99bdb..5c3a2f441f5 100644
--- a/source/ro/helpcontent2/source/text/scalc/01.po
+++ b/source/ro/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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2018-11-12 14:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -40949,7 +40949,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
msgstr ""
#: 04090000.xhp
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,7 +41005,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
msgstr ""
#: 04090000.xhp
@@ -46293,7 +46293,7 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
#: 12070000.xhp
diff --git a/source/ro/helpcontent2/source/text/schart/00.po b/source/ro/helpcontent2/source/text/schart/00.po
index 7ffb5df5923..f69e36b7264 100644
--- a/source/ro/helpcontent2/source/text/schart/00.po
+++ b/source/ro/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/ro/helpcontent2/source/text/shared/00.po b/source/ro/helpcontent2/source/text/shared/00.po
index 50f6f94ff48..80f217690b6 100644
--- a/source/ro/helpcontent2/source/text/shared/00.po
+++ b/source/ro/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/ro/helpcontent2/source/text/shared/01.po b/source/ro/helpcontent2/source/text/shared/01.po
index bfd9f98f0f7..623d50cca32 100644
--- a/source/ro/helpcontent2/source/text/shared/01.po
+++ b/source/ro/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/ro/helpcontent2/source/text/shared/02.po b/source/ro/helpcontent2/source/text/shared/02.po
index a17937f5c13..88101259f64 100644
--- a/source/ro/helpcontent2/source/text/shared/02.po
+++ b/source/ro/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 14:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/ro/helpcontent2/source/text/shared/guide.po b/source/ro/helpcontent2/source/text/shared/guide.po
index 56ab55959ff..c9b29130dac 100644
--- a/source/ro/helpcontent2/source/text/shared/guide.po
+++ b/source/ro/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/ro/helpcontent2/source/text/shared/optionen.po b/source/ro/helpcontent2/source/text/shared/optionen.po
index 1292766231d..255f1a04078 100644
--- a/source/ro/helpcontent2/source/text/shared/optionen.po
+++ b/source/ro/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/ro/helpcontent2/source/text/simpress/01.po b/source/ro/helpcontent2/source/text/simpress/01.po
index 8636eee8c76..fb61559fa5a 100644
--- a/source/ro/helpcontent2/source/text/simpress/01.po
+++ b/source/ro/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/ro/helpcontent2/source/text/swriter/guide.po b/source/ro/helpcontent2/source/text/swriter/guide.po
index 278a25b7209..5af7ad9260b 100644
--- a/source/ro/helpcontent2/source/text/swriter/guide.po
+++ b/source/ro/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 14:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,7 +229,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
msgstr ""
#: arrange_chapters.xhp
@@ -237,7 +237,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po
index 6b286667179..f208c3a25f4 100644
--- a/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ro/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23506,6 +23506,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25813,6 +25822,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25831,6 +25849,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ro/sc/messages.po b/source/ro/sc/messages.po
index f0e9923166d..48cce500571 100644
--- a/source/ro/sc/messages.po
+++ b/source/ro/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15581,6 +15581,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(acces exclusiv)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16135,12 +16140,12 @@ msgstr "Administrare formatare condițională"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17388,83 +17393,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Formular date"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "În_chide"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Înregistrare nouă"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_Creează"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Șterge"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restaurează"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Înregistrare precedentă"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "_Următoarea înregistrare"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "În_chide"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Fluxuri de date directe"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-#, fuzzy
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Introduceți numele sau URL-ul documentului sursă."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Răsfoiește..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Interval de baze de date"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Sursă de date"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19193,32 +19156,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Rezultate:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Date"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Coloane"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Rânduri"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Groupat"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Interval:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parametrii"
@@ -19364,167 +19332,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22062,17 +22032,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Rezultat căutare"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23971,107 +23951,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "_Simbol cuprins"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Fereastră"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Linii _grilă:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Culoare:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Arată"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Arată la celule colorate"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Ascunde"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Întrerupere de _pagină"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Liniile ajutătoare vizibile la _mutare"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Ajutor vizual"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Ob_iecte/Imagini:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Diag_rame:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Obiecte _de desen:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Arată"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Ascunde"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Arată"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Ascunde"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Arată"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Ascunde"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Obiecte"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "S_incronizare foi de calcul"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Mărire"
diff --git a/source/ro/scp2/source/ooo.po b/source/ro/scp2/source/ooo.po
index 0d79a913cb2..6f888baa64c 100644
--- a/source/ro/scp2/source/ooo.po
+++ b/source/ro/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -35,6 +35,14 @@ msgstr "Deschide document"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ro/scp2/source/winexplorerext.po b/source/ro/scp2/source/winexplorerext.po
index 1e1a3bb0c49..dc97562cb7f 100644
--- a/source/ro/scp2/source/winexplorerext.po
+++ b/source/ro/scp2/source/winexplorerext.po
@@ -2,17 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:35+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ro\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==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2);;\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369355712.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Permite Microsoft Windows Explorer să arate informații despre documente %PRODUCTNAME, ca de exemplu previzualizări în miniatură."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ro/sd/messages.po b/source/ro/sd/messages.po
index e87b8e148dc..84b5bcbba37 100644
--- a/source/ro/sd/messages.po
+++ b/source/ro/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2602,6 +2602,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3059,164 +3064,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Nume plan HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4637,160 +4827,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Arată formele"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/ro/sfx2/messages.po b/source/ro/sfx2/messages.po
index f22a0ddd0e1..8ba1b5c4fc3 100644
--- a/source/ro/sfx2/messages.po
+++ b/source/ro/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Remove Property"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Valoarea introdusă nu se potrivește cu tipul specificat.\n"
"Valoarea va fi stocată ca text."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Stilul există deja. Doriți să suprascrieți?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Resetează"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Acest nume este deja folosit."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Acest stil nu există."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Acest stil nu poate fi folosit ca stil de bază,\n"
"deoarece ar conduce la o referință recursivă."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Numele există deja ca stil implicit.\n"
"Alegeți un alt nume."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,93 +976,93 @@ msgstr ""
"Dacă ștergeți aceste stiluri, atunci textul va reveni la stilul părinte.\n"
"Sigur doriți să ștergeți aceste stiluri?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Stiluri folosite: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Navigator"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Confirmare de parolă eronată"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Trimite"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Set fonturi"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Vizualizare comentariu versiune"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(fără valoare setată)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Listă stil"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Ierarhic"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Mod format de umplere"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Stil nou din selecție"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Act~ualizează stilurile"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Sigur vreți să renunțați la înregistrare? Orice pași înregistrați până la acest punct vor fi pierduți."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Renunță la înregistrare"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Șabloanele sunt inițializate pentru prima utilizare."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1076,7 +1071,7 @@ msgstr ""
"Nu a fost găsită nicio imprimantă implicită.\n"
"Alegeți o imprimantă și încercați din nou."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1085,17 +1080,17 @@ msgstr ""
"Nu am putut porni imprimanta.\n"
"Verificați configurația de imprimare."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Imprimanta ocupată"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (protejat la scriere)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1106,7 +1101,7 @@ msgstr ""
"Doriți să salvați noile setări în\n"
"documentul activ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1117,7 +1112,7 @@ msgstr ""
"Ar trebui salvate noile setări\n"
"în documentul activ ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1128,7 +1123,7 @@ msgstr ""
"Doriți să salvați noile setări în\n"
"documentul activ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1137,7 +1132,7 @@ msgstr ""
"Documentul nu poate fi închis deoarece\n"
"se desfășoară o sarcină de imprimare."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1145,7 +1140,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1153,17 +1148,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Documentul nu poate fi editat, probabil din cauza lipsei drepturilor de acces. Doriți să editați o copie a documentului?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1171,350 +1166,360 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (document reparat)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Documentul nu a fost salvat pe server."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Documentul a fost deschis doar în citire."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Acest PDF este deschis numai pentru citire pentru semnarea fișierului existent."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Eticheta de clasificare a acestui document este %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Acest document trebuie clasificat înainte de a putea lipi din clipboard."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Acest document are un nivel de clasificare mai scăzut decât clipboard-ul."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Securitate națională:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Exportă controale:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Extrage"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Editare document"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Semnează document"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Semnătura documentului este invalidă."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Semnătura este validă, dar documentul a fost modificat"
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Semnătura este OK, dar certificatul nu poate fi validat."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Semnătura este OK, dar documentul este doar parțial semnat."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Documentul este semnat digital și semnătura este validă."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Arată semnăturile"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Doc"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Detașare"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Mai multe opțiuni"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Închide bara laterală"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Setări bară laterală"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Personalizare"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restaurare valori implicite"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Închide bara laterală"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Șterge"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1861,32 +1866,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Comentariu versiune:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Nume"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Tip"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Valoare"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Tip"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Da"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Nu"
@@ -1896,17 +1886,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Adaugă proprie_tate"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Nume"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Tip"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Valoare"
@@ -2037,17 +2027,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Locație:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Tip:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Schimbare _parolă"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Șablon:"
@@ -2057,27 +2047,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Proprietăți „%1”"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "General "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Descriere"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Proprietăți personalizate"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Proprietăți CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Securitate"
@@ -2291,6 +2281,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ro/shell/messages.po b/source/ro/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ro/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ro/starmath/messages.po b/source/ro/starmath/messages.po
index d35ea511817..4e432b3b253 100644
--- a/source/ro/starmath/messages.po
+++ b/source/ro/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1641,261 +1641,286 @@ msgid "Examples"
msgstr "Exemple"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Standard"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Cursiv"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Aldin"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "negru"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "albastru"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "verde"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "roșie"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "magneta"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "gri"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "lime"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "maroon"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "bleumarin"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "măslină"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "violet"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "argintiu"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "aquamarin"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "galben"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "ascunde"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "mărime"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "font"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "stânga"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "centru"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "dreapta"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Comenzi"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Formulă"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Se salvează documentul..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Formulă %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR:"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Caracter neașteptat"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Token neașteptat"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Se aștepta un „{”"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Se aștepta „}”"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Se aștepta „(”"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Se aștepta „)”"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Simbolurile din dreapta și stânga nu sunt perechi"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "de așteptat: „fixed”, „sans”, sau „serif”"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "„size”-ul e urmărit de un token neașteptat"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Alinierea dublă nu este permisă"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Indexul sus/jos dublu nu este permisă"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Se așteaptă „#”"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Culoarea obligatorie"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Se așteaptă 'RIGHT'"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Conținut"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "~Titlu"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Textul ~formulei"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "B~orduri"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Mărime"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Mă~rimea originală"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Încadrare în ~pagină"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "~Scalare"
@@ -1960,6 +1985,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Elemente"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ro/svtools/messages.po b/source/ro/svtools/messages.po
index 23ee237e10c..a4d9e59b0aa 100644
--- a/source/ro/svtools/messages.po
+++ b/source/ro/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1519 +16,1521 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195873.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Anulare: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "~Refacere: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "~Repetă: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Text neformatat"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Informații de stare din Legătura Internă Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Semn de carte Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Format de server Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Format de obiect Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Obiect de tip applet"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Obiect de tip modul"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Obiect StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Obiect StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Obiect StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Obiect StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Obiect StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Obiect StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Obiect StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Obiect StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Obiect StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Obiect StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Obiect StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Obiect StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Obiect StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Obiect StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Obiect StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Obiect StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Obiect StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Obiect StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Obiect StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Obiect StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Obiect StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Obiect StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Obiect StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Obiect StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Mătase"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Obiect Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Obiect StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Obiect document Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Note informații document"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Document Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Obiect StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Obiect grafic"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Obiect OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Obiect OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Obiect OpenOffice.org 1.0 Writer/Master"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Obiect OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Obiect OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Obiect OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Obiect OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Obiect OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Metafișier Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Obiect sursă de date"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Tabel sursă de date "
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Comanda SQL"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Dialog OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Legătură"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Format HTML fără comentarii"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Obiectul % nu a putut fi inserat."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Obiectul din fișierul % nu a putut fi inserat."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Alte obiecte"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Sursă necunoscută"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Nume"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Mărime"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Data modificării"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Tip"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Octeți"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Rând: %1, Coloana: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Tip: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Dosar"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Fișier"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Golește câmp"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeric"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Normal"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Set de caractere"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Dicționar"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Trasează"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Radical"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Unicode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Carte de telefoane"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Fonetic (mai întâi alfanumeric)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Fonetic (alfanumeric la urmă)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Alfanumeric"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Dicționar"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyin"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Radical"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Trasează"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyin"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Fonetic (alfanumeric mai întâi, apoi grupat pe silabe)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Fonetic (alfanumeric mai întâi, apoi grupat pe consoane)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Fonetic (alfanumeric la final, grupat pe silabe)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Fonetic (alfanumeric la final, grupat pe consoane)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Azi"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Nimic"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Ușor"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Cursiv subțire"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Normal"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Cursiv"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Aldin"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Aldin Cursiv"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Negru"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Negru cursiv"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Carte"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Aldin oblic"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Condensat"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Condensat aldin"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Condensat aldin cursiv"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Condensat aldin oblic"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Condensat cursiv"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Condensat oblic"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "ExtraSubțire"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "ExtraSubțire Cursiv"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Oblic"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Semialdin"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Semialdin cursiv"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Același font va fi folosit și pe ecran, și la imprimantă. "
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Acesta este un font de imprimantă. Aspectul pe ecran poate să fie diferit."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Acest stil de font va fi simulat, sau se va utiliza cel mai apropiat stil."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Acest font nu a fost instalat. Se va utiliza cel mai apropiat font disponibil."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Răsfoiește..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Mută acasă"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Mută la stânga"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Mută la dreapta"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Mută la final"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Adaugă"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Riglă orizontală"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Riglă verticală"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Prag de 1 bit"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Oscilație de 1 bit"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "scală de gri 4 biți"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "culoare 4 biți"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Scală de gri 8 biți"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "culoare 8 biți"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Culoare adevărată 24 biți"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Imaginea necesită în jur de %1 KB de memorie."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Imaginea necesită aprox %1 KB de memorie, dimensiunea fișierului este %2 KB."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Dimensiunea fișierului este de %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "host"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "port"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Pregătit"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Oprit"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Suspendarea ștergerii"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Ocupat"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Inițializare"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Așteaptă"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Încălzire"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Se prelucrează"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Tiparire"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Deconectat"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Eroare"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Server necunoscut"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Hârtie blocată"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Hârtie insuficientă"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Alimentare manuală"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Probleme cu hârtia"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O activ"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Coșul de ieșire plin"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner puțin"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Fără toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Elimină pagină"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Intervenție utilizator necesară"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Memorie insuficientă"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Copertă deschisă"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Mod economie de energie"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Imprimanta implicită"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documente"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "În~cheiere"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "~Înainte >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< Îna~poi"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Pași"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<nimic>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Societate"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Departament"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Numele mic"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Numele de familie"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Stradă"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Țară"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Cod poștal"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Localitate"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Titlu"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Poziție"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Formular adresat"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Inițiale"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Formulă de încheiere"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Tel. (acasă)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Tel. (serviciu)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Notă"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Utilizator 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Utilizator 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Utilizator 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Utilizator 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Identificator"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Stat"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Tel. (birou)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Pager"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Tel. (mobil)"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Tel. (altul)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Calendar"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Invită "
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$'s $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "%PRODUCTNAME necesită un mediu de execuție Java (JRE) pentru a efectua această operație. Instalați un JRE și să reporniți %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Configurația lui %PRODUCTNAME a fost schimbat. Sub %PRODUCTNAME - Opțiuni - %PRODUCTNAME - Avansat, selectați un mediu de execuție Java care doriți să fie folosit de %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Configurația lui %PRODUCTNAME a fost schimbat. Sub Unelte - Opțiuni - %PRODUCTNAME - Avansat, selectați un mediu de execuție Java care doriți să fie folosit de %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME necesită un mediu de execuția Java (JRE) pentru a executa această operație. JRE selectat este defect. Selectați sau instalați un lat JRE după care trebuie activat sub %PRODUCTNAME - Opțiuni - %PRODUCTNAME - Avansat."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "%PRODUCTNAME necesită un mediu de execuția Java (JRE) pentru a executa această operație. JRE selectat este defect. Selectați sau instalați un lat JRE după care trebuie activat în meniul Unelte - Opțiuni - %PRODUCTNAME - Avansat."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Este necesar JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Selectați un JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE este defect"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Cod sursă"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Fișier cu semne de carte"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Grafică"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Fișier de configurare"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Aplicație"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Tabelă în baza de date"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Fișier sistem"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Document MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Fișier ajutor"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Document HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Fișier arhivă"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Fișier jurnal"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Bază de date StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Document master StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Imagine StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Fișier text"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Legătură"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Șablon StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Document MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Șablon MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Fișier batch"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fișier"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Director"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Document text"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Foaie de calcul"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Prezentare"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Desen"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Document HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Document principal"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Formulă"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Bază de date"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Șablon OpenOffice.org 1.0 Spreadsheet"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Șablon OpenOffice.org 1.0 desen"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Șablon OpenOffice.org 1.0 prezentare"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Șablon OpenOffice.org 1.0 document text"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Disc local"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Unitate de disc"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Unitate CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Conexiune la rețea"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Document MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Șablon MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "OpenOffice.org 1.0 formulă"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "OpenOffice.org 1.0 formulă"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "OpenOffice.org 1.0 diagramă"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "OpenOffice.org 1.0 desen"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "OpenOffice.org 1.0 foaie de calcul"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "OpenOffice.org 1.0 prezentare"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "OpenOffice.org 1.0 document text"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "OpenOffice.org 1.0 document principal"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Document MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Bază de date OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Desen OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Formulă OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Document principal OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Prezentare OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Foaie de calcul OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Text OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Șablon de foaie de calcul OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Șablon de desen OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Șablon de prezentare OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Șablon de text OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Extensie %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/ro/svx/messages.po b/source/ro/svx/messages.po
index 367b5b57f34..b26cd50fd9d 100644
--- a/source/ro/svx/messages.po
+++ b/source/ro/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7960,6 +7960,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12342,82 +12347,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Editor de contur"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Aplică"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Spațiu de lucru"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Selectare"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Pătrat"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsoid"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Poligon"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editare puncte"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mutare puncte"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserează puncte"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Șterge puncte"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "AutoContur"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Înapoi "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Repetare"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Pipetă"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Toleranță culoare"
@@ -12743,112 +12753,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Subsol"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Editor de hartă a imaginii"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Aplică"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Deschide..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Salvare..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Închide"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Selectare"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Pătrat"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Elipsoid"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Poligon"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Poligon de formă liberă"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Editare puncte"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Mutare puncte"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Inserare puncte"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Șterge puncte"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Înapoi "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Repetare"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Activ"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Macro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Proprietăți..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Adresă:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Cadru:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Text:"
diff --git a/source/ro/sw/messages.po b/source/ro/sw/messages.po
index 3acccd0c931..234feb1643f 100644
--- a/source/ro/sw/messages.po
+++ b/source/ro/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3149,9 +3149,9 @@ msgid "Change object title of $1"
msgstr "Schimbați titlul obiectului $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Schimbați descrierea obiectului $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12111,147 +12111,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12261,152 +12261,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13478,8 +13478,8 @@ msgstr "Extinde spațiul între cuvinte în liniile întrerupte manual cu stilul
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Protejare formular"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16783,47 +16783,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Cuprins, index sau bibliografie"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Previzualizare"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Previzualizare"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Tip"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Intrări"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Stiluri"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Coloane"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Fundal"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Previzualizare"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Nive_l"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "_Tip"
@@ -17053,302 +17053,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "_Editare..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Titlu:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Tip:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Conținut"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Index alfabetic"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Index de tabel"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Definit de utilizator"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Tabel cu obiecte"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Bibliografie"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Protejat la schimbare manuală"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Tip și titlu"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Pentru:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Întregul document"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Capitol"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Evaluează până la nivelul:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Creează index sau cuprins"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Cuprins"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Semne inde_x"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Tabele"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Cadre de te_xt"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Grafică"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Obiecte OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Utilizare nivel după capitolul sursă"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Stiluri supliment_are"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "_Stiluri"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Atribuie stiluri..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Etichete"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Numele obiectelor"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Categorie:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Afișare:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Referințe"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Categorie și număr"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Text etichetă"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Creează din"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Creează din obiectele următoare"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "_Paranteze:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Intrări _numerice"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[nimic]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Formatare intrări"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Combină intrări identice"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Combină intrări identice cu p sau _pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Combină cu -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Distincție între majuscule și minuscule"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Capitalizarea intrărilor"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Cheile să fiu intrări separate"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Fișier _concordanță"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Fișier"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Opțiuni"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Limbă:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Tip cheie:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Sortare"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Nive_luri"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "_Stiluri paragraf"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "_Implicit"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "_Editare"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Atribuire"
diff --git a/source/ru/cui/messages.po b/source/ru/cui/messages.po
index f74b3c997ad..92e6585aecd 100644
--- a/source/ru/cui/messages.po
+++ b/source/ru/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2019-05-02 09:09+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1638,107 +1638,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr "Введите корректный адрес темы или её название для поиска."
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr "В настоящее время Mozilla Themes API недоступен."
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "Убрать обрамление"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "Установить только внешнюю рамку"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "Установить внешнюю рамку и горизонтальные линии"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "Установить внешнюю рамку и линии внутри"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "Установить внешнюю рамку, не затрагивая внутренние линии"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "Установить только диагональные линии"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "Обрамление со всех сторон"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "Обрамление слева и справа"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "Обрамление сверху и снизу"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "Обрамление только слева"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "Верхнее и нижнее обрамление, а также все внутренние линии"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "Левое и правое обрамление, а также все внутренние линии"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Без тени"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "Тень отбрасывается направо вниз"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "Тень отбрасывается направо вверх"
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "Тень отбрасывается налево вниз"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "Тень отбрасывается налево вверх"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr "Подписано: %1"
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr "Все файлы"
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr "Зарегистрированные базы данных"
@@ -1781,7 +1776,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1901,7 +1896,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2141,7 +2136,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2396,12 +2391,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2471,7 +2466,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2551,7 +2546,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2792,7 +2787,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3376,66 +3371,71 @@ msgid "About %PRODUCTNAME"
msgstr "О %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "У_частники"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Веб-сайт"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "ID сборки: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr "Локаль: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr "Язык UI: $LOCALE"
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr "См. журнал: $GITHASH"
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME - это современное, с открытым кодом, простое в использовании средство обработки текстов, электронных таблиц, презентаций и т.п."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr "Copyright © 2000-2019 участники сообщества LibreOffice."
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice базируется на OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME происходит от LibreOffice, основанном на OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "Этот продукт предоставлен %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr "https://www.libreoffice.org/about-us/credits/"
@@ -3550,17 +3550,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Заменить"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "_Заменять:"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_На:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "Только текст"
@@ -4380,6 +4380,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "Минимальная длина слова"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5490,27 +5650,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Свойства"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "_URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Фрейм:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "_Имя:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr "Альтернативный текст:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr "_Описание:"
@@ -9019,80 +9179,80 @@ msgstr "Показать окно «Не установлена Справка»
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Справка"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Использовать диалоги %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Диалоги открытия/сохранения"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Использовать диалоги %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Диалоги печати"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "Печать устанавливает состояние «документ изменён»"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Состояние документа"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "Интерпретировать _как года между "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "и "
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Год (две цифры)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr "Сбор и отправка сведений об использовании в TDF"
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr "Помогите улучшить %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Загружать %PRODUCTNAME во время запуска системы"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Использовать быстрый запуск"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "Быстрый запуск %PRODUCTNAME"
@@ -10965,25 +11125,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr "Предустановленная тема"
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Другая тема"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr "Загрузить темы Firefox"
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr "Или выберите из тем установленных расширений:"
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Темы Firefox"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -11610,102 +11755,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Параметры безопасности"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr "Выбор темы Firefox"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr "Искать название или адрес"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr "Категория:"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr "Абстракция"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr "Причины"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr "Мода"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr "Кино и ТВ"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr "Firefox"
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr "Foxkeh"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr "Праздник"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr "Музыка"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr "Природа"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr "Прочее"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr "Декорации"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr "Сезоны"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr "Сплошной цвет"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr "Спорт"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr "Веб-сайты"
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr "Рекомендуемые"
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12712,27 +12761,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/ru/extensions/messages.po b/source/ru/extensions/messages.po
index a12cb29b795..2a9cf3d0d2f 100644
--- a/source/ru/extensions/messages.po
+++ b/source/ru/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-04-22 06:40+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@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: 1555915227.000000\n"
#: extensions/inc/command.hrc:29
@@ -3093,162 +3093,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Расположение столбцов таблицы «%1»"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Сокращённо"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Автор(ы)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Издатель"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Глава"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Редактор"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Тип"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Год"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Заголовок"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Адрес"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Страниц(а)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Издание"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Заглавие книги"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Том"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Тип издания"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Организация"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Институт"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Университет"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Тип отчёта"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Месяц"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Журнал"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Номер"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Ряд"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Аннотация"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Примечание"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Поле пользователя _1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Поле пользователя _2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Поле пользователя _3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Поле пользователя _4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Поле пользователя _5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr "Имена столбцов"
@@ -3423,27 +3423,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "Введите имя нового типа данных:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Связь полей"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Пожелание"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Подчинённые формы можно использовать для отображения подробных данных о текущей записи в основной форме. Для этого можно указать, какие столбцы в подчинённой форме соответствуют столбцам в основной форме."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "надпись"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "надпись"
diff --git a/source/ru/helpcontent2/source/auxiliary.po b/source/ru/helpcontent2/source/auxiliary.po
index a026dc21981..31aa125d703 100644
--- a/source/ru/helpcontent2/source/auxiliary.po
+++ b/source/ru/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: auxiliary\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-31 08:31+0000\n"
"Last-Translator: kompilainenn <79045_79045@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -272,6 +272,118 @@ msgctxt ""
msgid "General Information"
msgstr "Общие сведения"
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11\n"
+"help_section.text"
+msgid "Drawings (Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1101\n"
+"node.text"
+msgid "General Information and User Interface Usage"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"0902\n"
+"node.text"
+msgid "Command and Menu Reference"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"110202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020201\n"
+"node.text"
+msgid "Menus"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"11020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1103\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1104\n"
+"node.text"
+msgid "Formatting"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1105\n"
+"node.text"
+msgid "Printing"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1106\n"
+"node.text"
+msgid "Effects"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1107\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1108\n"
+"node.text"
+msgid "Groups and Layers"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1109\n"
+"node.text"
+msgid "Text in Drawings"
+msgstr ""
+
+#: sdraw.tree
+msgctxt ""
+"sdraw.tree\n"
+"1110\n"
+"node.text"
+msgid "Viewing"
+msgstr ""
+
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -501,8 +613,8 @@ msgctxt ""
"simpress.tree\n"
"04\n"
"help_section.text"
-msgid "Presentations and Drawings (Impress/Draw)"
-msgstr "презентации и рисунки (Impress/Draw)"
+msgid "Presentations (Impress)"
+msgstr ""
#: simpress.tree
msgctxt ""
@@ -547,30 +659,6 @@ msgstr "Панели инструментов"
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"040202\n"
-"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
-msgstr "Рисунки (%PRODUCTNAME Draw)"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020201\n"
-"node.text"
-msgid "Menus"
-msgstr "Меню"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
-"04020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr "Панели инструментов"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
@@ -611,18 +699,10 @@ msgstr "Объекты, графические объекты и растров
#: simpress.tree
msgctxt ""
"simpress.tree\n"
-"0408\n"
-"node.text"
-msgid "Groups and Layers"
-msgstr "Группы и слои"
-
-#: simpress.tree
-msgctxt ""
-"simpress.tree\n"
"0409\n"
"node.text"
-msgid "Text in Presentations and Drawings"
-msgstr "Текст в презентациях и рисунках"
+msgid "Text in Presentations"
+msgstr ""
#: simpress.tree
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/sbasic/guide.po b/source/ru/helpcontent2/source/text/sbasic/guide.po
index faa63ce2779..49bd3c12830 100644
--- a/source/ru/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ru/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:25+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-31 10:43+0000\n"
"Last-Translator: kompilainenn <79045_79045@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -168,6 +168,30 @@ msgctxt ""
msgid "Compare Access2Base with Microsoft Access VBA"
msgstr "Сравнение Access2Base с Microsoft Access VBA"
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basic Programming Examples"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"bm_id171559140731329\n"
+"help.text"
+msgid "<bookmark_value>Basic;programming examples</bookmark_value>"
+msgstr ""
+
+#: basic_examples.xhp
+msgctxt ""
+"basic_examples.xhp\n"
+"hd_id471559139063621\n"
+"help.text"
+msgid "<variable id=\"basicexamplestit\"><link href=\"text/sbasic/guide/basic_examples.xhp\" name=\"Basic Programming Examples\">Basic Programming Examples</link></variable>"
+msgstr ""
+
#: control_properties.xhp
msgctxt ""
"control_properties.xhp\n"
@@ -517,16 +541,16 @@ msgctxt ""
"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr "Открытие диалогового окна с помощью программного кода"
+msgid "Opening a Dialog With Basic"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
"show_dialog.xhp\n"
"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr "<bookmark_value>переключение модуля/диалогового окна</bookmark_value><bookmark_value>диалоговые окна;использование программного кода для отображения (пример)</bookmark_value><bookmark_value>примеры; отображение диалогового окна с использованием программного кода</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value> <bookmark_value>dialogs;using Basic to show (example)</bookmark_value> <bookmark_value>examples; showing a dialog with Basic</bookmark_value> <bookmark_value>Tools;LoadDialog</bookmark_value>"
+msgstr ""
#: show_dialog.xhp
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/sbasic/python.po b/source/ru/helpcontent2/source/text/sbasic/python.po
index 8a417b01913..e4aef5f16f8 100644
--- a/source/ru/helpcontent2/source/text/sbasic/python.po
+++ b/source/ru/helpcontent2/source/text/sbasic/python.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: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-31 15:35+0000\n"
"Last-Translator: kompilainenn <79045_79045@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -77,7 +77,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"tit\n"
"help.text"
-msgid "Python: Opening a Dialog"
+msgid "Opening a Dialog with Python"
msgstr ""
#: python_dialogs.xhp
@@ -93,7 +93,7 @@ msgctxt ""
"python_dialogs.xhp\n"
"N0336\n"
"help.text"
-msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog in Python</link></variable>"
+msgid "<variable id=\"pythondialog\"><link href=\"text/sbasic/python/python_dialogs.xhp\" name=\"command_name\">Opening a Dialog with Python</link></variable>"
msgstr ""
#: python_dialogs.xhp
@@ -165,7 +165,7 @@ msgctxt ""
"python_document_events.xhp\n"
"N0526\n"
"help.text"
-msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <!-- Advanced Basic Libraries --> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
+msgid "<bookmark_value>Basic;Monitoring Document Events</bookmark_value> <bookmark_value>Python;Monitoring Document Events</bookmark_value> <bookmark_value>Access2Base;Console</bookmark_value> <bookmark_value>Access2Base;Trace</bookmark_value> <bookmark_value>Tools;Strings</bookmark_value> <bookmark_value>API;BasicLibraries</bookmark_value> <bookmark_value>API;DocumentEvent</bookmark_value> <bookmark_value>API;DocumentEventListener</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;GlobalEventBroadcaster</bookmark_value> <bookmark_value>API;MasterScriptProviderFactory</bookmark_value> <bookmark_value>API;XDocumentEventBroadcaster</bookmark_value> <bookmark_value>API;XDocumentEventListener</bookmark_value> <bookmark_value>API;XScript</bookmark_value>"
msgstr ""
#: python_document_events.xhp
@@ -1053,7 +1053,7 @@ msgctxt ""
"python_listener.xhp\n"
"N0385\n"
"help.text"
-msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <!-- Application Programming Interface --> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
+msgid "<bookmark_value>Python;Event Listener</bookmark_value> <bookmark_value>Python;createUnoListener</bookmark_value> <bookmark_value>Basic;Event Listener</bookmark_value> <bookmark_value>API;ActionEvent</bookmark_value> <bookmark_value>API;DialogProvider</bookmark_value> <bookmark_value>API;EventObject</bookmark_value> <bookmark_value>API;ExecutableDialogResults</bookmark_value> <bookmark_value>API;XActionListener</bookmark_value>"
msgstr ""
#: python_listener.xhp
@@ -1469,7 +1469,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0508\n"
"help.text"
-msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value>"
+msgid "<bookmark_value>Platform;isLinux</bookmark_value> <bookmark_value>Platform;isMacOsX</bookmark_value> <bookmark_value>Platform;isWindows</bookmark_value> <bookmark_value>Platform;ComputerName</bookmark_value> <bookmark_value>Platform;OSName</bookmark_value> <bookmark_value>API;ConfigurationAccess</bookmark_value> <bookmark_value>Tools;GetRegistryContent</bookmark_value>"
msgstr ""
#: python_platform.xhp
@@ -1493,7 +1493,7 @@ msgctxt ""
"python_platform.xhp\n"
"N0511\n"
"help.text"
-msgid "%PRODUCTNAME Basic lacks Mac OS X native recognition while ComputerName property is solely available for Windows. Basic calls to Python macros help overcome such limitations."
+msgid "ComputerName property is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
msgstr ""
#: python_platform.xhp
@@ -1515,6 +1515,30 @@ msgstr ""
#: python_platform.xhp
msgctxt ""
"python_platform.xhp\n"
+"NO529b\n"
+"help.text"
+msgid "%PRODUCTNAME Basic lacks MacOS X native recognition. Platform identification is possible using %PRODUCTNAME Application Programming Interface (API)."
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0451\n"
+"help.text"
+msgid "' Return platform name as \"MAC\", \"UNIX\", \"WIN\""
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
+"N0551\n"
+"help.text"
+msgid "' Inferred from \"Tools.UCB.ShowHelperDialog\" function"
+msgstr ""
+
+#: python_platform.xhp
+msgctxt ""
+"python_platform.xhp\n"
"N0564\n"
"help.text"
msgid "Examples:"
diff --git a/source/ru/helpcontent2/source/text/sbasic/shared.po b/source/ru/helpcontent2/source/text/sbasic/shared.po
index 7b45e042a2d..eeb50902926 100644
--- a/source/ru/helpcontent2/source/text/sbasic/shared.po
+++ b/source/ru/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2019-01-31 15:40+0000\n"
"Last-Translator: kompilainenn <79045_79045@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -36197,8 +36197,8 @@ msgctxt ""
"main0601.xhp\n"
"hd_id3154232\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
-msgstr "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"Справка по $[officename] Basic\">Справка по %PRODUCTNAME Basic</link>"
+msgid "<variable id=\"mainsbasic\"><link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link></variable>"
+msgstr ""
#: main0601.xhp
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/sbasic/shared/03.po b/source/ru/helpcontent2/source/text/sbasic/shared/03.po
index 49265b9de06..f11fbab8360 100644
--- a/source/ru/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ru/helpcontent2/source/text/sbasic/shared/03.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: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-07-12 14:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -347,6 +347,14 @@ msgstr ""
#: lib_tools.xhp
msgctxt ""
"lib_tools.xhp\n"
+"par_id261558858921700\n"
+"help.text"
+msgid "Refer to <link href=\"text/sbasic/guide/show_dialog.xhp#show_dialog\" name=\"Opening a Dialog with Basic\">Opening a Dialog with Basic</link> for an example of LoadDialog function."
+msgstr ""
+
+#: lib_tools.xhp
+msgctxt ""
+"lib_tools.xhp\n"
"bm_id271529062660965\n"
"help.text"
msgid "<bookmark_value>BASIC Tools library;Strings module</bookmark_value>"
diff --git a/source/ru/helpcontent2/source/text/scalc/01.po b/source/ru/helpcontent2/source/text/scalc/01.po
index 382e5e6d5a5..d1349b6f42e 100644
--- a/source/ru/helpcontent2/source/text/scalc/01.po
+++ b/source/ru/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-22 13:26+0200\n"
"PO-Revision-Date: 2019-02-03 07:45+0000\n"
"Last-Translator: kompilainenn <79045_79045@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -40949,8 +40949,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3153192\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Найдите файл, содержащий данные для вставки.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Open a file dialog to locate the file containing the data you want to insert.</ahelp>"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -40981,7 +40981,7 @@ msgctxt ""
"04090000.xhp\n"
"par_id3145366\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Alternatively, click <emph>Browse</emph> button to select the file name from a file dialog that opens. Only then will the URL be requested from the network or file system."
msgstr ""
#: 04090000.xhp
@@ -41005,8 +41005,8 @@ msgctxt ""
"04090000.xhp\n"
"par_id3147397\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Выберите таблицу или область данных для вставки.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp> If the selected Calc or Excel document contains no named range, spreadsheet data cannot be inserted and <emph>OK</emph> button will remain inactive"
+msgstr ""
#: 04090000.xhp
msgctxt ""
@@ -46293,8 +46293,8 @@ msgctxt ""
"12070000.xhp\n"
"par_id3153836\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Здесь указывается диапазон ячеек, который требуется объединить с диапазонами, указанными в поле <emph>Диапазон объединения</emph>. Выберите диапазон ячеек или лист и нажмите кнопку <emph>Добавить</emph>. Также можно выбрать имя заранее определенной ячейки из списка <emph>Диапазон исходных данных</emph>.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/consolidatedialog/eddataarea\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
+msgstr ""
#: 12070000.xhp
msgctxt ""
diff --git a/source/ru/helpcontent2/source/text/schart/00.po b/source/ru/helpcontent2/source/text/schart/00.po
index aa36416b7b5..49b0d2e54b1 100644
--- a/source/ru/helpcontent2/source/text/schart/00.po
+++ b/source/ru/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 00\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-05-08 16:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -485,7 +485,7 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
#: 00000004.xhp
@@ -493,5 +493,5 @@ msgctxt ""
"00000004.xhp\n"
"par_id8513095\n"
"help.text"
-msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type drop-down, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/ru/helpcontent2/source/text/shared/00.po b/source/ru/helpcontent2/source/text/shared/00.po
index 93b0749f095..f5d97667e11 100644
--- a/source/ru/helpcontent2/source/text/shared/00.po
+++ b/source/ru/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 00\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -7563,14 +7563,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_idN11C3E\n"
-"help.text"
-msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - OpenCL</emph>.</variable>"
diff --git a/source/ru/helpcontent2/source/text/shared/01.po b/source/ru/helpcontent2/source/text/shared/01.po
index a49e0f6865c..e4859dd04e8 100644
--- a/source/ru/helpcontent2/source/text/shared/01.po
+++ b/source/ru/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-14 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -6251,6 +6251,30 @@ msgstr ""
#: 02100000.xhp
msgctxt ""
"02100000.xhp\n"
+"bm_id891558923816062\n"
+"help.text"
+msgid "<bookmark_value>searching;formatted numbers</bookmark_value> <bookmark_value>searching;formatted display</bookmark_value> <bookmark_value>finding;formatted numbers</bookmark_value> <bookmark_value>finding;formatted display</bookmark_value>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"hd_id261558922782067\n"
+"help.text"
+msgid "Formatted display"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id971558923550517\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchformatted\">Includes number formatting characters in the search.</ahelp>"
+msgstr ""
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
"hd_id3148538\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
diff --git a/source/ru/helpcontent2/source/text/shared/02.po b/source/ru/helpcontent2/source/text/shared/02.po
index 2788ba293ae..d0aa03193f1 100644
--- a/source/ru/helpcontent2/source/text/shared/02.po
+++ b/source/ru/helpcontent2/source/text/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-01-12 13:18+0100\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 14:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3837,7 +3837,7 @@ msgctxt ""
"01170101.xhp\n"
"par_idN1158E\n"
"help.text"
-msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when a the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
+msgid "<ahelp hid=\"EXTENSIONS_HID_PROP_HIDEINACTIVESELECTION\">Specifies whether a text selection on a control remains selected when the focus is no longer on a control.</ahelp> If you set <emph>Hide selection</emph> to \"No\", the selected text remains selected when the focus is no longer on the control that contains the text."
msgstr ""
#: 01170101.xhp
diff --git a/source/ru/helpcontent2/source/text/shared/guide.po b/source/ru/helpcontent2/source/text/shared/guide.po
index 15ea3fa94f5..13ba1bf22aa 100644
--- a/source/ru/helpcontent2/source/text/shared/guide.po
+++ b/source/ru/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-14 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3099,14 +3099,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer1\n"
-"help.text"
-msgid "application/x-abiword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer3\n"
"help.text"
msgid "Apple Pages"
@@ -3115,14 +3107,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer4\n"
-"help.text"
-msgid "application/x-iwork-pages-sffpages"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer6\n"
"help.text"
msgid "BroadBand eBook"
@@ -3131,14 +3115,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer7\n"
-"help.text"
-msgid "application/x-sony-bbeb"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer9\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -3147,14 +3123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer10\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer12\n"
"help.text"
msgid "EPUB Document"
@@ -3163,14 +3131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer13\n"
-"help.text"
-msgid "application/epub+zip"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer15\n"
"help.text"
msgid "FictionBook 2.0"
@@ -3179,14 +3139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer16\n"
-"help.text"
-msgid "application/x-fictionbook+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer18\n"
"help.text"
msgid "HTML Document"
@@ -3195,14 +3147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer19\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer21\n"
"help.text"
msgid "HTML Document"
@@ -3211,14 +3155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer22\n"
-"help.text"
-msgid "text/html"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer24\n"
"help.text"
msgid "Hangul WP 97"
@@ -3227,14 +3163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer25\n"
-"help.text"
-msgid "application/x-hwp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer27\n"
"help.text"
msgid "Help content"
@@ -3291,14 +3219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer37\n"
-"help.text"
-msgid "application/vnd.lotus-wordpro"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer39\n"
"help.text"
msgid "MS Word 95 Template"
@@ -3307,14 +3227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer40\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer42\n"
"help.text"
msgid "MacWrite Document"
@@ -3323,14 +3235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer43\n"
-"help.text"
-msgid "application/macwriteii"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer45\n"
"help.text"
msgid "Mariner Write Mac Classic v1.6 - v3.5"
@@ -3347,14 +3251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer49\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer51\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -3363,14 +3259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer52\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer54\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -3379,14 +3267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer55\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer57\n"
"help.text"
msgid "Microsoft WinWord 1/2/5"
@@ -3395,14 +3275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer58\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer60\n"
"help.text"
msgid "Microsoft Word 6.0"
@@ -3411,14 +3283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer61\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer63\n"
"help.text"
msgid "Microsoft Word 95"
@@ -3427,14 +3291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer64\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer66\n"
"help.text"
msgid "Microsoft Word for DOS"
@@ -3459,14 +3315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer70\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer72\n"
"help.text"
msgid "Microsoft Works Document"
@@ -3475,14 +3323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer73\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer75\n"
"help.text"
msgid "Microsoft Works for Mac Document (v1 - v4)"
@@ -3491,14 +3331,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer76\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer78\n"
"help.text"
msgid "Microsoft Write"
@@ -3507,14 +3339,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer79\n"
-"help.text"
-msgid "application/x-mswrite"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer81\n"
"help.text"
msgid "Office Open XML Text Document"
@@ -3523,14 +3347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer82\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer84\n"
"help.text"
msgid "Office Open XML Text Template"
@@ -3539,14 +3355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer85\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.wordprocessingml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer87\n"
"help.text"
msgid "OpenDocument Text (Flat XML)"
@@ -3555,14 +3363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer88\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer90\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3571,14 +3371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer91\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer93\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3587,14 +3379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer94\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer96\n"
"help.text"
msgid "OpenOffice.org 1.0 Text Document"
@@ -3603,14 +3387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer97\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer99\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3619,14 +3395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer100\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3635,14 +3403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer105\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -3651,14 +3411,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer106\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer108\n"
"help.text"
msgid "Palm Text Document"
@@ -3667,14 +3419,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer109\n"
-"help.text"
-msgid "application/vnd.palm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer111\n"
"help.text"
msgid "PalmDoc eBook"
@@ -3683,14 +3427,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer112\n"
-"help.text"
-msgid "application/x-aportisdoc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer114\n"
"help.text"
msgid "Plucker eBook"
@@ -3699,14 +3435,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer115\n"
-"help.text"
-msgid "application/prs.plucker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer117\n"
"help.text"
msgid "Rich Text Format"
@@ -3715,14 +3443,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer118\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer120\n"
"help.text"
msgid "T602 Document"
@@ -3731,14 +3451,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer121\n"
-"help.text"
-msgid "application/x-t602"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer123\n"
"help.text"
msgid "Text"
@@ -3795,14 +3507,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer133\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer135\n"
"help.text"
msgid "Word 2007–2019 Template"
@@ -3811,14 +3515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer136\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer138\n"
"help.text"
msgid "Word 2007–2019 VBA"
@@ -3827,14 +3523,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer139\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer141\n"
"help.text"
msgid "Word 97–2000 Template"
@@ -3843,14 +3531,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer142\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer144\n"
"help.text"
msgid "Word 97–2003"
@@ -3859,14 +3539,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer145\n"
-"help.text"
-msgid "application/msword"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer147\n"
"help.text"
msgid "WordPerfect Document"
@@ -3875,14 +3547,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer148\n"
-"help.text"
-msgid "application/vnd.wordperfect"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer150\n"
"help.text"
msgid "WriteNow Document"
@@ -3899,14 +3563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer154\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.global"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer156\n"
"help.text"
msgid "Writer 6.0 Template"
@@ -3915,14 +3571,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer157\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer159\n"
"help.text"
msgid "Writer 8"
@@ -3931,14 +3579,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer160\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer162\n"
"help.text"
msgid "Writer 8 Master Document"
@@ -3947,14 +3587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer163\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer165\n"
"help.text"
msgid "Writer 8 Master Document Template"
@@ -3963,14 +3595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer166\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-master-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer168\n"
"help.text"
msgid "Writer 8 Template"
@@ -3979,14 +3603,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer169\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer171\n"
"help.text"
msgid "Writer Layout Dump"
@@ -4011,14 +3627,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer175\n"
-"help.text"
-msgid "application/vnd.sun.xml.writer.web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_writer177\n"
"help.text"
msgid "Writer/Web 8 Template"
@@ -4027,14 +3635,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_writer178\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.text-web"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000calc\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for CALC</bookmark_value>"
@@ -4059,14 +3659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc1\n"
-"help.text"
-msgid "application/x-iwork-numbers-sffnumbers"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc3\n"
"help.text"
msgid "Calc 6.0"
@@ -4075,14 +3667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc4\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc6\n"
"help.text"
msgid "Calc 6.0 Template"
@@ -4091,14 +3675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc7\n"
-"help.text"
-msgid "application/vnd.sun.xml.calc.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc9\n"
"help.text"
msgid "Calc 8"
@@ -4107,14 +3683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc10\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc12\n"
"help.text"
msgid "Calc 8 Template"
@@ -4123,14 +3691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc15\n"
"help.text"
msgid "ClarisResolve Document"
@@ -4139,14 +3699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc16\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc18\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -4155,14 +3707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc19\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc21\n"
"help.text"
msgid "Data Interchange Format"
@@ -4187,14 +3731,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc25\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc27\n"
"help.text"
msgid "Excel 2007–2019 Template"
@@ -4203,14 +3739,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc30\n"
"help.text"
msgid "Excel 97–2000 Template"
@@ -4219,14 +3747,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc31\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc33\n"
"help.text"
msgid "Excel 97–2003"
@@ -4235,14 +3755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc34\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc36\n"
"help.text"
msgid "Gnumeric Spreadsheet"
@@ -4251,14 +3763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc37\n"
-"help.text"
-msgid "application/x-gnumeric"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc39\n"
"help.text"
msgid "HTML Document"
@@ -4347,14 +3851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc55\n"
-"help.text"
-msgid "application/vnd.lotus-1-2-3"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc57\n"
"help.text"
msgid "Lotus Wk1-Wk3"
@@ -4379,14 +3875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc61\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc63\n"
"help.text"
msgid "MS Excel 5.0 Template"
@@ -4395,14 +3883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc64\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc66\n"
"help.text"
msgid "MS Excel 95 Template"
@@ -4411,14 +3891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc67\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc69\n"
"help.text"
msgid "Microsoft Excel 2007 Binary"
@@ -4443,14 +3915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc73\n"
-"help.text"
-msgid "application/vnd.ms-excel.sheet.macroEnabled.12"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc75\n"
"help.text"
msgid "Microsoft Excel 4.0"
@@ -4459,14 +3923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc76\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc78\n"
"help.text"
msgid "Microsoft Excel 5.0"
@@ -4475,14 +3931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc79\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc81\n"
"help.text"
msgid "Microsoft Excel 95"
@@ -4491,14 +3939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc82\n"
-"help.text"
-msgid "application/vnd.ms-excel"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc84\n"
"help.text"
msgid "Microsoft Multiplan"
@@ -4539,14 +3979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc91\n"
-"help.text"
-msgid "application/vnd.ms-works"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc93\n"
"help.text"
msgid "Office Open XML Spreadsheet"
@@ -4555,14 +3987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc94\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc96\n"
"help.text"
msgid "Office Open XML Spreadsheet Template"
@@ -4571,14 +3995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc97\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.spreadsheetml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc99\n"
"help.text"
msgid "OpenDocument Spreadsheet (Flat XML)"
@@ -4587,14 +4003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc100\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.spreadsheet-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc102\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4603,14 +4011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc103\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc105\n"
"help.text"
msgid "Quattro Pro 6.0"
@@ -4651,14 +4051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_calc112\n"
-"help.text"
-msgid "application/rtf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_calc114\n"
"help.text"
msgid "SYLK"
@@ -4731,14 +4123,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress1\n"
-"help.text"
-msgid "application/x-iwork-keynote-sffkey"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress3\n"
"help.text"
msgid "ClarisWorks/AppleWorks Presentation"
@@ -4747,14 +4131,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress4\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress6\n"
"help.text"
msgid "Draw 8"
@@ -4763,14 +4139,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress7\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress9\n"
"help.text"
msgid "Impress 6.0 Template"
@@ -4779,14 +4147,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress10\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress12\n"
"help.text"
msgid "Impress 8"
@@ -4795,14 +4155,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress13\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress15\n"
"help.text"
msgid "Impress 8 Template"
@@ -4811,14 +4163,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress16\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress18\n"
"help.text"
msgid "Legacy Mac Presentation"
@@ -4875,14 +4219,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress28\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress30\n"
"help.text"
msgid "Office Open XML Presentation AutoPlay"
@@ -4891,14 +4227,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress31\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress33\n"
"help.text"
msgid "Office Open XML Presentation Template"
@@ -4907,14 +4235,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress34\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress36\n"
"help.text"
msgid "OpenDocument Presentation (Flat XML)"
@@ -4923,14 +4243,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress37\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.presentation-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress39\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -4939,14 +4251,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress40\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress42\n"
"help.text"
msgid "OpenOffice.org 1.0 Presentation"
@@ -4955,14 +4259,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress43\n"
-"help.text"
-msgid "application/vnd.sun.xml.impress"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -4971,14 +4267,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress48\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -4987,14 +4275,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress49\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.presentation"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress51\n"
"help.text"
msgid "PowerPoint 2007–2019"
@@ -5003,14 +4283,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress52\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.slideshow"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress54\n"
"help.text"
msgid "PowerPoint 2007–2019 Template"
@@ -5019,14 +4291,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress55\n"
-"help.text"
-msgid "application/vnd.openxmlformats-officedocument.presentationml.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress57\n"
"help.text"
msgid "PowerPoint 2007–2019 VBA"
@@ -5035,14 +4299,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress58\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint.presentation.macroEnabled.main+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress60\n"
"help.text"
msgid "PowerPoint 97–2000 Template"
@@ -5051,14 +4307,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress61\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress63\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5067,14 +4315,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress64\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_impress66\n"
"help.text"
msgid "PowerPoint 97–2003"
@@ -5083,14 +4323,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_impress67\n"
-"help.text"
-msgid "application/vnd.ms-powerpoint"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000draw\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for DRAW</bookmark_value>"
@@ -5115,14 +4347,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw1\n"
-"help.text"
-msgid "application/x-pagemaker"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw3\n"
"help.text"
msgid "Adobe/Macromedia Freehand"
@@ -5131,14 +4355,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw4\n"
-"help.text"
-msgid "image/x-freehand"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw6\n"
"help.text"
msgid "ClarisWorks/AppleWorks Document"
@@ -5147,14 +4363,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw7\n"
-"help.text"
-msgid "application/clarisworks"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw9\n"
"help.text"
msgid "Corel Draw"
@@ -5163,14 +4371,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw10\n"
-"help.text"
-msgid "application/vnd.corel-draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw12\n"
"help.text"
msgid "Corel Presentation Exchange"
@@ -5179,14 +4379,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw13\n"
-"help.text"
-msgid "image/x-cmx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw15\n"
"help.text"
msgid "Draw 6.0 Template"
@@ -5195,14 +4387,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw16\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw.template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw18\n"
"help.text"
msgid "Draw 8"
@@ -5211,14 +4395,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw19\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw21\n"
"help.text"
msgid "Draw 8 Template"
@@ -5227,14 +4403,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw22\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-template"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw24\n"
"help.text"
msgid "Legacy Mac Bitmap"
@@ -5291,14 +4459,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw34\n"
-"help.text"
-msgid "application/x-mspublisher"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw36\n"
"help.text"
msgid "Microsoft Visio"
@@ -5307,14 +4467,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw37\n"
-"help.text"
-msgid "application/vnd.visio"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw39\n"
"help.text"
msgid "OpenDocument Drawing (Flat XML)"
@@ -5323,14 +4475,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw40\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.graphics-flat-xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw42\n"
"help.text"
msgid "OpenOffice.org 1.0 Drawing"
@@ -5339,14 +4483,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw43\n"
-"help.text"
-msgid "application/vnd.sun.xml.draw"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw45\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5355,14 +4491,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw46\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw48\n"
"help.text"
msgid "QuarkXPress"
@@ -5387,14 +4515,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_draw52\n"
-"help.text"
-msgid "image/x-wpg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_draw54\n"
"help.text"
msgid "Zoner Callisto/Draw"
@@ -5435,14 +4555,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math1\n"
-"help.text"
-msgid "application/vnd.oasis.opendocument.formula"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math3\n"
"help.text"
msgid "MathML 2.0"
@@ -5451,14 +4563,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math4\n"
-"help.text"
-msgid "application/mathml+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math6\n"
"help.text"
msgid "MathType3.x"
@@ -5483,14 +4587,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math10\n"
-"help.text"
-msgid "application/vnd.sun.xml.math"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_math12\n"
"help.text"
msgid "PDF - Portable Document Format"
@@ -5499,14 +4595,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_math13\n"
-"help.text"
-msgid "application/pdf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000base\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for BASE</bookmark_value>"
@@ -5531,14 +4619,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_base1\n"
-"help.text"
-msgid "application/vnd.sun.xml.base"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"bm_000graphicfilter\n"
"help.text"
msgid "<bookmark_value>command line document conversion; filters for GRAPHICFILTER</bookmark_value>"
@@ -5563,14 +4643,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter1\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter3\n"
"help.text"
msgid "BMP - Windows Bitmap"
@@ -5579,14 +4651,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter4\n"
-"help.text"
-msgid "image/x-MS-bmp"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter6\n"
"help.text"
msgid "CGM - Computer Graphics Metafile"
@@ -5595,14 +4659,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter7\n"
-"help.text"
-msgid "image/cgm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter9\n"
"help.text"
msgid "DXF - AutoCAD Interchange Format"
@@ -5611,14 +4667,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter10\n"
-"help.text"
-msgid "image/vnd.dxf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter12\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5627,14 +4675,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter13\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter15\n"
"help.text"
msgid "EMF - Enhanced Meta File"
@@ -5643,14 +4683,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter16\n"
-"help.text"
-msgid "image/x-emf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter18\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5659,14 +4691,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter19\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter21\n"
"help.text"
msgid "EPS - Encapsulated PostScript"
@@ -5675,14 +4699,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter22\n"
-"help.text"
-msgid "image/x-eps"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter24\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5691,14 +4707,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter25\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter27\n"
"help.text"
msgid "GIF - Graphics Interchange"
@@ -5707,14 +4715,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter28\n"
-"help.text"
-msgid "image/gif"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter30\n"
"help.text"
msgid "HTML"
@@ -5755,14 +4755,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter37\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter39\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5771,14 +4763,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter40\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter42\n"
"help.text"
msgid "JPEG - Joint Photographic Experts Group"
@@ -5787,14 +4771,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter43\n"
-"help.text"
-msgid "image/jpeg"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter45\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5803,14 +4779,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter46\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter48\n"
"help.text"
msgid "MET - OS/2 Metafile"
@@ -5819,14 +4787,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter49\n"
-"help.text"
-msgid "image/x-met"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter51\n"
"help.text"
msgid "MOV - QuickTime File Format"
@@ -5835,14 +4795,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter52\n"
-"help.text"
-msgid "application/movie"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter54\n"
"help.text"
msgid "Macromedia Flash (SWF)"
@@ -5883,14 +4835,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter61\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter63\n"
"help.text"
msgid "PBM - Portable Bitmap"
@@ -5899,14 +4843,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter64\n"
-"help.text"
-msgid "image/x-portable-bitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter66\n"
"help.text"
msgid "PCD - Photo CD Base"
@@ -5915,14 +4851,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter67\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter69\n"
"help.text"
msgid "PCD - Photo CD Base16"
@@ -5931,14 +4859,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter70\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter72\n"
"help.text"
msgid "PCD - Photo CD Base4"
@@ -5947,14 +4867,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter73\n"
-"help.text"
-msgid "image/x-photo-cd"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter75\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5963,14 +4875,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter76\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter78\n"
"help.text"
msgid "PCT - Mac Pict"
@@ -5979,14 +4883,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter79\n"
-"help.text"
-msgid "image/x-pict"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter81\n"
"help.text"
msgid "PCX - Zsoft Paintbrush"
@@ -5995,14 +4891,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter82\n"
-"help.text"
-msgid "image/x-pcx"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter84\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6011,14 +4899,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter85\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter87\n"
"help.text"
msgid "PGM - Portable Graymap"
@@ -6027,14 +4907,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter88\n"
-"help.text"
-msgid "image/x-portable-graymap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter90\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6043,14 +4915,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter91\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter93\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6059,14 +4923,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter94\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter96\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6075,14 +4931,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter97\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter99\n"
"help.text"
msgid "PNG - Portable Network Graphic"
@@ -6091,14 +4939,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter100\n"
-"help.text"
-msgid "image/png"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter102\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6107,14 +4947,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter103\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter105\n"
"help.text"
msgid "PPM - Portable Pixelmap"
@@ -6123,14 +4955,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter106\n"
-"help.text"
-msgid "image/x-portable-pixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter108\n"
"help.text"
msgid "PSD - Adobe Photoshop"
@@ -6139,14 +4963,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter109\n"
-"help.text"
-msgid "image/vnd.adobe.photoshop"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter111\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6155,14 +4971,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter112\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter114\n"
"help.text"
msgid "RAS - Sun Raster Image"
@@ -6171,14 +4979,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter115\n"
-"help.text"
-msgid "image/x-cmu-raster"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter117\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6187,14 +4987,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter118\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter120\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6203,14 +4995,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter121\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter123\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6219,14 +5003,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter124\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter126\n"
"help.text"
msgid "SVG - Scalable Vector Graphics"
@@ -6235,14 +5011,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter127\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter129\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6251,14 +5019,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter130\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter132\n"
"help.text"
msgid "SVG - Scalable Vector Graphics Draw"
@@ -6267,14 +5027,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter133\n"
-"help.text"
-msgid "image/svg+xml"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter135\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6283,14 +5035,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter136\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter138\n"
"help.text"
msgid "SVM - StarView Meta File"
@@ -6299,14 +5043,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter139\n"
-"help.text"
-msgid "image/x-svm"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter141\n"
"help.text"
msgid "TGA - Truevision Targa"
@@ -6315,14 +5051,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter142\n"
-"help.text"
-msgid "image/x-targa"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter144\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6331,14 +5059,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter145\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter147\n"
"help.text"
msgid "TIFF - Tagged Image File Format"
@@ -6347,14 +5067,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter148\n"
-"help.text"
-msgid "image/tiff"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter150\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6363,14 +5075,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter151\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter153\n"
"help.text"
msgid "WMF - Windows Metafile"
@@ -6379,14 +5083,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter154\n"
-"help.text"
-msgid "image/x-wmf"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter156\n"
"help.text"
msgid "XBM - X Bitmap"
@@ -6395,14 +5091,6 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter157\n"
-"help.text"
-msgid "image/x-xbitmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter159\n"
"help.text"
msgid "XPM - X PixMap"
@@ -6411,27 +5099,11 @@ msgstr ""
#: convertfilters.xhp
msgctxt ""
"convertfilters.xhp\n"
-"par_graphicfilter160\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
"par_graphicfilter162\n"
"help.text"
msgid "XPM - X PixMap"
msgstr ""
-#: convertfilters.xhp
-msgctxt ""
-"convertfilters.xhp\n"
-"par_graphicfilter163\n"
-"help.text"
-msgid "image/x-xpixmap"
-msgstr ""
-
#: copy_drawfunctions.xhp
msgctxt ""
"copy_drawfunctions.xhp\n"
diff --git a/source/ru/helpcontent2/source/text/shared/optionen.po b/source/ru/helpcontent2/source/text/shared/optionen.po
index f3ff720f33f..fd169938f85 100644
--- a/source/ru/helpcontent2/source/text/shared/optionen.po
+++ b/source/ru/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: 2019-02-11 11:53+0100\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14784,182 +14784,6 @@ msgctxt ""
msgid "for more information on OpenCL, visit <link href=\"https://www.khronos.org/opencl/\">the OpenCL site</link>"
msgstr ""
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"tit\n"
-"help.text"
-msgid "Personalization"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"bm_id4077578\n"
-"help.text"
-msgid "<bookmark_value>themes;setting options</bookmark_value> <bookmark_value>setting options;themes</bookmark_value> <bookmark_value>personalization;Mozilla Firefox Themes</bookmark_value> <bookmark_value>personas;personalization</bookmark_value> <bookmark_value>personalization;personas</bookmark_value> <bookmark_value>Mozilla Firefox Themes;personalization</bookmark_value>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "<link href=\"text/shared/optionen/persona_firefox.xhp\">Personalization</link>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_idN10568\n"
-"help.text"
-msgid "You can customize %PRODUCTNAME with the same themes available for Mozilla Firefox. The menu bar and the toolbars docked in the top and bottom of the window will display the chosen theme in the background."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361016\n"
-"help.text"
-msgid "Mozilla Firefox themes are available at the Mozilla website at the following address: <link href=\"https://addons.mozilla.org/en-US/firefox/themes/\">https://addons.mozilla.org/en-US/firefox/themes/</link>."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361064\n"
-"help.text"
-msgid "Any Firefox-compliant theme will work with %PRODUCTNAME. However, not every theme will give good visual results—if the image is too busy, it could interfere with the readability of the icons and the menus."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361022\n"
-"help.text"
-msgid "Firefox Themes:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361076\n"
-"help.text"
-msgid "The following options are available:"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361042\n"
-"help.text"
-msgid "Default look, do not use themes"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136107\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/no_persona\">The toolbars’ background inherits the background settings of your desktop environment.</ahelp> This is the default setting in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361088\n"
-"help.text"
-msgid "Preinstalled theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361194\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/default_persona\">Choose this option to use one of the preinstalled themes.</ahelp> In addition to the default options, your system administrator may have added a custom theme during the %PRODUCTNAME installation. This option will display it."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361072\n"
-"help.text"
-msgid "Own theme"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361168\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/personalization_tab/own_persona\">Choose this option to open the “Select Firefox Theme” dialog and pick your own.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361021\n"
-"help.text"
-msgid "Select Firefox Theme dialog"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361056\n"
-"help.text"
-msgid "This dialog allows you to install a specific theme or gives you a glimpse on other exciting themes from the Mozilla Firefox themes website."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361084\n"
-"help.text"
-msgid "Search"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361068\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/search_term\">Provide a search term to look for themes from Mozilla’s add-ons site, or paste in a theme address to retrieve a specific theme directly.</ahelp> To get the address, use your browser to navigate to the theme’s web page and copy the URL displayed in the address bar. Then, paste it in the dialog’s search box. Click <item type=\"menuitem\">Search</item> or press <item type=\"keycode\">Enter</item> to download and install it in %PRODUCTNAME."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"hd_id1309201511361099\n"
-"help.text"
-msgid "Exploring themes by category"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361087\n"
-"help.text"
-msgid "<ahelp hid=\"cui/ui/select_persona_dialog/frame4\">Shows a random choice of nine themes based on the categories displayed in the buttons.</ahelp>"
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id130920151136105\n"
-"help.text"
-msgid "Click one of the five buttons to display in the image area below a random choice of nine themes corresponding to the category indicated in the button."
-msgstr ""
-
-#: persona_firefox.xhp
-msgctxt ""
-"persona_firefox.xhp\n"
-"par_id1309201511361079\n"
-"help.text"
-msgid "To select one of the displayed themes, click on its image and press <item type=\"menuitem\">OK</item>."
-msgstr ""
-
#: securityoptionsdialog.xhp
msgctxt ""
"securityoptionsdialog.xhp\n"
diff --git a/source/ru/helpcontent2/source/text/simpress/01.po b/source/ru/helpcontent2/source/text/simpress/01.po
index a60d570d8f4..c33a2f40441 100644
--- a/source/ru/helpcontent2/source/text/simpress/01.po
+++ b/source/ru/helpcontent2/source/text/simpress/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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-09-03 13:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8181,7 +8181,7 @@ msgctxt ""
"new_slide.xhp\n"
"par_id3146119\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\"><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Inserts a slide after the currently selected slide.</caseinline><defaultinline>Inserts a slide after the currently selected slide.</defaultinline></switchinline></ahelp></variable>"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:InsertPage\">Inserts a slide after the currently selected slide.</ahelp></variable>"
msgstr ""
#: remoteconnections.xhp
diff --git a/source/ru/helpcontent2/source/text/swriter/guide.po b/source/ru/helpcontent2/source/text/swriter/guide.po
index ff82b470e3c..09a2dcaba38 100644
--- a/source/ru/helpcontent2/source/text/swriter/guide.po
+++ b/source/ru/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-24 18:26+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 14:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -229,15 +229,15 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151206\n"
"help.text"
-msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\"><alt id=\"alt_id5211883\">Icon</alt></image> to open the <emph>Navigator</emph>."
-msgstr "На панели <emph>Стандартная</emph> щёлкните значок <emph>Навигатор</emph> <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id5211883\">Значок</alt></image> для открытия окна <emph>Навигатор</emph>."
+msgid "On the <emph>Standard Bar</emph>, click the <emph>Navigator</emph> icon <image id=\"img_id5211883\" src=\"cmd/sc_navigator.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5211883\">Icon navigator</alt></image> to open the <emph>Navigator</emph>."
+msgstr ""
#: arrange_chapters.xhp
msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151238\n"
"help.text"
-msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
+msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3156338\">Icon content view</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -261,7 +261,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3155139\n"
"help.text"
-msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
+msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_idN1081C\n"
"help.text"
-msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
+msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id5564488\">Icon promote level</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
msgstr ""
#: arrange_chapters.xhp
@@ -309,7 +309,7 @@ msgctxt ""
"arrange_chapters.xhp\n"
"par_id3151352\n"
"help.text"
-msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
+msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3151310\">Icon heading levels</alt></image>, and then select a number from the list."
msgstr ""
#: auto_numbering.xhp
diff --git a/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po
index 5b91d6ead60..572e80f8124 100644
--- a/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ru/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ 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: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-02 09:09+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.org>\n"
@@ -23400,6 +23400,15 @@ msgctxt ""
msgid "More Fields"
msgstr "Ещё поля"
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25689,6 +25698,15 @@ msgstr "Вкладки"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25707,6 +25725,15 @@ msgstr "Лента групповая"
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/ru/sc/messages.po b/source/ru/sc/messages.po
index 25f52b6a1e8..7b62bbfabfc 100644
--- a/source/ru/sc/messages.po
+++ b/source/ru/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-02 09:09+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15221,6 +15221,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(монопольный доступ)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15774,12 +15779,12 @@ msgstr "Управление условным форматированием"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16997,81 +17002,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Форма данных"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Закрыть"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Добавить запись"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "Создать"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Удал_ить"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Восстановить"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Предыдущая запись"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Следующая запись"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Закрыть"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr "Потоки данных"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "Адрес:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Введите URL исходного документа в локальной файловой системе или Интернете."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Обзор..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Диапазон базы данных:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr "Источник данных:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr "Строка поиска:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr "Исходный поток"
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18787,32 +18752,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "Результат в:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Данные"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Столбцы"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Строки"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Группировать"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Интервал:"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Параметры"
@@ -18952,167 +18922,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Справка"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr "~Файл"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr "Задайте обрамление выбранных ячеек."
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr "Увеличить отступ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr "Уменьшить отступ"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Главное"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr "~Главное"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Поле"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вставка"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вставка"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr "Разметка"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr "Разметка"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr "Статистика"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr "Да_нные"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr "Да~нные"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Проверка"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Проверка"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Вид"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Вид"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисунок"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисунок"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr "Объект"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr "Объект"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Медиа"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Медиа"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Печать"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Печать"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Форма"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Форма"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Сервис"
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr "Сервис"
@@ -21593,17 +21565,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr "Результаты поиска"
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr "Лист"
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr "Ячейка"
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr "Содержимое"
@@ -23473,107 +23455,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr "Символы структуры"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Окно"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Линии сетки:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "Цвет:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Показать"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "Показать на цветных ячейках"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Скрыть"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Разрывы страниц"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Линии при перемещении"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "Зрительные ориентиры"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr "Объекты/Изображения:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Диаграммы:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Рисунки:"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Показать"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Скрыть"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Показать"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Скрыть"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Показать"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Скрыть"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Объекты"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr "Синхронизировать листы"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Масштаб"
diff --git a/source/ru/scp2/source/ooo.po b/source/ru/scp2/source/ooo.po
index 0f8352239c8..a7803ef9a82 100644
--- a/source/ru/scp2/source/ooo.po
+++ b/source/ru/scp2/source/ooo.po
@@ -3,7 +3,7 @@ msgid ""
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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2019-04-09 17:12+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: Russian <l10n@ru.libreoffice.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-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1554829965.000000\n"
@@ -36,6 +36,14 @@ msgstr "Открыть документ"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/ru/scp2/source/winexplorerext.po b/source/ru/scp2/source/winexplorerext.po
index b19b4f2685c..8dc98a5edf6 100644
--- a/source/ru/scp2/source/winexplorerext.po
+++ b/source/ru/scp2/source/winexplorerext.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 01:49+0200\n"
-"Last-Translator: Helen <helenrussian@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-24 00:29+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ru\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369355371.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -28,5 +29,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Позволяет Microsoft Windows Explorer показывать информацию о документах %PRODUCTNAME как в эскизах."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/ru/sd/messages.po b/source/ru/sd/messages.po
index dc96ee6c178..07ce0d721e7 100644
--- a/source/ru/sd/messages.po
+++ b/source/ru/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-02 09:10+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,6 +2583,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr "Щелчок для перехода по ссылке: "
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3038,164 +3043,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "Имя для дизайна в HTML"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr "_Файл"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Справка"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr "~Файл"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Главное"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Главное"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Поле"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вставка"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вставка"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
-msgstr "Страница"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
-msgstr "Страница"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Проверка"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Проверка"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Вид"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Вид"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr "Текст"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr "Текст"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Таблица"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr "Таблица"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Преобразование"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисунок"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисунок"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Объект"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Объект"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Медиа"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Медиа"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Форма"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Форма"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Сервис"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Сервис"
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4583,160 +4773,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "Показать фигуры"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr "_Файл"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Справка"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr "~Файл"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Главное"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Главное"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr "Поле"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вставка"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вставка"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
-msgstr "Слайд"
+msgid "_Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
-msgstr "Слайд"
+msgid "~Layout"
+msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr "Демонстрация"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr "Демонстрация"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Проверка"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Проверка"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Вид"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr "~Вид"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Таблица"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr "Таблица"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr "Преобразование"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисунок"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисунок"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Объект"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Объект"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Медиа"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr "Медиа"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Форма"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Форма"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Сервис"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr "Сервис"
diff --git a/source/ru/sfx2/messages.po b/source/ru/sfx2/messages.po
index 4d399bd254d..d7f50f9e529 100644
--- a/source/ru/sfx2/messages.po
+++ b/source/ru/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-04-09 17:12+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@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: 1554829928.000000\n"
#: include/sfx2/strings.hrc:25
@@ -919,11 +919,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr " Г: %1 М: %2 Д: %3 Ч: %4 М: %5 С: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "Удалить свойство"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
@@ -932,27 +927,27 @@ msgstr ""
"Введённое значение не соответствует типу\n"
"и будет сохранено как текст."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Стиль уже существует. Переписать?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "~Восстановить"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Это имя уже используется."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Стиль не существует."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
@@ -961,7 +956,7 @@ msgstr ""
"Невозможно взять этот стиль за основу, \n"
"поскольку возникнет рекурсия."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -970,7 +965,7 @@ msgstr ""
"Это имя уже присвоено встроенному стилю.\n"
"Выберите другое имя."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,92 +976,92 @@ msgstr ""
"Если их удалить, текст возвратится к родительскому стилю.\n"
"Удалить эти стили?\n"
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Используемые стили:"
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Навигатор"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Ошибка подтверждения пароля"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Отправить"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Шрифт"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr "Просмотр стилей"
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Смотреть комментарий к версии"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr "(имя не задано)"
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Список стилей"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "По иерархии"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Стилевая заливка"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Создать стиль по выделению"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr "Действия со стилями"
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Обновить стиль"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Вы действительно хотите прервать запись? Все ранее записанные шаги будут утеряны."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Отменить запись"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Перед первым использованием выполняется инициализация шаблонов."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1075,7 +1070,7 @@ msgstr ""
"Не обнаружен принтер по умолчанию.\n"
"Выберите принтер и попробуйте ещё раз."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1084,17 +1079,17 @@ msgstr ""
"Невозможно запустить принтер.\n"
"Проверьте конфигурацию принтера."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Принтер занят"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (только для чтения)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1105,7 +1100,7 @@ msgstr ""
"Сохранить эти изменения\n"
"в активном документе?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1116,7 +1111,7 @@ msgstr ""
"Сохранить эти изменения\n"
"в активном документе?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1127,7 +1122,7 @@ msgstr ""
"Сохранить эти изменения\n"
"в активном документе?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
@@ -1136,7 +1131,7 @@ msgstr ""
"Невозможно закрыть этот документ,\n"
"поскольку выполняется задание печати."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1146,7 +1141,7 @@ msgstr ""
"Проверьте настройки %PRODUCTNAME и программы электронной почты."
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,17 +1152,17 @@ msgstr ""
"\n"
"Код ошибки: $1"
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr "Ошибка отправки сообщения"
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Невозможно редактировать документ, вероятно, из-за отсутствия прав. Редактировать копию документа?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1178,349 +1173,359 @@ msgstr ""
"\n"
"Можно попытаться открыть файл для редактирования, проигнорировав блокировку."
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr "Открыть ~копию"
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr "~Открыть"
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (документ восстановлен)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr "Этот документ не заблокирован на сервере."
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr "Помогите нам сделать %PRODUCTNAME еще лучше!"
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr "Присоединяйтесь"
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
-msgstr "Ваши пожертвования поддерживают наше сообщество по всему миру."
+msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
-msgstr "Сделать пожертвование"
+msgstr ""
+
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr "Этот документ открыт только для чтения."
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr "Этот PDF открыт в режиме только для чтения для возможности его подписания."
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr "Метка классификации этого документа %1."
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr "Перед вставкой из буфера обмена документ должен быть классифицирован."
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr "Уровень классификации документа ниже, чем у буфера обмена."
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr "Уровень"
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr "Нацбезопасность:"
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Экспортные ограничения:"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr "Блокировать"
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Редактировать документ"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Подписать документ"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr "Подпись документа недействительна."
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr "Подпись была верна, но документ изменён."
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr "Подпись верна, но невозможно проверить сертификат."
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr "Подпись верна, но подписаны фрагменты документа."
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr "Сертификат не может быть проверен, документ подписан только частично."
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr "Документ подписан, цифровая подпись верна."
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr "Показать подписи"
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr "Закрыть панель"
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "Пристыковать"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "Отстыковать"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Дополнительные параметры"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Закрыть боковую панель"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr "Настройки боковой панели"
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Настройка"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Восстановить умолчания"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr "Закрыть боковую панель"
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr "Ализарин"
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Улей"
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Синяя кривая"
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Чертёж"
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr "Ярко синий"
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr "Классный красный"
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Фокус"
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Лесная птица"
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr "Оттиск"
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Вдохновение"
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Огни"
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr "Сочный зелёный"
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Урбанистический"
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Полуночно-синий"
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Природа"
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Карандаш"
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Рояль"
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Портфолио"
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Прогресс"
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Закат"
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Старомодный"
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Простая графика"
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Резюме"
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Заключение"
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Базовый"
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Современный"
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Современное деловое письмо, шрифт без засечек"
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Современное деловое письмо, шрифт с засечками"
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Визитные карточки с логотипом"
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Убрать"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Очистить всё"
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Длина пароля"
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr "Введенный пароль вызовет проблемы совместимости. Введите пароль, который короче 52 байт либо длиннее 55 байт."
@@ -1865,32 +1870,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Комментарий к версии:"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Имя"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Тип"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Значение"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Тип"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Да"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "Нет"
@@ -1900,17 +1890,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr "Добавить свойство"
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Введите имя объекта"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Тип"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Значение"
@@ -2040,17 +2030,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Располо_жение:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Т_ип:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Изменить парол_ь"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Шаблон:"
@@ -2060,27 +2050,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Свойства «%1»"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Общие "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Описание"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Свойства пользователя"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr "Параметры CMIS"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Безопасность"
@@ -2303,6 +2293,26 @@ msgstr ""
"\n"
"Этот продукт был создан %OOOVENDOR на основе OpenOffice.org, Copyright 2000, 2011 Oracle и/или её аффилированные лица. %OOOVENDOR признателен всем участникам сообщества, подробности смотрите по адресу http://www.libreoffice.org/ ."
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/ru/shell/messages.po b/source/ru/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/ru/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/ru/starmath/messages.po b/source/ru/starmath/messages.po
index beeb20f7f7f..3c5ac479dbc 100644
--- a/source/ru/starmath/messages.po
+++ b/source/ru/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1652,261 +1652,286 @@ msgid "Examples"
msgstr "Примеры"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Обычный"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Курсив"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Жирный"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "чёрный"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "синий"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "зелёный"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "красный"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "голубой"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "пурпурный"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr "серый"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr "лаймовый"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr "бордовый"
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr "тёмно-синий"
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr "оливковый"
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "фиолетовый"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr "серебряный"
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr "сине-зелёный"
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "жёлтый"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr "невидимый"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "кегль"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr "гарнитура"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "слева"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "по центру"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "справа"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Команды"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Формула"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Сохранение документа..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Формула %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ОШИБКА : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Неожиданный символ"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr "Неожиданный токен"
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "Ожидается «{»"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "Ожидается «}»"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "Ожидается «(»"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "Ожидается «)»"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr "Символы слева и справа не соответствуют"
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr "Ожидается «fixed», «sans» или «serif»"
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr "Неожиданный токен после «size»"
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr "Двойное выравнивание не разрешено"
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr "Двойные индексы не разрешены"
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "Ожидается «#»"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Требуется цвет"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "Ожидается «Вправо»"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME %s"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Содержимое"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Заглавие"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Текст формулы"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Обрамление"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Размер"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Исходный размер"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "По размеру страницы"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr "Масштаб"
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "Элементы"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/ru/svtools/messages.po b/source/ru/svtools/messages.po
index aa251c3462f..d33fa12f7e0 100644
--- a/source/ru/svtools/messages.po
+++ b/source/ru/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-01 18:26+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,1518 +16,1520 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1556735166.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Отменить: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Вернуть: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Повторить: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Только текст"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr "Неформатированный текст (TSV-Calc)"
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr "Растровое изображение (BMP)"
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr "Метафайл интерфейса графических устройств (GDI)"
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr "Текст с форматированием (RTF)"
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr "Текст с форматированием (Richtext)"
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr "Рисунок %PRODUCTNAME"
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr "Растр/анимация StarView (SVXB)"
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Информация о состоянии внутренней связи Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr "Связь %PRODUCTNAME (SOLK)"
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Закладка Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Формат сервера Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Формат объекта Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Объект апплета"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Объект подключаемого модуля"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Объект StarWriter 3.0"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Объект StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Объект StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Объект StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Объект StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Объект StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Объект StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Объект StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Объект StarDraw 4.0"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Объект StarImpress 5.0"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Объект StarDraw 5.0"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Объект StarCalc"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Объект StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Объект StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Объект StarChart"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Объект StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Объект StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Объект StarImage"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Объект StarImage 4.0"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "Объект StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Объект StarMath"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Объект StarMath 4.0"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Объект StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Объект StarObject Paint"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr "Язык разметки гипертекста (HTML)"
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr "Урезанный язык разметки гипертекста (Simple HTML)"
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr "Формат двоичного обмена Microsoft Excel 5.0/95 (Biff5)"
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr "Формат двоичного обмена Microsoft Excel 97/2000/XP/2003 (Biff8)"
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr "Динамический обмен данными (DDE-связь)"
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr "Формат обмена данными (DIF)"
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Объект Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Объект StarFrameSet"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Объект документа Office"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Информация примечаний"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Документ Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Объект StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Графический объект"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr "Объект OpenOffice.org 1.0 Writer"
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr "Объект OpenOffice.org 1.0 Writer/Web"
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr "Объект OpenOffice.org 1.0 Writer/Составной документ"
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr "Объект OpenOffice.org 1.0 Draw"
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr "Объект OpenOffice.org 1.0 Impress"
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr "Объект OpenOffice.org 1.0 Calc"
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr "Объект OpenOffice.org 1.0 Chart"
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr "Объект OpenOffice.org 1.0 Math"
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Метафайл Windows"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Объект исходных данных"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Таблица исходных данных"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL запрос"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr "Диалог OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Связь"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Формат HTML без комментариев"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr "Portable Network Graphic (PNG)"
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Невозможно вставить объект %."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Невозможно вставить объект из файла %."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Дополнительные объекты"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Неизвестный источник"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Имя"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Размер"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Дата изменения"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Тип"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "байт"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "Кб"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "Мб"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "Гб"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Строка: %1, Столбец: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", Тип: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Каталог"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Файл"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Пустое поле"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Алфавитно-цифровой"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Нормальный"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Кодировка"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Словарь"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Пиньинь"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Штрихи"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Радикал"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Юникод"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Чжуинь"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Телефонная книга"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Фонетический (буквы и цифры в начале)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Фонетический (буквы и цифры в конце)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Алфавитно-цифровой"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Словарь"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Пиньинь"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Радикал"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Штрихи"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Чжуинь"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Фонетический (буквы и цифры в начале, группирование по слогам)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Фонетический (буквы и цифры в начале, группирование по согласным)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Фонетический (буквы и цифры в конце, группирование по слогам)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Фонетический (буквы и цифры в конце, группирование по согласным)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Сегодня"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Пусто"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Тонкий"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Тонкий курсив"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Обычный"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Курсив"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Жирный"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Жирный курсив"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Чёрный"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Чёрный курсив"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Обычный"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr "Жирный наклонный"
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Уплотнённый"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr "Уплотнённый жирный"
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr "Уплотнённый жирный курсив"
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr "Уплотнённый жирный наклонный"
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr "Уплотнённый курсив"
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr "Уплотнённый наклонный"
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr "Сверхтонкий"
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr "Сверхтонкий курсив"
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr "Наклонный"
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "Полужирный"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr "Полужирный курсив"
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Для печати и вывода на экран будет использован один и тот же шрифт."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Шрифт принтера. Изображение на экране может отличаться."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Будет создан такой стиль шрифта или будет использован наиболее похожий."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Этот шрифт не установлен. Будет использован наиболее похожий."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Обзор..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Переместить в начало"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Перейти влево"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Перейти вправо"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Переместить в конец"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Добавить"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Горизонтальная линейка"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Вертикальная линейка"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 бит, порог"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 бит, сглаживание"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 бита, оттенки серого"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr "4 бита, цвет"
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 бит, оттенки серого"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr "8 бит, цвет"
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 бита, цвет"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr "Изображению требуется около %1 КБ памяти."
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr "Изображению требуется около %1 КБ памяти, размер файла %2 КБ."
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr "Размер файла %1 KB."
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Узел"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Порт"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr "Другой CMIS"
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Готов"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Приостановлен"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Удаление отложено"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Занят"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Инициализация"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Ожидание"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Подготовка к старту"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Обработка"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "Печать"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Автономный режим"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Ошибка"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Неизвестный сервер"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Заедание бумаги"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Нехватка бумаги"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Ручная подача бумаги"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Проблема с бумагой"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "Активный Вход/Выход"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Выходной лоток заполнен"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Тонер на исходе"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "Нет тонера"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Удалить страницу"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "Необходимо вмешательство пользователя"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Недостаточно памяти"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Крышка лотка открыта"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Режим экономии энергии"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Принтер по умолчанию"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d документа(ов)"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "~Готово"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Дальше >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "< ~Назад"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Шаги"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<нет>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Организация"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Отдел"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Имя"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Фамилия"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Улица"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Страна"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Почт. индекс"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Город"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Звание"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Должность"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Обращение"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Инициалы"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Заключительное приветствие"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Телефон (дом.)"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Телефон (раб.)"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr "Факс"
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr "Эл. почта"
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Примечание"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Пользователь 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Пользователь 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Пользователь 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Пользователь 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "Код"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Область"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Телефон (раб.)"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Пейджер"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Мобильный"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Телефон (другой)"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Календарь"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Пригласить"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr "$user$ - $service$"
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Для выполнения данного задания %PRODUCTNAME необходимо установленное окружение Java (JRE). Установите JRE и перезапустите %PRODUCTNAME."
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr "Для выполнения данного задания %PRODUCTNAME необходимо установленное %BITNESS-битное окружение Java (JRE). Установите JRE и перезапустите %PRODUCTNAME."
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr "Для выполнения данного задания %PRODUCTNAME на macOS 10.10 необходим Java Development Kit (JDK) от Oracle. Установите его и перезапустите %PRODUCTNAME."
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Параметры %PRODUCTNAME были изменены. Выберите в %PRODUCTNAME - Параметры - %PRODUCTNAME - Расширенные возможности виртуальную машину Java для использования в %PRODUCTNAME."
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr "Параметры %PRODUCTNAME были изменены. Выберите в Сервис - Параметры - %PRODUCTNAME - Расширенные возможности виртуальную машину Java для использования в %PRODUCTNAME."
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr "Для выполнения данного задания %PRODUCTNAME необходимо установленное окружение Java (JRE). Выбранное JRE неисправно. Пожалуйста, выберите другую версию или установите новую, затем выберите её в %PRODUCTNAME - Параметры - %PRODUCTNAME - Расширенные возможности."
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr "Для выполнения данного задания %PRODUCTNAME необходимо установленное окружение Java (JRE). Выбранное JRE неисправно. Пожалуйста, выберите другую версию или установите новую, затем выберите её в Сервис - Параметры - %PRODUCTNAME - Расширенные возможности."
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "Требуется JRE"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Выбрать JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE повреждена"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Исходный код"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Файл закладок"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Изображение"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Файл конфигурации"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Приложение"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Таблица базы данных"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Системный файл"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Документ MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Файл справки"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Документ HTML"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Файл архива"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Журнал"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "База данных StarOffice"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Составной текстовый документ StarWriter 4.0 / 5.0"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Изображение StarOffice"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Текстовый файл"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Связь"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Шаблон StarOffice 3.0 - 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Документ MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Шаблон MS Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Пакетный файл"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Файл"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Папка"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Текстовый документ"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Электронная таблица"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Презентация"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Рисунок"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Документ HTML"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Составной документ"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Формула"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "База данных"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr "Шаблон электронной таблицы OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr "Шаблон рисунка OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr "Шаблон презентации OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr "Шаблон текстового документа OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Локальный дисковод"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Дисковод"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Привод для компакт-дисков"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Сетевое подключение"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Документ MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Шаблон MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Демонстрация MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr "Формула OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr "Диаграмма OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr "Рисунок OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr "Электронная таблица OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr "Презентация OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr "Текстовый документ OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr "Составной документ OpenOffice.org 1.0"
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Документ MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "База данных OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Рисунок OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Формула OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Составной документ OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Презентация OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Электронная таблица OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Текстовый документ OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Шаблон электронной таблицы OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Шаблон рисунка OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Шаблон презентации OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Шаблон текстового документа OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Расширение %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr "Проверка орфографии Hunspell"
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr "Переносы Libhyphen"
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr "Словарь синонимов MyThes"
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr "Список игнорируемых слов"
diff --git a/source/ru/svx/messages.po b/source/ru/svx/messages.po
index 41851fc0983..b436439b858 100644
--- a/source/ru/svx/messages.po
+++ b/source/ru/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2019-05-02 15:14+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7920,6 +7920,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr "Слева-направо (вертикально)"
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12187,82 +12192,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr "Укажите смещение в процентах по вертикали от центра для градиентной тени. 50% - это центр вертикали."
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Редактор контура"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Применить"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Рабочая область"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Выбрать"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Прямоугольник"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Эллипс"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Многоугольник"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Изменение геометрии"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Переместить узлы"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Вставить узлы"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Удалить узлы"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Автоконтур"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Отменить "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Вернуть"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr "Пипетка"
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr "Цветовой допуск"
@@ -12573,112 +12583,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Нижний колонтитул"
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Редактор сенсорного изображения"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Применить"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Открыть..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Сохранить..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Закрыть"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Выбрать"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Прямоугольник"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Эллипс"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Многоугольник"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Рисованный многоугольник"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Изменение геометрии"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Переместить узлы"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Вставить узлы"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Удалить узлы"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Отменить "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Вернуть"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Активный"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Макрос..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Свойства..."
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Адрес:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Фрейм:"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr "Текст:"
diff --git a/source/ru/sw/messages.po b/source/ru/sw/messages.po
index 40681d27b17..2c46d6e2b8d 100644
--- a/source/ru/sw/messages.po
+++ b/source/ru/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2019-05-02 07:21+0000\n"
"Last-Translator: bormant <bormant@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3124,9 +3124,9 @@ msgid "Change object title of $1"
msgstr "Изменить заголовок объекта $1"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "Изменить описание объекта $1"
+msgstr ""
#: sw/inc/strings.hrc:545
msgctxt "STR_UNDO_TBLSTYLE_CREATE"
@@ -12016,147 +12016,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr "_Справка"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr "~Файл"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr "_Главное"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr "~Главное"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr "Вставка"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr "Вставка"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr "Разметка"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr "Разметка"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Ссылки"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr "Ссылки"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr "_Проверка"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr "~Проверка"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr "_Вид"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr "~Вид"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr "Таблица"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr "Таблица"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr "Изображение"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr "Изображение"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr "Рисунок"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr "Рисунок"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr "Объект"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr "Объект"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr "Медиа"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr "Медиа"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr "Печать"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr "Печать"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr "Форма"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr "Форма"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr "Сервис"
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr "Сервис"
@@ -12166,152 +12166,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr "_Файл"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr "_Главное"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr "Вставка"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr "Обтекание"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr "Разметка"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr "Ссылки"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr "_Проверка"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr "_Вид"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr "Таблица"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr "Изображение"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr "Рисунок"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr "Объект"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr "Медиа"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr "Печать"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr "Сервис"
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13378,8 +13378,8 @@ msgstr "Увеличить расстояние между словами для
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
-msgstr "Защита формы"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
@@ -16659,47 +16659,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr "Оглавление, указатель или библиография"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Просмотр"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Просмотр"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Тип"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Элементы"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Стили"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Колонки"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Фон"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Просмотр"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "Уровень"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr "Тип"
@@ -16929,302 +16929,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Пр_авка..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "_Заглавие:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Тип:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Оглавление"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "Алфавитный указатель"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr "Список иллюстраций"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "Список таблиц"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Пользовательский"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "Список объектов"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Библиография"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "Защищено от изменений вручную"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "Вид и заглавие"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Для:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Всего документа"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Главы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "Включать до уровня:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr "Создать оглавление или указатель"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Структуру"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr "Указатель"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Таблицы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Врезки"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Изображения"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Объекты OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "Уровень из исходной главы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Дополнительные стили"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Стили"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "Применить стили..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Названия"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Имена объектов"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Категория:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Показывать:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Ссылки"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Категория и номер"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Текст названия"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "Создать из"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "Создать из следующих объектов"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Скобки:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr "Пронумеровать элементы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Без]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr "[]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr "()"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr "{}"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr "<>"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "Форматирование элементов"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "Объединять одинаковые элементы"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr "Объединить одинаковые элементы с p или pp"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "Объединять, используя «-»"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Учитывать регистр"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "Прописными буквами (авто)"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "Ключ как отдельный элемент"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr "Файл соответствия"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "_Файл"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Параметры"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Язык:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Тип ключа:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Сортировка"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "Уровни"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "Стили абзаца"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "По умолчанию"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Правка"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "Назначение"
diff --git a/source/rw/cui/messages.po b/source/rw/cui/messages.po
index d944f641367..be4b39e1ae9 100644
--- a/source/rw/cui/messages.po
+++ b/source/rw/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1663,107 +1663,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "Nta Gicucu"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1806,7 +1801,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1926,7 +1921,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2166,7 +2161,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2421,12 +2416,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2496,7 +2491,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2576,7 +2571,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2817,7 +2812,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3437,68 +3432,73 @@ msgid "About %PRODUCTNAME"
msgstr "Ibijyanye no %PRODUCTNAME"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "Urubugamakuru rwanjye"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME API"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3622,19 +3622,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "Gusimbura"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "Gusimbura"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "Ubugari"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4494,6 +4494,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
#, fuzzy
msgctxt "calloutdialog|CalloutDialog"
@@ -5664,29 +5824,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "Indangakintu"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "Ikadiri:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "Izina"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9422,86 +9582,86 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "Ifashayobora"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
#, fuzzy
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "Ibiganiro %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
#, fuzzy
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Ibiganiro %PRODUCTNAME"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Izina\\Imimerere y'Inyandiko"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
#, fuzzy
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "na"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Gutangiza %PRODUCTNAME igihe sisitemu yifungura"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Guhagarika systray Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11463,24 +11623,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12146,102 +12291,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
#, fuzzy
msgctxt "selectpathdialog|SelectPathDialog"
@@ -13311,27 +13360,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/rw/extensions/messages.po b/source/rw/extensions/messages.po
index a44b523ee41..7ce4d652ba0 100644
--- a/source/rw/extensions/messages.po
+++ b/source/rw/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3238,191 +3238,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "Imigaragarire y'inkingi y'imbonerahamwe %1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "Izina rigufi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "Umwa(Aba)nditsi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "Uwagitangaje"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "Umutwe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "Muhinduzi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "Ubwoko"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "Umwaka"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "Umutwe"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "Aderesi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "Paji"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "Ihindura"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "Umutwe w'igitabo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "Igice"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "Ubwoko bw'itangaza"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "Ihuzagahunda"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "Ikigo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "Kaminuza"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "Ubwoko bw'icyegeranyo"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "Ukwezi"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "Ikinyamakuru"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "Umubare"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "Ibyiciro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "Inyandiko nyongera"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "Igisobanuro"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "Ukoresha-usobanuwe umwanya 1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "Ukoresha-usobanuwe umwanya 2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "Ukoresha-usobanuwe umwanya 3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "Ukoresha-usobanuwe umwanya 4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "Ukoresha-usobanuwe umwanya 5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3604,31 +3604,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "Guhuza imyanya "
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "Gutanga ibyifuzo"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "Amafishiyungirije ashobora gukoreshwa mu kwerekana ibyatanzwe mu buryo burambuye bijyanye n'icyabitswe kigezweho cy'ifishi ngenga. Gukora ibi, ushobora kwerekana izihe nkingi mu ifishiyungirije zihura n'izihe nkingi mu ifishi ngenga."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "Akarango"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po b/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po
index 6384cb0ab5f..ca7b84ef25c 100644
--- a/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/rw/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23733,6 +23733,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26097,6 +26106,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26115,6 +26133,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/rw/sc/messages.po b/source/rw/sc/messages.po
index e0838ec0c39..24313dc2edd 100644
--- a/source/rw/sc/messages.po
+++ b/source/rw/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15638,6 +15638,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16208,12 +16213,12 @@ msgstr "Imiterere ifite ibisabwa"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17496,90 +17501,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "Gufunga"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "Icyabitswe Gishya"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "Gishya"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "Gusiba"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "Kugarura"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "Icyabitswe Kibanza"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Icyabitswe Gikurikira"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "Gufunga"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "Gushakisha..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "Ibice by'ububikoshingiro"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19378,35 +19340,40 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Ibyatanzwe"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "Inkingi"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
#, fuzzy
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "Urubariro"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "Bishyizwe mu itsina na: "
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "Intera"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
#, fuzzy
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
@@ -19553,167 +19520,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22334,17 +22303,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24319,111 +24298,116 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
#, fuzzy
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "Idirishya"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "Garagaza"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "Gushisha"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Itaruka rya paji"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Ibishushanyo"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "Ibyifashishwa mu gushushanya"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "Garagaza"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "Gushisha"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "Garagaza"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "Gushisha"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "Garagaza"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "Gushisha"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "Ibintu"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "Ihindurangano"
diff --git a/source/rw/scp2/source/ooo.po b/source/rw/scp2/source/ooo.po
index d1519174cbb..81076cfeb47 100644
--- a/source/rw/scp2/source/ooo.po
+++ b/source/rw/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "Gufungura Inyandiko"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/rw/scp2/source/winexplorerext.po b/source/rw/scp2/source/winexplorerext.po
index 4681f506073..a7766b55b80 100644
--- a/source/rw/scp2/source/winexplorerext.po
+++ b/source/rw/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 14:27+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2013-05-23 22:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: rw\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1369349444.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Gufungura Microsoft Windows Explorer kugira ngo ugaragaze amakuru yerekeye inyandiko zo muri %PRODUCTNAME, nk'amagaragazambere yoroheje."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/rw/sd/messages.po b/source/rw/sd/messages.po
index 37de080e5ed..37f72ab0180 100644
--- a/source/rw/sd/messages.po
+++ b/source/rw/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2647,6 +2647,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3131,164 +3136,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4774,160 +4964,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/rw/sfx2/messages.po b/source/rw/sfx2/messages.po
index aec8f55b768..6ac2146ecef 100644
--- a/source/rw/sfx2/messages.po
+++ b/source/rw/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -904,39 +904,34 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
#, fuzzy
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "Dosiye isanzweho. Kuyihindura?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "Kugarura"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "Iri zina ryamaze gukoreshwa"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "Iyi Misusire ntibaho"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -946,7 +941,7 @@ msgstr ""
"Iyi Misusire ntiyakoreshwa nk'Imisusire fatizo,\n"
"kubera ko bishobora gutanga indango yisubira."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -955,7 +950,7 @@ msgstr ""
"Iri zina risanzwemo nk'Imisusire misanzweho.\n"
"Wahitamo irindi zina."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -963,97 +958,97 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "Mutemberezi"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "Hari ikosa mu kwemeza ijambobanga"
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "Kohereza"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "Imyandikire"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "Kwinjiza ibisobanuro byerekeye uburyo"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
#, fuzzy
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr "Imisusire"
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "Birutanwa"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "Uburyo bwo Kuzuza Imitere"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "Imisusire mishya ivanywe mu Byatoranyijwe"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "Kuvugurura Imisusire"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "Ushaka mu byukuri kureka kubishyingura? Ibintu byose byari bimazegushyingurwa biratakara."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "Kureka gushyingura"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "Modeli zirimo gutangizwa kugira ngo zikoreshwe bwa mbere."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1062,7 +1057,7 @@ msgstr ""
"Nta mucapyi mbanziriza yabonetse.\n"
"Wahitamo mucapyi ukongera ukagerageza."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1071,17 +1066,17 @@ msgstr ""
"Ntibyashobotse gutangiza mucapyi.\n"
"Wagenzura iboneza rya mucapyi yawe."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "Mucapyi irahuze"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (gusoma gusa)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1092,7 +1087,7 @@ msgstr ""
"Waba wifuza kubika amagenamiterere mashya mu\n"
"nyandiko ifunguye?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1103,7 +1098,7 @@ msgstr ""
"Imiterere mishya yabikwa \n"
"mu nyandiko ifunguye?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1114,7 +1109,7 @@ msgstr ""
"Waba wifuza kubika amagenamiterere mashya mu\n"
"nyandiko ifunguye?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1124,7 +1119,7 @@ msgstr ""
"Ntibishoboka gufunga inyandiko kubera \n"
"ko icapa ririmo gukorwa."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1132,7 +1127,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1140,18 +1135,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "Ntibishoboka guhindura inyandiko, birashoboka biterwa n'ibura ry'uburenganzira bwo kuyikoresha.Waba ushaka guhindura kopi y'umwandiko?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1159,352 +1154,362 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (inyandiko yasanywe)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "Kwandika inyandiko"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Gushyira Inyandiko Mu Dosiye"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "Amahitamo y'ishungura"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Gukuraho"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1864,33 +1869,18 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "Ibisobanuro byerekeye uburyo"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "Izina"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "Ubwoko"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "Agaciro"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "Ubwoko"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
#, fuzzy
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "Yego"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
#, fuzzy
msgctxt "cmisline|no"
msgid "No"
@@ -1901,17 +1891,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "Izina"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "Ubwoko"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "Agaciro"
@@ -2052,19 +2042,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "Intaho:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "Ubwoko"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Guhindura Ijambobanga"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2075,28 +2065,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "Rusange"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "Isobanuramiterere"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
#, fuzzy
msgctxt "documentpropertiesdialog|security"
msgid "Security"
@@ -2320,6 +2310,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/rw/shell/messages.po b/source/rw/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/rw/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/rw/starmath/messages.po b/source/rw/starmath/messages.po
index d0ed8f4b5bb..935c2f0516e 100644
--- a/source/rw/starmath/messages.po
+++ b/source/rw/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1664,277 +1664,302 @@ msgid "Examples"
msgstr "Urugero"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "Bisanzwe"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "Biberamye"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "Bitsindagiye"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
#, fuzzy
msgctxt "STR_BLACK"
msgid "black"
msgstr "Umukara"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
#, fuzzy
msgctxt "STR_BLUE"
msgid "blue"
msgstr "Ubururu"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
#, fuzzy
msgctxt "STR_GREEN"
msgid "green"
msgstr "Icyatsi"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "Idoma yerurutse"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "Ikijuju"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "Igihe"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
#, fuzzy
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "Umuhondo"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "Gushisha"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "Ingano"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "Imyandikire"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "ibumoso"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
#, fuzzy
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "Hagati"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "iburyo"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "Amabwiriza"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Inzira"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "Kubika Inyandiko..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "Inzira %PRODUCTNAME %PRODUCTVERSION"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "IKOSA : "
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "Inyututi itunguranye"
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' ntigatunguranye"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' ntigatunguranye"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' ntigatunguranye"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' ntigatunguranye"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' ntigatunguranye"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "Ibara ni ngombwa"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'IBURYO'ntibitunguranye"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "Ikibanze cya %PRODUCTNAME "
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "Ibigize"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "Umutwe"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Inzira y'inyandiko"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "Impera"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "Ingano"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "Ingano y'umwimerere"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "Gukwiza kuri paji"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2007,6 +2032,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "ikigize"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
#, fuzzy
msgctxt "fontdialog|FontDialog"
diff --git a/source/rw/svtools/messages.po b/source/rw/svtools/messages.po
index 179e66eccad..433f22e912c 100644
--- a/source/rw/svtools/messages.po
+++ b/source/rw/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1537 +15,1539 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195888.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "Isubiranyuma: "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "Gusubiramo: "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "Kongera: "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "Inyandiko ntiyatunganyijwe"
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Ibisobanuro by'imiterere bitanzwe n'ihuza ry'imbere Svx"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Ikirango cya Netscape"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "Imiterere ya seriveri Star"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "Imiterere y'igikoresho Star"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Igikoresho Applet"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "Igikoresho cyo gucomeka"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "Igikoresho StarWriter 3.0 "
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "Igikoresho StarWriter 4.0"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "Igikoresho StarWriter 5.0"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "Igikoresho StarWriter/Web 4.0"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "Igikoresho StarWriter/Web 5.0"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "Igikoresho StarWriter/Master 4.0"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "Igikoresho StarWriter/Master 5.0"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "Igikoresho StarDraw"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "Igikoresho StarDraw 4.0 "
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "Igikoresho StarImpress 5.0 "
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "Igikoresho StarDraw 5.0 "
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "Igikoresho StarCalc "
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "Igikoresho StarCalc 4.0"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "Igikoresho StarCalc 5.0"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "Igikoresho StarChart "
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "Igikoresho StarChart 4.0"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "Igikoresho StarChart 5.0"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "Igikoresho StarImage "
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "Igikoresho StarImage 4.0 "
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "igikoresho StarImage 5.0"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "Igikoresho StarMath "
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "Igikoresho StarMath 4.0 "
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "Igikoresho StarMath 5.0"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "Igikoresho StarObject Paint "
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "Sylk"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Igikoresho Microsoft Word"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "Igikoresho StarFrameSet "
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Igikoresho cy'inyandiko Office "
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "Ibisobanuro by'inyandiko"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Inyandiko Sfx"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "Igikoresho StarChart 5.0"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "Igikoresho cy'ibishushanyo"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr " Windows metafile"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "Igikoresho cy'isoko y'ibyatanzwe"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "Imbonerahamwe y'isoko y'ibyatanzwe"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "Ikibazo SQL "
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "Ihuza"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "Imiterere ya HTML nta bisobanuro"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "Igikoresho % ntigishobora kongerwamo."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "Igikoresho cya dosiye % ntigishobora kongerwamo."
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "Ibindi bikoresho"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "Inkomoko ntizwi"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "Izina"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "Ingano"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "Itariki yahinduriweho"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "Ubwoko"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "Bayite"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "Urubariro:%1,Inkingi:%2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ",Ubwoko:%1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "Ububiko"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "Dosiye"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "Umwanya urimo ubusa"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Gikurikije itondenyuguti"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "Bisanzwe"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "Ishyiraho ry'inyuguti"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "Inkoranyamagambo"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyini"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "Akarongo"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "Igicumbi"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "Inikode"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zuyini"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "Igitabo cya telefoni"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "Inyandikonyejwi (Mibarenyuguti mbere)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "Inyandikonyejwi (Mibarenyuguti nyuma)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "Gikurikije itondenyuguti"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "Inkoranyamagambo"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyini"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "Igicumbi"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "Akarongo"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zuyini"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "Inyandikonyejwi (Mibarenyuguti mbere, itsinda rikurikije imigemo)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "Inyandikonyejwi (mibarenyuguti mbere, itsinda rikurikije ingombajwi)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "Inyandikonyejwi (Mibarenyuguti nyuma, itsinda rikurikije imigemo)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "Inyandikonyejwi (mibarenyuguti nyuma, itsinda rikurikije ingombajwi)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "Uyumunsi"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "Nta na kimwe"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "Cyeruruka"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "Biberamye buhoro"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "Ibisanzwe"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "Biberamye"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "Bitsindagiye"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "Bitsindagiye kandi biberamye"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "Umukara"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "Byirabura kandi biberamye"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "Igitabo"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "Biri hamwe"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "Imyandikire imwe irakoreshwa hombi ku mashini icapa no kuri mugaragaza. "
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "Iyi ni imyandikire y'imashini icapa. Ishusho ya mugaragaza ishobora kunyurana."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "Iyi misusire y'imyandikire iraza kwiganwa cyangwa hakoreshwe imisusire bijya gusa bijyanye."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "Iyi misusire ntiyateganyijwemo. Harakoreshwa imisusire irimo bijya kumera kimwe."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "Gushakisha..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "Kumanura umurongo"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "Kwerekeza Ibumoso"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "Kwerekeza Iburyo"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "Kwimura Hasi"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "Kongera"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Inyuma intambike"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "Agacamurongo gahagaze"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "Biti 1 ntarengwa"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "Biti 1 yajijinganyije"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "Ibipimokigina biti 4"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "Ibipimokigina biti 4"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "Ibara Nibyo Biti 24"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "Ikiguzi"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "Ishungura"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Guhagarara"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
#, fuzzy
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Gutangiza..."
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Tegereza"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "Ikosa"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Gusiba Paji"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Ububiko ntibuhgije"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "Mucapyi musanzweho"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "Inyandiko Word"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "Kurangiza"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "Komeza >"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "Inyuma"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "Intambwe"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<tacyo>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "Isosiyeti"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "Agashami"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "Izina ry'idini"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "Izina ry'ababyeyi"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "Umuhanda"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "Igihugu"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Inomero Z'IPOSITA"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "Umujyi"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "Umutwe"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "Ibirindiro"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "Imiterere y'aderesi"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "Izibanza"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "Umusozo"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "Telefoni: yo mu rugo"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "Telefoni: yo ku kazi"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "Igisobanuro"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "Ukoresha 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "Ukoresha 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "Ukoresha 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "Ukoresha 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "Leta"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "Telefoni: yo mu biro"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "Peja"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "Igendanwa"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "Telefone: iyindi"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "Kalindari"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "Gutumira"
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE ni ngombwa "
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "Guhitamo JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE Ntikora Neza"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "Akarangankomoko"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "Dosiye y'ibirango"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Ibishushanyo"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "Dosiye y'iboneza"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "Porogaramu"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "Imbonerahamwe y'ububikoshingiro"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "Dosiye ya sisitemu"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "Inyandiko ya MS Word"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "Dosiye fashayobora"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "Inyandiko ya HTLM"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "Dosiye y'ubushyinguro"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "Dosiye bikamikorere"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "Modeli StarOffice 5.0"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "Inyandiko Ngenga StarWriter4.0 / 5. 0."
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "Modeli StarOffice 5.0"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Dosiye y'umwandiko"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Ihuza"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "Modeli StarOffice 5.0"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "Inyandiko ya MS Excel"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "Modeli ya Ms Excel"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Dosiye y'Ibigize"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Dosiye"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Ububiko"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Inyandiko Mwandiko"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Urupapurotuzu"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Iyerekana"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Igishushanyo"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "Inyandiko ya HTLM"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Inyandikongenga"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Inzira"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Ububikoshingiro"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Iyobora rya hafi"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Iyoborabubiko"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "Iyobora rya CD-ROM"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Gucomeka ku rusobe"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "Inyandiko ya MS PowerPoint"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "Modeli ya MS PowerPoint"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "Iyerekana rya MS PowerPoint"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "Inyandiko ya MathML"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "Ububikoshingiro bwa OpenDocument"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "Igishushanyo cya OpenDocument"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "Inzira ya OpenDocument"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "Inyandiko ngenga ya OpenDocument"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "Iyerekana rya OpenDocument"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "Urupapurotuzu rwa OpenDocument"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "Umwandiko wa OpenDocument"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "Modeli y'urupapurotuzu rwa OpenDocument"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "Modeli y'ibishushanyo ya OpenDocument"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "Modeli y'iyerekana rya OpenDocument"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "Modeli mwandiko wa OpenDocument"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "Umugereka wa %PRODUCTNAME"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/rw/svx/messages.po b/source/rw/svx/messages.po
index ab01ad622e9..706eadcfdbb 100644
--- a/source/rw/svx/messages.po
+++ b/source/rw/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8060,6 +8060,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12580,88 +12585,93 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "Iyandika Muzenguruko"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "Gukurikiza"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "Umwanya-nkenerwa"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "Guhitamo"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "Urukiramende"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ishushogi"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "Ikinyampande"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
#, fuzzy
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Kwandika Utudomo"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Kwimura Utudomo"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Kongeramo Utudomo"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Gusiba Utudomo"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "Nyamwihambibi"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "Isubiranyuma "
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "Umutuku"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -12999,124 +13009,118 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "Imperampangano"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "Mwanditsi y'IkaritaShusho"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "Gukurikiza"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "Gufungura..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "Kubika..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "Gufunga"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "Guhitamo"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "Urukiramende"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "Ishushogi"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "Ikinyampande"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "Ikinyampande foromoyigenga"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
#, fuzzy
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "Kwandika Utudomo"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "Kwimura Utudomo"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "Kongeramo Utudomo"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "Gusiba Utudomo"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "Isubiranyuma "
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "Umutuku"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
#, fuzzy
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "Gikora"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "Makoro..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "Ibiranga: "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "Aderesi:"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "Ikadiri"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/rw/sw/messages.po b/source/rw/sw/messages.po
index cab021a4ed2..4c3f7b6f5d1 100644
--- a/source/rw/sw/messages.po
+++ b/source/rw/sw/messages.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: 2019-05-12 17:47+0200\n"
-"PO-Revision-Date: 2019-05-13 15:28+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
+"PO-Revision-Date: 2019-05-31 18:44+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: rw\n"
@@ -3219,7 +3219,7 @@ msgid "Change object title of $1"
msgstr "Guhindura ikurikirana ry'igikoresho cya %O"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12693,147 +12693,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12843,152 +12843,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14098,7 +14098,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17614,50 +17614,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "Igaragazambere"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "Igaragazambere"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr "Ubwoko"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
#, fuzzy
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "Ibyinjijwe"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
#, fuzzy
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "Imisusire"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "Inkingi"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "Mbuganyuma"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "Igaragazambere"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "urwego"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17901,324 +17901,324 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "Kwandika..."
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "Umutwe:"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "Ubwoko"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "Ibiri mu mbonerahamwe"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "Bigenewe ukoresha"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
#, fuzzy
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "Irangabitabo 1"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "Ifishi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
#, fuzzy
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "Inyandiko yose"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "Umutwe"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "Imbata"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "Imbonerahamwe"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "Imiterere y'ikadiri"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "Ibishushanyo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "Ibikoresho OLE"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "Imisusire igira ibyo isaba"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "Imisusire"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
#, fuzzy
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "Amahitamo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
#, fuzzy
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "Izina ry'igikoresho"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "Icyiciro"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "Kugaragaza"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "Indango"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "Urwego n'inomero"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "Amagambo y'umutwe"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "Udusodeko"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
#, fuzzy
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[Ntacyo]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "Dosiye"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "Amahitamo"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "Ururimi"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "Ubwoko bw'agakandisho"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "Ishungura"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "urwego"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "( Imisusire y'igika: "
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "Gisanzweho"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "Kwandika"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
#, fuzzy
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
diff --git a/source/sa-IN/cui/messages.po b/source/sa-IN/cui/messages.po
index 6dd54ca8ca1..8afea3f246a 100644
--- a/source/sa-IN/cui/messages.po
+++ b/source/sa-IN/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1684,107 +1684,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "छाया न"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1827,7 +1822,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1947,7 +1942,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2187,7 +2182,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2442,12 +2437,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2517,7 +2512,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2597,7 +2592,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2838,7 +2833,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3471,68 +3466,73 @@ msgid "About %PRODUCTNAME"
msgstr " %PRODUCTNAME विषये"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
#, fuzzy
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "मम जालस्थानम्"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
#, fuzzy
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3657,19 +3657,19 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "प्रतिस्थापय"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "प्रतिस्थापय"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
#, fuzzy
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "परिणाहः"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4553,6 +4553,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "न्यूनतमशब्ददैर्घ्यम्"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5724,29 +5884,29 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "गुणजातानि"
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "आबन्धः :"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "नाम"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9528,85 +9688,85 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "सहाय्यम्"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "लेख्यपत्रनाम\tप्रस्थितिः"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "च"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
#, fuzzy
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "तन्त्रप्रारम्भसमये %PRODUCTNAME आरोहय"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
#, fuzzy
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "सिसट्रे सद्यःप्रारम्भकं निष्क्रियं कुरु"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -11573,24 +11733,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -12243,102 +12388,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -13417,27 +13466,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/sa-IN/extensions/messages.po b/source/sa-IN/extensions/messages.po
index 955b397203e..bcf3a80b61b 100644
--- a/source/sa-IN/extensions/messages.po
+++ b/source/sa-IN/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3247,191 +3247,191 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "सारणी %1 इत्यर्थं स्तंभ-अभिन्यासः"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "संक्षिप्तनाम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "लेखक"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "प्रकाशकः"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "अध्यायः"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "संपादकः"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
#, fuzzy
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "प्रकारः"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "वर्षः "
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "शीर्षकः"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "पत्रसङ्केतः"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "पृष्ठः (~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "संस्करणम् (~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "पुस्तक-शीर्षकः (~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "आयतनम्"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "प्रकाशन-वर्गः (~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "संगठनम् (~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "संस्था (~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "विश्वविद्यालयः"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "प्रतिवेदन-वर्गः (~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "मासः"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "पत्रिका"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "संख्या"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "श्रृंखला (~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "व्याख्या (~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "टिप्पणी"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URL"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "प्रयोक्ता परिभाषित क्षेत्रम् 1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "प्रयोक्ता परिभाषित क्षेत्रम् ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "प्रयोक्ता परिभाषित क्षेत्रम् ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "प्रयोक्ता परिभाषित क्षेत्रम् ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "प्रयोक्ता परिभाषित क्षेत्रम् ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3615,31 +3615,31 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "नूतन-लेख-वर्गस्य कृते नूतन-नाम् प्रवेशय:"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "सम्पर्क-क्षेत्राणि"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "परामर्शदानं कुरु"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "उपप्रपत्रः प्रधानप्रपत्रस्य वर्तमानलेख्य-सम्बन्धि विस्तृतलेखाप्रदर्शनार्थं उपयोक्तुं शक्यते । एतत् कर्तुं, भवान् परिभाषितुं शक्नोति यत् उपप्रपत्रस्य कः स्तम्भः प्रधानप्रपत्रस्य केन स्तम्भेन संयुज्यते ।"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
#, fuzzy
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "अङ्कितानि"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
#, fuzzy
msgctxt "formlinksdialog|masterLabel"
msgid "label"
diff --git a/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po
index e8f45a6c909..26e9f0114ce 100644
--- a/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23751,6 +23751,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26113,6 +26122,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26131,6 +26149,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/sa-IN/sc/messages.po b/source/sa-IN/sc/messages.po
index 19fdc7034b9..a4735dbb703 100644
--- a/source/sa-IN/sc/messages.po
+++ b/source/sa-IN/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15724,6 +15724,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16293,12 +16298,12 @@ msgstr "उपाधीकृतरचना "
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17568,90 +17573,47 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+#, fuzzy
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "समापय (~C)"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "नूतनरेकोर्ड्"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
#, fuzzy
msgctxt "dataform|new"
msgid "_New"
msgstr "नूतनम्"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
#, fuzzy
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "लोपय"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
#, fuzzy
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "प्रतिष्ठापय"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
#, fuzzy
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "पूर्वः अभिलेखः"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
#, fuzzy
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "नूतनरेकोर्ड्"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-#, fuzzy
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "समापय (~C)"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-#, fuzzy
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-#, fuzzy
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "ब्रौस् कुरु..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "डाटाबेस् गोचराः"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19450,35 +19412,40 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "इति परिणमति"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "दिनाङ्कः"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "स्तम्भाः"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "पंक्तयः"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "समूहे"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "अन्तरालम्"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "पैरामीटर्स्"
@@ -19631,167 +19598,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22428,17 +22397,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24401,112 +24380,117 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "आयतम्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Colour"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "दर्शय"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "वर्णितकोष्ठिकेषु दर्शय"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "तिरोहय"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "पृष्ठखण्डनम्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
#, fuzzy
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "दृश्य-सहायता"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "चार्ट्स्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "रेखाचित्रवस्तूनि"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "दर्शय"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "तिरोहय"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "दर्शय"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "तिरोहय"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "दर्शय"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "तिरोहय"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "वस्तूनि"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "जूम्"
diff --git a/source/sa-IN/scp2/source/ooo.po b/source/sa-IN/scp2/source/ooo.po
index 04e925ba5f9..a5d2a189931 100644
--- a/source/sa-IN/scp2/source/ooo.po
+++ b/source/sa-IN/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "लेख्यपत्रं मोचयतु "
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/sa-IN/scp2/source/winexplorerext.po b/source/sa-IN/scp2/source/winexplorerext.po
index 366d2c975f5..c4fed25058b 100644
--- a/source/sa-IN/scp2/source/winexplorerext.po
+++ b/source/sa-IN/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 14:36+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2014-09-29 06:06+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sa_IN\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1411970796.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr " %PRODUCTNAME लेख्यपत्र-विषये सूचना-प्रदर्शनार्थं, यथा थंबनेल् पूर्वदृश्य इव Microsoft Windows Explorer एनं समर्थयति। "
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/sa-IN/sd/messages.po b/source/sa-IN/sd/messages.po
index 7cf8bf9e32a..5200c935e66 100644
--- a/source/sa-IN/sd/messages.po
+++ b/source/sa-IN/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2646,6 +2646,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
#, fuzzy
msgctxt "breakdialog|BreakDialog"
@@ -3127,164 +3132,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML घटनस्य पुनराख्याहि"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4775,160 +4965,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "परिवर्तनान् प्रदर्शय"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/sa-IN/sfx2/messages.po b/source/sa-IN/sfx2/messages.po
index 6bbe261271f..448123876ac 100644
--- a/source/sa-IN/sfx2/messages.po
+++ b/source/sa-IN/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -923,38 +923,33 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "गुणम् अपनय"
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "शैली पूर्वतः एव वर्तते । किम् उपरिलेखनम् ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "पुनःस्थापय"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "इदं नाम पूर्वतः एव प्रयोगे अस्ति ।"
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "एषा शैली न विद्यते।"
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -964,7 +959,7 @@ msgstr ""
"एषा शैली आधारशैलीरूपेण प्रयोक्तुं न शक्यते,\n"
"यतः इयं पुनरावृत्तसंदर्भे परिणमिष्यति।"
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -973,7 +968,7 @@ msgstr ""
"नाम पूर्वतः एव मूलप्रविष्टशैलीरूपेण वर्तते ।\n"
"कृपया अन्यस्य नाम्नः चयनं कुरु ।"
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -981,96 +976,96 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "नेविगेटर"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "दोषयुक्तं गुह्यपदनिश्चयीकरणम् "
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "प्रेषय"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "अक्षरगणः"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "संस्करणटिप्पणीं समावेशय"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "आधिपत्यक्रमावलीसंबन्धिनी"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "संरचनप्रकारं पूरय"
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "वरणात् नूतनशैली"
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "शैलीं निर्माय"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "किं भवान् अभिलेखनं सत्यमेव निरसयितुमिच्छति? एतत् बिन्दुपर्यन्तम् अभिलिखिताः चरणाः लुप्ताः भविष्यन्ति।"
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "अभिलेखनं निरसय"
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "प्रथम-वारम् उपयोगार्थं प्रतिरूपाणि आरंभीक्रियन्ते।"
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1079,7 +1074,7 @@ msgstr ""
"कोऽपि मूलभूतमुद्रकः न दृष्टः।\n"
"कृपया एकस्य मुद्रकस्य चयनं कुरु ततः पुनः प्रयासं कुरु।"
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1088,17 +1083,17 @@ msgstr ""
"मुद्रकं प्रारम्भयितुं न अशक्यत।\n"
"कृपया तव मुद्रकविन्यासं अवेक्षय।"
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "मुद्रकः व्यस्तः"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr " (पठन-मात्रम्)"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1109,7 +1104,7 @@ msgstr ""
"किं भवान् नूतनस्थापनाः सक्रियलेख्यपत्रे सञ्चयितुमिच्छति\n"
" ? "
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1120,7 +1115,7 @@ msgstr ""
"किं नूतनस्थापनाः सक्रियलेख्यपत्रे सञ्चिताः भवन्तु\n"
" ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1131,7 +1126,7 @@ msgstr ""
"किं भवान् नूतनस्थापनाः सञ्चयितुमिच्छति\n"
"सक्रियलेख्यपत्रे ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1141,7 +1136,7 @@ msgstr ""
"लेख्यपत्रं संवर्तयितुं न अशक्यत यतः एकं\n"
"मुद्रणकार्यं प्रचलन् अस्ति।"
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1149,7 +1144,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1157,18 +1152,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "इदं लेख्यपत्रं सम्पादयितुं न अशक्यत, सम्भवतः लुप्ताताभिगमाधिकारणात्।किं भवान् लेख्यपत्रस्य प्रति सम्पादयितुमिच्छति ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1176,353 +1171,363 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr " (पुनः लेख्यपत्रं संस्कारितम्)"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "लेखपत्रं संपादय"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "सञ्चिकालेख्यपत्रम्"
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "डोक्"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "अन्डोक्"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "विकल्पानां पृथक्त्वं कुरु"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Customisation"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "अपनय"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1897,32 +1902,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "संस्करणटिप्पणी"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "नाम"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "प्रकारः"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "मूल्यम्"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "प्रकारः"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "आम्"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "न"
@@ -1932,17 +1922,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "नाम"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "प्रकारः"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "मूल्यम्"
@@ -2083,19 +2073,19 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "स्थानम्"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
#, fuzzy
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "वर्गः"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
#, fuzzy
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "कूटशब्दं परिवर्तय"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
#, fuzzy
msgctxt "documentinfopage|templateft"
msgid "Template:"
@@ -2107,28 +2097,28 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "अस्य गुणजातानि"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
#, fuzzy
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "सामान्यः"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "विवरणम्"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "सुरक्षा"
@@ -2358,6 +2348,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/sa-IN/shell/messages.po b/source/sa-IN/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/sa-IN/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/sa-IN/starmath/messages.po b/source/sa-IN/starmath/messages.po
index feb2db0fd9c..f47c5596e32 100644
--- a/source/sa-IN/starmath/messages.po
+++ b/source/sa-IN/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1646,273 +1646,298 @@ msgid "Examples"
msgstr "उदाहरणम्"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "मानकः"
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "तिर्यक्"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "स्थूलम्"
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "करूहुन"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "लाजविर"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "सबज़"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "वुज़ुल"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "सियान्"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "मेजेण्टा"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "धूसरम्"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "समयः"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "परपोल"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "लयुदुर"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "तिरोहय"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr "परिमाणः"
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "अक्षरगणः"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "वामम्"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "मध्यम्"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "दक्षिणम्"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "निर्देशाः"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "सूत्रम्"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "लेख्यपत्रं संचयति..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME %PRODUCTVERSION सूत्रम्"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "त्रुटिः :"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "अनपेक्षितं संप्रतीकम् "
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "'{' अपेक्षते"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "'}' अपेक्षते"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "'(' अपेक्षते"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "')' अपेक्षते"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' अपेक्षितम् "
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "वर्णः आवश्यकः "
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "'RIGHT' अपेक्षितम् "
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME आधारः"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "सामग्र्यः"
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "शीर्षकः"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "सूत्रपाठः "
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "सीमाः"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "परिमाणम्"
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "मौलिकपरिमाणम्"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "पृष्ठानुकूलम् उयोजय"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -1989,6 +2014,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "वरणम्"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/sa-IN/svtools/messages.po b/source/sa-IN/svtools/messages.po
index 48be3cbafe5..37bcdb2b158 100644
--- a/source/sa-IN/svtools/messages.po
+++ b/source/sa-IN/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1538 +15,1540 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195908.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "अन्यथा कुरु : "
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "पुनः कुरु : "
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "पुनरावर्तय : "
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "असंरचितपाठः "
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "Svx आन्तरिकसंपर्कात् आस्थितिसूचना"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr "Netscapeपुस्तकचिह्नम्"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "स्टार्सर्वरसंरचना"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "स्टार्वस्तुसंरचना"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "Applet वस्तु"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लग्-इन् वस्तु"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "StarWriter 3.0 वस्तु"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "StarWriter 4.0 वस्तु"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "StarWriter 5.0 वस्तु"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "StarWriter/Web 4.0 वस्तु"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "StarWriter/Web 5.0 वस्तु"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "StarWriter/Master 4.0 वस्तु"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "StarWriter/Master 5.0 वस्तु"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "StarDraw वस्तु"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "StarDraw 4.0 वस्तु"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 वस्तु"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 वस्तु"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc वस्तु"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 वस्तु"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 वस्तु"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart वस्तु"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 वस्तु"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 वस्तु"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage वस्तु"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 वस्तु"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 वस्तु"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMath वस्तु"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMath 4.0 वस्तु"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMath 5.0 वस्तु"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject चित्रणवस्तु"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "सिल्क"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word वस्तु"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet वस्तु"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "Office लेख्यपत्रवस्तु"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "टिप्पणीलेख्यपत्रसूचना"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx लेख्यपत्रम्"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 वस्तु"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "चित्रीयं वस्तु"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows अधिसञ्चिका"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "लेखामूलःवस्तु"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "लेखामूलःसारणी"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL प्रश्न"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "संपर्कः"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML संरचना टिप्पणीभिः विना"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "वस्तु % समावेशयितुं न शक्यते ।"
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "सञ्चिका % तः वस्तु समावेशयितुं न शक्यते ।"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "अधिकानि वस्तूनि"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "अज्ञातमूलः"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "नाम"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "परिमाणम्"
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "विकृतदिनाङ्कः"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "वर्गः"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बैट्स्"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "पङ्क्तिः : %1, स्तम्भः : %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", वर्गः : %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "पुटकम्"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "सञ्चिका"
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "रिक्तक्षेत्रम्"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "वर्णाङ्किकम्"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "सामान्यम्"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "संप्रतीकसमूहः"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोशः"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "पिन्यिन्"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक्"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "आदिमम्"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "यूनिकोड्"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "झुयिन्"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "दूरभाषापुस्तिका"
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "ध्वन्यात्मकं (वर्णाङ्किकं प्रथमम्)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "ध्वन्यात्मकं (वर्णाङ्किकम् अन्तिमम्)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "वर्णाङ्किकम्"
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "शब्दकोशः"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "पिन्यिन्"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "आदिमम्"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "स्ट्रोक्"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "झुयिन्"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "ध्वन्यात्मकं (वर्णाङ्किकं प्रथमम्, अक्षरैः समूहस्थीकृतम्)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "ध्वन्यात्मकं (वर्णाङ्किकं प्रथमं, व्यञ्जनैः समूहस्थीकृतम्)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "ध्वन्यात्मकं (वर्णाङ्किकम् अन्तिमम्, अक्षरैः समूहस्थीकृतम्)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "ध्वन्यात्मकं (वर्णाङ्किकम् अन्तिमं, व्यञ्जनैः समूहस्थीकृतम्)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "अद्य"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "किमपि न"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "मृदु"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "मृदुसाचीकृतम्"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "नियमितम्"
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "साचीकृतम्"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "स्थूलम्"
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "स्थूलसाचीकृतम्"
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "श्यामः"
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "श्यामसाचीकृतम्"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "पुस्तकम्"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "संक्षिप्तम्"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "अर्धलघु"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "तव मुद्रके पट्टे च समानफोण्ट् उपयुक्तं भविष्यति।"
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "इदमेकं मुद्रकफोण्ट् अस्ति। पटचित्रं भिन्नं भवेत्।"
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "अस्याः फोण्ट्शैल्याः छद्मरूपाणि निर्मास्यन्ते अथवा निकटतमा फोण्ट्शैली उपयुक्ता भविष्यति।"
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "इदं फोण्ट् संस्थापितं नास्ति। निकटतमोपलब्धफोण्ट् उपयुक्तं भविष्यति।"
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "ब्रौस् कुरु..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "ततिम् अधः चेष्टय"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "वामं गच्छ"
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "दक्षिणं गच्छ"
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "अधः चेष्टय"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "सङ्कलय"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "क्षैतिजनिर्गमः"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "ऊर्ध्वाधरमापकम्"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
#, fuzzy
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 बिट् थ्रेशहोल्ड"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
#, fuzzy
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1 बिट् डिथर्ड"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 बिट् ग्रेमापकम्"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "4 बिट् ग्रेमापकम्"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
#, fuzzy
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 बिट् यथार्थवर्णः"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "पोस्ट्"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "क्रमणम्"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "विरम"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialising"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "प्रतीक्षां करोति"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "मुद्रणम्"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Off-line"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "दोषः"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
#, fuzzy
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "पृष्ठं लोपय"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
#, fuzzy
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "अपर्याप्तस्मृतिः ।"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "मूलभूतमुद्रकः"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, fuzzy, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "वर्ड् लेख्यपत्राणि"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "समाप्तः"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "अग्रतः (~N)"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< पश्चम्"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "पदानि "
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "<न किमपि>"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "संस्था"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "विभागः"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "सञ्चिकानाम"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "अन्तिमनाम"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "मार्गः"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "देशः"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "ZIP कूटः"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "नगरम्"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "शीर्षकम्"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "स्थितिः"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "पत्रा. प्रपत्रम्"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "आद्यक्षराः"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "पूरकं पिधत्स्व"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "दूरवाणी : गृहम् "
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "दूरवाणी : कार्यालयः"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "टिप्पणी"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "प्रयोक्ता 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "प्रयोक्ता 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "प्रयोक्ता 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "प्रयोक्ता 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "राज्यम्"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "दूरभाषः : कार्यालयः"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "पेजर"
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "चलभाषः"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "दूरभाषः : अन्यः"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "पञ्चांगम्"
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "आमन्त्रय "
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE अपेक्षितम्"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr "JRE वृणु"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE दोषयुक्तमस्ति"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "मूलःकूटः"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "पुस्तकचिह्नसञ्चिका"
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "सुचित्राणि"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "विन्याससञ्चिका"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "प्रयोगः"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "आधारसामग्रीसारणी"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "तन्त्रसञ्चिका"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word लेख्यपत्रम्"
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "सहायतासञ्चिका"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML लेख्यपत्रम्"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "अभिलेखसञ्चिका"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लॉगसञ्चिका"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 रचना "
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 प्रधानलेख्यपत्रम्"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 रचना "
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "पाठसञ्चिका"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "सम्पर्कः"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 रचना "
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel लेख्यपत्रम्"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel प्रतिमानम्"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "Batch सञ्चिका"
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "सञ्चिका"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "पुटकः"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "पाठलेख्यपत्रम्"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "विस्तारफलकम्"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रस्तुतिः"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "आरेखनम्"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML लेख्यपत्रम्"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "मुख्यलेख्यपत्रम्"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "सूत्रम्"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "आधारसामग्रीअधिकरणम्"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "स्थानीयचालनी"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "चक्रिकाचालनी"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM चालनी"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "जालकेन्द्रसंयोगः "
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint लेख्यपत्रम्"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint प्रतिमानम्"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint दृश्यम्"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML लेख्यपत्रम्"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument आधारसामग्रीअधिकरणम्"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument आरेखनम्"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument सूत्रम्"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument प्रधानलेख्यपत्रम्"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument प्रस्तुतिः"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument विस्तारफलकम्"
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument पाठः"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument विस्तारफलकप्रतिमानम्"
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument आलेखनप्रतिमानम्"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument प्रस्तुतिप्रतिमानम्"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument पाठप्रतिमानम्"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME विस्तारणम् "
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/sa-IN/svx/messages.po b/source/sa-IN/svx/messages.po
index a8fc7b0dc90..1cc3b33158f 100644
--- a/source/sa-IN/svx/messages.po
+++ b/source/sa-IN/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -8082,6 +8082,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12621,87 +12626,92 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
#, fuzzy
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr "परिवेशसम्पादकः"
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr "प्रयोजय"
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
#, fuzzy
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr "कार्यस्थानम्"
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr "वृणु"
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr "आयतः"
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr "दीर्घवृत्तम्"
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुजः"
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिन्दुसम्पादनम्"
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिन्दून् स्थानान्तरय"
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिन्दून् समावेशय"
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिन्दून् लोपय"
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
#, fuzzy
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr "स्वचालितपरिवेशः"
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
#, fuzzy
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr "विक्रिया"
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
#, fuzzy
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr "रक्तः"
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
#, fuzzy
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
@@ -13041,123 +13051,117 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr "पादलेखः"
-#: svx/uiconfig/ui/imapdialog.ui:11
-#, fuzzy
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr "ImageMapसम्पादकः"
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr "प्रयोजय"
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
#, fuzzy
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr "उद्घाटय..."
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
#, fuzzy
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr "सञ्चय..."
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
#, fuzzy
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr "पिधत्स्व"
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr "वृणु"
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr "आयतः"
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr "दीर्घवृत्तम्"
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr "बहुभुजः"
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
#, fuzzy
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr "स्वतन्त्रः बहुभुजः"
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr "बिन्दुसम्पादनम्"
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr "बिन्दून् स्थानान्तरय"
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr "बिन्दून् समावेशय"
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr "बिन्दून् लोपय"
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
#, fuzzy
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr "विक्रिया"
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
#, fuzzy
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr "रक्तः"
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr "सक्रियम्"
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
#, fuzzy
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr "मैक्रो..."
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
#, fuzzy
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr "गुणजातानि : "
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
#, fuzzy
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr "पत्रसङ्केतः :"
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
#, fuzzy
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr "आबन्धः"
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
#, fuzzy
msgctxt "imapdialog|textft"
msgid "Text:"
diff --git a/source/sa-IN/sw/messages.po b/source/sa-IN/sw/messages.po
index 46fcbd2bee0..da955558a10 100644
--- a/source/sa-IN/sw/messages.po
+++ b/source/sa-IN/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3218,9 +3218,9 @@ msgid "Change object title of $1"
msgstr "%1 अस्य वस्तुक्रमं परिवर्तय"
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
-msgstr "$1 अस्य वस्तुविवरणं परिणत"
+msgstr ""
#: sw/inc/strings.hrc:545
#, fuzzy
@@ -12712,147 +12712,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12862,152 +12862,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -14120,7 +14120,7 @@ msgstr "परिशोधिताधिकरणेषु मानविक
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -17652,50 +17652,50 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr "पूर्वदृश्यः"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-#, fuzzy
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr "पूर्वदृश्यम्"
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
#, fuzzy
msgctxt "tocdialog|index"
msgid "Type"
msgstr "प्रकारः"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr "निवेशाः"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr "शैल्यः"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr "स्तम्भाः"
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr "पृष्टपटलः"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+#, fuzzy
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr "पूर्वदृश्यम्"
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
#, fuzzy
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr "स्तरः"
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
#, fuzzy
msgctxt "tocentriespage|typeft"
msgid "_Type"
@@ -17950,323 +17950,323 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr "सम्पादय... "
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
#, fuzzy
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr "शीर्षकः :"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr "वर्गः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr "सामग्री-सारणी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr "वर्णक्रमानुक्रमणी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr "सारणीनां अनुक्रमणी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr "प्रयोक्ता-निर्दिष्टम्"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr "वस्तुसारणी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr "ग्रन्थसूची"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr "हस्तकृत-परिवर्तनात् संरक्षितः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
#, fuzzy
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr "प्रकारः शीर्षकश्च"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
#, fuzzy
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr "प्रपत्रम्"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr "सम्पूर्णलेखपत्रम्"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr "अध्यायः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
#, fuzzy
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr "स्तराय गणय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr "परिलेखः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr "सारण्यः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
#, fuzzy
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr "पाठाबन्धः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr "चित्राणि"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr "OLE वस्तूनि"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr "स्रोत-अध्यायात् स्तरस्य उपयोगं कुरू"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
#, fuzzy
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr "पारिस्थितिकशैल्यः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
#, fuzzy
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr "शैल्यः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
#, fuzzy
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr "शैलीः अनुदिश"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr "अधःलेखानि"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr "वस्तुनामानि"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
#, fuzzy
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr "वर्गः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
#, fuzzy
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr "प्रदर्शय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr "सन्दर्भाः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr "समानवर्गः संख्या च"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr "अधोलेखपाठ्यम्"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
#, fuzzy
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr "अस्मात् निर्मातु"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
#, fuzzy
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr "निम्नलिखित-वस्तुनः निर्मातु"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
#, fuzzy
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr "कोष्ठकाः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr "[न किञ्चिदपि]"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
#, fuzzy
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr "प्रविष्टीनां संघटनम्"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr "समानप्रविष्टीः मेलय"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr "सह मेलय -"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "केस-संवेदी"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr "प्रविष्टीः स्वतः बृहदक्षरेषु कुरु"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr "कुञ्चिकाम् पृथक् प्रविष्टि-रूपे"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
#, fuzzy
msgctxt "tocindexpage|file"
msgid "_File"
msgstr "सञ्चिका"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr "विकल्पाः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
#, fuzzy
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr "भाषा"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
#, fuzzy
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr "कुञ्चिकाप्रकारः"
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr "क्रमणम्"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
#, fuzzy
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr "स्तरः"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
#, fuzzy
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr "अनुच्छेदशैली"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
#, fuzzy
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr "मूलभूतम्"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
#, fuzzy
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr "सम्पादय"
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr "निर्दिष्टकार्यः"
diff --git a/source/sah/cui/messages.po b/source/sah/cui/messages.po
index 101db7ff903..82e783bded7 100644
--- a/source/sah/cui/messages.po
+++ b/source/sah/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1616,107 +1616,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr ""
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr ""
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr ""
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr ""
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr ""
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr ""
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr ""
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr ""
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr ""
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr ""
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr ""
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr ""
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr ""
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1759,7 +1754,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1879,7 +1874,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2119,7 +2114,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2374,12 +2369,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2449,7 +2444,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2529,7 +2524,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2770,7 +2765,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3355,66 +3350,71 @@ msgid "About %PRODUCTNAME"
msgstr ""
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
msgstr ""
@@ -3529,17 +3529,17 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr ""
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr ""
@@ -4359,6 +4359,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr ""
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5471,27 +5631,27 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
msgstr ""
@@ -8993,80 +9153,80 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr ""
@@ -10939,24 +11099,9 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
+msgid "LibreOffice Themes"
msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
@@ -11584,102 +11729,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr ""
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -12686,27 +12735,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/sah/extensions/messages.po b/source/sah/extensions/messages.po
index 07c55d3a865..0c3777b15e5 100644
--- a/source/sah/extensions/messages.po
+++ b/source/sah/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3039,162 +3039,162 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr ""
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
msgctxt "mappingdialog|label1"
msgid "Column Names"
msgstr ""
@@ -3369,27 +3369,27 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr ""
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr ""
diff --git a/source/sah/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sah/officecfg/registry/data/org/openoffice/Office/UI.po
index b15383f57cc..b753be2c4e3 100644
--- a/source/sah/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sah/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23406,6 +23406,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
msgctxt ""
"ImpressWindowState.xcu\n"
@@ -25698,6 +25707,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -25716,6 +25734,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/sah/sc/messages.po b/source/sah/sc/messages.po
index 10ab8d06c8f..6e68de9aa2a 100644
--- a/source/sah/sc/messages.po
+++ b/source/sah/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15128,6 +15128,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr ""
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -15678,12 +15683,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -16908,81 +16913,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr ""
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -18700,32 +18665,37 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr ""
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr ""
@@ -18866,167 +18836,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -21509,17 +21481,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -23391,107 +23373,112 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr ""
diff --git a/source/sah/scp2/source/ooo.po b/source/sah/scp2/source/ooo.po
index 312fce3825e..5137e8c00ac 100644
--- a/source/sah/scp2/source/ooo.po
+++ b/source/sah/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr ""
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/sah/scp2/source/winexplorerext.po b/source/sah/scp2/source/winexplorerext.po
index b126decee18..e3a038bc594 100644
--- a/source/sah/scp2/source/winexplorerext.po
+++ b/source/sah/scp2/source/winexplorerext.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-04-22 23:41+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2013-05-24 00:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -12,7 +12,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1369356056.000000\n"
#: module_winexplorerext.ulf
@@ -28,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
msgstr ""
diff --git a/source/sah/sd/messages.po b/source/sah/sd/messages.po
index 547977f9272..93ba68b6129 100644
--- a/source/sah/sd/messages.po
+++ b/source/sah/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2571,6 +2571,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3026,164 +3031,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4572,160 +4762,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/sah/sfx2/messages.po b/source/sah/sfx2/messages.po
index e487888735b..3117f395424 100644
--- a/source/sah/sfx2/messages.po
+++ b/source/sah/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -872,52 +872,47 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr ""
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr ""
-
-#: include/sfx2/strings.hrc:197
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
"The value entered does not match the specified type.\n"
"The value will be stored as text."
msgstr ""
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr ""
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr ""
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr ""
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr ""
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
"This Style cannot be used as a base Style,\n"
"because it would result in a recursive reference."
msgstr ""
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
"Please choose another name."
msgstr ""
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -925,116 +920,116 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr ""
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr ""
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr ""
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr ""
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr ""
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr ""
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr ""
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr ""
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr ""
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr ""
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr ""
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr ""
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr ""
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
"Please choose a printer and try again."
msgstr ""
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
"Please check your printer configuration."
msgstr ""
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr ""
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr ""
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1042,7 +1037,7 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1050,7 +1045,7 @@ msgid ""
"in the active document?"
msgstr ""
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1058,14 +1053,14 @@ msgid ""
"active document?"
msgstr ""
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
msgctxt "STR_CANT_CLOSE"
msgid ""
"The document cannot be closed because a\n"
" print job is being carried out."
msgstr ""
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1073,7 +1068,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1081,17 +1076,17 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr ""
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1099,349 +1094,359 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr ""
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr ""
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr ""
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr ""
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr ""
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr ""
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr ""
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr ""
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr ""
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr ""
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr ""
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1786,32 +1791,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr ""
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr ""
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr ""
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr ""
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr ""
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr ""
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr ""
@@ -1821,17 +1811,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr ""
@@ -1961,17 +1951,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr ""
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr ""
@@ -1981,27 +1971,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr ""
@@ -2215,6 +2205,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/sah/shell/messages.po b/source/sah/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/sah/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/sah/starmath/messages.po b/source/sah/starmath/messages.po
index c8ebc15e3b2..9cbce37290c 100644
--- a/source/sah/starmath/messages.po
+++ b/source/sah/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-05-08 13:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1651,262 +1651,287 @@ msgid "Examples"
msgstr ""
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr ""
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr ""
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr ""
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr ""
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr ""
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr ""
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr ""
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
msgctxt "STR_CYAN"
msgid "cyan"
msgstr ""
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr ""
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
msgctxt "STR_GRAY"
msgid "gray"
msgstr ""
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
msgctxt "STR_LIME"
msgid "lime"
msgstr ""
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr ""
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr ""
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
msgctxt "STR_HIDE"
msgid "hide"
msgstr ""
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
msgctxt "STR_SIZE"
msgid "size"
msgstr ""
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
msgctxt "STR_FONT"
msgid "font"
msgstr ""
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr ""
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr ""
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr ""
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr ""
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "Формулалар"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr ""
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr ""
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr ""
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr ""
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr ""
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr ""
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr ""
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr ""
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr ""
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr ""
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr ""
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr ""
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr ""
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr ""
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr ""
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr ""
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr ""
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr ""
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr ""
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
msgstr ""
@@ -1971,6 +1996,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr ""
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/sah/svtools/messages.po b/source/sah/svtools/messages.po
index 5489a54db70..a0a66dace85 100644
--- a/source/sah/svtools/messages.po
+++ b/source/sah/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1524 +15,1526 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195895.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr ""
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
+msgid "Redo: "
msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr ""
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr ""
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr ""
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr ""
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr ""
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr ""
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr ""
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr ""
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr ""
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr ""
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr ""
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr ""
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr ""
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr ""
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr ""
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr ""
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr ""
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr ""
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr ""
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr ""
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr ""
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr ""
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr ""
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr ""
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr ""
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr ""
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr ""
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr ""
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr ""
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr ""
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr ""
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr ""
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr ""
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr ""
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr ""
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr ""
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr ""
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr ""
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr ""
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr ""
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr ""
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr ""
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ""
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr ""
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr ""
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr ""
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr ""
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr ""
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr ""
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr ""
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr ""
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr ""
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr ""
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr ""
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr ""
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr ""
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr ""
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr ""
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr ""
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr ""
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr ""
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr ""
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr ""
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr ""
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr ""
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr ""
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr ""
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr ""
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr ""
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr ""
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr ""
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr ""
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr ""
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr ""
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr ""
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr ""
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr ""
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr ""
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr ""
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr ""
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr ""
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr ""
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr ""
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr ""
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr ""
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr ""
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr ""
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr ""
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr ""
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr ""
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr ""
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr ""
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr ""
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr ""
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr ""
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr ""
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr ""
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr ""
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr ""
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr ""
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr ""
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr ""
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr ""
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr ""
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr ""
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr ""
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr ""
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr ""
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr ""
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr ""
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr ""
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr ""
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr ""
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr ""
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr ""
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr ""
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr ""
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr ""
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr ""
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr ""
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr ""
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr ""
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr ""
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr ""
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr ""
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr ""
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr ""
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr ""
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr ""
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr ""
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr ""
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr ""
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr ""
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr ""
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr ""
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr ""
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr ""
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr ""
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr ""
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr ""
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr ""
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr ""
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr ""
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr ""
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr ""
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr ""
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr ""
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr ""
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr ""
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr ""
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr ""
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr ""
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr ""
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr ""
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr ""
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr ""
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr ""
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr ""
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr ""
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr ""
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr ""
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr ""
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr ""
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr ""
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr ""
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr ""
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr ""
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr ""
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr ""
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr ""
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr ""
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr ""
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr ""
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr ""
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr ""
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "Суруллар дөкүмүөннэр"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "Электрон табылыыссалар"
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "Презентациялар"
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "Ойуулар"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr ""
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "Булкаас дөкүмүөннэр"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
#, fuzzy
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "Формулалар"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr ""
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr ""
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr ""
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr ""
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr ""
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr ""
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr ""
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr ""
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr ""
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr ""
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr ""
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr ""
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr ""
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr ""
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr ""
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr ""
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr ""
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/sah/svx/messages.po b/source/sah/svx/messages.po
index ff885572c1b..798d3a286c0 100644
--- a/source/sah/svx/messages.po
+++ b/source/sah/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7905,6 +7905,11 @@ msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
msgstr ""
+#: include/svx/strings.hrc:1669
+msgctxt "RID_SVXSTR_PAGEDIR_LTR_BTT_VERT"
+msgid "Bottom-to-top, left-to-right (vertical)"
+msgstr ""
+
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
msgid "Scale"
@@ -12155,82 +12160,87 @@ msgctxt "floatingareastyle|centery|tooltip_text"
msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center."
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:17
+#: svx/uiconfig/ui/floatingcontour.ui:14
msgctxt "floatingcontour|FloatingContour"
msgid "Contour Editor"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:45
+#: svx/uiconfig/ui/floatingcontour.ui:44
+msgctxt "floatingcontour|statuscolor"
+msgid "Color"
+msgstr ""
+
+#: svx/uiconfig/ui/floatingcontour.ui:161
msgctxt "floatingcontour|TBI_APPLY"
msgid "Apply"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:69
+#: svx/uiconfig/ui/floatingcontour.ui:184
msgctxt "floatingcontour|TBI_WORKPLACE"
msgid "Workspace"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:93
+#: svx/uiconfig/ui/floatingcontour.ui:207
msgctxt "floatingcontour|TBI_SELECT"
msgid "Select"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:107
+#: svx/uiconfig/ui/floatingcontour.ui:220
msgctxt "floatingcontour|TBI_RECT"
msgid "Rectangle"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:121
+#: svx/uiconfig/ui/floatingcontour.ui:233
msgctxt "floatingcontour|TBI_CIRCLE"
msgid "Ellipse"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:135
+#: svx/uiconfig/ui/floatingcontour.ui:246
msgctxt "floatingcontour|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:159
+#: svx/uiconfig/ui/floatingcontour.ui:269
msgctxt "floatingcontour|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:173
+#: svx/uiconfig/ui/floatingcontour.ui:282
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:187
+#: svx/uiconfig/ui/floatingcontour.ui:295
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:201
+#: svx/uiconfig/ui/floatingcontour.ui:308
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:224
+#: svx/uiconfig/ui/floatingcontour.ui:330
msgctxt "floatingcontour|TBI_AUTOCONTOUR"
msgid "AutoContour"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:249
+#: svx/uiconfig/ui/floatingcontour.ui:354
msgctxt "floatingcontour|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:263
+#: svx/uiconfig/ui/floatingcontour.ui:367
msgctxt "floatingcontour|TBI_REDO"
msgid "Redo"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:277
+#: svx/uiconfig/ui/floatingcontour.ui:380
msgctxt "floatingcontour|TBI_PIPETTE"
msgid "Pipette"
msgstr ""
-#: svx/uiconfig/ui/floatingcontour.ui:297
+#: svx/uiconfig/ui/floatingcontour.ui:398
msgctxt "floatingcontour|spinbutton|tooltip_text"
msgid "Color Tolerance"
msgstr ""
@@ -12538,112 +12548,107 @@ msgctxt "headfootformatpage|labelFooterFormat"
msgid "Footer"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:11
-msgctxt "imapdialog|ImapDialog"
-msgid "ImageMap Editor"
-msgstr ""
-
-#: svx/uiconfig/ui/imapdialog.ui:31
+#: svx/uiconfig/ui/imapdialog.ui:148
msgctxt "imapdialog|TBI_APPLY"
msgid "Apply"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:45
+#: svx/uiconfig/ui/imapdialog.ui:161
msgctxt "imapdialog|TBI_OPEN"
msgid "Open..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:59
+#: svx/uiconfig/ui/imapdialog.ui:174
msgctxt "imapdialog|TBI_SAVEAS"
msgid "Save..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:73
+#: svx/uiconfig/ui/imapdialog.ui:187
msgctxt "imapdialog|TBI_CLOSE"
msgid "Close"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:86
+#: svx/uiconfig/ui/imapdialog.ui:199
msgctxt "imapdialog|TBI_SELECT"
msgid "Select"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:100
+#: svx/uiconfig/ui/imapdialog.ui:212
msgctxt "imapdialog|TBI_RECT"
msgid "Rectangle"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:114
+#: svx/uiconfig/ui/imapdialog.ui:225
msgctxt "imapdialog|TBI_CIRCLE"
msgid "Ellipse"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:128
+#: svx/uiconfig/ui/imapdialog.ui:238
msgctxt "imapdialog|TBI_POLY"
msgid "Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:142
+#: svx/uiconfig/ui/imapdialog.ui:251
msgctxt "imapdialog|TBI_FREEPOLY"
msgid "Freeform Polygon"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:156
+#: svx/uiconfig/ui/imapdialog.ui:264
msgctxt "imapdialog|TBI_POLYEDIT"
msgid "Edit Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:170
+#: svx/uiconfig/ui/imapdialog.ui:277
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:184
+#: svx/uiconfig/ui/imapdialog.ui:290
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:198
+#: svx/uiconfig/ui/imapdialog.ui:303
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:212
+#: svx/uiconfig/ui/imapdialog.ui:316
msgctxt "imapdialog|TBI_UNDO"
msgid "Undo "
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:226
+#: svx/uiconfig/ui/imapdialog.ui:329
msgctxt "imapdialog|TBI_REDO"
msgid "Redo"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:240
+#: svx/uiconfig/ui/imapdialog.ui:342
msgctxt "imapdialog|TBI_ACTIVE"
msgid "Active"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:254
+#: svx/uiconfig/ui/imapdialog.ui:355
msgctxt "imapdialog|TBI_MACRO"
msgid "Macro..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:268
+#: svx/uiconfig/ui/imapdialog.ui:368
msgctxt "imapdialog|TBI_PROPERTY"
msgid "Properties..."
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:294
+#: svx/uiconfig/ui/imapdialog.ui:394
msgctxt "imapdialog|urlft"
msgid "Address:"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:329
+#: svx/uiconfig/ui/imapdialog.ui:415
msgctxt "imapdialog|targetft"
msgid "Frame:"
msgstr ""
-#: svx/uiconfig/ui/imapdialog.ui:384
+#: svx/uiconfig/ui/imapdialog.ui:464
msgctxt "imapdialog|textft"
msgid "Text:"
msgstr ""
diff --git a/source/sah/sw/messages.po b/source/sah/sw/messages.po
index 02dbed98b4d..a241aa3f357 100644
--- a/source/sah/sw/messages.po
+++ b/source/sah/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:55+0200\n"
"PO-Revision-Date: 2018-11-14 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3113,7 +3113,7 @@ msgid "Change object title of $1"
msgstr ""
#: sw/inc/strings.hrc:544
-msgctxt "STR_UNDO_FLYFRMFMT_DESCRITPTION"
+msgctxt "STR_UNDO_FLYFRMFMT_DESCRIPTION"
msgid "Change object description of $1"
msgstr ""
@@ -12006,147 +12006,147 @@ msgctxt "WriterNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3068
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3067
msgctxt "WriterNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:3212
+#: sw/uiconfig/swriter/ui/notebookbar.ui:3210
msgctxt "WriterNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:4721
+#: sw/uiconfig/swriter/ui/notebookbar.ui:4735
msgctxt "WriterNotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5892
+#: sw/uiconfig/swriter/ui/notebookbar.ui:5893
msgctxt "WriterNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:5978
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6001
msgctxt "WriterNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:6008
+#: sw/uiconfig/swriter/ui/notebookbar.ui:6031
msgctxt "WriterNotebookbar|LayoutMenuButton"
msgid "_Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7159
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7181
msgctxt "WriterNotebookbar|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7187
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7209
msgctxt "WriterNotebookbar|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:7976
+#: sw/uiconfig/swriter/ui/notebookbar.ui:7997
msgctxt "WriterNotebookbar|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8778
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8798
msgctxt "WriterNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:8864
+#: sw/uiconfig/swriter/ui/notebookbar.ui:8884
msgctxt "WriterNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9595
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9754
msgctxt "WriterNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:9681
+#: sw/uiconfig/swriter/ui/notebookbar.ui:9840
msgctxt "WriterNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:10917
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11075
msgctxt "WriterNotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:11002
+#: sw/uiconfig/swriter/ui/notebookbar.ui:11160
msgctxt "WriterNotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12197
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12354
msgctxt "WriterNotebookbar|ImageMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:12297
+#: sw/uiconfig/swriter/ui/notebookbar.ui:12454
msgctxt "WriterNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13617
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13773
msgctxt "WriterNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:13727
+#: sw/uiconfig/swriter/ui/notebookbar.ui:13883
msgctxt "WriterNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14629
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14784
msgctxt "WriterNotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:14715
+#: sw/uiconfig/swriter/ui/notebookbar.ui:14870
msgctxt "WriterNotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15531
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15685
msgctxt "WriterNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:15614
+#: sw/uiconfig/swriter/ui/notebookbar.ui:15768
msgctxt "WriterNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16071
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16224
msgctxt "WriterNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16154
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16307
msgctxt "WriterNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:16185
+#: sw/uiconfig/swriter/ui/notebookbar.ui:16338
msgctxt "WriterNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17078
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17230
msgctxt "WriterNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:17109
+#: sw/uiconfig/swriter/ui/notebookbar.ui:17261
msgctxt "WriterNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar.ui:18147
+#: sw/uiconfig/swriter/ui/notebookbar.ui:18298
msgctxt "WriterNotebookbar|ToolsLabel"
msgid "~Tools"
msgstr ""
@@ -12156,152 +12156,152 @@ msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3109
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3147
msgctxt "notebookbar_compact|FileLabel"
msgid "~File"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3196
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4627
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4665
msgctxt "notebookbar_compact|HomeLabel"
msgid "~Home"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4680
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4718
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5651
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5700
msgctxt "notebookbar_compact|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6221
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6270
msgctxt "notebookbar_compact|WrapButton"
msgid "Wrap"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6370
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6419
msgctxt "notebookbar_compact|LayoutMenuButton"
msgid "Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6422
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6471
msgctxt "notebookbar_compact|LayoutLabel"
msgid "~Layout"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6469
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6518
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6857
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6906
msgctxt "notebookbar_compact|ReferencesLabel"
msgid "Reference~s"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7537
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7586
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7570
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7619
msgctxt "notebookbar_compact|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8039
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8088
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8091
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8140
msgctxt "notebookbar_compact|ViewLabel"
msgid "~View"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8139
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8188
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9101
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9150
msgctxt "notebookbar_compact|TableLabel"
msgid "~Table"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10164
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10213
msgctxt "notebookbar_compact|ImageMenuButton"
msgid "Image"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10197
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10246
msgctxt "notebookbar_compact|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11523
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11572
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11578
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:11627
msgctxt "notebookbar_compact|ShapeLabel"
msgid "~Draw"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12612
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12661
msgctxt "notebookbar_compact|ObjectMenuButton"
msgid "Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12668
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:12717
msgctxt "notebookbar_compact|FrameLabel"
msgid "~Object"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13396
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13445
msgctxt "notebookbar_compact|MediaButton"
msgid "_Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13450
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:13499
msgctxt "notebookbar_compact|MediaLabel"
msgid "~Media"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14114
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14163
msgctxt "notebookbar_compact|PrintPreviewButton"
msgid "Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14169
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:14218
msgctxt "notebookbar_compact|FormLabel"
msgid "~Print"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15158
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15207
msgctxt "notebookbar_compact|FormButton"
msgid "Fo_rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15213
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15262
msgctxt "notebookbar_compact|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15263
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:15312
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16106
+#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:16155
msgctxt "notebookbar_compact|DevLabel"
msgid "~Tools"
msgstr ""
@@ -13366,7 +13366,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
-msgid "Protect form"
+msgid "Protect form (no longer protects whole document. Insert write protected section instead)"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
@@ -16643,47 +16643,47 @@ msgctxt "tocdialog|TocDialog"
msgid "Table of Contents, Index or Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:82
+#: sw/uiconfig/swriter/ui/tocdialog.ui:87
msgctxt "tocdialog|showexample"
msgid "Preview"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:119
-msgctxt "tocdialog|example-atkobject"
-msgid "Preview"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tocdialog.ui:150
+#: sw/uiconfig/swriter/ui/tocdialog.ui:163
msgctxt "tocdialog|index"
msgid "Type"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:172
+#: sw/uiconfig/swriter/ui/tocdialog.ui:209
msgctxt "tocdialog|entries"
msgid "Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:195
+#: sw/uiconfig/swriter/ui/tocdialog.ui:256
msgctxt "tocdialog|styles"
msgid "Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:218
+#: sw/uiconfig/swriter/ui/tocdialog.ui:303
msgctxt "tocdialog|columns"
msgid "Columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocdialog.ui:241
+#: sw/uiconfig/swriter/ui/tocdialog.ui:350
msgctxt "tocdialog|background"
msgid "Background"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:125
+#: sw/uiconfig/swriter/ui/tocdialog.ui:371
+msgctxt "tocdialog|example-atkobject"
+msgid "Preview"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:124
msgctxt "tocentriespage|levelft"
msgid "_Level"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocentriespage.ui:141
+#: sw/uiconfig/swriter/ui/tocentriespage.ui:140
msgctxt "tocentriespage|typeft"
msgid "_Type"
msgstr ""
@@ -16913,302 +16913,302 @@ msgctxt "tocindexpage|edit"
msgid "_Edit..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:85
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:94
msgctxt "tocindexpage|mainstyleft"
msgid "_Title:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:111
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:120
msgctxt "tocindexpage|typeft"
msgid "Type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:127
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:136
msgctxt "tocindexpage|liststore1"
msgid "Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:128
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:137
msgctxt "tocindexpage|liststore1"
msgid "Alphabetical Index"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:129
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:138
msgctxt "tocindexpage|liststore1"
msgid "Table of Figures"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:130
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:139
msgctxt "tocindexpage|liststore1"
msgid "Index of Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:131
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:140
msgctxt "tocindexpage|liststore1"
msgid "User-Defined"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:132
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:141
msgctxt "tocindexpage|liststore1"
msgid "Table of Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:133
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:142
msgctxt "tocindexpage|liststore1"
msgid "Bibliography"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:143
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:152
msgctxt "tocindexpage|readonly"
msgid "Protected against manual changes"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:166
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:175
msgctxt "tocindexpage|label3"
msgid "Type and Title"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:208
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:216
msgctxt "tocindexpage|mainstyleft2"
msgid "For:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:223
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:231
msgctxt "tocindexpage|scope"
msgid "Entire document"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:224
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:232
msgctxt "tocindexpage|scope"
msgid "Chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:247
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:255
msgctxt "tocindexpage|levelft"
msgid "Evaluate up to level:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:283
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:291
msgctxt "tocindexpage|label1"
msgid "Create Index or Table of Contents"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:324
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:331
msgctxt "tocindexpage|fromheadings"
msgid "Outline"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:340
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:347
msgctxt "tocindexpage|indexmarks"
msgid "Inde_x marks"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:356
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:363
msgctxt "tocindexpage|fromtables"
msgid "Tables"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:371
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:378
msgctxt "tocindexpage|fromframes"
msgid "Te_xt frames"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:386
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:393
msgctxt "tocindexpage|fromgraphics"
msgid "Graphics"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:401
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:408
msgctxt "tocindexpage|fromoles"
msgid "OLE objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:416
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:423
msgctxt "tocindexpage|uselevel"
msgid "Use level from source chapter"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:445
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:452
msgctxt "tocindexpage|addstylescb"
msgid "_Additional styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:461
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:468
msgctxt "tocindexpage|stylescb"
msgid "Styl_es"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:484
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:491
msgctxt "tocindexpage|styles"
msgid "Assign styles..."
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:530
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:537
msgctxt "tocindexpage|captions"
msgid "Captions"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:546
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:553
msgctxt "tocindexpage|objnames"
msgid "Object names"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:570
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:577
msgctxt "tocindexpage|categoryft"
msgid "Category:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:594
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:601
msgctxt "tocindexpage|displayft"
msgid "Display:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:609
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:616
msgctxt "tocindexpage|display"
msgid "References"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:610
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:617
msgctxt "tocindexpage|display"
msgid "Category and Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:611
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:618
msgctxt "tocindexpage|display"
msgid "Caption Text"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:640
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:647
msgctxt "tocindexpage|label2"
msgid "Create From"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:727
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:733
msgctxt "tocindexpage|label6"
msgid "Create From the Following Objects"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:765
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:770
msgctxt "tocindexpage|mainstyleft9"
msgid "_Brackets:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:777
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:782
msgctxt "tocindexpage|numberentries"
msgid "_Number entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:797
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:802
msgctxt "tocindexpage|brackets"
msgid "[none]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:798
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:803
msgctxt "tocindexpage|brackets"
msgid "[]"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:799
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:804
msgctxt "tocindexpage|brackets"
msgid "()"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:800
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:805
msgctxt "tocindexpage|brackets"
msgid "{}"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:801
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:806
msgctxt "tocindexpage|brackets"
msgid "<>"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:817
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:822
msgctxt "tocindexpage|label7"
msgid "Formatting of the Entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:859
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:863
msgctxt "tocindexpage|combinesame"
msgid "Combine identical entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:874
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:878
msgctxt "tocindexpage|useff"
msgid "Combine identical entries with p or _pp"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:890
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:894
msgctxt "tocindexpage|usedash"
msgid "Combine with -"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:906
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:910
msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:922
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:926
msgctxt "tocindexpage|initcaps"
msgid "AutoCapitalize entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:937
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:941
msgctxt "tocindexpage|keyasentry"
msgid "Keys as separate entries"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:952
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:956
msgctxt "tocindexpage|fromfile"
msgid "_Concordance file"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:967
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:971
msgctxt "tocindexpage|file"
msgid "_File"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:994
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:998
msgctxt "tocindexpage|label5"
msgid "Options"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1036
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1040
msgctxt "tocindexpage|mainstyleft3"
msgid "Language:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1071
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1075
msgctxt "tocindexpage|mainstyleft5"
msgid "Key type:"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocindexpage.ui:1105
+#: sw/uiconfig/swriter/ui/tocindexpage.ui:1109
msgctxt "tocindexpage|label4"
msgid "Sort"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:60
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:62
msgctxt "tocstylespage|label1"
msgid "_Levels"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:74
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:76
msgctxt "tocstylespage|label2"
msgid "Paragraph _Styles"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:164
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:166
msgctxt "tocstylespage|default"
msgid "_Default"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:179
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:181
msgctxt "tocstylespage|edit"
msgid "_Edit"
msgstr ""
-#: sw/uiconfig/swriter/ui/tocstylespage.ui:220
+#: sw/uiconfig/swriter/ui/tocstylespage.ui:222
msgctxt "tocstylespage|labelGrid"
msgid "Assignment"
msgstr ""
diff --git a/source/sat/cui/messages.po b/source/sat/cui/messages.po
index d2ac242e7e8..c63c9d3ca0d 100644
--- a/source/sat/cui/messages.po
+++ b/source/sat/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:46+0200\n"
+"POT-Creation-Date: 2019-05-31 14:52+0200\n"
"PO-Revision-Date: 2018-11-14 11:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1683,107 +1683,102 @@ msgctxt "RID_SVXSTR_INVALIDPERSONAURL"
msgid "Please enter a valid theme address or a search term."
msgstr ""
-#: cui/inc/strings.hrc:371
-msgctxt "RID_SVXSTR_MOZAPIUNREACHABLE"
-msgid "The Mozilla Themes API is currently unavailable."
-msgstr ""
-
-#: cui/inc/strings.hrc:373
+#: cui/inc/strings.hrc:372
msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "Set No Borders"
msgstr "बेगोर सिमा़ धारेयाते साजाव मे"
-#: cui/inc/strings.hrc:374
+#: cui/inc/strings.hrc:373
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Set Outer Border Only"
msgstr "एकेन बाहरे सेदाक् सिमा़ धारे को साजाव मे"
-#: cui/inc/strings.hrc:375
+#: cui/inc/strings.hrc:374
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Set Outer Border and Horizontal Lines"
msgstr "बाहरे सिमा धारे आर गितिज तेयाक् गार को साजाव मे"
-#: cui/inc/strings.hrc:376
+#: cui/inc/strings.hrc:375
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Set Outer Border and All Inner Lines"
msgstr "बाहरे सिमा धारे आर जोतो भितिर सेदाक् गार को साजाव मे"
-#: cui/inc/strings.hrc:377
+#: cui/inc/strings.hrc:376
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Set Outer Border Without Changing Inner Lines"
msgstr "भितिर सेदाक् गार को बेगोर बोदोल ते बाहरे सेदाक् सिमा़ धारे साजाव मे"
-#: cui/inc/strings.hrc:378
+#: cui/inc/strings.hrc:377
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Set Diagonal Lines Only"
msgstr "एकेन पुन गार ते एसेत् बार कोंड रेयाक् सोझे गार साजाव मे"
-#: cui/inc/strings.hrc:379
+#: cui/inc/strings.hrc:378
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "Set All Four Borders"
msgstr "जोतो पुन सिमा़ धारे को साजाव मे"
-#: cui/inc/strings.hrc:380
+#: cui/inc/strings.hrc:379
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
msgid "Set Left and Right Borders Only"
msgstr "एकेन लेंगा आर जोजोम सिमा़ धारे को साजाव मे"
-#: cui/inc/strings.hrc:381
+#: cui/inc/strings.hrc:380
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
msgid "Set Top and Bottom Borders Only"
msgstr "एकेन चोट आर लातार सिमा़ धारे को साजाव मे"
-#: cui/inc/strings.hrc:382
+#: cui/inc/strings.hrc:381
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
msgid "Set Left Border Only"
msgstr "एकेन लेंगा सिमा़ धारे साजाव मे"
-#: cui/inc/strings.hrc:383
+#: cui/inc/strings.hrc:382
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Set Top and Bottom Borders, and All Inner Lines"
msgstr "चोट आर लातार सिमा़ धारे को, आर जोतो भितिर सेदाक् गार को साजाव मे"
-#: cui/inc/strings.hrc:384
+#: cui/inc/strings.hrc:383
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Set Left and Right Borders, and All Inner Lines"
msgstr "लेंगा आर जोजोम सिमा़ धारे को, आर जोतो भितिर गार को साजाव मे"
-#: cui/inc/strings.hrc:385
+#: cui/inc/strings.hrc:384
msgctxt "RID_SVXSTR_SHADOW_STYLE_NONE"
msgid "No Shadow"
msgstr "जाहान उमुल बाङ"
-#: cui/inc/strings.hrc:386
+#: cui/inc/strings.hrc:385
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMRIGHT"
msgid "Cast Shadow to Bottom Right"
msgstr "लातार जोजोम सेद रे उमुल ञुर मे"
-#: cui/inc/strings.hrc:387
+#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPRIGHT"
msgid "Cast Shadow to Top Right"
msgstr "चोट जोजोम सेद रे उमुल ञुर मेचोट जोजोम सेद रे उमुल ञुर मे "
-#: cui/inc/strings.hrc:388
+#: cui/inc/strings.hrc:387
msgctxt "RID_SVXSTR_SHADOW_STYLE_BOTTOMLEFT"
msgid "Cast Shadow to Bottom Left"
msgstr "लातार लेंगा सेद रे उमुल ञुर मे (~s)"
-#: cui/inc/strings.hrc:389
+#: cui/inc/strings.hrc:388
msgctxt "RID_SVXSTR_SHADOW_STYLE_TOPLEFT"
msgid "Cast Shadow to Top Left"
msgstr "चोट लेंगा सेद रे उमुल ञुर मे"
-#: cui/inc/strings.hrc:390
+#: cui/inc/strings.hrc:389
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
msgstr ""
-#: cui/inc/strings.hrc:392
+#: cui/inc/strings.hrc:391
msgctxt "RID_SVXSTR_FILTER_ALL"
msgid "All files"
msgstr ""
-#: cui/inc/strings.hrc:394
+#: cui/inc/strings.hrc:393
msgctxt "RID_SVXSTR_REGISTERED_DATABASES"
msgid "Registered Databases"
msgstr ""
@@ -1826,7 +1821,7 @@ msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/01/profile_safe_mode.html
#: cui/inc/tipoftheday.hrc:51
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Change the basic fonts for the predefined template or current document per Tools > Options > Writer > Basic Fonts."
+msgid "Change the basic fonts for the predefined template or current document per Tools > Options > %PRODUCTNAME Writer > Basic Fonts."
msgstr ""
#. https://help.libreoffice.org/6.2/en-US/text/shared/optionen/01040300.html
@@ -1946,7 +1941,7 @@ msgstr ""
#. local help missing
#: cui/inc/tipoftheday.hrc:72
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > Writer > Mail Merge Email."
+msgid "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools > Options > %PRODUCTNAME Writer > Mail Merge Email."
msgstr ""
#. local help missing
@@ -2186,7 +2181,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:119
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Uncheck Tools > Options > Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
+msgid "Uncheck Tools > Options > %PRODUCTNAME Calc > View > Zoom: 'Synchronize sheets' so that each sheet in Calc has its own zoom factor."
msgstr ""
#: cui/inc/tipoftheday.hrc:120
@@ -2441,12 +2436,12 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:170
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Select options in Tools > Options > Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
+msgid "Select options in Tools > Options > %PRODUCTNAME Writer > Formatting Aids > Display to specify which non-printing characters are displayed."
msgstr ""
#: cui/inc/tipoftheday.hrc:171
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want the same layout for the screen display and printing? Check Tools > Options > Calc > General > Use printer metrics for text formatting."
+msgid "Want the same layout for the screen display and printing? Check Tools > Options > %PRODUCTNAME Calc > General > Use printer metrics for text formatting."
msgstr ""
#: cui/inc/tipoftheday.hrc:172
@@ -2516,7 +2511,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:185
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
+msgid "Left-handed? Enable Tools > Options > Language Settings > Languages > Asian and check Tools > Options > %PRODUCTNAME Writer > View > Ruler > Right-aligned, which displays the scrollbar to the left."
msgstr ""
#: cui/inc/tipoftheday.hrc:186
@@ -2596,7 +2591,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:201
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > Calc > View > Display > Formulas)."
+msgid "You can show formulas instead of results with View > Show Formula (or Tools > Options > %PRODUCTNAME Calc > View > Display > Formulas)."
msgstr ""
#: cui/inc/tipoftheday.hrc:202
@@ -2837,7 +2832,7 @@ msgstr ""
#: cui/inc/tipoftheday.hrc:249
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets (some functions like RANDBETWEEN are not calculated by F9)."
+msgid "Ctrl+Shift+F9 recalculates all formulas in all sheets."
msgstr ""
#: cui/inc/tipoftheday.hrc:250
@@ -3466,66 +3461,71 @@ msgid "About %PRODUCTNAME"
msgstr "%PRODUCTNAME रेयाक् बाबोत् रे%PRODUCTNAME बाबोत् रे"
#: cui/uiconfig/ui/aboutdialog.ui:25
+msgctxt "aboutdialog|releasenotes"
+msgid "_Release Notes"
+msgstr ""
+
+#: cui/uiconfig/ui/aboutdialog.ui:40
msgctxt "aboutdialog|credits"
msgid "Cre_dits"
msgstr "Cre_dits"
-#: cui/uiconfig/ui/aboutdialog.ui:40
+#: cui/uiconfig/ui/aboutdialog.ui:55
msgctxt "aboutdialog|website"
msgid "_Website"
msgstr "_Website"
-#: cui/uiconfig/ui/aboutdialog.ui:109
+#: cui/uiconfig/ui/aboutdialog.ui:124
msgctxt "aboutdialog|logoreplacement"
msgid "%PRODUCTNAME"
msgstr "%PRODUCTNAME"
-#: cui/uiconfig/ui/aboutdialog.ui:128
+#: cui/uiconfig/ui/aboutdialog.ui:143
msgctxt "aboutdialog|buildid"
msgid "Build ID: $BUILDID"
msgstr "Build ID: $BUILDID"
-#: cui/uiconfig/ui/aboutdialog.ui:141
+#: cui/uiconfig/ui/aboutdialog.ui:156
msgctxt "aboutdialog|locale"
msgid "Locale: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:170
+#: cui/uiconfig/ui/aboutdialog.ui:185
msgctxt "aboutdialog|locale"
msgid "UI-Language: $LOCALE"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:187
+#: cui/uiconfig/ui/aboutdialog.ui:202
msgctxt "aboutdialog|buildIdLink"
msgid "See Log: $GITHASH"
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:204
+#: cui/uiconfig/ui/aboutdialog.ui:219
msgctxt "aboutdialog|description"
msgid "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
msgstr "%PRODUCTNAME is a modern, easy-to-use, open source productivity suite for word processing, spreadsheets, presentations and more."
-#: cui/uiconfig/ui/aboutdialog.ui:227
+#: cui/uiconfig/ui/aboutdialog.ui:242
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2019 LibreOffice contributors."
msgstr ""
-#: cui/uiconfig/ui/aboutdialog.ui:241
+#: cui/uiconfig/ui/aboutdialog.ui:256
msgctxt "aboutdialog|libreoffice"
msgid "LibreOffice was based on OpenOffice.org."
msgstr "LibreOffice was based on OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:255
+#: cui/uiconfig/ui/aboutdialog.ui:270
msgctxt "aboutdialog|derived"
msgid "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
msgstr "%PRODUCTNAME is derived from LibreOffice which was based on OpenOffice.org."
-#: cui/uiconfig/ui/aboutdialog.ui:269
+#: cui/uiconfig/ui/aboutdialog.ui:284
msgctxt "aboutdialog|vendor"
msgid "This release was supplied by %OOOVENDOR."
msgstr "This release was supplied by %OOOVENDOR."
-#: cui/uiconfig/ui/aboutdialog.ui:289
+#: cui/uiconfig/ui/aboutdialog.ui:304
#, fuzzy
msgctxt "aboutdialog|link"
msgid "https://www.libreoffice.org/about-us/credits/"
@@ -3649,18 +3649,18 @@ msgctxt "acorreplacepage|replace"
msgid "_Replace"
msgstr "मुचाद (~R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:170
+#: cui/uiconfig/ui/acorreplacepage.ui:174
#, fuzzy
msgctxt "acorreplacepage|label1"
msgid "Repla_ce"
msgstr "मुचाद (~R)"
-#: cui/uiconfig/ui/acorreplacepage.ui:190
+#: cui/uiconfig/ui/acorreplacepage.ui:194
msgctxt "acorreplacepage|label2"
msgid "_With:"
msgstr "_With:"
-#: cui/uiconfig/ui/acorreplacepage.ui:203
+#: cui/uiconfig/ui/acorreplacepage.ui:207
msgctxt "acorreplacepage|textonly"
msgid "_Text only"
msgstr "_Text only"
@@ -4554,6 +4554,166 @@ msgctxt "breaknumberoption|minimallabel"
msgid "Minimal Word Length"
msgstr "का़च साबाद जिलिञ"
+#: cui/uiconfig/ui/bulletandposition.ui:50
+msgctxt "bulletandposition|fromfile"
+msgid "From file..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:58
+msgctxt "bulletandposition|gallery"
+msgid "Gallery"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:81
+msgctxt "bulletandposition|DrawPRTLDialog"
+msgid "Bullets and Numbering"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:221
+msgctxt "bulletandposition|label1"
+msgid "Level"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:270
+msgctxt "bulletandposition|label4"
+msgid "Type:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:298
+msgctxt "bulletandposition|startatft"
+msgid "Start at:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:315
+msgctxt "bulletandposition|startat"
+msgid "1"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:329
+msgctxt "bulletandposition|bulletft"
+msgid "Character:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:341
+msgctxt "bulletandposition|bullet"
+msgid "Select..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:355
+msgctxt "bulletandposition|bitmap"
+msgid "Select image..."
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:401
+msgctxt "bulletandposition|widthft"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:415
+msgctxt "bulletandposition|heightft"
+msgid "Height:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:473
+msgctxt "bulletandposition|keepratio"
+msgid "Keep ratio"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:514
+msgctxt "bulletandposition|prefixft"
+msgid "Before:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:541
+msgctxt "bulletandposition|suffixft"
+msgid "After:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:570
+msgctxt "bulletandposition|beforeafter"
+msgid "Separator"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:593
+msgctxt "bulletandposition|colorft"
+msgid "Color:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:625
+msgctxt "bulletandposition|relsizeft"
+msgid "_Rel. size:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:641
+msgctxt "bulletandposition|relsize"
+msgid "100"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:687
+msgctxt "bulletandposition|indent"
+msgid "Indent:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:702
+msgctxt "bulletandposition|numberingwidth"
+msgid "Width:"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:718
+msgctxt "bulletandposition|indentmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:732
+msgctxt "bulletandposition|numberingwidthmf"
+msgid "0,00"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:743
+msgctxt "bulletandposition|relative"
+msgid "Relati_ve"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:764
+msgctxt "bulletandposition|position"
+msgid "Position"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:859
+msgctxt "bulletandposition|ALlabel"
+msgid "Alignment"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:886
+msgctxt "bulletandposition|sliderb"
+msgid "Slide"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:901
+msgctxt "bulletandposition|selectionrb"
+msgid "Selection"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:917
+msgctxt "bulletandposition|applytomaster"
+msgid "Apply to Master"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:936
+msgctxt "bulletandposition|scopelb"
+msgid "Scope"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:957
+msgctxt "bulletandposition|label2"
+msgid "Properties"
+msgstr ""
+
+#: cui/uiconfig/ui/bulletandposition.ui:1018
+msgctxt "bulletandposition|label"
+msgid "Preview"
+msgstr ""
+
#: cui/uiconfig/ui/calloutdialog.ui:8
msgctxt "calloutdialog|CalloutDialog"
msgid "Position and Size"
@@ -5722,30 +5882,30 @@ msgctxt "cuiimapdlg|IMapDialog"
msgid "Properties"
msgstr "गुन को..."
-#: cui/uiconfig/ui/cuiimapdlg.ui:101
+#: cui/uiconfig/ui/cuiimapdlg.ui:98
#, fuzzy
msgctxt "cuiimapdlg|label1"
msgid "_URL:"
msgstr "URL:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:143
+#: cui/uiconfig/ui/cuiimapdlg.ui:140
#, fuzzy
msgctxt "cuiimapdlg|label2"
msgid "F_rame:"
msgstr "सांचाव:साज:"
-#: cui/uiconfig/ui/cuiimapdlg.ui:191
+#: cui/uiconfig/ui/cuiimapdlg.ui:188
#, fuzzy
msgctxt "cuiimapdlg|label3"
msgid "_Name:"
msgstr "ञुतुम"
-#: cui/uiconfig/ui/cuiimapdlg.ui:233
+#: cui/uiconfig/ui/cuiimapdlg.ui:230
msgctxt "cuiimapdlg|label4"
msgid "Alternative _text:"
msgstr ""
-#: cui/uiconfig/ui/cuiimapdlg.ui:275
+#: cui/uiconfig/ui/cuiimapdlg.ui:272
#, fuzzy
msgctxt "cuiimapdlg|label5"
msgid "_Description:"
@@ -9550,84 +9710,84 @@ msgstr ""
#: cui/uiconfig/ui/optgeneralpage.ui:64
msgctxt "optgeneralpage|TipOfTheDayCheckbox"
-msgid "Show \"Tip of the day\" Dialog on Start-up"
+msgid "Show \"Tip of the Day\" dialog on start-up"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:84
+#: cui/uiconfig/ui/optgeneralpage.ui:85
msgctxt "optgeneralpage|label1"
msgid "Help"
msgstr "गोड़ो"
-#: cui/uiconfig/ui/optgeneralpage.ui:114
+#: cui/uiconfig/ui/optgeneralpage.ui:115
msgctxt "optgeneralpage|filedlg"
msgid "_Use %PRODUCTNAME dialogs"
msgstr "_Use %PRODUCTNAME dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:148
+#: cui/uiconfig/ui/optgeneralpage.ui:149
#, fuzzy
msgctxt "optgeneralpage|label2"
msgid "Open/Save Dialogs"
msgstr "Open/Save dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:174
+#: cui/uiconfig/ui/optgeneralpage.ui:175
msgctxt "optgeneralpage|printdlg"
msgid "Use %PRODUCTNAME _dialogs"
msgstr "Use %PRODUCTNAME _dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:189
+#: cui/uiconfig/ui/optgeneralpage.ui:190
#, fuzzy
msgctxt "optgeneralpage|label3"
msgid "Print Dialogs"
msgstr "Print dialogue boxes"
-#: cui/uiconfig/ui/optgeneralpage.ui:215
+#: cui/uiconfig/ui/optgeneralpage.ui:216
msgctxt "optgeneralpage|docstatus"
msgid "_Printing sets \"document modified\" status"
msgstr "_Printing sets \\document modified\\ status"
-#: cui/uiconfig/ui/optgeneralpage.ui:230
+#: cui/uiconfig/ui/optgeneralpage.ui:231
#, fuzzy
msgctxt "optgeneralpage|label4"
msgid "Document Status"
msgstr "Document status"
-#: cui/uiconfig/ui/optgeneralpage.ui:263
+#: cui/uiconfig/ui/optgeneralpage.ui:264
msgctxt "optgeneralpage|label6"
msgid "_Interpret as years between "
msgstr "_Interpret as years between "
-#: cui/uiconfig/ui/optgeneralpage.ui:289
+#: cui/uiconfig/ui/optgeneralpage.ui:290
msgctxt "optgeneralpage|toyear"
msgid "and "
msgstr "आर"
-#: cui/uiconfig/ui/optgeneralpage.ui:304
+#: cui/uiconfig/ui/optgeneralpage.ui:305
#, fuzzy
msgctxt "optgeneralpage|label5"
msgid "Year (Two Digits)"
msgstr "Year (two digits)"
-#: cui/uiconfig/ui/optgeneralpage.ui:330
+#: cui/uiconfig/ui/optgeneralpage.ui:331
msgctxt "optgeneralpage|collectusageinfo"
msgid "Collect usage data and send it to The Document Foundation"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:345
+#: cui/uiconfig/ui/optgeneralpage.ui:346
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
msgstr ""
-#: cui/uiconfig/ui/optgeneralpage.ui:376
+#: cui/uiconfig/ui/optgeneralpage.ui:377
msgctxt "optgeneralpage|quicklaunch"
msgid "Load %PRODUCTNAME during system start-up"
msgstr "Load %PRODUCTNAME during system start-up"
-#: cui/uiconfig/ui/optgeneralpage.ui:391
+#: cui/uiconfig/ui/optgeneralpage.ui:392
msgctxt "optgeneralpage|systray"
msgid "Enable systray Quickstarter"
msgstr "Enable systray Quickstarter"
-#: cui/uiconfig/ui/optgeneralpage.ui:412
+#: cui/uiconfig/ui/optgeneralpage.ui:413
msgctxt "optgeneralpage|label8"
msgid "%PRODUCTNAME Quickstarter"
msgstr "%PRODUCTNAME Quickstarter"
@@ -11612,25 +11772,10 @@ msgctxt "personalization_tab|default_persona"
msgid "Preinstalled Theme"
msgstr ""
-#: cui/uiconfig/ui/personalization_tab.ui:194
-msgctxt "personalization_tab|own_persona"
-msgid "Own Theme"
-msgstr "Own Theme"
-
-#: cui/uiconfig/ui/personalization_tab.ui:224
-msgctxt "personalization_tab|select_persona"
-msgid "Load Firefox theme"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:245
-msgctxt "personalization_tab|extensions_label"
-msgid "Or, select from the Themes installed via extensions:"
-msgstr ""
-
-#: cui/uiconfig/ui/personalization_tab.ui:299
+#: cui/uiconfig/ui/personalization_tab.ui:193
msgctxt "personalization_tab|personas_label"
-msgid "Firefox Themes"
-msgstr "Firefox Themes"
+msgid "LibreOffice Themes"
+msgstr ""
#: cui/uiconfig/ui/pickbulletpage.ui:53
msgctxt "pickbulletpage|label25"
@@ -12290,102 +12435,6 @@ msgctxt "securityoptionsdialog|label2"
msgid "Security Options"
msgstr "Security options"
-#: cui/uiconfig/ui/select_persona_dialog.ui:8
-msgctxt "select_persona_dialog|SelectPersonaDialog"
-msgid "Select Firefox Theme"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:109
-msgctxt "select_persona_dialog|search_term"
-msgid "Search term or address"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:151
-msgctxt "select_persona_dialog|categories_label"
-msgid "Ca_tegory:"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:166
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Abstract"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:167
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Causes"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:168
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Fashion"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:169
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Film and TV"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:170
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Firefox"
-msgstr ""
-
-#. https://addons.mozilla.org/en-US/firefox/themes/
-#: cui/uiconfig/ui/select_persona_dialog.ui:171
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Foxkeh"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:172
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Holiday"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:173
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Music"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:174
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Nature"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:175
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Other"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:176
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Scenery"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:177
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Seasonal"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:178
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Solid"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:179
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Sports"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:180
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Websites"
-msgstr ""
-
-#: cui/uiconfig/ui/select_persona_dialog.ui:181
-msgctxt "select_persona_dialog|categoriesCB"
-msgid "Featured"
-msgstr ""
-
#: cui/uiconfig/ui/selectpathdialog.ui:16
msgctxt "selectpathdialog|SelectPathDialog"
msgid "Select Paths"
@@ -13462,27 +13511,27 @@ msgctxt "TipOfTheDayDialog|Name"
msgid "Tip of the day"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:25
+#: cui/uiconfig/ui/tipofthedaydialog.ui:26
msgctxt "TipOfTheDay|Checkbox"
msgid "_Show tips on startup"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:29
+#: cui/uiconfig/ui/tipofthedaydialog.ui:30
msgctxt "TipOfTheDay|Checkbox_Tooltip"
msgid "Enable the dialog again at Tools > Options > General"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:43
+#: cui/uiconfig/ui/tipofthedaydialog.ui:44
msgctxt "TipOfTheDayDialog|Next_Button"
msgid "_Next Tip"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:109
+#: cui/uiconfig/ui/tipofthedaydialog.ui:110
msgctxt "TipOfTheDayDialog|Title"
msgid "Did you know?"
msgstr ""
-#: cui/uiconfig/ui/tipofthedaydialog.ui:148
+#: cui/uiconfig/ui/tipofthedaydialog.ui:149
msgctxt "TipOfTheDayDialog|Link_Button"
msgid "Link"
msgstr ""
diff --git a/source/sat/extensions/messages.po b/source/sat/extensions/messages.po
index c26729ca971..0e73551f0ab 100644
--- a/source/sat/extensions/messages.po
+++ b/source/sat/extensions/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:53+0200\n"
"PO-Revision-Date: 2018-11-12 12:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3253,190 +3253,190 @@ msgctxt "mappingdialog|MappingDialog"
msgid "Column Layout for Table “%1”"
msgstr "ता़लिका %1 ला़गित् कांधा ओड़ाक् तेयार"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:104
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:110
#, fuzzy
msgctxt "mappingdialog|label2"
msgid "_Short name"
msgstr "खाटो ञुतुम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:119
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:125
#, fuzzy
msgctxt "mappingdialog|label3"
msgid "_Author(s)"
msgstr "ओनोलिया़(s)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:134
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:140
#, fuzzy
msgctxt "mappingdialog|label4"
msgid "_Publisher"
msgstr "छापायिच्छापा सोदोरिच्"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:155
#, fuzzy
msgctxt "mappingdialog|label5"
msgid "_Chapter"
msgstr "जोखेज (~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:164
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:170
#, fuzzy
msgctxt "mappingdialog|label6"
msgid "Editor"
msgstr "सापड़ाविच्"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:225
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:231
msgctxt "mappingdialog|label7"
msgid "_Type"
msgstr "_Type"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:240
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:246
#, fuzzy
msgctxt "mappingdialog|label8"
msgid "_Year"
msgstr "सेरमासेरमा दिन"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:255
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:261
#, fuzzy
msgctxt "mappingdialog|label9"
msgid "Tit_le"
msgstr "ञुतुमएम ञुतुम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:306
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:312
#, fuzzy
msgctxt "mappingdialog|label10"
msgid "A_ddress"
msgstr "ठिका़ना."
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:321
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:327
#, fuzzy
msgctxt "mappingdialog|label11"
msgid "_ISBN"
msgstr "~ISBN"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:336
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:342
#, fuzzy
msgctxt "mappingdialog|label12"
msgid "Pa_ge(s)"
msgstr "साहटा (~g)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:387
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:393
#, fuzzy
msgctxt "mappingdialog|label13"
msgid "Ed_ition"
msgstr "छापा सोदोर (~i)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:414
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:420
#, fuzzy
msgctxt "mappingdialog|label14"
msgid "_Book title"
msgstr "पुथी रेयाक् ञुतुम (~B)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:429
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:435
msgctxt "mappingdialog|label15"
msgid "Volume"
msgstr "हा़टिञसाडे कोम ढेर होचोवाक्"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:442
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:448
#, fuzzy
msgctxt "mappingdialog|label16"
msgid "Publication t_ype"
msgstr "छापा सोदोर लेकानाक् (~y)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:493
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:499
#, fuzzy
msgctxt "mappingdialog|label17"
msgid "Organi_zation"
msgstr "गांवता (~z)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:508
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:514
#, fuzzy
msgctxt "mappingdialog|label18"
msgid "Instit_ution"
msgstr "आसड़ा (~u)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:523
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:529
#, fuzzy
msgctxt "mappingdialog|label19"
msgid "Uni_versity"
msgstr "विश्वविद्यालय"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:574
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:580
#, fuzzy
msgctxt "mappingdialog|label20"
msgid "Type of re_port"
msgstr "रिपोर्ट रेयाक् रेकोम (~p)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:589
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:595
#, fuzzy
msgctxt "mappingdialog|label21"
msgid "_Month"
msgstr "चांदो"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:628
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:634
#, fuzzy
msgctxt "mappingdialog|label22"
msgid "_Journal"
msgstr "पोतरिका साकाम"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:643
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:649
#, fuzzy
msgctxt "mappingdialog|label23"
msgid "Numb_er"
msgstr "संख्या"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:658
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:664
#, fuzzy
msgctxt "mappingdialog|label24"
msgid "Se_ries"
msgstr "तिरया़व (~r)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:709
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:715
#, fuzzy
msgctxt "mappingdialog|label25"
msgid "Ann_otation"
msgstr "एनोटेशन (~o)"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:724
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:730
#, fuzzy
msgctxt "mappingdialog|label26"
msgid "_Note"
msgstr "खाटो बिचा़र"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:739
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:745
msgctxt "mappingdialog|label27"
msgid "URL"
msgstr "URLयूआरएल"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:788
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:794
#, fuzzy
msgctxt "mappingdialog|label28"
msgid "User-defined field _1"
msgstr "का़मी यिजाक्-उपुरुम जायगा ~1"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:803
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:809
#, fuzzy
msgctxt "mappingdialog|label29"
msgid "User-defined field _2"
msgstr "का़मी यिजाक्-उपुरुम जायगा ~2"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:818
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:824
#, fuzzy
msgctxt "mappingdialog|label30"
msgid "User-defined field _3"
msgstr "का़मी यिजाक्-उपुरुम जायगा ~3"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:833
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:839
#, fuzzy
msgctxt "mappingdialog|label31"
msgid "User-defined field _4"
msgstr "का़मी यिजाक्-उपुरुम जायगा ~4"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:848
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:854
#, fuzzy
msgctxt "mappingdialog|label32"
msgid "User-defined field _5"
msgstr "का़मी यिजाक्-उपुरुम जायगा ~5"
-#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:967
+#: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:973
#, fuzzy
msgctxt "mappingdialog|label1"
msgid "Column Names"
@@ -3621,30 +3621,30 @@ msgctxt "datatypedialog|label"
msgid "Type a name for the new data type:"
msgstr "नावा डाटा लेकान ला़गित् मित् ञुतुम ओल मे नावा :"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:9
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:10
#, fuzzy
msgctxt "formlinksdialog|FormLinks"
msgid "Link fields"
msgstr "जायगा जोड़ाव मेजायगा को जोड़ाव मे"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:69
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:31
#, fuzzy
msgctxt "formlinksdialog|suggestButton"
msgid "Suggest"
msgstr "हुदिस एमोक् मे"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:101
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:107
#, fuzzy
msgctxt "formlinksdialog|explanationLabel"
msgid "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form."
msgstr "मुल तेयार रेयाक् नितोगाक् रिकोर्ड बाबोत मुल तेयार रेयाक् नितोगाक् रेकोर्ड बाबोत पुरा डाटा उदुक् ला़गित् ते एटाक् तेयार बेभार दाड़ेयाक् आ. नोवा ला़गित् ते, आम गोटा दाड़ेयाक् आ जे एटाक् तेयार रे ओका तेयार मिला़क् काना आर मुल तेयार रेयाक् ओका कांधा."
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:121
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:129
msgctxt "formlinksdialog|detailLabel"
msgid "label"
msgstr "चिखना़"
-#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:133
+#: extensions/uiconfig/spropctrlr/ui/formlinksdialog.ui:141
msgctxt "formlinksdialog|masterLabel"
msgid "label"
msgstr "चिखना़"
diff --git a/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po b/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po
index 9e6e941e897..c64feda313f 100644
--- a/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/sat/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -24271,6 +24271,15 @@ msgctxt ""
msgid "More Fields"
msgstr ""
+#: GenericCommands.xcu
+msgctxt ""
+"GenericCommands.xcu\n"
+"..GenericCommands.UserInterface.Popups..uno:RegenerateDiagram\n"
+"Label\n"
+"value.text"
+msgid "Regenerate Diagram"
+msgstr ""
+
#: ImpressWindowState.xcu
#, fuzzy
msgctxt ""
@@ -26670,6 +26679,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.TabbedCompact\n"
+"Label\n"
+"value.text"
+msgid "Tabbed Compact"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Draw.Modes.GroupedbarCompact\n"
"Label\n"
"value.text"
@@ -26688,6 +26706,15 @@ msgstr ""
#: ToolbarMode.xcu
msgctxt ""
"ToolbarMode.xcu\n"
+"..ToolbarMode.Applications.Draw.Modes.ContextualSingle\n"
+"Label\n"
+"value.text"
+msgid "Contextual Single"
+msgstr ""
+
+#: ToolbarMode.xcu
+msgctxt ""
+"ToolbarMode.xcu\n"
"..ToolbarMode.Applications.Formula.Modes.Default\n"
"Label\n"
"value.text"
diff --git a/source/sat/sc/messages.po b/source/sat/sc/messages.po
index 3906a9a1277..6e611e06919 100644
--- a/source/sat/sc/messages.po
+++ b/source/sat/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15733,6 +15733,11 @@ msgctxt "sharedocumentdlg|exclusive"
msgid "(exclusive access)"
msgstr "(exclusive access)"
+#: sc/inc/strings.hrc:373
+msgctxt "STR_NO_NAMED_RANGES_AVAILABLE"
+msgid "No named ranges available in the selected document"
+msgstr ""
+
#: sc/inc/subtotals.hrc:27
msgctxt "subtotalgrppage|liststore1"
msgid "Sum"
@@ -16304,12 +16309,12 @@ msgstr "ओबोसता लेका तेयार ओवोसता ल
#: sc/uiconfig/scalc/ui/condformatmanager.ui:136
msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "First Condition"
+msgid "Range"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:149
-msgctxt "condformatmanager|STR_HEADER_RANGE"
-msgid "Range"
+msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION"
+msgid "First Condition"
msgstr ""
#: sc/uiconfig/scalc/ui/condformatmanager.ui:175
@@ -17596,82 +17601,41 @@ msgctxt "dataform|DataFormDialog"
msgid "Data Form"
msgstr "Data Form"
-#: sc/uiconfig/scalc/ui/dataform.ui:25
+#: sc/uiconfig/scalc/ui/dataform.ui:40
+msgctxt "dataform|close"
+msgid "_Close"
+msgstr "_Close"
+
+#: sc/uiconfig/scalc/ui/dataform.ui:167
msgctxt "dataform|label"
msgid "New Record"
msgstr "New Record"
-#: sc/uiconfig/scalc/ui/dataform.ui:35
+#: sc/uiconfig/scalc/ui/dataform.ui:178
msgctxt "dataform|new"
msgid "_New"
msgstr "_New"
-#: sc/uiconfig/scalc/ui/dataform.ui:51
+#: sc/uiconfig/scalc/ui/dataform.ui:194
msgctxt "dataform|delete"
msgid "_Delete"
msgstr "_Delete"
-#: sc/uiconfig/scalc/ui/dataform.ui:65
+#: sc/uiconfig/scalc/ui/dataform.ui:208
msgctxt "dataform|restore"
msgid "_Restore"
msgstr "_Restore"
-#: sc/uiconfig/scalc/ui/dataform.ui:79
+#: sc/uiconfig/scalc/ui/dataform.ui:222
msgctxt "dataform|prev"
msgid "_Previous Record"
msgstr "_Previous Record"
-#: sc/uiconfig/scalc/ui/dataform.ui:94
+#: sc/uiconfig/scalc/ui/dataform.ui:237
msgctxt "dataform|next"
msgid "Ne_xt Record"
msgstr "Ne_xt Record"
-#: sc/uiconfig/scalc/ui/dataform.ui:124
-msgctxt "dataform|close"
-msgid "_Close"
-msgstr "_Close"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:9
-msgctxt "dataprovider|DataStreamDialog"
-msgid "Live Data Streams"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:107
-msgctxt "dataprovider|label6"
-msgid "URL:"
-msgstr "URL:"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:122
-msgctxt "dataprovider|url|tooltip_text"
-msgid "Enter the URL of the source document in the local file system or Internet here."
-msgstr "Enter the URL of the source document in the local file system or Internet here."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:140
-msgctxt "dataprovider|browse"
-msgid "_Browse..."
-msgstr "_Browse..."
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:167
-#, fuzzy
-msgctxt "dataprovider|label_db"
-msgid "Database Range:"
-msgstr "सा़खिया़त पासनाव"
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:203
-msgctxt "dataprovider|label_provider"
-msgid "Data Provider:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:240
-msgctxt "dataprovider|label_search"
-msgid "Search String:"
-msgstr ""
-
-#: sc/uiconfig/scalc/ui/dataprovider.ui:276
-msgctxt "dataprovider|label"
-msgid "Source Stream"
-msgstr ""
-
#: sc/uiconfig/scalc/ui/dataproviderdlg.ui:36
msgctxt "dataproviderdlg|db_name"
msgid "Database Range: "
@@ -19450,35 +19414,40 @@ msgctxt "movingaveragedialog|output-range-label"
msgid "Results to:"
msgstr "रे कुड़ाय को"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:193
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:187
+msgctxt "movingaveragedialog|trimrange-check"
+msgid "Trim input range to actual data content"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:211
#, fuzzy
msgctxt "movingaveragedialog|label3"
msgid "Data"
msgstr "Date"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:228
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:246
msgctxt "movingaveragedialog|groupedby-columns-radio"
msgid "Columns"
msgstr "कांधा"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:244
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:262
msgctxt "movingaveragedialog|groupedby-rows-radio"
msgid "Rows"
msgstr "थार को"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:266
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:284
#, fuzzy
msgctxt "movingaveragedialog|label2"
msgid "Grouped by"
msgstr "दोल दाराय ते"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:303
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:321
#, fuzzy
msgctxt "movingaveragedialog|interval-label"
msgid "Interval:"
msgstr "फांक"
-#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:334
+#: sc/uiconfig/scalc/ui/movingaveragedialog.ui:352
msgctxt "movingaveragedialog|label1"
msgid "Parameters"
msgstr "Parameters"
@@ -19631,167 +19600,169 @@ msgctxt "CalcNotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:2892
+#: sc/uiconfig/scalc/ui/notebookbar.ui:2975
msgctxt "CalcNotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3354
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3436
msgctxt "CalcNotebookbar|bordertype|tooltip_text"
msgid "Specify the borders of the selected cells."
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3537
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3619
msgctxt "CalcNotebookbar|increaseindent1|tooltip_text"
msgid "Increase Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:3552
+#: sc/uiconfig/scalc/ui/notebookbar.ui:3634
msgctxt "CalcNotebookbar|decreaseindent1|tooltip_text"
msgid "Decrease Indent"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4527
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4609
msgctxt "CalcNotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:4636
+#: sc/uiconfig/scalc/ui/notebookbar.ui:4718
msgctxt "CalcNotebookbar|CalcLabel"
msgid "~Home"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5051
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5277
msgctxt "CalcNotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5565
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5798
msgctxt "CalcNotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5651
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5906
msgctxt "CalcNotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:5681
+#: sc/uiconfig/scalc/ui/notebookbar.ui:5936
msgctxt "CalcNotebookbar|reviewb"
msgid "_Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6233
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6410
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6437
+#: sc/uiconfig/scalc/ui/notebookbar.ui:6876
msgctxt "CalcNotebookbar|objectalign|tooltip_text"
msgid "Object Align"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:6435
+#: sc/uiconfig/scalc/ui/notebookbar.ui:7094
msgctxt "CalcNotebookbar|PageLayoutLabel"
msgid "~Layout"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7419
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8077
msgctxt "CalcNotebookbar|Statistics"
msgid "_Statistics"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7470
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8128
msgctxt "CalcNotebookbar|DataMenuButton"
msgid "_Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:7579
+#: sc/uiconfig/scalc/ui/notebookbar.ui:8237
msgctxt "CalcNotebookbar|DataLabel"
msgid "~Data"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8244
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9001
msgctxt "CalcNotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:8330
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9087
msgctxt "CalcNotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9121
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9877
msgctxt "CalcNotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9207
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9963
msgctxt "CalcNotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:9235
+#: sc/uiconfig/scalc/ui/notebookbar.ui:9991
msgctxt "CalcNotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:10313
+#: sc/uiconfig/scalc/ui/notebookbar.ui:11068
msgctxt "CalcNotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11421
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12175
msgctxt "CalcNotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:11531
+#: sc/uiconfig/scalc/ui/notebookbar.ui:12285
msgctxt "CalcNotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12249
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13002
msgctxt "CalcNotebookbar|frame:MenuDraw"
msgid "_Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12359
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13112
msgctxt "CalcNotebookbar|FrameLabel"
msgid "~Object"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12868
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13620
msgctxt "CalcNotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:12951
+#: sc/uiconfig/scalc/ui/notebookbar.ui:13703
msgctxt "CalcNotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13349
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14101
msgctxt "CalcNotebookbar|PrintMenuButton"
msgid "_Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13433
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14185
msgctxt "CalcNotebookbar|PrintLabel"
msgid "~Print"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:13464
+#: sc/uiconfig/scalc/ui/notebookbar.ui:14216
msgctxt "CalcNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14258
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15009
msgctxt "CalcNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:14289
+#: sc/uiconfig/scalc/ui/notebookbar.ui:15040
msgctxt "CalcNotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sc/uiconfig/scalc/ui/notebookbar.ui:15417
+#: sc/uiconfig/scalc/ui/notebookbar.ui:16334
msgctxt "CalcNotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
@@ -22425,17 +22396,27 @@ msgctxt "searchresults|SearchResultsDialog"
msgid "Search Results"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:83
+#: sc/uiconfig/scalc/ui/searchresults.ui:36
+msgctxt "searchresults|ShowBox"
+msgid "_Show this dialog"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:40
+msgctxt "searchresults|ShowBox"
+msgid "Enable the dialog again at Tools > Options > Calc > View"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/searchresults.ui:102
msgctxt "searchresults|sheet"
msgid "Sheet"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:96
+#: sc/uiconfig/scalc/ui/searchresults.ui:115
msgctxt "searchresults|cell"
msgid "Cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/searchresults.ui:109
+#: sc/uiconfig/scalc/ui/searchresults.ui:128
msgctxt "searchresults|content"
msgid "Content"
msgstr ""
@@ -24388,114 +24369,119 @@ msgctxt "tpviewpage|outline"
msgid "_Outline symbols"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:289
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:283
+msgctxt "tpviewpage|summary"
+msgid "Summary o_n search"
+msgstr ""
+
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:307
msgctxt "tpviewpage|label5"
msgid "Window"
msgstr "विंडो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:365
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:383
#, fuzzy
msgctxt "tpviewpage|grid_label"
msgid "_Grid lines:"
msgstr "Grid lines"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:382
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
#, fuzzy
msgctxt "tpviewpage|color_label"
msgid "_Color:"
msgstr "_Colour"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:399
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:417
msgctxt "tpviewpage|grid"
msgid "Show"
msgstr "उदुक्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:400
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:418
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
msgstr "रोङाक् कोटरी कोरे उदुग मे"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:401
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:419
msgctxt "tpviewpage|grid"
msgid "Hide"
msgstr "उकू (~e)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:421
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:439
#, fuzzy
msgctxt "tpviewpage|break"
msgid "_Page breaks"
msgstr "Page breaks"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:438
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:456
#, fuzzy
msgctxt "tpviewpage|guideline"
msgid "Helplines _while moving"
msgstr "Helplines _While Moving"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:461
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:479
#, fuzzy
msgctxt "tpviewpage|label1"
msgid "Visual Aids"
msgstr "ञेल होचोवाक् गोड़ो"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:500
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:518
msgctxt "tpviewpage|objgrf_label"
msgid "Ob_jects/Images:"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:516
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:534
#, fuzzy
msgctxt "tpviewpage|diagram_label"
msgid "Cha_rts:"
msgstr "Charts"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:532
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:550
#, fuzzy
msgctxt "tpviewpage|draw_label"
msgid "_Drawing objects:"
msgstr "_Drawing objects"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:548
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:566
msgctxt "tpviewpage|objgrf"
msgid "Show"
msgstr "उदुक्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:549
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:567
msgctxt "tpviewpage|objgrf"
msgid "Hide"
msgstr "उकू (~e)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:564
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:582
msgctxt "tpviewpage|diagram"
msgid "Show"
msgstr "उदुक्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:565
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:583
msgctxt "tpviewpage|diagram"
msgid "Hide"
msgstr "उकू (~e)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:580
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:598
msgctxt "tpviewpage|draw"
msgid "Show"
msgstr "उदुक्"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:581
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
msgctxt "tpviewpage|draw"
msgid "Hide"
msgstr "उकू (~e)"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:599
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:617
msgctxt "tpviewpage|label2"
msgid "Objects"
msgstr "जिनिस को"
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:629
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:647
msgctxt "tpviewpage|synczoom"
msgid "S_ynchronize sheets"
msgstr ""
-#: sc/uiconfig/scalc/ui/tpviewpage.ui:644
+#: sc/uiconfig/scalc/ui/tpviewpage.ui:662
msgctxt "tpviewpage|label3"
msgid "Zoom"
msgstr "हुडिञ माराङ होचो."
diff --git a/source/sat/scp2/source/ooo.po b/source/sat/scp2/source/ooo.po
index d028dcbd1ce..7c0bad2de57 100644
--- a/source/sat/scp2/source/ooo.po
+++ b/source/sat/scp2/source/ooo.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: 2019-04-08 14:24+0200\n"
+"POT-Creation-Date: 2019-05-22 13:27+0200\n"
"PO-Revision-Date: 2018-11-12 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -34,6 +34,14 @@ msgstr "दस्तावेज खोलेंदोलिल झिज"
#: folderitem_ooo.ulf
msgctxt ""
"folderitem_ooo.ulf\n"
+"STR_FI_NAME_SAFEMODE\n"
+"LngText.text"
+msgid "%PRODUCTNAME (Safe Mode)"
+msgstr ""
+
+#: folderitem_ooo.ulf
+msgctxt ""
+"folderitem_ooo.ulf\n"
"STR_FI_TOOLTIP_SOFFICE\n"
"LngText.text"
msgid "LibreOffice, the office productivity suite provided by The Document Foundation. See https://www.documentfoundation.org"
diff --git a/source/sat/scp2/source/winexplorerext.po b/source/sat/scp2/source/winexplorerext.po
index 8e7f9be0380..2087cc01eb4 100644
--- a/source/sat/scp2/source/winexplorerext.po
+++ b/source/sat/scp2/source/winexplorerext.po
@@ -2,17 +2,18 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-06 14:32+0200\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
+"PO-Revision-Date: 2014-09-24 05:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sat\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-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1411535778.000000\n"
#: module_winexplorerext.ulf
msgctxt ""
@@ -27,5 +28,5 @@ msgctxt ""
"module_winexplorerext.ulf\n"
"STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n"
"LngText.text"
-msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
-msgstr "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews."
+msgid "Enables the Microsoft Windows Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and full-text search."
+msgstr ""
diff --git a/source/sat/sd/messages.po b/source/sat/sd/messages.po
index 241ec2f956f..34382ac49bf 100644
--- a/source/sat/sd/messages.po
+++ b/source/sat/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-30 14:59+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-12 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2660,6 +2660,11 @@ msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: "
msgstr ""
+#: sd/inc/strings.hrc:492
+msgctxt "RID_SVXSTR_EDIT_GRAPHIC"
+msgid "Link"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/breakdialog.ui:8
msgctxt "breakdialog|BreakDialog"
msgid "Break"
@@ -3134,164 +3139,349 @@ msgctxt "namedesign|NameDesignDialog"
msgid "Name HTML Design"
msgstr "HTML ञुतुम जोह"
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2221
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2359
msgctxt "drawnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:2241
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:2379
msgctxt "drawnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3013
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3234
msgctxt "drawnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:3172
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:3392
msgctxt "drawnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4270
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:4490
msgctxt "drawnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4828
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5237
msgctxt "drawnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:4998
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5423
msgctxt "drawnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5072
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5530
msgctxt "drawnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5102
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:5560
msgctxt "drawnotebookbar|PageMenuButton"
-msgid "_Page"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5963
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6398
msgctxt "drawnotebookbar|PageLabel"
-msgid "~Page"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:5993
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6428
msgctxt "drawnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6463
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6939
msgctxt "drawnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:6493
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:6969
msgctxt "drawnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7523
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8086
msgctxt "drawnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:7553
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:8116
msgctxt "drawnotebookbar|TextMenuButton"
msgid "T_ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:8852
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:9414
msgctxt "drawnotebookbar|ReferencesLabel"
msgid "T~ext"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9720
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10282
msgctxt "drawnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:9805
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10367
msgctxt "drawnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10261
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:11336
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12762
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13391
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:10822
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11896
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13335
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13963
msgctxt "drawnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10766
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11327
msgctxt "drawnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:10891
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:11452
msgctxt "drawnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12207
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12782
msgctxt "drawnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:12316
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:12891
msgctxt "drawnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13047
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13620
msgctxt "drawnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13157
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:13730
msgctxt "drawnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13676
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14248
msgctxt "drawnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13759
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14331
msgctxt "drawnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:13790
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:14362
msgctxt "DrawNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14552
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15123
msgctxt "DrawNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:14585
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15154
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:15969
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16000
+msgctxt "DrawNotebookbar|FormMenuButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16480
+msgctxt "DrawNotebookbar|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:16513
msgctxt "drawnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/sdraw/ui/notebookbar.ui:15472
+#: sd/uiconfig/sdraw/ui/notebookbar.ui:17512
msgctxt "drawnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2290
+msgctxt "notebookbar_draw_compact|FileMenuButton"
+msgid "_File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2910
+msgctxt "notebookbar_draw_compact|FileLabel"
+msgid "~File"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:2959
+msgctxt "notebookbar_draw_compact|HomeMenuButton"
+msgid "_Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:4337
+msgctxt "notebookbar_draw_compact|HomeLabel"
+msgid "~Home"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5015
+msgctxt "notebookbar_draw_compact|FieldMenuButton"
+msgid "Fiel_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5215
+msgctxt "notebookbar_draw_compact|InsertMenuButton"
+msgid "_Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5266
+msgctxt "notebookbar_draw_compact|InsertLabel"
+msgid "~Insert"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5952
+msgctxt "notebookbar_draw_compact|LayoutMenuButton"
+msgid "Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6004
+msgctxt "notebookbar_draw_compact|LayoutLabel"
+msgid "~Layout"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6535
+msgctxt "notebookbar_draw_compact|ReviewMenuButton"
+msgid "_Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6568
+msgctxt "notebookbar_draw_compact|ReviewLabel"
+msgid "~Review"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7058
+msgctxt "notebookbar_draw_compact|ViewMenuButton"
+msgid "_View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7110
+msgctxt "notebookbar_draw_compact|ViewLabel"
+msgid "~View"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7232
+msgctxt "notebookbar_draw_compact|TextMenuButton"
+msgid "T_ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8704
+msgctxt "notebookbar_draw_compact|ReferencesLabel"
+msgid "T~ext"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:8833
+msgctxt "notebookbar_draw_compact|TableMenuButton"
+msgid "T_able"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:10581
+msgctxt "notebookbar_draw_compact|TableLabel"
+msgid "~Table"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11930
+msgctxt "notebookbar_draw_compact|ImageMenuButton"
+msgid "Image"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:11982
+msgctxt "notebookbar_draw_compact|ImageLabel"
+msgid "Ima~ge"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13207
+msgctxt "notebookbar_draw_compact|DrawMenuButton"
+msgid "D_raw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:13262
+msgctxt "notebookbar_draw_compact|ShapeLabel"
+msgid "~Draw"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14289
+msgctxt "notebookbar_draw_compact|ObjectMenuButton"
+msgid "Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:14345
+msgctxt "notebookbar_draw_compact|FrameLabel"
+msgid "~Object"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15518
+msgctxt "notebookbar_draw_compact|MediaButton"
+msgid "_Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:15572
+msgctxt "notebookbar_draw_compact|MediaLabel"
+msgid "~Media"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16832
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "Fo_rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:16887
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "Fo~rm"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17535
+msgctxt "notebookbar_draw_compact|PrintPreviewButton"
+msgid "_Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:17587
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "~Master"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18577
+msgctxt "notebookbar_draw_compact|FormButton"
+msgid "3_d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18632
+msgctxt "notebookbar_draw_compact|FormLabel"
+msgid "3~d"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:18682
+msgctxt "notebookbar_draw_compact|ToolsMenuButton"
+msgid "_Tools"
+msgstr ""
+
+#: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:19577
+msgctxt "notebookbar_draw_compact|DevLabel"
+msgid "~Tools"
+msgstr ""
+
#: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:2258
msgctxt "draw_notebookbar_groupedbar_compact|MenubarAction"
msgid "Menubar"
@@ -4774,160 +4964,160 @@ msgctxt "navigatorpanel|shapes|tooltip_text"
msgid "Show Shapes"
msgstr "बोदोल को उदुक्"
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2372
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2346
msgctxt "impressnotebookbar|FileLabel"
msgid "_File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:2392
+#: sd/uiconfig/simpress/ui/notebookbar.ui:2366
msgctxt "impressnotebookbar|HelpMenuButton"
msgid "_Help"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3164
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3221
msgctxt "impressnotebookbar|FileLabel"
msgid "~File"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:3323
+#: sd/uiconfig/simpress/ui/notebookbar.ui:3379
msgctxt "impressnotebookbar|HomeMenuButton"
msgid "_Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:4636
+#: sd/uiconfig/simpress/ui/notebookbar.ui:4694
msgctxt "impressnotebookbar|HomeLabel"
msgid "~Home"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5101
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5231
msgctxt "impressnotebookbar|FieldMenuButton"
msgid "Fiel_d"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5793
msgctxt "impressnotebookbar|InsertMenuButton"
msgid "_Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5752
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5899
msgctxt "impressnotebookbar|InsertLabel"
msgid "~Insert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:5782
+#: sd/uiconfig/simpress/ui/notebookbar.ui:5929
msgctxt "impressnotebookbar|SlideMenuButton"
-msgid "S_lide"
+msgid "_Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6640
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6778
msgctxt "impressnotebookbar|LayoutLabel"
-msgid "S~lide"
+msgid "~Layout"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:6668
+#: sd/uiconfig/simpress/ui/notebookbar.ui:6806
msgctxt "impressnotebookbar|SlideShowMenuButton"
msgid "_Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7145
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7337
msgctxt "impressnotebookbar|ReferencesLabel"
msgid "~Slide Show"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7173
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7365
msgctxt "impressnotebookbar|ReviewMenuButton"
msgid "_Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7643
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7876
msgctxt "impressnotebookbar|ReviewLabel"
msgid "~Review"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:7671
+#: sd/uiconfig/simpress/ui/notebookbar.ui:7904
msgctxt "impressnotebookbar|ViewMenuButton"
msgid "_View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:8572
+#: sd/uiconfig/simpress/ui/notebookbar.ui:8936
msgctxt "impressnotebookbar|ViewLabel"
msgid "~View"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9434
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9797
msgctxt "impressnotebookbar|TableMenuButton"
msgid "_Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9519
+#: sd/uiconfig/simpress/ui/notebookbar.ui:9882
msgctxt "impressnotebookbar|TableLabel"
msgid "~Table"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:9973
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11045
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12488
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13097
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
+#: sd/uiconfig/simpress/ui/notebookbar.ui:11406
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12848
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13456
msgctxt "impressnotebookbar|ConvertMenuButton"
msgid "Convert"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10478
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10840
msgctxt "impressnotebookbar|GraphicMenuButton"
msgid "Ima_ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:10603
+#: sd/uiconfig/simpress/ui/notebookbar.ui:10965
msgctxt "impressnotebookbar|ImageLabel"
msgid "Ima~ge"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:11933
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12294
msgctxt "impressnotebookbar|DrawMenuButton"
msgid "_Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12043
+#: sd/uiconfig/simpress/ui/notebookbar.ui:12404
msgctxt "impressnotebookbar|DrawLabel"
msgid "~Draw"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12775
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13135
msgctxt "impressnotebookbar|ObjectMenuButton"
msgid "_Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:12885
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13245
msgctxt "impressnotebookbar|ObjectLabel"
msgid "~Object"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13383
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13742
msgctxt "impressnotebookbar|MediaMenuButton"
msgid "_Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13466
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13825
msgctxt "impressnotebookbar|MediaLabel"
msgid "~Media"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:13497
+#: sd/uiconfig/simpress/ui/notebookbar.ui:13856
msgctxt "ImpressNotebookbar|FormMenuButton"
msgid "Fo_rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14259
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14617
msgctxt "ImpressNotebookbar|FormLabel"
msgid "Fo~rm"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:14290
+#: sd/uiconfig/simpress/ui/notebookbar.ui:14648
msgctxt "impressnotebookbar|ToolsMenuButton"
msgid "_Tools"
msgstr ""
-#: sd/uiconfig/simpress/ui/notebookbar.ui:15216
+#: sd/uiconfig/simpress/ui/notebookbar.ui:15701
msgctxt "impressnotebookbar|DevLabel"
msgid "~Tools"
msgstr ""
diff --git a/source/sat/sfx2/messages.po b/source/sat/sfx2/messages.po
index 52b86b763da..c3833802837 100644
--- a/source/sat/sfx2/messages.po
+++ b/source/sat/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-08 14:23+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-10-21 19:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,11 +934,6 @@ msgid " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
msgstr "Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6"
#: include/sfx2/strings.hrc:196
-msgctxt "STR_SFX_REMOVE_PROPERTY"
-msgid "Remove Property"
-msgstr "गुन को साहाय मे"
-
-#: include/sfx2/strings.hrc:197
#, fuzzy
msgctxt "STR_SFX_QUERY_WRONG_TYPE"
msgid ""
@@ -948,27 +943,27 @@ msgstr ""
"गोनोङ आदेराक् गोटावाक् लेकान सांव बाय मेलोक् काना.\n"
" गोनोङ ओनोल लेका जोगाक् आ."
-#: include/sfx2/strings.hrc:199
+#: include/sfx2/strings.hrc:198
msgctxt "STR_QUERY_OVERWRITE"
msgid "Style already exists. Overwrite?"
msgstr "हुना़र माड़ाङ खोन मेनाक् आ ओल चेतान ओल ?"
-#: include/sfx2/strings.hrc:201
+#: include/sfx2/strings.hrc:200
msgctxt "STR_RESET"
msgid "~Reset"
msgstr "दोहड़ा साजाव (~R)रिसेट (~R)"
-#: include/sfx2/strings.hrc:202
+#: include/sfx2/strings.hrc:201
msgctxt "STR_TABPAGE_INVALIDNAME"
msgid "This name is already in use."
msgstr "नोवा ञुतुम माड़ाङ खोन बेभार रे मेनाक् आ ."
-#: include/sfx2/strings.hrc:203
+#: include/sfx2/strings.hrc:202
msgctxt "STR_TABPAGE_INVALIDSTYLE"
msgid "This Style does not exist."
msgstr "नोवा हुना़र माड़ाङ खोन बा़नुक् आ ."
-#: include/sfx2/strings.hrc:204
+#: include/sfx2/strings.hrc:203
#, fuzzy
msgctxt "STR_TABPAGE_INVALIDPARENT"
msgid ""
@@ -978,7 +973,7 @@ msgstr ""
"नोवा हना़र वा़सा़व हुना़र लेका बेभार बाङ दाड़ेयाक् आ ,\n"
" चेदाक् जे उलटा कोचे जोनोड़ रे नोवा कुड़ायोक् आ ."
-#: include/sfx2/strings.hrc:205
+#: include/sfx2/strings.hrc:204
msgctxt "STR_POOL_STYLE_NAME"
msgid ""
"Name already exists as a default Style.\n"
@@ -987,7 +982,7 @@ msgstr ""
"नोवा हुना़र वा़यसा़व हुना़र लेका बेभार बाङ दाड़ेयाक् आ .\n"
" चेदाक् जे उलटा कोचे जोनोड़ रे नोवा कुड़ायोक् आ ."
-#: include/sfx2/strings.hrc:206
+#: include/sfx2/strings.hrc:205
msgctxt "STR_DELETE_STYLE_USED"
msgid ""
"One or more of the selected styles is in use in this document.\n"
@@ -995,98 +990,98 @@ msgid ""
"Do you still wish to delete these styles?\n"
msgstr ""
-#: include/sfx2/strings.hrc:207
+#: include/sfx2/strings.hrc:206
msgctxt "STR_DELETE_STYLE"
msgid "Styles in use: "
msgstr "Styles in use: "
-#: include/sfx2/strings.hrc:208
+#: include/sfx2/strings.hrc:207
#, fuzzy
msgctxt "STR_SID_NAVIGATOR"
msgid "Navigator"
msgstr "उलटापानते"
-#: include/sfx2/strings.hrc:209
+#: include/sfx2/strings.hrc:208
msgctxt "STR_ERROR_WRONG_CONFIRM"
msgid "Faulty password confirmation"
msgstr "एड़ेयाक् दानाङ साबाद गोटाएड़ेयाक् दानाङ साबाद गोटा "
-#: include/sfx2/strings.hrc:210
+#: include/sfx2/strings.hrc:209
#, fuzzy
msgctxt "STR_PDF_EXPORT_SEND"
msgid "Send"
msgstr "भेजा(~e)"
-#: include/sfx2/strings.hrc:211
+#: include/sfx2/strings.hrc:210
msgctxt "STR_FONT_TABPAGE"
msgid "Font"
msgstr "फॉन्ट"
-#: include/sfx2/strings.hrc:212
+#: include/sfx2/strings.hrc:211
msgctxt "STR_PREVIEW_CHECKBOX"
msgid "Show previews"
msgstr ""
-#: include/sfx2/strings.hrc:214
+#: include/sfx2/strings.hrc:213
#, fuzzy
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
msgstr "हा़लियाक् ओकतो सोंगे"
-#: include/sfx2/strings.hrc:215
+#: include/sfx2/strings.hrc:214
msgctxt "STR_NO_NAME_SET"
msgid "(no name set)"
msgstr ""
-#: include/sfx2/strings.hrc:217
+#: include/sfx2/strings.hrc:216
msgctxt "STR_STYLE_ELEMTLIST"
msgid "Style List"
msgstr ""
-#: include/sfx2/strings.hrc:218
+#: include/sfx2/strings.hrc:217
msgctxt "STR_STYLE_FILTER_HIERARCHICAL"
msgid "Hierarchical"
msgstr "थार लेकाते (~w)"
-#: include/sfx2/strings.hrc:219
+#: include/sfx2/strings.hrc:218
#, fuzzy
msgctxt "STR_STYLE_FILL_FORMAT_MODE"
msgid "Fill Format Mode"
msgstr "तेयार ओबोसता पेरेच्तेयार ओबोसता पेरेच् "
-#: include/sfx2/strings.hrc:220
+#: include/sfx2/strings.hrc:219
#, fuzzy
msgctxt "STR_STYLE_NEW_STYLE_FROM_SELECTION"
msgid "New Style from Selection"
msgstr "बाछाव खोन नावा हुना़रबाछाव खोन नावा हुना़र "
-#: include/sfx2/strings.hrc:221
+#: include/sfx2/strings.hrc:220
msgctxt "STR_STYLE_NEW_STYLE_ACTION"
msgid "Styles actions"
msgstr ""
-#: include/sfx2/strings.hrc:222
+#: include/sfx2/strings.hrc:221
#, fuzzy
msgctxt "STR_STYLE_UPDATE_STYLE"
msgid "Update Style"
msgstr "हा़ली होचो हुना़र को (~U)"
-#: include/sfx2/strings.hrc:224
+#: include/sfx2/strings.hrc:223
msgctxt "STR_MACRO_LOSS"
msgid "Do you really want to cancel the recording? Any steps recorded up to this point will be lost."
msgstr "चेत् आम सा़री गे रिकार्ड बा़डरा सानाम काना ? नोवा टुड़ाक् हा़विच जोतो रिकोर्ड आदोक् आ .चेत् आम सा़री गे रिकार्ड बा़डरा सानाम काना ? नोवा टुड़ाक् हा़विच जोतो रिकोर्ड आदोक् आ ."
-#: include/sfx2/strings.hrc:225
+#: include/sfx2/strings.hrc:224
msgctxt "STR_CANCEL_RECORDING"
msgid "Cancel Recording"
msgstr "रेकोर्ड बा़डरारेकोर्ड बा़डरा "
-#: include/sfx2/strings.hrc:227
+#: include/sfx2/strings.hrc:226
msgctxt "RID_CNT_STR_WAITING"
msgid "The templates are being initialized for first-time usage."
msgstr "नमूनों को पहिले बार उपयोग करने केलिए इनिश्यलैज़ किया है ।ना़मुना को पा़हिल ओकतो बेभार ला़गित् एहोबेक् आ ."
-#: include/sfx2/strings.hrc:229
+#: include/sfx2/strings.hrc:228
msgctxt "STR_NODEFPRINTER"
msgid ""
"No default printer found.\n"
@@ -1095,7 +1090,7 @@ msgstr ""
"जाहान हुड़ा़क छापावाक् बाय ञामाकाना.\n"
" मित् छापावाक् बाछाव मे आर दोहड़ा कुरुमुटुय मे."
-#: include/sfx2/strings.hrc:230
+#: include/sfx2/strings.hrc:229
msgctxt "STR_NOSTARTPRINTER"
msgid ""
"Could not start printer.\n"
@@ -1104,18 +1099,18 @@ msgstr ""
"छापावाक् बाङ एहोब दाड़ेयाक् ना.\n"
" आमाक् छापावाक् रेयाक् तेयार ञेल मे."
-#: include/sfx2/strings.hrc:231
+#: include/sfx2/strings.hrc:230
#, fuzzy
msgctxt "STR_ERROR_PRINTER_BUSY"
msgid "Printer busy"
msgstr "ने छपाई किया"
-#: include/sfx2/strings.hrc:232
+#: include/sfx2/strings.hrc:231
msgctxt "STR_READONLY"
msgid " (read-only)"
msgstr "(पाड़हाव -एसकार )"
-#: include/sfx2/strings.hrc:233
+#: include/sfx2/strings.hrc:232
msgctxt "STR_PRINT_NEWORI"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1126,7 +1121,7 @@ msgstr ""
" चेत् आम नावा साजाव को \n"
" उसरा़व दोलिल रे सांचाव सानाम काना ?"
-#: include/sfx2/strings.hrc:234
+#: include/sfx2/strings.hrc:233
msgctxt "STR_PRINT_NEWSIZE"
msgid ""
"The page size has been modified.\n"
@@ -1137,7 +1132,7 @@ msgstr ""
" चेत् नावा साजाव को सांचाव ला़कती \n"
" उसरा़व दोलिल रे ?"
-#: include/sfx2/strings.hrc:235
+#: include/sfx2/strings.hrc:234
msgctxt "STR_PRINT_NEWORISIZE"
msgid ""
"The page size and orientation have been modified.\n"
@@ -1148,7 +1143,7 @@ msgstr ""
" चेत् आम नावा साजाव को \n"
" उसरा़व दोलिल रे सांचाव सानाम काना ?"
-#: include/sfx2/strings.hrc:236
+#: include/sfx2/strings.hrc:235
#, fuzzy
msgctxt "STR_CANT_CLOSE"
msgid ""
@@ -1158,7 +1153,7 @@ msgstr ""
"दोलिल बाङ बोंद दाड़ेयाक् आ चेदाक् जे\n"
" छापा का़मी चालाक् काना."
-#: include/sfx2/strings.hrc:237
+#: include/sfx2/strings.hrc:236
msgctxt "STR_ERROR_SEND_MAIL"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1166,7 +1161,7 @@ msgid ""
msgstr ""
#. Error codes look like "MAPI_E_FAILURE" or "1234"
-#: include/sfx2/strings.hrc:239
+#: include/sfx2/strings.hrc:238
msgctxt "STR_ERROR_SEND_MAIL_CODE"
msgid ""
"An error occurred in sending the message. Possible errors could be a missing user account or a defective setup.\n"
@@ -1174,18 +1169,18 @@ msgid ""
"Error code is $1"
msgstr ""
-#: include/sfx2/strings.hrc:240
+#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
msgstr ""
-#: include/sfx2/strings.hrc:241
+#: include/sfx2/strings.hrc:240
#, fuzzy
msgctxt "STR_QUERY_OPENASTEMPLATE"
msgid "This document cannot be edited, possibly due to missing access rights. Do you want to edit a copy of the document?"
msgstr "नोवा दोलिल बाङ सासापाड़ाव दाड़ेयाक् आ, आ़तुर होक को आ़त खा़तिर हुय दाड़ेयाक् आ. चेत् आम दोलिल रेयाक् नोकोल सासापड़ाव सानाम काना ?"
-#: include/sfx2/strings.hrc:242
+#: include/sfx2/strings.hrc:241
msgctxt "STR_QUERY_OPENASTEMPLATE_ALLOW_IGNORE"
msgid ""
"This document cannot be edited, because it is locked in another session. Do you want to edit a copy of the document?\n"
@@ -1193,355 +1188,365 @@ msgid ""
"You can also try to ignore the lock and open the file for editing."
msgstr ""
-#: include/sfx2/strings.hrc:243
+#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
msgstr ""
-#: include/sfx2/strings.hrc:244
+#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
msgstr ""
-#: include/sfx2/strings.hrc:245
+#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
msgid " (repaired document)"
msgstr "(दोलिल तेयार आरु येना )"
-#: include/sfx2/strings.hrc:246
+#: include/sfx2/strings.hrc:245
msgctxt "STR_NONCHECKEDOUT_DOCUMENT"
msgid "This document is not checked out on the server."
msgstr ""
-#: include/sfx2/strings.hrc:247
+#: include/sfx2/strings.hrc:246
msgctxt "STR_GET_INVOLVED_TEXT"
msgid "Help us make %PRODUCTNAME even better!"
msgstr ""
-#: include/sfx2/strings.hrc:248
+#: include/sfx2/strings.hrc:247
msgctxt "STR_GET_INVOLVED_BUTTON"
msgid "Get involved"
msgstr ""
-#: include/sfx2/strings.hrc:249
-msgctxt "STR_GET_DONATE_TEXT"
+#: include/sfx2/strings.hrc:248
+msgctxt "STR_DONATE_TEXT"
msgid "Your donations support our worldwide community."
msgstr ""
-#: include/sfx2/strings.hrc:250
-msgctxt "STR_GET_DONATE_BUTTON"
+#: include/sfx2/strings.hrc:249
+msgctxt "STR_DONATE_BUTTON"
msgid "Donate"
msgstr ""
+#: include/sfx2/strings.hrc:250
+msgctxt "STR_WHATSNEW"
+msgid "You are running version %PRODUCTVERSION of %PRODUCTNAME for the first time. Do you want to learn what's new?"
+msgstr ""
+
#: include/sfx2/strings.hrc:251
+msgctxt "STR_WHATSNEW_BUTTON"
+msgid "Release Notes"
+msgstr ""
+
+#: include/sfx2/strings.hrc:252
msgctxt "STR_READONLY_DOCUMENT"
msgid "This document is open in read-only mode."
msgstr ""
-#: include/sfx2/strings.hrc:252
+#: include/sfx2/strings.hrc:253
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
msgstr ""
-#: include/sfx2/strings.hrc:253
+#: include/sfx2/strings.hrc:254
msgctxt "STR_CLASSIFIED_DOCUMENT"
msgid "The classification label of this document is %1."
msgstr ""
-#: include/sfx2/strings.hrc:254
+#: include/sfx2/strings.hrc:255
msgctxt "STR_TARGET_DOC_NOT_CLASSIFIED"
msgid "This document must be classified before the clipboard can be pasted."
msgstr ""
-#: include/sfx2/strings.hrc:255
+#: include/sfx2/strings.hrc:256
msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW"
msgid "This document has a lower classification level than the clipboard."
msgstr ""
-#: include/sfx2/strings.hrc:256
+#: include/sfx2/strings.hrc:257
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
msgstr ""
-#: include/sfx2/strings.hrc:257
+#: include/sfx2/strings.hrc:258
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
msgstr ""
-#: include/sfx2/strings.hrc:258
+#: include/sfx2/strings.hrc:259
#, fuzzy
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
msgid "Export Control:"
msgstr "Report Controls"
-#: include/sfx2/strings.hrc:259
+#: include/sfx2/strings.hrc:260
msgctxt "STR_CHECKOUT"
msgid "Check Out"
msgstr ""
-#: include/sfx2/strings.hrc:260
+#: include/sfx2/strings.hrc:261
#, fuzzy
msgctxt "STR_READONLY_EDIT"
msgid "Edit Document"
msgstr "सासापड़ाव दोलिल"
-#: include/sfx2/strings.hrc:261
+#: include/sfx2/strings.hrc:262
#, fuzzy
msgctxt "STR_READONLY_SIGN"
msgid "Sign Document"
msgstr "Sign Document...सेलेद..."
-#: include/sfx2/strings.hrc:262
+#: include/sfx2/strings.hrc:263
msgctxt "STR_SIGNATURE_BROKEN"
msgid "This document has an invalid signature."
msgstr ""
-#: include/sfx2/strings.hrc:263
+#: include/sfx2/strings.hrc:264
msgctxt "STR_SIGNATURE_INVALID"
msgid "The signature was valid, but the document has been modified"
msgstr ""
-#: include/sfx2/strings.hrc:264
+#: include/sfx2/strings.hrc:265
msgctxt "STR_SIGNATURE_NOTVALIDATED"
msgid "The signature is OK, but the certificate could not be validated."
msgstr ""
-#: include/sfx2/strings.hrc:265
+#: include/sfx2/strings.hrc:266
msgctxt "STR_SIGNATURE_PARTIAL_OK"
msgid "The signature is OK, but the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:266
+#: include/sfx2/strings.hrc:267
msgctxt "STR_SIGNATURE_NOTVALIDATED_PARTIAL_OK"
msgid "The certificate could not be validated and the document is only partially signed."
msgstr ""
-#: include/sfx2/strings.hrc:267
+#: include/sfx2/strings.hrc:268
msgctxt "STR_SIGNATURE_OK"
msgid "This document is digitally signed and the signature is valid."
msgstr ""
-#: include/sfx2/strings.hrc:268
+#: include/sfx2/strings.hrc:269
msgctxt "STR_SIGNATURE_SHOW"
msgid "Show Signatures"
msgstr ""
-#: include/sfx2/strings.hrc:270
+#: include/sfx2/strings.hrc:271
msgctxt "STR_CLOSE_PANE"
msgid "Close Pane"
msgstr ""
-#: include/sfx2/strings.hrc:271
+#: include/sfx2/strings.hrc:272
msgctxt "STR_SFX_DOCK"
msgid "Dock"
msgstr "टोपे"
-#: include/sfx2/strings.hrc:272
+#: include/sfx2/strings.hrc:273
msgctxt "STR_SFX_UNDOCK"
msgid "Undock"
msgstr "टोपे ओचोक्"
-#: include/sfx2/strings.hrc:274
+#: include/sfx2/strings.hrc:275
msgctxt "SFX_STR_SIDEBAR_MORE_OPTIONS"
msgid "More Options"
msgstr "More Options"
-#: include/sfx2/strings.hrc:275
+#: include/sfx2/strings.hrc:276
msgctxt "SFX_STR_SIDEBAR_CLOSE_DECK"
msgid "Close Sidebar Deck"
msgstr "Close Sidebar Deck"
-#: include/sfx2/strings.hrc:276
+#: include/sfx2/strings.hrc:277
msgctxt "SFX_STR_SIDEBAR_SETTINGS"
msgid "Sidebar Settings"
msgstr ""
-#: include/sfx2/strings.hrc:277
+#: include/sfx2/strings.hrc:278
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_CUSTOMIZATION"
msgid "Customization"
msgstr "Customisation"
-#: include/sfx2/strings.hrc:278
+#: include/sfx2/strings.hrc:279
#, fuzzy
msgctxt "SFX_STR_SIDEBAR_RESTORE"
msgid "Restore Default"
msgstr "Restore Default"
-#: include/sfx2/strings.hrc:279
+#: include/sfx2/strings.hrc:280
msgctxt "SFX_STR_SIDEBAR_HIDE_SIDEBAR"
msgid "Close Sidebar"
msgstr ""
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:282
+#: include/sfx2/strings.hrc:283
msgctxt "STR_TEMPLATE_NAME1"
msgid "Alizarin"
msgstr ""
-#: include/sfx2/strings.hrc:283
+#: include/sfx2/strings.hrc:284
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
-#: include/sfx2/strings.hrc:284
+#: include/sfx2/strings.hrc:285
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
-#: include/sfx2/strings.hrc:285
+#: include/sfx2/strings.hrc:286
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
-#: include/sfx2/strings.hrc:286
+#: include/sfx2/strings.hrc:287
msgctxt "STR_TEMPLATE_NAME5"
msgid "Bright Blue"
msgstr ""
-#: include/sfx2/strings.hrc:287
+#: include/sfx2/strings.hrc:288
msgctxt "STR_TEMPLATE_NAME6"
msgid "Classy Red"
msgstr ""
-#: include/sfx2/strings.hrc:288
+#: include/sfx2/strings.hrc:289
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
-#: include/sfx2/strings.hrc:289
+#: include/sfx2/strings.hrc:290
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
-#: include/sfx2/strings.hrc:290
+#: include/sfx2/strings.hrc:291
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
-#: include/sfx2/strings.hrc:291
+#: include/sfx2/strings.hrc:292
msgctxt "STR_TEMPLATE_NAME10"
msgid "Impress"
msgstr ""
-#: include/sfx2/strings.hrc:292
+#: include/sfx2/strings.hrc:293
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_TEMPLATE_NAME13"
msgid "Lush Green"
msgstr ""
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
-#: include/sfx2/strings.hrc:296
+#: include/sfx2/strings.hrc:297
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
-#: include/sfx2/strings.hrc:297
+#: include/sfx2/strings.hrc:298
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Removeओचोक्"
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_PASSWORD_WARNING"
msgid "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
msgstr ""
@@ -1920,32 +1925,17 @@ msgctxt "checkin|label2"
msgid "Version comment:"
msgstr "हा़लियाक् ओकता"
-#: sfx2/uiconfig/ui/cmisinfopage.ui:54
-msgctxt "cmisinfopage|name"
-msgid "Name"
-msgstr "ञुतुम एम"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:66
-msgctxt "cmisinfopage|type"
-msgid "Type"
-msgstr "टाइप ओल"
-
-#: sfx2/uiconfig/ui/cmisinfopage.ui:78
-msgctxt "cmisinfopage|value"
-msgid "Value"
-msgstr "गोनोङ"
-
-#: sfx2/uiconfig/ui/cmisline.ui:46
+#: sfx2/uiconfig/ui/cmisline.ui:48
msgctxt "cmisline|type"
msgid "Type"
msgstr "टाइप ओल"
-#: sfx2/uiconfig/ui/cmisline.ui:61
+#: sfx2/uiconfig/ui/cmisline.ui:63
msgctxt "cmisline|yes"
msgid "Yes"
msgstr "हें"
-#: sfx2/uiconfig/ui/cmisline.ui:80
+#: sfx2/uiconfig/ui/cmisline.ui:79
msgctxt "cmisline|no"
msgid "No"
msgstr "बाङ"
@@ -1955,17 +1945,17 @@ msgctxt "custominfopage|add"
msgid "Add _Property"
msgstr ""
-#: sfx2/uiconfig/ui/custominfopage.ui:49
+#: sfx2/uiconfig/ui/custominfopage.ui:36
msgctxt "custominfopage|name"
msgid "Name"
msgstr "ञुतुम एम"
-#: sfx2/uiconfig/ui/custominfopage.ui:61
+#: sfx2/uiconfig/ui/custominfopage.ui:49
msgctxt "custominfopage|type"
msgid "Type"
msgstr "टाइप ओल"
-#: sfx2/uiconfig/ui/custominfopage.ui:73
+#: sfx2/uiconfig/ui/custominfopage.ui:62
msgctxt "custominfopage|value"
msgid "Value"
msgstr "गोनोङ"
@@ -2100,17 +2090,17 @@ msgctxt "documentinfopage|label8"
msgid "_Location:"
msgstr "_Location:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:304
+#: sfx2/uiconfig/ui/documentinfopage.ui:305
msgctxt "documentinfopage|label7"
msgid "_Type:"
msgstr "_Type:"
-#: sfx2/uiconfig/ui/documentinfopage.ui:328
+#: sfx2/uiconfig/ui/documentinfopage.ui:329
msgctxt "documentinfopage|changepass"
msgid "Change _Password"
msgstr "Change _Password"
-#: sfx2/uiconfig/ui/documentinfopage.ui:345
+#: sfx2/uiconfig/ui/documentinfopage.ui:346
msgctxt "documentinfopage|templateft"
msgid "Template:"
msgstr "Template:"
@@ -2121,27 +2111,27 @@ msgctxt "documentpropertiesdialog|DocumentPropertiesDialog"
msgid "Properties of “%1”"
msgstr "Properties of "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:105
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:134
msgctxt "documentpropertiesdialog|general"
msgid "General "
msgstr "General "
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:127
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:180
msgctxt "documentpropertiesdialog|description"
msgid "Description"
msgstr "बिबोरोन"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:150
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:227
msgctxt "documentpropertiesdialog|customprops"
msgid "Custom Properties"
msgstr "Custom Properties"
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:173
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:274
msgctxt "documentpropertiesdialog|cmisprops"
msgid "CMIS Properties"
msgstr ""
-#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:196
+#: sfx2/uiconfig/ui/documentpropertiesdialog.ui:321
msgctxt "documentpropertiesdialog|security"
msgid "Security"
msgstr "Security"
@@ -2372,6 +2362,26 @@ msgid ""
"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 ""
+#: sfx2/uiconfig/ui/linefragment.ui:55
+msgctxt "linefragment|STR_SFX_REMOVE_PROPERTY"
+msgid "Remove Property"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:144
+msgctxt "linefragment|SFX_ST_EDIT"
+msgid "..."
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:180
+msgctxt "linefragment|yes"
+msgid "Yes"
+msgstr ""
+
+#: sfx2/uiconfig/ui/linefragment.ui:196
+msgctxt "linefragment|no"
+msgid "No"
+msgstr ""
+
#: sfx2/uiconfig/ui/linkeditdialog.ui:8
msgctxt "linkeditdialog|title"
msgid "Modify DDE Link"
diff --git a/source/sat/shell/messages.po b/source/sat/shell/messages.po
new file mode 100644
index 00000000000..e029667bcc9
--- /dev/null
+++ b/source/sat/shell/messages.po
@@ -0,0 +1,44 @@
+#. extracted from shell/inc/spsupp
+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: 2019-05-22 13:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Accelerator-Marker: ~\n"
+"X-Generator: LibreOffice\n"
+
+#: shell/inc/spsupp/spsuppStrings.hrc:15
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE"
+msgid "Open Document"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:16
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE"
+msgid ""
+"You are opening document\n"
+"\n"
+" %DOCNAME\n"
+"\n"
+"Do you want to open it to view or to edit?"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:17
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW"
+msgid "View"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:18
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT"
+msgid "Edit"
+msgstr ""
+
+#: shell/inc/spsupp/spsuppStrings.hrc:19
+msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL"
+msgid "Cancel"
+msgstr ""
diff --git a/source/sat/starmath/messages.po b/source/sat/starmath/messages.po
index 9fc14afc925..2ee4012bef2 100644
--- a/source/sat/starmath/messages.po
+++ b/source/sat/starmath/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-04-25 13:54+0200\n"
+"POT-Creation-Date: 2019-05-31 18:44+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1662,278 +1662,303 @@ msgid "Examples"
msgstr "Examples"
#: starmath/inc/strings.hrc:285
+msgctxt "RID_EXAMPLE_CIRCUMFERENCE_HELP"
+msgid "Circumference"
+msgstr ""
+
+#: starmath/inc/strings.hrc:286
+msgctxt "RID_EXAMPLE_MASS_ENERGY_EQUIV_HELP"
+msgid "Mass–energy equivalence"
+msgstr ""
+
+#: starmath/inc/strings.hrc:287
+msgctxt "RID_EXAMPLE_PYTHAGOREAN_THEO_HELP"
+msgid "Pythagorean theorem"
+msgstr ""
+
+#: starmath/inc/strings.hrc:288
+msgctxt "RID_EXAMPLE_A_SIMPLE_SERIES_HELP"
+msgid "A simple series"
+msgstr ""
+
+#: starmath/inc/strings.hrc:289
+msgctxt "RID_EXAMPLE_GAUSS_DISTRIBUTION_HELP"
+msgid "Gauss distribution"
+msgstr ""
+
+#: starmath/inc/strings.hrc:291
#, fuzzy
msgctxt "RID_FONTREGULAR"
msgid "Standard"
msgstr "बातावाक्बाताव एमाक् "
-#: starmath/inc/strings.hrc:286
+#: starmath/inc/strings.hrc:292
#, fuzzy
msgctxt "RID_FONTITALIC"
msgid "Italic"
msgstr "कोचेढेड़ा"
-#: starmath/inc/strings.hrc:287
+#: starmath/inc/strings.hrc:293
msgctxt "RID_FONTBOLD"
msgid "Bold"
msgstr "मोटामोटा ."
-#: starmath/inc/strings.hrc:288
+#: starmath/inc/strings.hrc:294
msgctxt "STR_BLACK"
msgid "black"
msgstr "हेंदे"
-#: starmath/inc/strings.hrc:289
+#: starmath/inc/strings.hrc:295
msgctxt "STR_BLUE"
msgid "blue"
msgstr "लिल"
-#: starmath/inc/strings.hrc:290
+#: starmath/inc/strings.hrc:296
msgctxt "STR_GREEN"
msgid "green"
msgstr "लिल रोङ"
-#: starmath/inc/strings.hrc:291
+#: starmath/inc/strings.hrc:297
msgctxt "STR_RED"
msgid "red"
msgstr "आराक्"
-#: starmath/inc/strings.hrc:292
+#: starmath/inc/strings.hrc:298
#, fuzzy
msgctxt "STR_CYAN"
msgid "cyan"
msgstr "Cyan"
-#: starmath/inc/strings.hrc:293
+#: starmath/inc/strings.hrc:299
#, fuzzy
msgctxt "STR_MAGENTA"
msgid "magenta"
msgstr "गाड़हो गुला़ब आराक् रोङ"
-#: starmath/inc/strings.hrc:294
+#: starmath/inc/strings.hrc:300
#, fuzzy
msgctxt "STR_GRAY"
msgid "gray"
msgstr "हेड़ाक्"
-#: starmath/inc/strings.hrc:295
+#: starmath/inc/strings.hrc:301
#, fuzzy
msgctxt "STR_LIME"
msgid "lime"
msgstr "ओकतोओकोतो"
-#: starmath/inc/strings.hrc:296
+#: starmath/inc/strings.hrc:302
msgctxt "STR_MAROON"
msgid "maroon"
msgstr ""
-#: starmath/inc/strings.hrc:297
+#: starmath/inc/strings.hrc:303
msgctxt "STR_NAVY"
msgid "navy"
msgstr ""
-#: starmath/inc/strings.hrc:298
+#: starmath/inc/strings.hrc:304
msgctxt "STR_OLIVE"
msgid "olive"
msgstr ""
-#: starmath/inc/strings.hrc:299
+#: starmath/inc/strings.hrc:305
msgctxt "STR_PURPLE"
msgid "purple"
msgstr "कुरसे बाहा रोङ गाड़माक्"
-#: starmath/inc/strings.hrc:300
+#: starmath/inc/strings.hrc:306
msgctxt "STR_SILVER"
msgid "silver"
msgstr ""
-#: starmath/inc/strings.hrc:301
+#: starmath/inc/strings.hrc:307
msgctxt "STR_TEAL"
msgid "teal"
msgstr ""
-#: starmath/inc/strings.hrc:302
+#: starmath/inc/strings.hrc:308
msgctxt "STR_YELLOW"
msgid "yellow"
msgstr "सांसग"
-#: starmath/inc/strings.hrc:303
+#: starmath/inc/strings.hrc:309
#, fuzzy
msgctxt "STR_HIDE"
msgid "hide"
msgstr "उकू (~e)"
-#: starmath/inc/strings.hrc:304
+#: starmath/inc/strings.hrc:310
#, fuzzy
msgctxt "STR_SIZE"
msgid "size"
msgstr "माराङ तेत्माराङ तेत् "
-#: starmath/inc/strings.hrc:305
+#: starmath/inc/strings.hrc:311
#, fuzzy
msgctxt "STR_FONT"
msgid "font"
msgstr "फॉन्ट"
-#: starmath/inc/strings.hrc:306
+#: starmath/inc/strings.hrc:312
msgctxt "STR_ALIGN_LEFT"
msgid "left"
msgstr "लेंगा"
-#: starmath/inc/strings.hrc:307
+#: starmath/inc/strings.hrc:313
msgctxt "STR_ALIGN_CENTER"
msgid "center"
msgstr "ताला"
-#: starmath/inc/strings.hrc:308
+#: starmath/inc/strings.hrc:314
msgctxt "STR_ALIGN_RIGHT"
msgid "right"
msgstr "जोजोम"
-#: starmath/inc/strings.hrc:309
+#: starmath/inc/strings.hrc:315
msgctxt "STR_CMDBOXWINDOW"
msgid "Commands"
msgstr "नाम ¥नà¤हुकुम, बातलाव"
-#: starmath/inc/strings.hrc:310
+#: starmath/inc/strings.hrc:316
#, fuzzy
msgctxt "RID_DOCUMENTSTR"
msgid "Formula"
msgstr "सूत्रसुता़र"
-#: starmath/inc/strings.hrc:311
+#: starmath/inc/strings.hrc:317
msgctxt "STR_STATSTR_WRITING"
msgid "Saving document..."
msgstr "दस्तावेज सहेज रहा है...दोलिल सांचावेत् आ ..."
-#: starmath/inc/strings.hrc:312
+#: starmath/inc/strings.hrc:318
#, fuzzy
msgctxt "STR_MATH_DOCUMENT_FULLTYPE_CURRENT"
msgid "%PRODUCTNAME %PRODUCTVERSION Formula"
msgstr "%PRODUCTNAME 6.0 गार चिता़र"
-#: starmath/inc/strings.hrc:313
+#: starmath/inc/strings.hrc:319
msgctxt "RID_ERR_IDENT"
msgid "ERROR : "
msgstr "ERROR :"
-#: starmath/inc/strings.hrc:314
+#: starmath/inc/strings.hrc:320
msgctxt "RID_ERR_UNEXPECTEDCHARACTER"
msgid "Unexpected character"
msgstr "बाङ आंस आखोरबाङ आंस आखोर "
-#: starmath/inc/strings.hrc:315
+#: starmath/inc/strings.hrc:321
msgctxt "RID_ERR_UNEXPECTEDTOKEN"
msgid "Unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:316
+#: starmath/inc/strings.hrc:322
msgctxt "RID_ERR_LGROUPEXPECTED"
msgid "'{' expected"
msgstr "आंस"
-#: starmath/inc/strings.hrc:317
+#: starmath/inc/strings.hrc:323
msgctxt "RID_ERR_RGROUPEXPECTED"
msgid "'}' expected"
msgstr "का़मी आंस"
-#: starmath/inc/strings.hrc:318
+#: starmath/inc/strings.hrc:324
msgctxt "RID_ERR_LBRACEEXPECTED"
msgid "'(' expected"
msgstr "का़मी आंस"
-#: starmath/inc/strings.hrc:319
+#: starmath/inc/strings.hrc:325
msgctxt "RID_ERR_RBRACEEXPECTED"
msgid "')' expected"
msgstr "का़मी आंस"
-#: starmath/inc/strings.hrc:320
+#: starmath/inc/strings.hrc:326
msgctxt "RID_ERR_PARENTMISMATCH"
msgid "Left and right symbols mismatched"
msgstr ""
-#: starmath/inc/strings.hrc:321
+#: starmath/inc/strings.hrc:327
msgctxt "RID_ERR_FONTEXPECTED"
msgid "'fixed', 'sans', or 'serif' expected"
msgstr ""
-#: starmath/inc/strings.hrc:322
+#: starmath/inc/strings.hrc:328
msgctxt "RID_ERR_SIZEEXPECTED"
msgid "'size' followed by an unexpected token"
msgstr ""
-#: starmath/inc/strings.hrc:323
+#: starmath/inc/strings.hrc:329
msgctxt "RID_ERR_DOUBLEALIGN"
msgid "Double aligning is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:324
+#: starmath/inc/strings.hrc:330
msgctxt "RID_ERR_DOUBLESUBSUPSCRIPT"
msgid "Double sub/superscripts is not allowed"
msgstr ""
-#: starmath/inc/strings.hrc:325
+#: starmath/inc/strings.hrc:331
msgctxt "RID_ERR_POUNDEXPECTED"
msgid "'#' expected"
msgstr "'#' आंस"
-#: starmath/inc/strings.hrc:326
+#: starmath/inc/strings.hrc:332
msgctxt "RID_ERR_COLOREXPECTED"
msgid "Color required"
msgstr "रोङ लाकती"
-#: starmath/inc/strings.hrc:327
+#: starmath/inc/strings.hrc:333
msgctxt "RID_ERR_RIGHTEXPECTED"
msgid "'RIGHT' expected"
msgstr "जोजोम सिमा आंस"
-#: starmath/inc/strings.hrc:328
+#: starmath/inc/strings.hrc:334
#, fuzzy
msgctxt "RID_PRINTUIOPT_PRODNAME"
msgid "%PRODUCTNAME %s"
msgstr "%PRODUCTNAME API"
-#: starmath/inc/strings.hrc:329
+#: starmath/inc/strings.hrc:335
msgctxt "RID_PRINTUIOPT_CONTENTS"
msgid "Contents"
msgstr "विसोयजाहान काथा "
-#: starmath/inc/strings.hrc:330
+#: starmath/inc/strings.hrc:336
#, fuzzy
msgctxt "RID_PRINTUIOPT_TITLE"
msgid "~Title"
msgstr "ञुतुमएम ञुतुम"
-#: starmath/inc/strings.hrc:331
+#: starmath/inc/strings.hrc:337
#, fuzzy
msgctxt "RID_PRINTUIOPT_FRMLTXT"
msgid "~Formula text"
msgstr "Formula text"
-#: starmath/inc/strings.hrc:332
+#: starmath/inc/strings.hrc:338
#, fuzzy
msgctxt "RID_PRINTUIOPT_BORDERS"
msgid "B~orders"
msgstr "सीमा धारेसिमा़ धारे"
-#: starmath/inc/strings.hrc:333
+#: starmath/inc/strings.hrc:339
msgctxt "RID_PRINTUIOPT_SIZE"
msgid "Size"
msgstr "माराङ तेत्माराङ तेत् "
-#: starmath/inc/strings.hrc:334
+#: starmath/inc/strings.hrc:340
#, fuzzy
msgctxt "RID_PRINTUIOPT_ORIGSIZE"
msgid "O~riginal size"
msgstr "मूल माराङ तेत्"
-#: starmath/inc/strings.hrc:335
+#: starmath/inc/strings.hrc:341
#, fuzzy
msgctxt "RID_PRINTUIOPT_FITTOPAGE"
msgid "Fit to ~page"
msgstr "साहटा ला़गित ते लेका (~F)"
-#: starmath/inc/strings.hrc:336
+#: starmath/inc/strings.hrc:342
#, fuzzy
msgctxt "RID_PRINTUIOPT_SCALING"
msgid "~Scaling"
@@ -2002,6 +2027,11 @@ msgctxt "dockingelements|DockingElements"
msgid "Elements"
msgstr "जिनिस"
+#: starmath/uiconfig/smath/ui/dockingelements.ui:27
+msgctxt "dockingelements|ElementCategories|tooltip_text"
+msgid "Element categories"
+msgstr ""
+
#: starmath/uiconfig/smath/ui/fontdialog.ui:16
msgctxt "fontdialog|FontDialog"
msgid "Fonts"
diff --git a/source/sat/svtools/messages.po b/source/sat/svtools/messages.po
index c1860390d39..9f6c22948e0 100644
--- a/source/sat/svtools/messages.po
+++ b/source/sat/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2019-05-12 17:47+0200\n"
+"POT-Creation-Date: 2019-05-31 14:54+0200\n"
"PO-Revision-Date: 2018-11-14 11:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,1537 +15,1539 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195901.000000\n"
-#: include/svtools/strings.hrc:25
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:26
#, fuzzy
msgctxt "STR_UNDO"
msgid "Undo: "
msgstr "ओचोक्"
-#: include/svtools/strings.hrc:26
+#. To translators: tdf#125447 use no mnemonic in this string
+#: include/svtools/strings.hrc:28
msgctxt "STR_REDO"
-msgid "Re~do: "
-msgstr "दोहड़ा का़मी: (~d)"
+msgid "Redo: "
+msgstr ""
-#: include/svtools/strings.hrc:27
+#: include/svtools/strings.hrc:29
#, fuzzy
msgctxt "STR_REPEAT"
msgid "~Repeat: "
msgstr "दोहड़ा"
-#: include/svtools/strings.hrc:29
+#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_STRING"
msgid "Unformatted text"
msgstr "बाङ तेयाराक् ओल "
-#: include/svtools/strings.hrc:30
+#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
msgstr ""
-#: include/svtools/strings.hrc:31
+#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
msgstr ""
-#: include/svtools/strings.hrc:32
+#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
msgstr ""
-#: include/svtools/strings.hrc:33
+#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
msgstr ""
-#: include/svtools/strings.hrc:34
+#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
msgstr ""
-#: include/svtools/strings.hrc:35
+#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
msgstr ""
-#: include/svtools/strings.hrc:36
+#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
msgstr ""
-#: include/svtools/strings.hrc:37
+#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
msgid "Status Info from Svx Internal Link"
msgstr "भीतरी Svx लिंक से वस्तुस्थिति सूचना"
-#: include/svtools/strings.hrc:38
+#: include/svtools/strings.hrc:40
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
msgstr ""
-#: include/svtools/strings.hrc:39
+#: include/svtools/strings.hrc:41
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
msgid "Netscape Bookmark"
msgstr " पानते आ पुथी चिंनह"
-#: include/svtools/strings.hrc:40
+#: include/svtools/strings.hrc:42
msgctxt "STR_FORMAT_ID_STARSERVER"
msgid "Star server format"
msgstr "इपिल सर्वर तेयार"
-#: include/svtools/strings.hrc:41
+#: include/svtools/strings.hrc:43
msgctxt "STR_FORMAT_ID_STAROBJECT"
msgid "Star object format"
msgstr "इपिल जिनिस तेयार"
-#: include/svtools/strings.hrc:42
+#: include/svtools/strings.hrc:44
msgctxt "STR_FORMAT_ID_APPLETOBJECT"
msgid "Applet object"
msgstr "आप्लेट् जिनिस"
-#: include/svtools/strings.hrc:43
+#: include/svtools/strings.hrc:45
msgctxt "STR_FORMAT_ID_PLUGIN_OBJECT"
msgid "Plug-in object"
msgstr "प्लग-इन जिनिस"
-#: include/svtools/strings.hrc:44
+#: include/svtools/strings.hrc:46
msgctxt "STR_FORMAT_ID_STARWRITER_30"
msgid "StarWriter 3.0 object"
msgstr "इपिल ओल 3.0 जिनिस"
-#: include/svtools/strings.hrc:45
+#: include/svtools/strings.hrc:47
msgctxt "STR_FORMAT_ID_STARWRITER_40"
msgid "StarWriter 4.0 object"
msgstr "इपिल ओल 4.0 जिनिस"
-#: include/svtools/strings.hrc:46
+#: include/svtools/strings.hrc:48
msgctxt "STR_FORMAT_ID_STARWRITER_50"
msgid "StarWriter 5.0 object"
msgstr "इपिल ओल 5.0 जिनिस"
-#: include/svtools/strings.hrc:47
+#: include/svtools/strings.hrc:49
msgctxt "STR_FORMAT_ID_STARWRITERWEB_40"
msgid "StarWriter/Web 4.0 object"
msgstr "इपिल ओल/Web 4.0 जिनिस"
-#: include/svtools/strings.hrc:48
+#: include/svtools/strings.hrc:50
msgctxt "STR_FORMAT_ID_STARWRITERWEB_50"
msgid "StarWriter/Web 5.0 object"
msgstr "इपिल ओल /Web 5.0 जिनिस"
-#: include/svtools/strings.hrc:49
+#: include/svtools/strings.hrc:51
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_40"
msgid "StarWriter/Master 4.0 object"
msgstr "इपिल ओल/Master 4.0 जिनिस"
-#: include/svtools/strings.hrc:50
+#: include/svtools/strings.hrc:52
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_50"
msgid "StarWriter/Master 5.0 object"
msgstr "इपिल ओल /Master 5.0 जिनिस"
-#: include/svtools/strings.hrc:51
+#: include/svtools/strings.hrc:53
msgctxt "STR_FORMAT_ID_STARDRAW"
msgid "StarDraw object"
msgstr "इपिल तेयार जिनिस"
-#: include/svtools/strings.hrc:52
+#: include/svtools/strings.hrc:54
msgctxt "STR_FORMAT_ID_STARDRAW_40"
msgid "StarDraw 4.0 object"
msgstr "इपिल तेयार 4.0 जिनिस"
-#: include/svtools/strings.hrc:53
+#: include/svtools/strings.hrc:55
msgctxt "STR_FORMAT_ID_STARIMPRESS_50"
msgid "StarImpress 5.0 object"
msgstr "StarImpress 5.0 जिनिस"
-#: include/svtools/strings.hrc:54
+#: include/svtools/strings.hrc:56
msgctxt "STR_FORMAT_ID_STARDRAW_50"
msgid "StarDraw 5.0 object"
msgstr "StarDraw 5.0 जिनिस"
-#: include/svtools/strings.hrc:55
+#: include/svtools/strings.hrc:57
msgctxt "STR_FORMAT_ID_STARCALC"
msgid "StarCalc object"
msgstr "StarCalc जिनिस"
-#: include/svtools/strings.hrc:56
+#: include/svtools/strings.hrc:58
msgctxt "STR_FORMAT_ID_STARCALC_40"
msgid "StarCalc 4.0 object"
msgstr "StarCalc 4.0 जिनिस"
-#: include/svtools/strings.hrc:57
+#: include/svtools/strings.hrc:59
msgctxt "STR_FORMAT_ID_STARCALC_50"
msgid "StarCalc 5.0 object"
msgstr "StarCalc 5.0 जिनिस"
-#: include/svtools/strings.hrc:58
+#: include/svtools/strings.hrc:60
msgctxt "STR_FORMAT_ID_STARCHART"
msgid "StarChart object"
msgstr "StarChart जिनिस"
-#: include/svtools/strings.hrc:59
+#: include/svtools/strings.hrc:61
msgctxt "STR_FORMAT_ID_STARCHART_40"
msgid "StarChart 4.0 object"
msgstr "StarChart 4.0 जिनिस"
-#: include/svtools/strings.hrc:60
+#: include/svtools/strings.hrc:62
msgctxt "STR_FORMAT_ID_STARCHART_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 जिनिस"
-#: include/svtools/strings.hrc:61
+#: include/svtools/strings.hrc:63
msgctxt "STR_FORMAT_ID_STARIMAGE"
msgid "StarImage object"
msgstr "StarImage जिनिस"
-#: include/svtools/strings.hrc:62
+#: include/svtools/strings.hrc:64
msgctxt "STR_FORMAT_ID_STARIMAGE_40"
msgid "StarImage 4.0 object"
msgstr "StarImage 4.0 जिनिस"
-#: include/svtools/strings.hrc:63
+#: include/svtools/strings.hrc:65
msgctxt "STR_FORMAT_ID_STARIMAGE_50"
msgid "StarImage 5.0 object"
msgstr "StarImage 5.0 जिनिस"
-#: include/svtools/strings.hrc:64
+#: include/svtools/strings.hrc:66
msgctxt "STR_FORMAT_ID_STARMATH"
msgid "StarMath object"
msgstr "StarMat जिनिस"
-#: include/svtools/strings.hrc:65
+#: include/svtools/strings.hrc:67
msgctxt "STR_FORMAT_ID_STARMATH_40"
msgid "StarMath 4.0 object"
msgstr "StarMat 4.0 जिनिस"
-#: include/svtools/strings.hrc:66
+#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_STARMATH_50"
msgid "StarMath 5.0 object"
msgstr "StarMat 5.0 जिनिस"
-#: include/svtools/strings.hrc:67
+#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_STAROBJECT_PAINTDOC"
msgid "StarObject Paint object"
msgstr "StarObject पेइन्ट जिनिस"
-#: include/svtools/strings.hrc:68
+#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
msgstr ""
-#: include/svtools/strings.hrc:69
+#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
msgstr ""
-#: include/svtools/strings.hrc:70
+#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
msgstr ""
-#: include/svtools/strings.hrc:71
+#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
msgstr ""
-#: include/svtools/strings.hrc:72
+#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_SYLK"
msgid "Sylk"
msgstr "सिल्क"
-#: include/svtools/strings.hrc:73
+#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
msgstr ""
-#: include/svtools/strings.hrc:74
+#: include/svtools/strings.hrc:76
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
msgstr ""
-#: include/svtools/strings.hrc:75
+#: include/svtools/strings.hrc:77
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
msgid "Microsoft Word object"
msgstr "Microsoft Word वस्तु"
-#: include/svtools/strings.hrc:76
+#: include/svtools/strings.hrc:78
msgctxt "STR_FORMAT_ID_STAR_FRAMESET_DOC"
msgid "StarFrameSet object"
msgstr "StarFrameSet वस्तु"
-#: include/svtools/strings.hrc:77
+#: include/svtools/strings.hrc:79
msgctxt "STR_FORMAT_ID_OFFICE_DOC"
msgid "Office document object"
msgstr "ओफिस दोलिल जिनिस"
-#: include/svtools/strings.hrc:78
+#: include/svtools/strings.hrc:80
msgctxt "STR_FORMAT_ID_NOTES_DOCINFO"
msgid "Notes document info"
msgstr "खाचो बिचार जिनिस"
-#: include/svtools/strings.hrc:79
+#: include/svtools/strings.hrc:81
msgctxt "STR_FORMAT_ID_SFX_DOC"
msgid "Sfx document"
msgstr "Sfx दोलिल"
-#: include/svtools/strings.hrc:80
+#: include/svtools/strings.hrc:82
msgctxt "STR_FORMAT_ID_STARCHARTDOCUMENT_50"
msgid "StarChart 5.0 object"
msgstr "StarChart 5.0 जिनिस"
-#: include/svtools/strings.hrc:81
+#: include/svtools/strings.hrc:83
msgctxt "STR_FORMAT_ID_GRAPHOBJ"
msgid "Graphic object"
msgstr "चिता़र जिनिस"
-#: include/svtools/strings.hrc:82
+#: include/svtools/strings.hrc:84
msgctxt "STR_FORMAT_ID_STARWRITER_60"
msgid "OpenOffice.org 1.0 Writer object"
msgstr ""
-#: include/svtools/strings.hrc:83
+#: include/svtools/strings.hrc:85
msgctxt "STR_FORMAT_ID_STARWRITERWEB_60"
msgid "OpenOffice.org 1.0 Writer/Web object"
msgstr ""
-#: include/svtools/strings.hrc:84
+#: include/svtools/strings.hrc:86
msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60"
msgid "OpenOffice.org 1.0 Writer/Master object"
msgstr ""
-#: include/svtools/strings.hrc:85
+#: include/svtools/strings.hrc:87
msgctxt "STR_FORMAT_ID_STARDRAW_60"
msgid "OpenOffice.org 1.0 Draw object"
msgstr ""
-#: include/svtools/strings.hrc:86
+#: include/svtools/strings.hrc:88
msgctxt "STR_FORMAT_ID_STARIMPRESS_60"
msgid "OpenOffice.org 1.0 Impress object"
msgstr ""
-#: include/svtools/strings.hrc:87
+#: include/svtools/strings.hrc:89
msgctxt "STR_FORMAT_ID_STARCALC_60"
msgid "OpenOffice.org 1.0 Calc object"
msgstr ""
-#: include/svtools/strings.hrc:88
+#: include/svtools/strings.hrc:90
msgctxt "STR_FORMAT_ID_STARCHART_60"
msgid "OpenOffice.org 1.0 Chart object"
msgstr ""
-#: include/svtools/strings.hrc:89
+#: include/svtools/strings.hrc:91
msgctxt "STR_FORMAT_ID_STARMATH_60"
msgid "OpenOffice.org 1.0 Math object"
msgstr ""
-#: include/svtools/strings.hrc:90
+#: include/svtools/strings.hrc:92
msgctxt "STR_FORMAT_ID_WMF"
msgid "Windows metafile"
msgstr "Windows मेटा रेत्"
-#: include/svtools/strings.hrc:91
+#: include/svtools/strings.hrc:93
msgctxt "STR_FORMAT_ID_DBACCESS_QUERY"
msgid "Data source object"
msgstr "सा़खिया़त मूल जिनिस"
-#: include/svtools/strings.hrc:92
+#: include/svtools/strings.hrc:94
msgctxt "STR_FORMAT_ID_DBACCESS_TABLE"
msgid "Data source table"
msgstr "सा़खिया़त मुल ता़लिक"
-#: include/svtools/strings.hrc:93
+#: include/svtools/strings.hrc:95
msgctxt "STR_FORMAT_ID_DBACCESS_COMMAND"
msgid "SQL query"
msgstr "SQL चेद"
-#: include/svtools/strings.hrc:94
+#: include/svtools/strings.hrc:96
msgctxt "STR_FORMAT_ID_DIALOG_60"
msgid "OpenOffice.org 1.0 dialog"
msgstr ""
-#: include/svtools/strings.hrc:95
+#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_FILEGRPDESCRIPTOR"
msgid "Link"
msgstr "कड़ी"
-#: include/svtools/strings.hrc:96
+#: include/svtools/strings.hrc:98
msgctxt "STR_FORMAT_ID_HTML_NO_COMMENT"
msgid "HTML format without comments"
msgstr "HTML format without comments"
-#: include/svtools/strings.hrc:97
+#: include/svtools/strings.hrc:99
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
msgstr ""
-#: include/svtools/strings.hrc:99
+#: include/svtools/strings.hrc:101
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE"
msgid "Object % could not be inserted."
msgstr "जिनिस % नोवा को बाङ जुड़ावाक्."
-#: include/svtools/strings.hrc:100
+#: include/svtools/strings.hrc:102
#, c-format
msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE"
msgid "Object from file % could not be inserted."
msgstr "रेत् % नोवा जिनिस को बाङजुड़ावाक् हुयुक् आ"
-#: include/svtools/strings.hrc:101
+#: include/svtools/strings.hrc:103
msgctxt "STR_FURTHER_OBJECT"
msgid "Further objects"
msgstr "माड़ाङ तेयाक् जिनिस"
-#: include/svtools/strings.hrc:102
+#: include/svtools/strings.hrc:104
msgctxt "STR_UNKNOWN_SOURCE"
msgid "Unknown source"
msgstr "बाङ बाडाय ओनोड़"
-#: include/svtools/strings.hrc:104
+#: include/svtools/strings.hrc:106
#, fuzzy
msgctxt "STR_SVT_FILEVIEW_COLUMN_TITLE"
msgid "Name"
msgstr "ञुतुम एम"
-#: include/svtools/strings.hrc:105
+#: include/svtools/strings.hrc:107
msgctxt "STR_SVT_FILEVIEW_COLUMN_SIZE"
msgid "Size"
msgstr "माराङ तेत्माराङ तेत् "
-#: include/svtools/strings.hrc:106
+#: include/svtools/strings.hrc:108
msgctxt "STR_SVT_FILEVIEW_COLUMN_DATE"
msgid "Date modified"
msgstr "ओनोल बोदोल एनामा़हित् बोदोल एना"
-#: include/svtools/strings.hrc:107
+#: include/svtools/strings.hrc:109
msgctxt "STR_SVT_FILEVIEW_COLUMN_TYPE"
msgid "Type"
msgstr "नोकोललेकान"
-#: include/svtools/strings.hrc:108
+#: include/svtools/strings.hrc:110
msgctxt "STR_SVT_BYTES"
msgid "Bytes"
msgstr "बाइट्स"
-#: include/svtools/strings.hrc:109
+#: include/svtools/strings.hrc:111
msgctxt "STR_SVT_KB"
msgid "KB"
msgstr "KB"
-#: include/svtools/strings.hrc:110
+#: include/svtools/strings.hrc:112
msgctxt "STR_SVT_MB"
msgid "MB"
msgstr "MB"
-#: include/svtools/strings.hrc:111
+#: include/svtools/strings.hrc:113
msgctxt "STR_SVT_GB"
msgid "GB"
msgstr "GB"
#. descriptions of accessible objects
-#: include/svtools/strings.hrc:114
+#: include/svtools/strings.hrc:116
msgctxt "STR_SVT_ACC_DESC_TABLISTBOX"
msgid "Row: %1, Column: %2"
msgstr "थार: %1, कांधा: %2"
-#: include/svtools/strings.hrc:115
+#: include/svtools/strings.hrc:117
msgctxt "STR_SVT_ACC_DESC_FILEVIEW"
msgid ", Type: %1, URL: %2"
msgstr ", नोकोल: %1, URL: %2, लेकान: %1, URL: %2"
-#: include/svtools/strings.hrc:116
+#: include/svtools/strings.hrc:118
msgctxt "STR_SVT_ACC_DESC_FOLDER"
msgid "Folder"
msgstr "पोटोम"
-#: include/svtools/strings.hrc:117
+#: include/svtools/strings.hrc:119
msgctxt "STR_SVT_ACC_DESC_FILE"
msgid "File"
msgstr "रेत्रेत् "
-#: include/svtools/strings.hrc:118
+#: include/svtools/strings.hrc:120
msgctxt "STR_SVT_ACC_EMPTY_FIELD"
msgid "Empty Field"
msgstr "खाली जायगा"
#. * resources for CollatorResource / CollatorResourceData resp.
#. alphanumeric sorting algorithm
-#: include/svtools/strings.hrc:124
+#: include/svtools/strings.hrc:126
msgctxt "STR_SVT_COLLATE_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "आल्फा एलखा ओल कोआल्फा एलखा ओल को."
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:126
+#: include/svtools/strings.hrc:128
msgctxt "STR_SVT_COLLATE_NORMAL"
msgid "Normal"
msgstr "साधारोनसाधरोन"
#. default or normal sorting algorithm
-#: include/svtools/strings.hrc:128
+#: include/svtools/strings.hrc:130
msgctxt "STR_SVT_COLLATE_CHARSET"
msgid "Character set"
msgstr "आखोर साजाव"
#. german dictionary word order / sorting
-#: include/svtools/strings.hrc:130
+#: include/svtools/strings.hrc:132
msgctxt "STR_SVT_COLLATE_DICTIONARY"
msgid "Dictionary"
msgstr "पुथी ओड़ाक्पुथी ओड़ाक्."
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:132
+#: include/svtools/strings.hrc:134
msgctxt "STR_SVT_COLLATE_PINYIN"
msgid "Pinyin"
msgstr "Pinyinपेनियेन ."
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:134
+#: include/svtools/strings.hrc:136
msgctxt "STR_SVT_COLLATE_STROKE"
msgid "Stroke"
msgstr "जोमो"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:136
+#: include/svtools/strings.hrc:138
msgctxt "STR_SVT_COLLATE_RADICAL"
msgid "Radical"
msgstr "मुल सावाद"
#. sorting according to the unicode code point of the character
-#: include/svtools/strings.hrc:138
+#: include/svtools/strings.hrc:140
msgctxt "STR_SVT_COLLATE_UNICODE"
msgid "Unicode"
msgstr "यूनिकोडआखोर दानाङ चिनहा़"
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:140
+#: include/svtools/strings.hrc:142
msgctxt "STR_SVT_COLLATE_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyinजुइन"
#. phone book sorting algorithm. e.g. German
-#: include/svtools/strings.hrc:142
+#: include/svtools/strings.hrc:144
msgctxt "STR_SVT_COLLATE_PHONEBOOK"
msgid "Phone book"
msgstr "फोन पुथीसांगिञ गाल पुथी "
-#: include/svtools/strings.hrc:143
+#: include/svtools/strings.hrc:145
msgctxt "STR_SVT_COLLATE_PHONETIC_F"
msgid "Phonetic (alphanumeric first)"
msgstr "साड़ेआड़ङ (थार लेखा आखोर माड़ाङ)साड़ेआड़ाङ (थार लेखा आखोर माड़ाङ)"
-#: include/svtools/strings.hrc:144
+#: include/svtools/strings.hrc:146
msgctxt "STR_SVT_COLLATE_PHONETIC_L"
msgid "Phonetic (alphanumeric last)"
msgstr "साड़ेआड़ङ (थार लेखा आखोर माड़ाङ)साड़ेआड़ाङ (थार लेखा आखोर माड़ाङ)"
#. alphanumeric indexentry algorithm
-#: include/svtools/strings.hrc:146
+#: include/svtools/strings.hrc:148
msgctxt "STR_SVT_INDEXENTRY_ALPHANUMERIC"
msgid "Alphanumeric"
msgstr "आल्फा एलखा ओल कोआल्फा एलखा ओल को."
#. korean dictionary indexentry algorithm
-#: include/svtools/strings.hrc:148
+#: include/svtools/strings.hrc:150
msgctxt "STR_SVT_INDEXENTRY_DICTIONARY"
msgid "Dictionary"
msgstr "पुथी ओड़ाक्पुथी ओड़ाक्."
#. chinese sorting algorithm
-#: include/svtools/strings.hrc:150
+#: include/svtools/strings.hrc:152
msgctxt "STR_SVT_INDEXENTRY_PINYIN"
msgid "Pinyin"
msgstr "Pinyinपेनियेन ."
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:152
+#: include/svtools/strings.hrc:154
msgctxt "STR_SVT_INDEXENTRY_RADICAL"
msgid "Radical"
msgstr "मुल सावाद"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:154
+#: include/svtools/strings.hrc:156
msgctxt "STR_SVT_INDEXENTRY_STROKE"
msgid "Stroke"
msgstr "जोमो"
#. chinese indexentry algorithm
-#: include/svtools/strings.hrc:156
+#: include/svtools/strings.hrc:158
msgctxt "STR_SVT_INDEXENTRY_ZHUYIN"
msgid "Zhuyin"
msgstr "Zhuyinजुइन"
-#: include/svtools/strings.hrc:157
+#: include/svtools/strings.hrc:159
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FS"
msgid "Phonetic (alphanumeric first, grouped by syllables)"
msgstr "साड़ेआड़ङ (थार लेखा आखोर माड़ाङ आखोर दारय ते जारवा मित्)साड़ेआड़ाङ (थार लेखा आखोर माड़ाङ आखोर दारय ते जारवा मित्)"
-#: include/svtools/strings.hrc:158
+#: include/svtools/strings.hrc:160
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_FC"
msgid "Phonetic (alphanumeric first, grouped by consonants)"
msgstr "साड़ेआड़ङ (थार लेखा आखोर माड़ाङ आखोर दारय ते जारवा मित्)साड़ेआड़ाङ (थार लेखा आखोर माड़ाङ आखोर दारय ते जारवा मित्)"
-#: include/svtools/strings.hrc:159
+#: include/svtools/strings.hrc:161
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LS"
msgid "Phonetic (alphanumeric last, grouped by syllables)"
msgstr "साड़ेआड़ङ (थार लेखा आखोर माड़ाङ आखोर दारय ते जारवा मित्)साड़े आड़ाङ (थार लेखा आखोर माड़ाङ आखोर दारय ते जारवा मित्)"
-#: include/svtools/strings.hrc:160
+#: include/svtools/strings.hrc:162
msgctxt "STR_SVT_INDEXENTRY_PHONETIC_LC"
msgid "Phonetic (alphanumeric last, grouped by consonants)"
msgstr "साड़ेआड़ङ (थार लेखा आखोर माड़ाङ आखोर दारय ते जारवा मित्)साड़ेआड़ाङ (थार लेखा आखोर माड़ाङ आखोर दारय ते जारवा मित्)"
-#: include/svtools/strings.hrc:162
+#: include/svtools/strings.hrc:164
msgctxt "STR_SVT_CALENDAR_TODAY"
msgid "Today"
msgstr "तेहेञ"
-#: include/svtools/strings.hrc:163
+#: include/svtools/strings.hrc:165
msgctxt "STR_SVT_CALENDAR_NONE"
msgid "None"
msgstr "ओका हों बाङकोय हों बाङ"
-#: include/svtools/strings.hrc:165
+#: include/svtools/strings.hrc:167
msgctxt "STR_SVT_STYLE_LIGHT"
msgid "Light"
msgstr "रावाल"
-#: include/svtools/strings.hrc:166
+#: include/svtools/strings.hrc:168
msgctxt "STR_SVT_STYLE_LIGHT_ITALIC"
msgid "Light Italic"
msgstr "हल्का ढेड़ारावाल कोचे"
-#: include/svtools/strings.hrc:167
+#: include/svtools/strings.hrc:169
msgctxt "STR_SVT_STYLE_NORMAL"
msgid "Regular"
msgstr "बोराबोरदिना़मक् "
-#: include/svtools/strings.hrc:168
+#: include/svtools/strings.hrc:170
msgctxt "STR_SVT_STYLE_NORMAL_ITALIC"
msgid "Italic"
msgstr "ढेड़ातेरछा"
-#: include/svtools/strings.hrc:169
+#: include/svtools/strings.hrc:171
msgctxt "STR_SVT_STYLE_BOLD"
msgid "Bold"
msgstr "मोटामोटा ."
-#: include/svtools/strings.hrc:170
+#: include/svtools/strings.hrc:172
msgctxt "STR_SVT_STYLE_BOLD_ITALIC"
msgid "Bold Italic"
msgstr "मोटा कोचेमोटा कोचे ."
-#: include/svtools/strings.hrc:171
+#: include/svtools/strings.hrc:173
msgctxt "STR_SVT_STYLE_BLACK"
msgid "Black"
msgstr "हेंदेहेंदे "
-#: include/svtools/strings.hrc:172
+#: include/svtools/strings.hrc:174
msgctxt "STR_SVT_STYLE_BLACK_ITALIC"
msgid "Black Italic"
msgstr "हेंदे कोचे ओल"
-#: include/svtools/strings.hrc:173
+#: include/svtools/strings.hrc:175
msgctxt "STR_SVT_STYLE_BOOK"
msgid "Book"
msgstr "पोतोब, पुथी"
-#: include/svtools/strings.hrc:174
+#: include/svtools/strings.hrc:176
msgctxt "STR_SVT_STYLE_BOLD_OBLIQUE"
msgid "Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:175
+#: include/svtools/strings.hrc:177
#, fuzzy
msgctxt "STR_SVT_STYLE_CONDENSED"
msgid "Condensed"
msgstr "खाटोखाटोवाकाना"
-#: include/svtools/strings.hrc:176
+#: include/svtools/strings.hrc:178
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD"
msgid "Condensed Bold"
msgstr ""
-#: include/svtools/strings.hrc:177
+#: include/svtools/strings.hrc:179
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_ITALIC"
msgid "Condensed Bold Italic"
msgstr ""
-#: include/svtools/strings.hrc:178
+#: include/svtools/strings.hrc:180
msgctxt "STR_SVT_STYLE_CONDENSED_BOLD_OBLIQUE"
msgid "Condensed Bold Oblique"
msgstr ""
-#: include/svtools/strings.hrc:179
+#: include/svtools/strings.hrc:181
msgctxt "STR_SVT_STYLE_CONDENSED_ITALIC"
msgid "Condensed Italic"
msgstr ""
-#: include/svtools/strings.hrc:180
+#: include/svtools/strings.hrc:182
msgctxt "STR_SVT_STYLE_CONDENSED_OBLIQUE"
msgid "Condensed Oblique"
msgstr ""
-#: include/svtools/strings.hrc:181
+#: include/svtools/strings.hrc:183
msgctxt "STR_SVT_STYLE_EXTRALIGHT"
msgid "ExtraLight"
msgstr ""
-#: include/svtools/strings.hrc:182
+#: include/svtools/strings.hrc:184
msgctxt "STR_SVT_STYLE_EXTRALIGHT_ITALIC"
msgid "ExtraLight Italic"
msgstr ""
-#: include/svtools/strings.hrc:183
+#: include/svtools/strings.hrc:185
msgctxt "STR_SVT_STYLE_OBLIQUE"
msgid "Oblique"
msgstr ""
-#: include/svtools/strings.hrc:184
+#: include/svtools/strings.hrc:186
#, fuzzy
msgctxt "STR_SVT_STYLE_SEMIBOLD"
msgid "Semibold"
msgstr "ओरधेक मोटा"
-#: include/svtools/strings.hrc:185
+#: include/svtools/strings.hrc:187
msgctxt "STR_SVT_STYLE_SEMIBOLD_ITALIC"
msgid "Semibold Italic"
msgstr ""
-#: include/svtools/strings.hrc:186
+#: include/svtools/strings.hrc:188
msgctxt "STR_SVT_FONTMAP_BOTH"
msgid "The same font will be used on both your printer and your screen."
msgstr "सोमान चिकी आमाक छापावाक् आर पोरदा बानार रे बभार होचोया.सोमान फोन्ट आमाक छापावाक् आर स्क्रिन बानार रे बभार होचोया."
-#: include/svtools/strings.hrc:187
+#: include/svtools/strings.hrc:189
msgctxt "STR_SVT_FONTMAP_PRINTERONLY"
msgid "This is a printer font. The screen image may differ."
msgstr "नोवा दो छापावाक् चिकी काना पोरदा रे चिता़र ञेनेल भेगार हुय दाड़ेयाक् आ.नोवा दो छापावाक् फोन्ट काना स्क्रिन रे चिता़र ञेनेल भेगार हुय दाड़ेयाक् आ."
-#: include/svtools/strings.hrc:188
+#: include/svtools/strings.hrc:190
msgctxt "STR_SVT_FONTMAP_STYLENOTAVAILABLE"
msgid "This font style will be simulated or the closest matching style will be used."
msgstr "नोवा फोन्ट हुना़र नोकोल दाड़ेयाक् आ आर बाङ मेसा लेकान फोन्ट बोभार दाड़ेयाक् आ.नोवा चिकी हुना़र नोकोल दाड़ेयाक् आ आर बाङ मेसा लेकान चिकी बोभार दाड़ेयाक् आ."
-#: include/svtools/strings.hrc:189
+#: include/svtools/strings.hrc:191
msgctxt "STR_SVT_FONTMAP_NOTAVAILABLE"
msgid "This font has not been installed. The closest available font will be used."
msgstr "नोवा चिकी बाङ बोहाल आकाना . मेसाक् लेकान ञामोगाक् बेभार दाड़ेयाक् आ.नोवा फोन्ट बाङ बोहाल आकाना . मेसाक् लेकान ञामोगाक् बेभार दाड़ेयाक् आ."
-#: include/svtools/strings.hrc:191
+#: include/svtools/strings.hrc:193
msgctxt "STR_FILECTRL_BUTTONTEXT"
msgid "Browse..."
msgstr "पानते मेपानते मे..."
-#: include/svtools/strings.hrc:192
+#: include/svtools/strings.hrc:194
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVET0HOME"
msgid "Move To Home"
msgstr "साज साहा"
-#: include/svtools/strings.hrc:193
+#: include/svtools/strings.hrc:195
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVELEFT"
msgid "Move Left"
msgstr "लेंगा सेद चालाव ."
-#: include/svtools/strings.hrc:194
+#: include/svtools/strings.hrc:196
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVERIGHT"
msgid "Move Right"
msgstr "जोजोम सेद चालाव."
-#: include/svtools/strings.hrc:195
+#: include/svtools/strings.hrc:197
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_MOVETOEND"
msgid "Move To End"
msgstr "लातार चालाव"
-#: include/svtools/strings.hrc:196
+#: include/svtools/strings.hrc:198
#, fuzzy
msgctxt "STR_TABBAR_PUSHBUTTON_ADDTAB"
msgid "Add"
msgstr "सेलेत् (~w)"
-#: include/svtools/strings.hrc:198
+#: include/svtools/strings.hrc:200
#, fuzzy
msgctxt "STR_SVT_ACC_RULER_HORZ_NAME"
msgid "Horizontal Ruler"
msgstr "Hori_zontal ruler"
-#: include/svtools/strings.hrc:199
+#: include/svtools/strings.hrc:201
msgctxt "STR_SVT_ACC_RULER_VERT_NAME"
msgid "Vertical Ruler"
msgstr "तिंगु गार"
-#: include/svtools/strings.hrc:201
+#: include/svtools/strings.hrc:203
msgctxt "STR_SVT_1BIT_THRESHOLD"
msgid "1 bit threshold"
msgstr "1 घांडिच् दुवा़र"
-#: include/svtools/strings.hrc:202
+#: include/svtools/strings.hrc:204
msgctxt "STR_SVT_1BIT_DITHERED"
msgid "1 bit dithered"
msgstr "1घांडिच् होरो बोरो"
-#: include/svtools/strings.hrc:203
+#: include/svtools/strings.hrc:205
#, fuzzy
msgctxt "STR_SVT_4BIT_GRAYSCALE"
msgid "4 bit grayscale"
msgstr "4 बिट ग्रेस्केल (~r)"
-#: include/svtools/strings.hrc:204
+#: include/svtools/strings.hrc:206
msgctxt "STR_SVT_4BIT_COLOR_PALETTE"
msgid "4 bit color"
msgstr ""
-#: include/svtools/strings.hrc:205
+#: include/svtools/strings.hrc:207
#, fuzzy
msgctxt "STR_SVT_8BIT_GRAYSCALE"
msgid "8 bit grayscale"
msgstr "8 बिट ग्रेस्केल (~a)"
-#: include/svtools/strings.hrc:206
+#: include/svtools/strings.hrc:208
msgctxt "STR_SVT_8BIT_COLOR_PALETTE"
msgid "8 bit color"
msgstr ""
-#: include/svtools/strings.hrc:207
+#: include/svtools/strings.hrc:209
msgctxt "STR_SVT_24BIT_TRUE_COLOR"
msgid "24 bit true color"
msgstr "24 घांडिच् सा़री रोङ"
-#: include/svtools/strings.hrc:208
+#: include/svtools/strings.hrc:210
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_1"
msgid "The image needs about %1 KB of memory."
msgstr ""
-#: include/svtools/strings.hrc:209
+#: include/svtools/strings.hrc:211
msgctxt "STR_SVT_ESTIMATED_SIZE_PIX_2"
msgid "The image needs about %1 KB of memory, the file size is %2 KB."
msgstr ""
-#: include/svtools/strings.hrc:210
+#: include/svtools/strings.hrc:212
msgctxt "STR_SVT_ESTIMATED_SIZE_VEC"
msgid "The file size is %1 KB."
msgstr ""
-#: include/svtools/strings.hrc:211
+#: include/svtools/strings.hrc:213
#, fuzzy
msgctxt "STR_SVT_HOST"
msgid "host"
msgstr "डाक कुल (~a)"
-#: include/svtools/strings.hrc:212
+#: include/svtools/strings.hrc:214
#, fuzzy
msgctxt "STR_SVT_PORT"
msgid "port"
msgstr "साला"
-#: include/svtools/strings.hrc:213
+#: include/svtools/strings.hrc:215
msgctxt "STR_SVT_OTHER_CMIS"
msgid "Other CMIS"
msgstr ""
-#: include/svtools/strings.hrc:214
+#: include/svtools/strings.hrc:216
msgctxt "STR_SVT_PRNDLG_READY"
msgid "Ready"
msgstr "Ready"
-#: include/svtools/strings.hrc:215
+#: include/svtools/strings.hrc:217
msgctxt "STR_SVT_PRNDLG_PAUSED"
msgid "Paused"
msgstr "Paused"
-#: include/svtools/strings.hrc:216
+#: include/svtools/strings.hrc:218
msgctxt "STR_SVT_PRNDLG_PENDING"
msgid "Pending deletion"
msgstr "Pending deletion"
-#: include/svtools/strings.hrc:217
+#: include/svtools/strings.hrc:219
msgctxt "STR_SVT_PRNDLG_BUSY"
msgid "Busy"
msgstr "Busy"
-#: include/svtools/strings.hrc:218
+#: include/svtools/strings.hrc:220
msgctxt "STR_SVT_PRNDLG_INITIALIZING"
msgid "Initializing"
msgstr "Initialising"
-#: include/svtools/strings.hrc:219
+#: include/svtools/strings.hrc:221
msgctxt "STR_SVT_PRNDLG_WAITING"
msgid "Waiting"
msgstr "Waiting"
-#: include/svtools/strings.hrc:220
+#: include/svtools/strings.hrc:222
msgctxt "STR_SVT_PRNDLG_WARMING_UP"
msgid "Warming up"
msgstr "Warming up"
-#: include/svtools/strings.hrc:221
+#: include/svtools/strings.hrc:223
msgctxt "STR_SVT_PRNDLG_PROCESSING"
msgid "Processing"
msgstr "Processing"
-#: include/svtools/strings.hrc:222
+#: include/svtools/strings.hrc:224
msgctxt "STR_SVT_PRNDLG_PRINTING"
msgid "Printing"
msgstr "छापा येत् आ (~L)"
-#: include/svtools/strings.hrc:223
+#: include/svtools/strings.hrc:225
msgctxt "STR_SVT_PRNDLG_OFFLINE"
msgid "Offline"
msgstr "Off-line"
-#: include/svtools/strings.hrc:224
+#: include/svtools/strings.hrc:226
msgctxt "STR_SVT_PRNDLG_ERROR"
msgid "Error"
msgstr "भुल"
-#: include/svtools/strings.hrc:225
+#: include/svtools/strings.hrc:227
msgctxt "STR_SVT_PRNDLG_SERVER_UNKNOWN"
msgid "Unknown Server"
msgstr "Unknown Server"
-#: include/svtools/strings.hrc:226
+#: include/svtools/strings.hrc:228
msgctxt "STR_SVT_PRNDLG_PAPER_JAM"
msgid "Paper jam"
msgstr "Paper jam"
-#: include/svtools/strings.hrc:227
+#: include/svtools/strings.hrc:229
msgctxt "STR_SVT_PRNDLG_PAPER_OUT"
msgid "Not enough paper"
msgstr "Not enough paper"
-#: include/svtools/strings.hrc:228
+#: include/svtools/strings.hrc:230
msgctxt "STR_SVT_PRNDLG_MANUAL_FEED"
msgid "Manual feed"
msgstr "Manual feed"
-#: include/svtools/strings.hrc:229
+#: include/svtools/strings.hrc:231
msgctxt "STR_SVT_PRNDLG_PAPER_PROBLEM"
msgid "Paper problem"
msgstr "Paper problem"
-#: include/svtools/strings.hrc:230
+#: include/svtools/strings.hrc:232
msgctxt "STR_SVT_PRNDLG_IO_ACTIVE"
msgid "I/O active"
msgstr "I/O active"
-#: include/svtools/strings.hrc:231
+#: include/svtools/strings.hrc:233
msgctxt "STR_SVT_PRNDLG_OUTPUT_BIN_FULL"
msgid "Output bin full"
msgstr "Output bin full"
-#: include/svtools/strings.hrc:232
+#: include/svtools/strings.hrc:234
msgctxt "STR_SVT_PRNDLG_TONER_LOW"
msgid "Toner low"
msgstr "Toner low"
-#: include/svtools/strings.hrc:233
+#: include/svtools/strings.hrc:235
msgctxt "STR_SVT_PRNDLG_NO_TONER"
msgid "No toner"
msgstr "No toner"
-#: include/svtools/strings.hrc:234
+#: include/svtools/strings.hrc:236
msgctxt "STR_SVT_PRNDLG_PAGE_PUNT"
msgid "Delete Page"
msgstr "Delete Page"
-#: include/svtools/strings.hrc:235
+#: include/svtools/strings.hrc:237
msgctxt "STR_SVT_PRNDLG_USER_INTERVENTION"
msgid "User intervention necessary"
msgstr "User intervention necessary"
-#: include/svtools/strings.hrc:236
+#: include/svtools/strings.hrc:238
msgctxt "STR_SVT_PRNDLG_OUT_OF_MEMORY"
msgid "Insufficient memory"
msgstr "Insufficient memory"
-#: include/svtools/strings.hrc:237
+#: include/svtools/strings.hrc:239
msgctxt "STR_SVT_PRNDLG_DOOR_OPEN"
msgid "Cover open"
msgstr "Cover open"
-#: include/svtools/strings.hrc:238
+#: include/svtools/strings.hrc:240
msgctxt "STR_SVT_PRNDLG_POWER_SAVE"
msgid "Power save mode"
msgstr "Power save mode"
-#: include/svtools/strings.hrc:239
+#: include/svtools/strings.hrc:241
msgctxt "STR_SVT_PRNDLG_DEFPRINTER"
msgid "Default printer"
msgstr "हुड़ाक् छापावाक्"
-#: include/svtools/strings.hrc:240
+#: include/svtools/strings.hrc:242
#, c-format
msgctxt "STR_SVT_PRNDLG_JOBCOUNT"
msgid "%d documents"
msgstr "%d documents"
-#: include/svtools/strings.hrc:242
+#: include/svtools/strings.hrc:244
msgctxt "STR_WIZDLG_FINISH"
msgid "~Finish"
msgstr "मुचात् (~F)"
-#: include/svtools/strings.hrc:243
+#: include/svtools/strings.hrc:245
msgctxt "STR_WIZDLG_NEXT"
msgid "~Next >"
msgstr "इना़ तायोम (~N)"
-#: include/svtools/strings.hrc:244
+#: include/svtools/strings.hrc:246
#, fuzzy
msgctxt "STR_WIZDLG_PREVIOUS"
msgid "< Bac~k"
msgstr "<< दोया"
-#: include/svtools/strings.hrc:245
+#: include/svtools/strings.hrc:247
msgctxt "STR_WIZDLG_ROADMAP_TITLE"
msgid "Steps"
msgstr "झांप"
-#: include/svtools/strings.hrc:247
+#: include/svtools/strings.hrc:249
msgctxt "STR_NO_FIELD_SELECTION"
msgid "<none>"
msgstr "ओका हों बाङ"
-#: include/svtools/strings.hrc:248
+#: include/svtools/strings.hrc:250
msgctxt "STR_FIELD_COMPANY"
msgid "Company"
msgstr "गांवता, जुमित"
-#: include/svtools/strings.hrc:249
+#: include/svtools/strings.hrc:251
msgctxt "STR_FIELD_DEPARTMENT"
msgid "Department"
msgstr "विभाग"
-#: include/svtools/strings.hrc:250
+#: include/svtools/strings.hrc:252
msgctxt "STR_FIELD_FIRSTNAME"
msgid "First name"
msgstr "पहिला ञुतुम"
-#: include/svtools/strings.hrc:251
+#: include/svtools/strings.hrc:253
msgctxt "STR_FIELD_LASTNAME"
msgid "Last name"
msgstr "मुचात् नुतुम"
-#: include/svtools/strings.hrc:252
+#: include/svtools/strings.hrc:254
msgctxt "STR_FIELD_STREET"
msgid "Street"
msgstr "होर"
-#: include/svtools/strings.hrc:253
+#: include/svtools/strings.hrc:255
msgctxt "STR_FIELD_COUNTRY"
msgid "Country"
msgstr "दिसोम"
-#: include/svtools/strings.hrc:254
+#: include/svtools/strings.hrc:256
msgctxt "STR_FIELD_ZIPCODE"
msgid "ZIP Code"
msgstr "Zip कोड"
-#: include/svtools/strings.hrc:255
+#: include/svtools/strings.hrc:257
msgctxt "STR_FIELD_CITY"
msgid "City"
msgstr "सेंड़ा सोहोर"
-#: include/svtools/strings.hrc:256
+#: include/svtools/strings.hrc:258
msgctxt "STR_FIELD_TITLE"
msgid "Title"
msgstr "ञुतुम"
-#: include/svtools/strings.hrc:257
+#: include/svtools/strings.hrc:259
msgctxt "STR_FIELD_POSITION"
msgid "Position"
msgstr "टेप"
-#: include/svtools/strings.hrc:258
+#: include/svtools/strings.hrc:260
msgctxt "STR_FIELD_ADDRFORM"
msgid "Addr. Form"
msgstr "ठिकाना/ फ़ॉर्म"
-#: include/svtools/strings.hrc:259
+#: include/svtools/strings.hrc:261
msgctxt "STR_FIELD_INITIALS"
msgid "Initials"
msgstr "एतोहोब"
-#: include/svtools/strings.hrc:260
+#: include/svtools/strings.hrc:262
msgctxt "STR_FIELD_SALUTATION"
msgid "Complimentary close"
msgstr "बेस ओकोत ते बोंद"
-#: include/svtools/strings.hrc:261
+#: include/svtools/strings.hrc:263
msgctxt "STR_FIELD_HOMETEL"
msgid "Tel: Home"
msgstr "टेलिफोन: ओड़ाक्"
-#: include/svtools/strings.hrc:262
+#: include/svtools/strings.hrc:264
msgctxt "STR_FIELD_WORKTEL"
msgid "Tel: Work"
msgstr "टेलिफोन: का़मी"
-#: include/svtools/strings.hrc:263
+#: include/svtools/strings.hrc:265
msgctxt "STR_FIELD_FAX"
msgid "Fax"
msgstr ""
-#: include/svtools/strings.hrc:264
+#: include/svtools/strings.hrc:266
msgctxt "STR_FIELD_EMAIL"
msgid "Email"
msgstr ""
-#: include/svtools/strings.hrc:265
+#: include/svtools/strings.hrc:267
msgctxt "STR_FIELD_URL"
msgid "URL"
msgstr "URL"
-#: include/svtools/strings.hrc:266
+#: include/svtools/strings.hrc:268
msgctxt "STR_FIELD_NOTE"
msgid "Note"
msgstr "खाटो बिचा़र"
-#: include/svtools/strings.hrc:267
+#: include/svtools/strings.hrc:269
msgctxt "STR_FIELD_USER1"
msgid "User 1"
msgstr "का़मीयिच् 1"
-#: include/svtools/strings.hrc:268
+#: include/svtools/strings.hrc:270
msgctxt "STR_FIELD_USER2"
msgid "User 2"
msgstr "का़मीयिच् 2"
-#: include/svtools/strings.hrc:269
+#: include/svtools/strings.hrc:271
msgctxt "STR_FIELD_USER3"
msgid "User 3"
msgstr "का़मीयिच् 3"
-#: include/svtools/strings.hrc:270
+#: include/svtools/strings.hrc:272
msgctxt "STR_FIELD_USER4"
msgid "User 4"
msgstr "का़मीयिच् 4"
-#: include/svtools/strings.hrc:271
+#: include/svtools/strings.hrc:273
msgctxt "STR_FIELD_ID"
msgid "ID"
msgstr "ID"
-#: include/svtools/strings.hrc:272
+#: include/svtools/strings.hrc:274
msgctxt "STR_FIELD_STATE"
msgid "State"
msgstr "राज्य"
-#: include/svtools/strings.hrc:273
+#: include/svtools/strings.hrc:275
msgctxt "STR_FIELD_OFFICETEL"
msgid "Tel: Office"
msgstr "टेलिफोन : का़मी ओड़ाक्"
-#: include/svtools/strings.hrc:274
+#: include/svtools/strings.hrc:276
msgctxt "STR_FIELD_PAGER"
msgid "Pager"
msgstr "साहटा "
-#: include/svtools/strings.hrc:275
+#: include/svtools/strings.hrc:277
msgctxt "STR_FIELD_MOBILE"
msgid "Mobile"
msgstr "मोबइल"
-#: include/svtools/strings.hrc:276
+#: include/svtools/strings.hrc:278
msgctxt "STR_FIELD_TELOTHER"
msgid "Tel: Other"
msgstr "टेलिफोन : एटाक्"
-#: include/svtools/strings.hrc:277
+#: include/svtools/strings.hrc:279
msgctxt "STR_FIELD_CALENDAR"
msgid "Calendar"
msgstr "पांजी "
-#: include/svtools/strings.hrc:278
+#: include/svtools/strings.hrc:280
msgctxt "STR_FIELD_INVITE"
msgid "Invite"
msgstr "निमंनतरोन मे "
-#: include/svtools/strings.hrc:280
+#: include/svtools/strings.hrc:282
msgctxt "STR_SVT_DEFAULT_SERVICE_LABEL"
msgid "$user$'s $service$"
msgstr ""
-#: include/svtools/strings.hrc:282
+#: include/svtools/strings.hrc:284
msgctxt "STR_WARNING_JAVANOTFOUND"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:283
+#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:284
+#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:285
+#: include/svtools/strings.hrc:287
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_MAC"
msgid "The %PRODUCTNAME configuration has been changed. Under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:286
+#: include/svtools/strings.hrc:288
msgctxt "STR_WARNING_INVALIDJAVASETTINGS"
msgid "The %PRODUCTNAME configuration has been changed. Under Tools - Options - %PRODUCTNAME - Advanced, select the Java runtime environment you want to have used by %PRODUCTNAME."
msgstr ""
-#: include/svtools/strings.hrc:287
+#: include/svtools/strings.hrc:289
msgctxt "STR_ERROR_JVMCREATIONFAILED_MAC"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under %PRODUCTNAME - Preferences - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:288
+#: include/svtools/strings.hrc:290
msgctxt "STR_ERROR_JVMCREATIONFAILED"
msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. The selected JRE is defective. Please select another version or install a new JRE and select it under Tools - Options - %PRODUCTNAME - Advanced."
msgstr ""
-#: include/svtools/strings.hrc:289
+#: include/svtools/strings.hrc:291
msgctxt "STR_WARNING_JAVANOTFOUND_TITLE"
msgid "JRE Required"
msgstr "JRE लाकतीयाक् आ"
-#: include/svtools/strings.hrc:290
+#: include/svtools/strings.hrc:292
msgctxt "STR_WARNING_INVALIDJAVASETTINGS_TITLE"
msgid "Select JRE"
msgstr " बाछाव JRE"
-#: include/svtools/strings.hrc:291
+#: include/svtools/strings.hrc:293
msgctxt "STR_ERROR_JVMCREATIONFAILED_TITLE"
msgid "JRE is Defective"
msgstr "JRE खराब है"
-#: include/svtools/strings.hrc:293
+#: include/svtools/strings.hrc:295
msgctxt "STR_DESCRIPTION_SOURCEFILE"
msgid "Source code"
msgstr "मूल कोड़"
-#: include/svtools/strings.hrc:294
+#: include/svtools/strings.hrc:296
msgctxt "STR_DESCRIPTION_BOOKMARKFILE"
msgid "Bookmark file"
msgstr "पुस्तकचिह्न फाइलपुथी चिनहा़ रेत् "
-#: include/svtools/strings.hrc:295
+#: include/svtools/strings.hrc:297
msgctxt "STR_DESCRIPTION_GRAPHIC_DOC"
msgid "Graphics"
msgstr "Graphicsगार चिता़र"
-#: include/svtools/strings.hrc:296
+#: include/svtools/strings.hrc:298
msgctxt "STR_DESCRIPTION_CFGFILE"
msgid "Configuration file"
msgstr "रूप-रेखा फाइलरेत् भितिर तेयार"
-#: include/svtools/strings.hrc:297
+#: include/svtools/strings.hrc:299
msgctxt "STR_DESCRIPTION_APPLICATION"
msgid "Application"
msgstr "कार्यक्रमएपलिकेसन"
-#: include/svtools/strings.hrc:298
+#: include/svtools/strings.hrc:300
msgctxt "STR_DESCRIPTION_DATABASE_TABLE"
msgid "Database table"
msgstr "डाटाबेस सारणीडाटाबेस टेबुल"
-#: include/svtools/strings.hrc:299
+#: include/svtools/strings.hrc:301
msgctxt "STR_DESCRIPTION_SYSFILE"
msgid "System file"
msgstr "सिस्टम फाइलसेस्टेम रेत्"
-#: include/svtools/strings.hrc:300
+#: include/svtools/strings.hrc:302
msgctxt "STR_DESCRIPTION_WORD_DOC"
msgid "MS Word document"
msgstr "MS Word दस्तावेज MS साबाद दोलिल "
-#: include/svtools/strings.hrc:301
+#: include/svtools/strings.hrc:303
msgctxt "STR_DESCRIPTION_HELP_DOC"
msgid "Help file"
msgstr "सहायता फाइलगोड़ो रेत्"
-#: include/svtools/strings.hrc:302
+#: include/svtools/strings.hrc:304
msgctxt "STR_DESCRIPTION_HTMLFILE"
msgid "HTML document"
msgstr "HTML documentHTML दोलिल"
-#: include/svtools/strings.hrc:303
+#: include/svtools/strings.hrc:305
msgctxt "STR_DESCRIPTION_ARCHIVFILE"
msgid "Archive file"
msgstr "आर्कैव फाइलगाबानोक् रेत्"
-#: include/svtools/strings.hrc:304
+#: include/svtools/strings.hrc:306
msgctxt "STR_DESCRIPTION_LOGFILE"
msgid "Log file"
msgstr "लॉग फाइललॉग रेत्"
-#: include/svtools/strings.hrc:305
+#: include/svtools/strings.hrc:307
#, fuzzy
msgctxt "STR_DESCRIPTION_SDATABASE_DOC"
msgid "StarOffice Database"
msgstr "StarOffice 5.0 नमूना"
-#: include/svtools/strings.hrc:306
+#: include/svtools/strings.hrc:308
msgctxt "STR_DESCRIPTION_GLOBALDOC"
msgid "StarWriter 4.0 / 5.0 Master Document"
msgstr "StarWriter 4.0 / 5.0 Master Documentस्टारराइटार 4.0 / 5.0 मुल दोलिल"
-#: include/svtools/strings.hrc:307
+#: include/svtools/strings.hrc:309
#, fuzzy
msgctxt "STR_DESCRIPTION_SIMAGE_DOC"
msgid "StarOffice Image"
msgstr "StarOffice 5.0 नमूना"
-#: include/svtools/strings.hrc:308
+#: include/svtools/strings.hrc:310
msgctxt "STR_DESCRIPTION_TEXTFILE"
msgid "Text file"
msgstr "Text fileओनोल रेत्"
-#: include/svtools/strings.hrc:309
+#: include/svtools/strings.hrc:311
msgctxt "STR_DESCRIPTION_LINK"
msgid "Link"
msgstr "Linkखोंजा"
-#: include/svtools/strings.hrc:310
+#: include/svtools/strings.hrc:312
#, fuzzy
msgctxt "STR_DESCRIPTION_SOFFICE_TEMPLATE_DOC"
msgid "StarOffice 3.0 - 5.0 Template"
msgstr "StarOffice 5.0 नमूना"
-#: include/svtools/strings.hrc:311
+#: include/svtools/strings.hrc:313
msgctxt "STR_DESCRIPTION_EXCEL_DOC"
msgid "MS Excel document"
msgstr "MS Excel documentMS एक्सेल दोलिल"
-#: include/svtools/strings.hrc:312
+#: include/svtools/strings.hrc:314
msgctxt "STR_DESCRIPTION_EXCEL_TEMPLATE_DOC"
msgid "MS Excel template"
msgstr "MS Excel नमूनाMS एक्सेल ना़मूना"
-#: include/svtools/strings.hrc:313
+#: include/svtools/strings.hrc:315
msgctxt "STR_DESCRIPTION_BATCHFILE"
msgid "Batch file"
msgstr "समुदाय फाइलबेच् रेत् "
-#: include/svtools/strings.hrc:314
+#: include/svtools/strings.hrc:316
msgctxt "STR_DESCRIPTION_FILE"
msgid "File"
msgstr "Fileरेत्"
-#: include/svtools/strings.hrc:315
+#: include/svtools/strings.hrc:317
msgctxt "STR_DESCRIPTION_FOLDER"
msgid "Folder"
msgstr "Folderपोटोम"
-#: include/svtools/strings.hrc:316
+#: include/svtools/strings.hrc:318
msgctxt "STR_DESCRIPTION_FACTORY_WRITER"
msgid "Text Document"
msgstr "टेक्स्ट् दस्तावेजओनोल दोलिल"
-#: include/svtools/strings.hrc:317
+#: include/svtools/strings.hrc:319
msgctxt "STR_DESCRIPTION_FACTORY_CALC"
msgid "Spreadsheet"
msgstr "स्प्रेडशीट्ओसार पातार "
-#: include/svtools/strings.hrc:318
+#: include/svtools/strings.hrc:320
msgctxt "STR_DESCRIPTION_FACTORY_IMPRESS"
msgid "Presentation"
msgstr "प्रस्तुतिउदुक् सोदोर "
-#: include/svtools/strings.hrc:319
+#: include/svtools/strings.hrc:321
msgctxt "STR_DESCRIPTION_FACTORY_DRAW"
msgid "Drawing"
msgstr "रेखाचित्रचिता़र गार"
-#: include/svtools/strings.hrc:320
+#: include/svtools/strings.hrc:322
msgctxt "STR_DESCRIPTION_FACTORY_WRITERWEB"
msgid "HTML document"
msgstr "HTML documentHTML दोलिल"
-#: include/svtools/strings.hrc:321
+#: include/svtools/strings.hrc:323
msgctxt "STR_DESCRIPTION_FACTORY_GLOBALDOC"
msgid "Master document"
msgstr "मास्टर दस्तावेजमुल दोलिल"
-#: include/svtools/strings.hrc:322
+#: include/svtools/strings.hrc:324
msgctxt "STR_DESCRIPTION_FACTORY_MATH"
msgid "Formula"
msgstr "सूत्रसुता़र"
-#: include/svtools/strings.hrc:323
+#: include/svtools/strings.hrc:325
msgctxt "STR_DESCRIPTION_FACTORY_DATABASE"
msgid "Database"
msgstr "Databaseडाटाबेस"
-#: include/svtools/strings.hrc:324
+#: include/svtools/strings.hrc:326
msgctxt "STR_DESCRIPTION_CALC_TEMPLATE"
msgid "OpenOffice.org 1.0 Spreadsheet Template"
msgstr ""
-#: include/svtools/strings.hrc:325
+#: include/svtools/strings.hrc:327
msgctxt "STR_DESCRIPTION_DRAW_TEMPLATE"
msgid "OpenOffice.org 1.0 Drawing Template"
msgstr ""
-#: include/svtools/strings.hrc:326
+#: include/svtools/strings.hrc:328
msgctxt "STR_DESCRIPTION_IMPRESS_TEMPLATE"
msgid "OpenOffice.org 1.0 Presentation Template"
msgstr ""
-#: include/svtools/strings.hrc:327
+#: include/svtools/strings.hrc:329
msgctxt "STR_DESCRIPTION_WRITER_TEMPLATE"
msgid "OpenOffice.org 1.0 Text Document Template"
msgstr ""
-#: include/svtools/strings.hrc:328
+#: include/svtools/strings.hrc:330
msgctxt "STR_DESCRIPTION_LOCALE_VOLUME"
msgid "Local drive"
msgstr "Local driveनोडेनाक् ड्राइब"
-#: include/svtools/strings.hrc:329
+#: include/svtools/strings.hrc:331
msgctxt "STR_DESCRIPTION_FLOPPY_VOLUME"
msgid "Disk drive"
msgstr "Disk driveडिस्क ड्राइब"
-#: include/svtools/strings.hrc:330
+#: include/svtools/strings.hrc:332
msgctxt "STR_DESCRIPTION_CDROM_VOLUME"
msgid "CD-ROM drive"
msgstr "CD-ROM driveCD-ROM ड्राइब"
-#: include/svtools/strings.hrc:331
+#: include/svtools/strings.hrc:333
msgctxt "STR_DESCRIPTION_REMOTE_VOLUME"
msgid "Network connection"
msgstr "Network connectionनेटवार्क जोनोड़ाव"
-#: include/svtools/strings.hrc:332
+#: include/svtools/strings.hrc:334
msgctxt "STR_DESCRIPTION_POWERPOINT"
msgid "MS PowerPoint Document"
msgstr "MS PowerPoint DocumentMS पावारपोइन्ट दोलिल"
-#: include/svtools/strings.hrc:333
+#: include/svtools/strings.hrc:335
msgctxt "STR_DESCRIPTION_POWERPOINT_TEMPLATE"
msgid "MS PowerPoint Template"
msgstr "MS PowerPoint TemplateMS पावारपोइन्ट ना़मुना"
-#: include/svtools/strings.hrc:334
+#: include/svtools/strings.hrc:336
msgctxt "STR_DESCRIPTION_POWERPOINT_SHOW"
msgid "MS PowerPoint Show"
msgstr "MS PowerPoint ShowMS पावारपोइन्ट उदुक्"
-#: include/svtools/strings.hrc:335
+#: include/svtools/strings.hrc:337
msgctxt "STR_DESCRIPTION_SXMATH_DOC"
msgid "OpenOffice.org 1.0 Formula"
msgstr ""
-#: include/svtools/strings.hrc:336
+#: include/svtools/strings.hrc:338
msgctxt "STR_DESCRIPTION_SXCHART_DOC"
msgid "OpenOffice.org 1.0 Chart"
msgstr ""
-#: include/svtools/strings.hrc:337
+#: include/svtools/strings.hrc:339
msgctxt "STR_DESCRIPTION_SXDRAW_DOC"
msgid "OpenOffice.org 1.0 Drawing"
msgstr ""
-#: include/svtools/strings.hrc:338
+#: include/svtools/strings.hrc:340
msgctxt "STR_DESCRIPTION_SXCALC_DOC"
msgid "OpenOffice.org 1.0 Spreadsheet"
msgstr ""
-#: include/svtools/strings.hrc:339
+#: include/svtools/strings.hrc:341
msgctxt "STR_DESCRIPTION_SXIMPRESS_DOC"
msgid "OpenOffice.org 1.0 Presentation"
msgstr ""
-#: include/svtools/strings.hrc:340
+#: include/svtools/strings.hrc:342
msgctxt "STR_DESCRIPTION_SXWRITER_DOC"
msgid "OpenOffice.org 1.0 Text Document"
msgstr ""
-#: include/svtools/strings.hrc:341
+#: include/svtools/strings.hrc:343
msgctxt "STR_DESCRIPTION_SXGLOBAL_DOC"
msgid "OpenOffice.org 1.0 Master Document"
msgstr ""
-#: include/svtools/strings.hrc:342
+#: include/svtools/strings.hrc:344
msgctxt "STR_DESCRIPTION_MATHML_DOC"
msgid "MathML Document"
msgstr "MathML DocumentMathML दोलिल"
-#: include/svtools/strings.hrc:343
+#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_OO_DATABASE_DOC"
msgid "OpenDocument Database"
msgstr "OpenDocument Databaseझिज दोलिल डाटाबेस"
-#: include/svtools/strings.hrc:344
+#: include/svtools/strings.hrc:346
msgctxt "STR_DESCRIPTION_OO_DRAW_DOC"
msgid "OpenDocument Drawing"
msgstr "OpenDocument Drawingझिज दोलिल गार चिता़र"
-#: include/svtools/strings.hrc:345
+#: include/svtools/strings.hrc:347
msgctxt "STR_DESCRIPTION_OO_MATH_DOC"
msgid "OpenDocument Formula"
msgstr "OpenDocument Formulaझिज दोलिल नियोम"
-#: include/svtools/strings.hrc:346
+#: include/svtools/strings.hrc:348
msgctxt "STR_DESCRIPTION_OO_GLOBAL_DOC"
msgid "OpenDocument Master Document"
msgstr "OpenDocument Master Documentझिज दोलिल मुल दोलिल"
-#: include/svtools/strings.hrc:347
+#: include/svtools/strings.hrc:349
msgctxt "STR_DESCRIPTION_OO_IMPRESS_DOC"
msgid "OpenDocument Presentation"
msgstr "OpenDocument Presentationझिज दोलिल उनुदुक्"
-#: include/svtools/strings.hrc:348
+#: include/svtools/strings.hrc:350
msgctxt "STR_DESCRIPTION_OO_CALC_DOC"
msgid "OpenDocument Spreadsheet"
msgstr "OpenDocument Spreadsheetझिज दोलिल पासनाव पातार "
-#: include/svtools/strings.hrc:349
+#: include/svtools/strings.hrc:351
msgctxt "STR_DESCRIPTION_OO_WRITER_DOC"
msgid "OpenDocument Text"
msgstr "OpenDocument Textझिज दोलिल ओनोल"
-#: include/svtools/strings.hrc:350
+#: include/svtools/strings.hrc:352
msgctxt "STR_DESCRIPTION_OO_CALC_TEMPLATE"
msgid "OpenDocument Spreadsheet Template"
msgstr "OpenDocument Spreadsheet Templateझिज दोलिल पासनाव पातार ना़मुना "
-#: include/svtools/strings.hrc:351
+#: include/svtools/strings.hrc:353
msgctxt "STR_DESCRIPTION_OO_DRAW_TEMPLATE"
msgid "OpenDocument Drawing Template"
msgstr "OpenDocument Drawing Templateझिज दोलिल चिता़र ना़मुना"
-#: include/svtools/strings.hrc:352
+#: include/svtools/strings.hrc:354
msgctxt "STR_DESCRIPTION_OO_IMPRESS_TEMPLATE"
msgid "OpenDocument Presentation Template"
msgstr "OpenDocument Presentation Templateझिज दोलिल उनुदुक् ना़मुना"
-#: include/svtools/strings.hrc:353
+#: include/svtools/strings.hrc:355
msgctxt "STR_DESCRIPTION_OO_WRITER_TEMPLATE"
msgid "OpenDocument Text Template"
msgstr "OpenDocument Text Templateझिज दोलिल ओनोल ना़मुना"
-#: include/svtools/strings.hrc:354
+#: include/svtools/strings.hrc:356
msgctxt "STR_DESCRIPTION_EXTENSION"
msgid "%PRODUCTNAME Extension"
msgstr "%PRODUCTNAME पासनाव"
-#: include/svtools/strings.hrc:356
+#: include/svtools/strings.hrc:358
msgctxt "STR_DESCRIPTION_HUNSPELL"
msgid "Hunspell SpellChecker"
msgstr ""
-#: include/svtools/strings.hrc:357
+#: include/svtools/strings.hrc:359
msgctxt "STR_DESCRIPTION_LIBHYPHEN"
msgid "Libhyphen Hyphenator"
msgstr ""
-#: include/svtools/strings.hrc:358
+#: include/svtools/strings.hrc:360
msgctxt "STR_DESCRIPTION_MYTHES"
msgid "MyThes Thesaurus"
msgstr ""
-#: include/svtools/strings.hrc:359
+#: include/svtools/strings.hrc:361
msgctxt "STR_DESCRIPTION_IGNOREALLLIST"
msgid "List of Ignored Words"
msgstr ""
diff --git a/source/sat/svx/messages.po b/source/sat/svx/messages.po
index c2195e9789c..d523f2111b1 100644
--- a/